diff --git a/cms/static/js/spec/views/textbook_spec.js b/cms/static/js/spec/views/textbook_spec.js index 5a842a763f2b880c01f6f4ebfee856b0259333f1..1a0332f90f0c8366a79be21ee8afea697dd57f6d 100644 --- a/cms/static/js/spec/views/textbook_spec.js +++ b/cms/static/js/spec/views/textbook_spec.js @@ -168,6 +168,12 @@ define(["js/models/textbook", "js/models/chapter", "js/collections/chapter", "js expect(this.model.save).not.toHaveBeenCalled(); }); + it("does not re-render on cancel", function() { + this.view.render(); + this.view.$(".action-cancel").click(); + expect(this.view.render.calls.count()).toEqual(1); + }); + it("should be possible to correct validation errors", function() { this.view.render(); this.view.$("input[name=textbook-name]").val(""); @@ -248,6 +254,23 @@ define(["js/models/textbook", "js/models/chapter", "js/collections/chapter", "js // expect($inputEl.find(':focus').length).toEqual(1) expect(jQuery.fn.focus).toHaveBeenCalledOnJQueryObject($inputEl); }); + + it("should re-render when new textbook added", function() { + spyOn(this.view, 'render').and.callThrough(); + this.view.$(".new-button").click(); + expect(this.view.render.calls.count()).toEqual(1); + }); + + it("should remove textbook html section on model.destroy", function() { + this.model = new Textbook({name: "Life Sciences", id: "0life-sciences"}); + this.collection.add(this.model); + this.view.render(); + CMS.URL.TEXTBOOKS = "/textbooks"; // for AJAX + expect(this.view.$el.find('section').length).toEqual(1); + this.model.destroy(); + expect(this.view.$el.find('section').length).toEqual(0); + delete CMS.URL.TEXTBOOKS; + }); }); // describe "ListTextbooks", -> diff --git a/cms/static/js/views/edit_textbook.js b/cms/static/js/views/edit_textbook.js index 53030273f6e3831efa6d06e8f97d0acb8788d1eb..86a73c067cfbcd0834b2750fc9718af80a242929 100644 --- a/cms/static/js/views/edit_textbook.js +++ b/cms/static/js/views/edit_textbook.js @@ -7,12 +7,11 @@ define(['js/views/baseview', 'underscore', 'jquery', 'js/views/edit_chapter', 'c var chapters = this.model.get('chapters'); this.listenTo(chapters, 'add', this.addOne); this.listenTo(chapters, 'reset', this.addAll); - this.listenTo(chapters, 'all', this.render); }, tagName: 'section', className: 'textbook', render: function() { - this.$el.html(this.template({ + this.$el.html(this.template({ // xss-lint: disable=javascript-jquery-html name: this.model.get('name'), error: this.model.validationError })); diff --git a/cms/static/js/views/list_textbooks.js b/cms/static/js/views/list_textbooks.js index c9da63fe25a3d420aa3386da1ad31e98457ce99a..adaee81c332ea67724b6b4b95216840772d831d3 100644 --- a/cms/static/js/views/list_textbooks.js +++ b/cms/static/js/views/list_textbooks.js @@ -3,7 +3,7 @@ define(['js/views/baseview', 'jquery', 'js/views/edit_textbook', 'js/views/show_ var ListTextbooks = BaseView.extend({ initialize: function() { this.emptyTemplate = this.loadTemplate('no-textbooks'); - this.listenTo(this.collection, 'all', this.render); + this.listenTo(this.collection, 'change:editing', this.render); this.listenTo(this.collection, 'destroy', this.handleDestroy); }, tagName: 'div', @@ -11,7 +11,7 @@ define(['js/views/baseview', 'jquery', 'js/views/edit_textbook', 'js/views/show_ render: function() { var textbooks = this.collection; if (textbooks.length === 0) { - this.$el.html(this.emptyTemplate()); + this.$el.html(this.emptyTemplate()); // xss-lint: disable=javascript-jquery-html } else { this.$el.empty(); var that = this; @@ -34,6 +34,7 @@ define(['js/views/baseview', 'jquery', 'js/views/edit_textbook', 'js/views/show_ var $sectionEl, $inputEl; if (e && e.preventDefault) { e.preventDefault(); } this.collection.add([{editing: true}]); // (render() call triggered here) + this.render(); // find the outer 'section' tag for the newly added textbook $sectionEl = this.$el.find('section:last'); // scroll to put this at top of viewport diff --git a/cms/static/js/views/show_textbook.js b/cms/static/js/views/show_textbook.js index b3e25a983865aadb3fd0a96e8eb11bb2b1faaa9e..1a6ee943bb3c841e8f38994ad6ed1b9cc1bc62f4 100644 --- a/cms/static/js/views/show_textbook.js +++ b/cms/static/js/views/show_textbook.js @@ -5,6 +5,7 @@ define(['js/views/baseview', 'underscore', 'gettext', 'common/js/components/view initialize: function() { this.template = _.template($('#show-textbook-tpl').text()); this.listenTo(this.model, 'change', this.render); + this.listenTo(this.model, 'destroy', this.remove); }, tagName: 'section', className: 'textbook', @@ -18,7 +19,7 @@ define(['js/views/baseview', 'underscore', 'gettext', 'common/js/components/view var attrs = $.extend({}, this.model.attributes); attrs.bookindex = this.model.collection.indexOf(this.model); attrs.course = window.course.attributes; - this.$el.html(this.template(attrs)); + this.$el.html(this.template(attrs)); // xss-lint: disable=javascript-jquery-html return this; }, editTextbook: function(e) { @@ -29,7 +30,7 @@ define(['js/views/baseview', 'underscore', 'gettext', 'common/js/components/view if (e && e.preventDefault) { e.preventDefault(); } var textbook = this.model; new PromptView.Warning({ - title: _.template(gettext('Delete “<%= name %>â€?'))( + title: _.template(gettext('Delete “<%- name %>â€?'))( {name: textbook.get('name')} ), message: gettext("Deleting a textbook cannot be undone and once deleted any reference to it in your courseware's navigation will also be removed."), diff --git a/common/lib/xmodule/xmodule/modulestore/draft_and_published.py b/common/lib/xmodule/xmodule/modulestore/draft_and_published.py index 409ec9c721b476134196470e35d677fed40e227a..2f583cd7ca54e095c504645a7ab449720dffcf4b 100644 --- a/common/lib/xmodule/xmodule/modulestore/draft_and_published.py +++ b/common/lib/xmodule/xmodule/modulestore/draft_and_published.py @@ -2,12 +2,17 @@ This module provides an abstraction for Module Stores that support Draft and Published branches. """ -import threading +from __future__ import absolute_import + import logging +import threading from abc import ABCMeta, abstractmethod from contextlib import contextmanager + +import six from six import text_type -from . import ModuleStoreEnum, BulkOperationsMixin + +from . import BulkOperationsMixin, ModuleStoreEnum from .exceptions import ItemNotFoundError # Things w/ these categories should never be marked as version=DRAFT @@ -67,12 +72,11 @@ class BranchSettingMixin(object): return self.default_branch_setting_func() -class ModuleStoreDraftAndPublished(BranchSettingMixin, BulkOperationsMixin): +class ModuleStoreDraftAndPublished(six.with_metaclass(ABCMeta, BranchSettingMixin, BulkOperationsMixin)): """ A mixin for a read-write database backend that supports two branches, Draft and Published, with options to prefer Draft and fallback to Published. """ - __metaclass__ = ABCMeta @abstractmethod def delete_item(self, location, user_id, revision=None, **kwargs): @@ -167,8 +171,8 @@ class ModuleStoreDraftAndPublished(BranchSettingMixin, BulkOperationsMixin): self.update_item(old_parent_item, user_id) # pylint: disable=no-member log.info( '%s removed from %s children', - unicode(source_item.location), - unicode(old_parent_item.location) + text_type(source_item.location), + text_type(old_parent_item.location) ) # Add item to new parent at particular location. @@ -180,8 +184,8 @@ class ModuleStoreDraftAndPublished(BranchSettingMixin, BulkOperationsMixin): self.update_item(new_parent_item, user_id) # pylint: disable=no-member log.info( '%s added to %s children', - unicode(source_item.location), - unicode(new_parent_item.location) + text_type(source_item.location), + text_type(new_parent_item.location) ) # Update parent attribute of the item block @@ -189,8 +193,8 @@ class ModuleStoreDraftAndPublished(BranchSettingMixin, BulkOperationsMixin): self.update_item(source_item, user_id) # pylint: disable=no-member log.info( '%s parent updated to %s', - unicode(source_item.location), - unicode(new_parent_item.location) + text_type(source_item.location), + text_type(new_parent_item.location) ) return source_item.location diff --git a/common/lib/xmodule/xmodule/modulestore/edit_info.py b/common/lib/xmodule/xmodule/modulestore/edit_info.py index 3d97714e71d600577fef52f1e260dfd44b5ba089..8719d40b2e5dd354cc61d5964f1ee482d5712d37 100644 --- a/common/lib/xmodule/xmodule/modulestore/edit_info.py +++ b/common/lib/xmodule/xmodule/modulestore/edit_info.py @@ -1,9 +1,13 @@ """ Access methods to get EditInfo for xblocks """ -from xblock.core import XBlockMixin +from __future__ import absolute_import + from abc import ABCMeta, abstractmethod +import six +from xblock.core import XBlockMixin + class EditInfoMixin(XBlockMixin): """ @@ -52,11 +56,10 @@ class EditInfoMixin(XBlockMixin): return self.runtime.get_published_on(self) -class EditInfoRuntimeMixin(object): +class EditInfoRuntimeMixin(six.with_metaclass(ABCMeta, object)): """ An abstract mixin class for the functions which the :class: `EditInfoMixin` methods call on the runtime """ - __metaclass__ = ABCMeta @abstractmethod def get_edited_by(self, xblock): diff --git a/common/lib/xmodule/xmodule/modulestore/mixed.py b/common/lib/xmodule/xmodule/modulestore/mixed.py index 01bc6f4beed35580a5c7939c85be871f1f012fc9..ed21b89339fee8cef082d7a1eb929f222e5de93f 100644 --- a/common/lib/xmodule/xmodule/modulestore/mixed.py +++ b/common/lib/xmodule/xmodule/modulestore/mixed.py @@ -5,21 +5,24 @@ In this way, courses can be served up via either SplitMongoModuleStore or MongoM """ -import six +from __future__ import absolute_import + +import functools +import itertools import logging from contextlib import contextmanager -import itertools -import functools -from contracts import contract, new_contract +import six +from contracts import contract, new_contract from opaque_keys import InvalidKeyError -from opaque_keys.edx.keys import CourseKey, AssetKey +from opaque_keys.edx.keys import AssetKey, CourseKey from opaque_keys.edx.locator import LibraryLocator + from xmodule.assetstore import AssetMetadata -from . import ModuleStoreWriteBase, ModuleStoreEnum, XMODULE_FIELDS_WITH_USAGE_KEYS -from .exceptions import ItemNotFoundError, DuplicateCourseError +from . import XMODULE_FIELDS_WITH_USAGE_KEYS, ModuleStoreEnum, ModuleStoreWriteBase from .draft_and_published import ModuleStoreDraftAndPublished +from .exceptions import DuplicateCourseError, ItemNotFoundError from .split_migrator import SplitMigrator new_contract('CourseKey', CourseKey) @@ -83,7 +86,7 @@ def strip_key(func): if isinstance(field_value, list): field_value = [strip_key_func(fv) for fv in field_value] elif isinstance(field_value, dict): - for key, val in field_value.iteritems(): + for key, val in six.iteritems(field_value): field_value[key] = strip_key_func(val) else: field_value = strip_key_func(field_value) @@ -123,7 +126,7 @@ def prepare_asides_to_store(asides_source): asides = [] for asd in asides_source: aside_fields = {} - for asd_field_key, asd_field_val in asd.fields.iteritems(): + for asd_field_key, asd_field_val in six.iteritems(asd.fields): aside_fields[asd_field_key] = asd_field_val.read_from(asd) asides.append({ 'aside_type': asd.scope_ids.block_type, @@ -160,7 +163,7 @@ class MixedModuleStore(ModuleStoreDraftAndPublished, ModuleStoreWriteBase): self.modulestores = [] self.mappings = {} - for course_id, store_name in mappings.iteritems(): + for course_id, store_name in six.iteritems(mappings): try: self.mappings[CourseKey.from_string(course_id)] = store_name except InvalidKeyError: @@ -180,7 +183,7 @@ class MixedModuleStore(ModuleStoreDraftAndPublished, ModuleStoreWriteBase): signal_handler=signal_handler, ) # replace all named pointers to the store into actual pointers - for course_key, store_name in self.mappings.iteritems(): + for course_key, store_name in six.iteritems(self.mappings): if store_name == key: self.mappings[course_key] = store self.modulestores.append(store) @@ -308,7 +311,7 @@ class MixedModuleStore(ModuleStoreDraftAndPublished, ModuleStoreWriteBase): ) else: course_summaries[course_id] = course_summary - return course_summaries.values() + return list(course_summaries.values()) @strip_key def get_courses(self, **kwargs): @@ -323,7 +326,7 @@ class MixedModuleStore(ModuleStoreDraftAndPublished, ModuleStoreWriteBase): if course_id not in courses: # course is indeed unique. save it in result courses[course_id] = course - return courses.values() + return list(courses.values()) @strip_key def get_library_summaries(self, **kwargs): @@ -340,7 +343,7 @@ class MixedModuleStore(ModuleStoreDraftAndPublished, ModuleStoreWriteBase): library_id = self._clean_locator_for_mapping(library_summary.location) if library_id not in library_summaries: library_summaries[library_id] = library_summary - return library_summaries.values() + return list(library_summaries.values()) @strip_key def get_libraries(self, **kwargs): @@ -357,7 +360,7 @@ class MixedModuleStore(ModuleStoreDraftAndPublished, ModuleStoreWriteBase): if library_id not in libraries: # library is indeed unique. save it in result libraries[library_id] = library - return libraries.values() + return list(libraries.values()) def make_course_key(self, org, course, run): """ @@ -367,7 +370,7 @@ class MixedModuleStore(ModuleStoreDraftAndPublished, ModuleStoreWriteBase): This key may represent a course that doesn't exist in this modulestore. """ # If there is a mapping that match this org/course/run, use that - for course_id, store in self.mappings.iteritems(): + for course_id, store in six.iteritems(self.mappings): candidate_key = store.make_course_key(org, course, run) if candidate_key == course_id: return candidate_key @@ -884,7 +887,7 @@ class MixedModuleStore(ModuleStoreDraftAndPublished, ModuleStoreWriteBase): # could be done in parallel threads if needed return dict( itertools.chain.from_iterable( - store.heartbeat().iteritems() + six.iteritems(store.heartbeat()) for store in self.modulestores ) ) diff --git a/common/lib/xmodule/xmodule/modulestore/modulestore_settings.py b/common/lib/xmodule/xmodule/modulestore/modulestore_settings.py index 0b29f3ead78b601443c1b357355addc82fca4c4b..bb17d5940673b9b8d6bdc8a166b50afacd074d22 100644 --- a/common/lib/xmodule/xmodule/modulestore/modulestore_settings.py +++ b/common/lib/xmodule/xmodule/modulestore/modulestore_settings.py @@ -2,8 +2,12 @@ This file contains helper functions for configuring module_store_setting settings and support for backward compatibility with older formats. """ -import warnings +from __future__ import absolute_import + import copy +import warnings + +import six def convert_module_store_setting_if_needed(module_store_setting): @@ -16,7 +20,7 @@ def convert_module_store_setting_if_needed(module_store_setting): Converts and returns the given stores in old (unordered) dict-style format to the new (ordered) list format """ new_store_list = [] - for store_name, store_settings in old_stores.iteritems(): + for store_name, store_settings in six.iteritems(old_stores): store_settings['NAME'] = store_name if store_name == 'default': diff --git a/common/lib/xmodule/xmodule/modulestore/split_migrator.py b/common/lib/xmodule/xmodule/modulestore/split_migrator.py index 870ae51d4275a021f0e0784cc639caf424e1e0bc..7d21a3bc73f554c7dd93e922178d3df5beabf79b 100644 --- a/common/lib/xmodule/xmodule/modulestore/split_migrator.py +++ b/common/lib/xmodule/xmodule/modulestore/split_migrator.py @@ -6,11 +6,16 @@ Exists at the top level of modulestore b/c it needs to know about and access eac In general, it's strategy is to treat the other modulestores as read-only and to never directly manipulate storage but use existing api's. ''' +from __future__ import absolute_import + import logging +import six +from opaque_keys.edx.locator import CourseLocator +from six.moves import range from xblock.fields import Reference, ReferenceList, ReferenceValueDict + from xmodule.modulestore import ModuleStoreEnum -from opaque_keys.edx.locator import CourseLocator from xmodule.modulestore.exceptions import ItemNotFoundError log = logging.getLogger(__name__) @@ -48,7 +53,7 @@ class SplitMigrator(object): # create the course: set fields to explicitly_set for each scope, id_root = new_course_locator, master_branch = 'production' original_course = self.source_modulestore.get_course(source_course_key, **kwargs) if original_course is None: - raise ItemNotFoundError(unicode(source_course_key)) + raise ItemNotFoundError(six.text_type(source_course_key)) if new_org is None: new_org = source_course_key.org @@ -139,12 +144,12 @@ class SplitMigrator(object): # was in 'direct' so draft is a new version split_module = self.split_modulestore.get_item(new_locator, **kwargs) # need to remove any no-longer-explicitly-set values and add/update any now set values. - for name, field in split_module.fields.iteritems(): + for name, field in six.iteritems(split_module.fields): if field.is_set_on(split_module) and not module.fields[name].is_set_on(module): field.delete_from(split_module) - for field, value in self._get_fields_translate_references( + for field, value in six.iteritems(self._get_fields_translate_references( module, new_draft_course_loc, published_course_usage_key.block_id, field_names=False - ).iteritems(): + )): field.write_to(split_module, value) _new_module = self.split_modulestore.update_item(split_module, user_id, **kwargs) @@ -160,7 +165,7 @@ class SplitMigrator(object): **kwargs ) awaiting_adoption[module.location] = new_locator - for draft_location, new_locator in awaiting_adoption.iteritems(): + for draft_location, new_locator in six.iteritems(awaiting_adoption): parent_loc = self.source_modulestore.get_parent_location( draft_location, revision=ModuleStoreEnum.RevisionOption.draft_preferred, **kwargs ) @@ -207,7 +212,7 @@ class SplitMigrator(object): ) result = {} - for field_name, field in xblock.fields.iteritems(): + for field_name, field in six.iteritems(xblock.fields): if field.is_set_on(xblock): field_value = field.read_from(xblock) field_key = field_name if field_names else field @@ -220,7 +225,7 @@ class SplitMigrator(object): elif isinstance(field, ReferenceValueDict): result[field_key] = { key: get_translation(subvalue) - for key, subvalue in field_value.iteritems() + for key, subvalue in six.iteritems(field_value) } else: result[field_key] = field_value diff --git a/common/lib/xmodule/xmodule/tests/xml/__init__.py b/common/lib/xmodule/xmodule/tests/xml/__init__.py index 44f996d6fb5dd6c7e793705d062f81f308006538..276932137c8d2d3512b8e1b5390d0431877da0a7 100644 --- a/common/lib/xmodule/xmodule/tests/xml/__init__.py +++ b/common/lib/xmodule/xmodule/tests/xml/__init__.py @@ -1,18 +1,20 @@ """ Xml parsing tests for XModules """ +from __future__ import absolute_import + import pprint + from django.test import TestCase from lxml import etree from mock import Mock +from opaque_keys.edx.keys import CourseKey from six import text_type +from xblock.runtime import DictKeyValueStore, KvsFieldData -from xmodule.x_module import XMLParsingSystem, policy_key from xmodule.mako_module import MakoDescriptorSystem from xmodule.modulestore.xml import CourseLocationManager -from opaque_keys.edx.keys import CourseKey - -from xblock.runtime import KvsFieldData, DictKeyValueStore +from xmodule.x_module import XMLParsingSystem, policy_key class InMemorySystem(XMLParsingSystem, MakoDescriptorSystem): # pylint: disable=abstract-method diff --git a/common/lib/xmodule/xmodule/tests/xml/factories.py b/common/lib/xmodule/xmodule/tests/xml/factories.py index ad4e6e0459701d5f56235a191d6bc7bd30d7e665..0d3101a0e8c9d9982f86458787bc65a88e905a4a 100644 --- a/common/lib/xmodule/xmodule/tests/xml/factories.py +++ b/common/lib/xmodule/xmodule/tests/xml/factories.py @@ -2,17 +2,19 @@ Factories for generating edXML for testing XModule import """ -import inspect +from __future__ import absolute_import +import inspect from tempfile import mkdtemp + +from factory import Factory, Sequence, lazy_attribute, post_generation from fs.osfs import OSFS -from factory import Factory, lazy_attribute, post_generation, Sequence from lxml import etree - from xblock.mixins import HierarchyMixin + +from xmodule.modulestore import only_xmodules from xmodule.modulestore.inheritance import InheritanceMixin from xmodule.x_module import XModuleMixin -from xmodule.modulestore import only_xmodules class XmlImportData(object): diff --git a/common/lib/xmodule/xmodule/tests/xml/test_inheritance.py b/common/lib/xmodule/xmodule/tests/xml/test_inheritance.py index 701c9d921283bd756dc5e3e808997daf88c1b338..f0dbe97fb6f62c347bdd1aa68a480d9d2dc5f51e 100644 --- a/common/lib/xmodule/xmodule/tests/xml/test_inheritance.py +++ b/common/lib/xmodule/xmodule/tests/xml/test_inheritance.py @@ -1,8 +1,10 @@ """ Test that inherited fields work correctly when parsing XML """ +from __future__ import absolute_import + from xmodule.tests.xml import XModuleXmlImportTest -from xmodule.tests.xml.factories import CourseFactory, SequenceFactory, ProblemFactory, XmlImportFactory +from xmodule.tests.xml.factories import CourseFactory, ProblemFactory, SequenceFactory, XmlImportFactory class TestInheritedFieldParsing(XModuleXmlImportTest): diff --git a/common/lib/xmodule/xmodule/tests/xml/test_policy.py b/common/lib/xmodule/xmodule/tests/xml/test_policy.py index cc1b1c7175b9243203de8eb428a10c5f2324f8dc..000d292e5fd77805875c2f5a0c702e67ccc1b4d5 100644 --- a/common/lib/xmodule/xmodule/tests/xml/test_policy.py +++ b/common/lib/xmodule/xmodule/tests/xml/test_policy.py @@ -2,10 +2,12 @@ Tests that policy json files import correctly when loading XML """ +from __future__ import absolute_import + import pytest -from xmodule.tests.xml.factories import CourseFactory from xmodule.tests.xml import XModuleXmlImportTest +from xmodule.tests.xml.factories import CourseFactory class TestPolicy(XModuleXmlImportTest): diff --git a/common/static/data/geoip/GeoLite2-Country.mmdb b/common/static/data/geoip/GeoLite2-Country.mmdb index e82dc2a5d16e6809571b32a3aa59f4c89a9f81d9..a6279fc9e8c04e4efd9e2ba91925a214907c03ac 100644 Binary files a/common/static/data/geoip/GeoLite2-Country.mmdb and b/common/static/data/geoip/GeoLite2-Country.mmdb differ diff --git a/common/test/db_cache/bok_choy_data_default.json b/common/test/db_cache/bok_choy_data_default.json index fd657706248759fb0da611effaeb5288d22bb1b5..d95a469fedba974ac50ffd223eab81d9c5695d50 100644 --- a/common/test/db_cache/bok_choy_data_default.json +++ b/common/test/db_cache/bok_choy_data_default.json @@ -1 +1 @@ -[{"model": "contenttypes.contenttype", "pk": 1, "fields": {"app_label": "api_admin", "model": "apiaccessrequest"}}, {"model": "contenttypes.contenttype", "pk": 2, "fields": {"app_label": "auth", "model": "permission"}}, {"model": "contenttypes.contenttype", "pk": 3, "fields": {"app_label": "auth", "model": "group"}}, {"model": "contenttypes.contenttype", "pk": 4, "fields": {"app_label": "auth", "model": "user"}}, {"model": "contenttypes.contenttype", "pk": 5, "fields": {"app_label": "contenttypes", "model": "contenttype"}}, {"model": "contenttypes.contenttype", "pk": 6, "fields": {"app_label": "redirects", "model": "redirect"}}, {"model": "contenttypes.contenttype", "pk": 7, "fields": {"app_label": "sessions", "model": "session"}}, {"model": "contenttypes.contenttype", "pk": 8, "fields": {"app_label": "sites", "model": "site"}}, {"model": "contenttypes.contenttype", "pk": 9, "fields": {"app_label": "djcelery", "model": "taskmeta"}}, {"model": "contenttypes.contenttype", "pk": 10, "fields": {"app_label": "djcelery", "model": "tasksetmeta"}}, {"model": "contenttypes.contenttype", "pk": 11, "fields": {"app_label": "djcelery", "model": "intervalschedule"}}, {"model": "contenttypes.contenttype", "pk": 12, "fields": {"app_label": "djcelery", "model": "crontabschedule"}}, {"model": "contenttypes.contenttype", "pk": 13, "fields": {"app_label": "djcelery", "model": "periodictasks"}}, {"model": "contenttypes.contenttype", "pk": 14, "fields": {"app_label": "djcelery", "model": "periodictask"}}, {"model": "contenttypes.contenttype", "pk": 15, "fields": {"app_label": "djcelery", "model": "workerstate"}}, {"model": "contenttypes.contenttype", "pk": 16, "fields": {"app_label": "djcelery", "model": "taskstate"}}, {"model": "contenttypes.contenttype", "pk": 17, "fields": {"app_label": "waffle", "model": "flag"}}, {"model": "contenttypes.contenttype", "pk": 18, "fields": {"app_label": "waffle", "model": "switch"}}, {"model": "contenttypes.contenttype", "pk": 19, "fields": {"app_label": "waffle", "model": "sample"}}, {"model": "contenttypes.contenttype", "pk": 20, "fields": {"app_label": "status", "model": "globalstatusmessage"}}, {"model": "contenttypes.contenttype", "pk": 21, "fields": {"app_label": "status", "model": "coursemessage"}}, {"model": "contenttypes.contenttype", "pk": 22, "fields": {"app_label": "static_replace", "model": "assetbaseurlconfig"}}, {"model": "contenttypes.contenttype", "pk": 23, "fields": {"app_label": "static_replace", "model": "assetexcludedextensionsconfig"}}, {"model": "contenttypes.contenttype", "pk": 24, "fields": {"app_label": "contentserver", "model": "courseassetcachettlconfig"}}, {"model": "contenttypes.contenttype", "pk": 25, "fields": {"app_label": "contentserver", "model": "cdnuseragentsconfig"}}, {"model": "contenttypes.contenttype", "pk": 26, "fields": {"app_label": "theming", "model": "sitetheme"}}, {"model": "contenttypes.contenttype", "pk": 27, "fields": {"app_label": "site_configuration", "model": "siteconfiguration"}}, {"model": "contenttypes.contenttype", "pk": 28, "fields": {"app_label": "site_configuration", "model": "siteconfigurationhistory"}}, {"model": "contenttypes.contenttype", "pk": 29, "fields": {"app_label": "video_config", "model": "hlsplaybackenabledflag"}}, {"model": "contenttypes.contenttype", "pk": 30, "fields": {"app_label": "video_config", "model": "coursehlsplaybackenabledflag"}}, {"model": "contenttypes.contenttype", "pk": 31, "fields": {"app_label": "video_config", "model": "videotranscriptenabledflag"}}, {"model": "contenttypes.contenttype", "pk": 32, "fields": {"app_label": "video_config", "model": "coursevideotranscriptenabledflag"}}, {"model": "contenttypes.contenttype", "pk": 33, "fields": {"app_label": "video_pipeline", "model": "videopipelineintegration"}}, {"model": "contenttypes.contenttype", "pk": 34, "fields": {"app_label": "video_pipeline", "model": "videouploadsenabledbydefault"}}, {"model": "contenttypes.contenttype", "pk": 35, "fields": {"app_label": "video_pipeline", "model": "coursevideouploadsenabledbydefault"}}, {"model": "contenttypes.contenttype", "pk": 36, "fields": {"app_label": "bookmarks", "model": "bookmark"}}, {"model": "contenttypes.contenttype", "pk": 37, "fields": {"app_label": "bookmarks", "model": "xblockcache"}}, {"model": "contenttypes.contenttype", "pk": 38, "fields": {"app_label": "courseware", "model": "studentmodule"}}, {"model": "contenttypes.contenttype", "pk": 39, "fields": {"app_label": "courseware", "model": "studentmodulehistory"}}, {"model": "contenttypes.contenttype", "pk": 40, "fields": {"app_label": "courseware", "model": "xmoduleuserstatesummaryfield"}}, {"model": "contenttypes.contenttype", "pk": 41, "fields": {"app_label": "courseware", "model": "xmodulestudentprefsfield"}}, {"model": "contenttypes.contenttype", "pk": 42, "fields": {"app_label": "courseware", "model": "xmodulestudentinfofield"}}, {"model": "contenttypes.contenttype", "pk": 43, "fields": {"app_label": "courseware", "model": "offlinecomputedgrade"}}, {"model": "contenttypes.contenttype", "pk": 44, "fields": {"app_label": "courseware", "model": "offlinecomputedgradelog"}}, {"model": "contenttypes.contenttype", "pk": 45, "fields": {"app_label": "courseware", "model": "studentfieldoverride"}}, {"model": "contenttypes.contenttype", "pk": 46, "fields": {"app_label": "courseware", "model": "dynamicupgradedeadlineconfiguration"}}, {"model": "contenttypes.contenttype", "pk": 47, "fields": {"app_label": "courseware", "model": "coursedynamicupgradedeadlineconfiguration"}}, {"model": "contenttypes.contenttype", "pk": 48, "fields": {"app_label": "courseware", "model": "orgdynamicupgradedeadlineconfiguration"}}, {"model": "contenttypes.contenttype", "pk": 49, "fields": {"app_label": "student", "model": "anonymoususerid"}}, {"model": "contenttypes.contenttype", "pk": 50, "fields": {"app_label": "student", "model": "userstanding"}}, {"model": "contenttypes.contenttype", "pk": 51, "fields": {"app_label": "student", "model": "userprofile"}}, {"model": "contenttypes.contenttype", "pk": 52, "fields": {"app_label": "student", "model": "usersignupsource"}}, {"model": "contenttypes.contenttype", "pk": 53, "fields": {"app_label": "student", "model": "usertestgroup"}}, {"model": "contenttypes.contenttype", "pk": 54, "fields": {"app_label": "student", "model": "registration"}}, {"model": "contenttypes.contenttype", "pk": 55, "fields": {"app_label": "student", "model": "pendingnamechange"}}, {"model": "contenttypes.contenttype", "pk": 56, "fields": {"app_label": "student", "model": "pendingemailchange"}}, {"model": "contenttypes.contenttype", "pk": 57, "fields": {"app_label": "student", "model": "passwordhistory"}}, {"model": "contenttypes.contenttype", "pk": 58, "fields": {"app_label": "student", "model": "loginfailures"}}, {"model": "contenttypes.contenttype", "pk": 59, "fields": {"app_label": "student", "model": "courseenrollment"}}, {"model": "contenttypes.contenttype", "pk": 60, "fields": {"app_label": "student", "model": "manualenrollmentaudit"}}, {"model": "contenttypes.contenttype", "pk": 61, "fields": {"app_label": "student", "model": "courseenrollmentallowed"}}, {"model": "contenttypes.contenttype", "pk": 62, "fields": {"app_label": "student", "model": "courseaccessrole"}}, {"model": "contenttypes.contenttype", "pk": 63, "fields": {"app_label": "student", "model": "dashboardconfiguration"}}, {"model": "contenttypes.contenttype", "pk": 64, "fields": {"app_label": "student", "model": "linkedinaddtoprofileconfiguration"}}, {"model": "contenttypes.contenttype", "pk": 65, "fields": {"app_label": "student", "model": "entranceexamconfiguration"}}, {"model": "contenttypes.contenttype", "pk": 66, "fields": {"app_label": "student", "model": "languageproficiency"}}, {"model": "contenttypes.contenttype", "pk": 67, "fields": {"app_label": "student", "model": "sociallink"}}, {"model": "contenttypes.contenttype", "pk": 68, "fields": {"app_label": "student", "model": "courseenrollmentattribute"}}, {"model": "contenttypes.contenttype", "pk": 69, "fields": {"app_label": "student", "model": "enrollmentrefundconfiguration"}}, {"model": "contenttypes.contenttype", "pk": 70, "fields": {"app_label": "student", "model": "registrationcookieconfiguration"}}, {"model": "contenttypes.contenttype", "pk": 71, "fields": {"app_label": "student", "model": "userattribute"}}, {"model": "contenttypes.contenttype", "pk": 72, "fields": {"app_label": "student", "model": "logoutviewconfiguration"}}, {"model": "contenttypes.contenttype", "pk": 73, "fields": {"app_label": "track", "model": "trackinglog"}}, {"model": "contenttypes.contenttype", "pk": 74, "fields": {"app_label": "util", "model": "ratelimitconfiguration"}}, {"model": "contenttypes.contenttype", "pk": 75, "fields": {"app_label": "certificates", "model": "certificatewhitelist"}}, {"model": "contenttypes.contenttype", "pk": 76, "fields": {"app_label": "certificates", "model": "generatedcertificate"}}, {"model": "contenttypes.contenttype", "pk": 77, "fields": {"app_label": "certificates", "model": "certificategenerationhistory"}}, {"model": "contenttypes.contenttype", "pk": 78, "fields": {"app_label": "certificates", "model": "certificateinvalidation"}}, {"model": "contenttypes.contenttype", "pk": 79, "fields": {"app_label": "certificates", "model": "examplecertificateset"}}, {"model": "contenttypes.contenttype", "pk": 80, "fields": {"app_label": "certificates", "model": "examplecertificate"}}, {"model": "contenttypes.contenttype", "pk": 81, "fields": {"app_label": "certificates", "model": "certificategenerationcoursesetting"}}, {"model": "contenttypes.contenttype", "pk": 82, "fields": {"app_label": "certificates", "model": "certificategenerationconfiguration"}}, {"model": "contenttypes.contenttype", "pk": 83, "fields": {"app_label": "certificates", "model": "certificatehtmlviewconfiguration"}}, {"model": "contenttypes.contenttype", "pk": 84, "fields": {"app_label": "certificates", "model": "certificatetemplate"}}, {"model": "contenttypes.contenttype", "pk": 85, "fields": {"app_label": "certificates", "model": "certificatetemplateasset"}}, {"model": "contenttypes.contenttype", "pk": 86, "fields": {"app_label": "instructor_task", "model": "instructortask"}}, {"model": "contenttypes.contenttype", "pk": 87, "fields": {"app_label": "instructor_task", "model": "gradereportsetting"}}, {"model": "contenttypes.contenttype", "pk": 88, "fields": {"app_label": "course_groups", "model": "courseusergroup"}}, {"model": "contenttypes.contenttype", "pk": 89, "fields": {"app_label": "course_groups", "model": "cohortmembership"}}, {"model": "contenttypes.contenttype", "pk": 90, "fields": {"app_label": "course_groups", "model": "courseusergrouppartitiongroup"}}, {"model": "contenttypes.contenttype", "pk": 91, "fields": {"app_label": "course_groups", "model": "coursecohortssettings"}}, {"model": "contenttypes.contenttype", "pk": 92, "fields": {"app_label": "course_groups", "model": "coursecohort"}}, {"model": "contenttypes.contenttype", "pk": 93, "fields": {"app_label": "course_groups", "model": "unregisteredlearnercohortassignments"}}, {"model": "contenttypes.contenttype", "pk": 94, "fields": {"app_label": "bulk_email", "model": "target"}}, {"model": "contenttypes.contenttype", "pk": 95, "fields": {"app_label": "bulk_email", "model": "cohorttarget"}}, {"model": "contenttypes.contenttype", "pk": 96, "fields": {"app_label": "bulk_email", "model": "coursemodetarget"}}, {"model": "contenttypes.contenttype", "pk": 97, "fields": {"app_label": "bulk_email", "model": "courseemail"}}, {"model": "contenttypes.contenttype", "pk": 98, "fields": {"app_label": "bulk_email", "model": "optout"}}, {"model": "contenttypes.contenttype", "pk": 99, "fields": {"app_label": "bulk_email", "model": "courseemailtemplate"}}, {"model": "contenttypes.contenttype", "pk": 100, "fields": {"app_label": "bulk_email", "model": "courseauthorization"}}, {"model": "contenttypes.contenttype", "pk": 101, "fields": {"app_label": "bulk_email", "model": "bulkemailflag"}}, {"model": "contenttypes.contenttype", "pk": 102, "fields": {"app_label": "branding", "model": "brandinginfoconfig"}}, {"model": "contenttypes.contenttype", "pk": 103, "fields": {"app_label": "branding", "model": "brandingapiconfig"}}, {"model": "contenttypes.contenttype", "pk": 104, "fields": {"app_label": "grades", "model": "visibleblocks"}}, {"model": "contenttypes.contenttype", "pk": 105, "fields": {"app_label": "grades", "model": "persistentsubsectiongrade"}}, {"model": "contenttypes.contenttype", "pk": 106, "fields": {"app_label": "grades", "model": "persistentcoursegrade"}}, {"model": "contenttypes.contenttype", "pk": 107, "fields": {"app_label": "grades", "model": "persistentsubsectiongradeoverride"}}, {"model": "contenttypes.contenttype", "pk": 108, "fields": {"app_label": "grades", "model": "persistentgradesenabledflag"}}, {"model": "contenttypes.contenttype", "pk": 109, "fields": {"app_label": "grades", "model": "coursepersistentgradesflag"}}, {"model": "contenttypes.contenttype", "pk": 110, "fields": {"app_label": "grades", "model": "computegradessetting"}}, {"model": "contenttypes.contenttype", "pk": 111, "fields": {"app_label": "external_auth", "model": "externalauthmap"}}, {"model": "contenttypes.contenttype", "pk": 112, "fields": {"app_label": "django_openid_auth", "model": "nonce"}}, {"model": "contenttypes.contenttype", "pk": 113, "fields": {"app_label": "django_openid_auth", "model": "association"}}, {"model": "contenttypes.contenttype", "pk": 114, "fields": {"app_label": "django_openid_auth", "model": "useropenid"}}, {"model": "contenttypes.contenttype", "pk": 115, "fields": {"app_label": "oauth2", "model": "client"}}, {"model": "contenttypes.contenttype", "pk": 116, "fields": {"app_label": "oauth2", "model": "grant"}}, {"model": "contenttypes.contenttype", "pk": 117, "fields": {"app_label": "oauth2", "model": "accesstoken"}}, {"model": "contenttypes.contenttype", "pk": 118, "fields": {"app_label": "oauth2", "model": "refreshtoken"}}, {"model": "contenttypes.contenttype", "pk": 119, "fields": {"app_label": "edx_oauth2_provider", "model": "trustedclient"}}, {"model": "contenttypes.contenttype", "pk": 120, "fields": {"app_label": "oauth2_provider", "model": "application"}}, {"model": "contenttypes.contenttype", "pk": 121, "fields": {"app_label": "oauth2_provider", "model": "grant"}}, {"model": "contenttypes.contenttype", "pk": 122, "fields": {"app_label": "oauth2_provider", "model": "accesstoken"}}, {"model": "contenttypes.contenttype", "pk": 123, "fields": {"app_label": "oauth2_provider", "model": "refreshtoken"}}, {"model": "contenttypes.contenttype", "pk": 124, "fields": {"app_label": "oauth_dispatch", "model": "restrictedapplication"}}, {"model": "contenttypes.contenttype", "pk": 125, "fields": {"app_label": "third_party_auth", "model": "oauth2providerconfig"}}, {"model": "contenttypes.contenttype", "pk": 126, "fields": {"app_label": "third_party_auth", "model": "samlproviderconfig"}}, {"model": "contenttypes.contenttype", "pk": 127, "fields": {"app_label": "third_party_auth", "model": "samlconfiguration"}}, {"model": "contenttypes.contenttype", "pk": 128, "fields": {"app_label": "third_party_auth", "model": "samlproviderdata"}}, {"model": "contenttypes.contenttype", "pk": 129, "fields": {"app_label": "third_party_auth", "model": "ltiproviderconfig"}}, {"model": "contenttypes.contenttype", "pk": 130, "fields": {"app_label": "third_party_auth", "model": "providerapipermissions"}}, {"model": "contenttypes.contenttype", "pk": 131, "fields": {"app_label": "oauth_provider", "model": "nonce"}}, {"model": "contenttypes.contenttype", "pk": 132, "fields": {"app_label": "oauth_provider", "model": "scope"}}, {"model": "contenttypes.contenttype", "pk": 133, "fields": {"app_label": "oauth_provider", "model": "consumer"}}, {"model": "contenttypes.contenttype", "pk": 134, "fields": {"app_label": "oauth_provider", "model": "token"}}, {"model": "contenttypes.contenttype", "pk": 135, "fields": {"app_label": "oauth_provider", "model": "resource"}}, {"model": "contenttypes.contenttype", "pk": 136, "fields": {"app_label": "wiki", "model": "article"}}, {"model": "contenttypes.contenttype", "pk": 137, "fields": {"app_label": "wiki", "model": "articleforobject"}}, {"model": "contenttypes.contenttype", "pk": 138, "fields": {"app_label": "wiki", "model": "articlerevision"}}, {"model": "contenttypes.contenttype", "pk": 139, "fields": {"app_label": "wiki", "model": "articleplugin"}}, {"model": "contenttypes.contenttype", "pk": 140, "fields": {"app_label": "wiki", "model": "reusableplugin"}}, {"model": "contenttypes.contenttype", "pk": 141, "fields": {"app_label": "wiki", "model": "simpleplugin"}}, {"model": "contenttypes.contenttype", "pk": 142, "fields": {"app_label": "wiki", "model": "revisionplugin"}}, {"model": "contenttypes.contenttype", "pk": 143, "fields": {"app_label": "wiki", "model": "revisionpluginrevision"}}, {"model": "contenttypes.contenttype", "pk": 144, "fields": {"app_label": "wiki", "model": "urlpath"}}, {"model": "contenttypes.contenttype", "pk": 145, "fields": {"app_label": "django_notify", "model": "notificationtype"}}, {"model": "contenttypes.contenttype", "pk": 146, "fields": {"app_label": "django_notify", "model": "settings"}}, {"model": "contenttypes.contenttype", "pk": 147, "fields": {"app_label": "django_notify", "model": "subscription"}}, {"model": "contenttypes.contenttype", "pk": 148, "fields": {"app_label": "django_notify", "model": "notification"}}, {"model": "contenttypes.contenttype", "pk": 149, "fields": {"app_label": "admin", "model": "logentry"}}, {"model": "contenttypes.contenttype", "pk": 150, "fields": {"app_label": "django_comment_common", "model": "role"}}, {"model": "contenttypes.contenttype", "pk": 151, "fields": {"app_label": "django_comment_common", "model": "permission"}}, {"model": "contenttypes.contenttype", "pk": 152, "fields": {"app_label": "django_comment_common", "model": "forumsconfig"}}, {"model": "contenttypes.contenttype", "pk": 153, "fields": {"app_label": "django_comment_common", "model": "coursediscussionsettings"}}, {"model": "contenttypes.contenttype", "pk": 154, "fields": {"app_label": "notes", "model": "note"}}, {"model": "contenttypes.contenttype", "pk": 155, "fields": {"app_label": "splash", "model": "splashconfig"}}, {"model": "contenttypes.contenttype", "pk": 156, "fields": {"app_label": "user_api", "model": "userpreference"}}, {"model": "contenttypes.contenttype", "pk": 157, "fields": {"app_label": "user_api", "model": "usercoursetag"}}, {"model": "contenttypes.contenttype", "pk": 158, "fields": {"app_label": "user_api", "model": "userorgtag"}}, {"model": "contenttypes.contenttype", "pk": 159, "fields": {"app_label": "shoppingcart", "model": "order"}}, {"model": "contenttypes.contenttype", "pk": 160, "fields": {"app_label": "shoppingcart", "model": "orderitem"}}, {"model": "contenttypes.contenttype", "pk": 161, "fields": {"app_label": "shoppingcart", "model": "invoice"}}, {"model": "contenttypes.contenttype", "pk": 162, "fields": {"app_label": "shoppingcart", "model": "invoicetransaction"}}, {"model": "contenttypes.contenttype", "pk": 163, "fields": {"app_label": "shoppingcart", "model": "invoiceitem"}}, {"model": "contenttypes.contenttype", "pk": 164, "fields": {"app_label": "shoppingcart", "model": "courseregistrationcodeinvoiceitem"}}, {"model": "contenttypes.contenttype", "pk": 165, "fields": {"app_label": "shoppingcart", "model": "invoicehistory"}}, {"model": "contenttypes.contenttype", "pk": 166, "fields": {"app_label": "shoppingcart", "model": "courseregistrationcode"}}, {"model": "contenttypes.contenttype", "pk": 167, "fields": {"app_label": "shoppingcart", "model": "registrationcoderedemption"}}, {"model": "contenttypes.contenttype", "pk": 168, "fields": {"app_label": "shoppingcart", "model": "coupon"}}, {"model": "contenttypes.contenttype", "pk": 169, "fields": {"app_label": "shoppingcart", "model": "couponredemption"}}, {"model": "contenttypes.contenttype", "pk": 170, "fields": {"app_label": "shoppingcart", "model": "paidcourseregistration"}}, {"model": "contenttypes.contenttype", "pk": 171, "fields": {"app_label": "shoppingcart", "model": "courseregcodeitem"}}, {"model": "contenttypes.contenttype", "pk": 172, "fields": {"app_label": "shoppingcart", "model": "courseregcodeitemannotation"}}, {"model": "contenttypes.contenttype", "pk": 173, "fields": {"app_label": "shoppingcart", "model": "paidcourseregistrationannotation"}}, {"model": "contenttypes.contenttype", "pk": 174, "fields": {"app_label": "shoppingcart", "model": "certificateitem"}}, {"model": "contenttypes.contenttype", "pk": 175, "fields": {"app_label": "shoppingcart", "model": "donationconfiguration"}}, {"model": "contenttypes.contenttype", "pk": 176, "fields": {"app_label": "shoppingcart", "model": "donation"}}, {"model": "contenttypes.contenttype", "pk": 177, "fields": {"app_label": "course_modes", "model": "coursemode"}}, {"model": "contenttypes.contenttype", "pk": 178, "fields": {"app_label": "course_modes", "model": "coursemodesarchive"}}, {"model": "contenttypes.contenttype", "pk": 179, "fields": {"app_label": "course_modes", "model": "coursemodeexpirationconfig"}}, {"model": "contenttypes.contenttype", "pk": 180, "fields": {"app_label": "entitlements", "model": "courseentitlement"}}, {"model": "contenttypes.contenttype", "pk": 181, "fields": {"app_label": "verify_student", "model": "softwaresecurephotoverification"}}, {"model": "contenttypes.contenttype", "pk": 182, "fields": {"app_label": "verify_student", "model": "verificationdeadline"}}, {"model": "contenttypes.contenttype", "pk": 183, "fields": {"app_label": "verify_student", "model": "verificationcheckpoint"}}, {"model": "contenttypes.contenttype", "pk": 184, "fields": {"app_label": "verify_student", "model": "verificationstatus"}}, {"model": "contenttypes.contenttype", "pk": 185, "fields": {"app_label": "verify_student", "model": "incoursereverificationconfiguration"}}, {"model": "contenttypes.contenttype", "pk": 186, "fields": {"app_label": "verify_student", "model": "icrvstatusemailsconfiguration"}}, {"model": "contenttypes.contenttype", "pk": 187, "fields": {"app_label": "verify_student", "model": "skippedreverification"}}, {"model": "contenttypes.contenttype", "pk": 188, "fields": {"app_label": "dark_lang", "model": "darklangconfig"}}, {"model": "contenttypes.contenttype", "pk": 189, "fields": {"app_label": "microsite_configuration", "model": "microsite"}}, {"model": "contenttypes.contenttype", "pk": 190, "fields": {"app_label": "microsite_configuration", "model": "micrositehistory"}}, {"model": "contenttypes.contenttype", "pk": 191, "fields": {"app_label": "microsite_configuration", "model": "micrositeorganizationmapping"}}, {"model": "contenttypes.contenttype", "pk": 192, "fields": {"app_label": "microsite_configuration", "model": "micrositetemplate"}}, {"model": "contenttypes.contenttype", "pk": 193, "fields": {"app_label": "rss_proxy", "model": "whitelistedrssurl"}}, {"model": "contenttypes.contenttype", "pk": 194, "fields": {"app_label": "embargo", "model": "embargoedcourse"}}, {"model": "contenttypes.contenttype", "pk": 195, "fields": {"app_label": "embargo", "model": "embargoedstate"}}, {"model": "contenttypes.contenttype", "pk": 196, "fields": {"app_label": "embargo", "model": "restrictedcourse"}}, {"model": "contenttypes.contenttype", "pk": 197, "fields": {"app_label": "embargo", "model": "country"}}, {"model": "contenttypes.contenttype", "pk": 198, "fields": {"app_label": "embargo", "model": "countryaccessrule"}}, {"model": "contenttypes.contenttype", "pk": 199, "fields": {"app_label": "embargo", "model": "courseaccessrulehistory"}}, {"model": "contenttypes.contenttype", "pk": 200, "fields": {"app_label": "embargo", "model": "ipfilter"}}, {"model": "contenttypes.contenttype", "pk": 201, "fields": {"app_label": "course_action_state", "model": "coursererunstate"}}, {"model": "contenttypes.contenttype", "pk": 202, "fields": {"app_label": "mobile_api", "model": "mobileapiconfig"}}, {"model": "contenttypes.contenttype", "pk": 203, "fields": {"app_label": "mobile_api", "model": "appversionconfig"}}, {"model": "contenttypes.contenttype", "pk": 204, "fields": {"app_label": "mobile_api", "model": "ignoremobileavailableflagconfig"}}, {"model": "contenttypes.contenttype", "pk": 205, "fields": {"app_label": "social_django", "model": "usersocialauth"}}, {"model": "contenttypes.contenttype", "pk": 206, "fields": {"app_label": "social_django", "model": "nonce"}}, {"model": "contenttypes.contenttype", "pk": 207, "fields": {"app_label": "social_django", "model": "association"}}, {"model": "contenttypes.contenttype", "pk": 208, "fields": {"app_label": "social_django", "model": "code"}}, {"model": "contenttypes.contenttype", "pk": 209, "fields": {"app_label": "social_django", "model": "partial"}}, {"model": "contenttypes.contenttype", "pk": 210, "fields": {"app_label": "survey", "model": "surveyform"}}, {"model": "contenttypes.contenttype", "pk": 211, "fields": {"app_label": "survey", "model": "surveyanswer"}}, {"model": "contenttypes.contenttype", "pk": 212, "fields": {"app_label": "lms_xblock", "model": "xblockasidesconfig"}}, {"model": "contenttypes.contenttype", "pk": 213, "fields": {"app_label": "problem_builder", "model": "answer"}}, {"model": "contenttypes.contenttype", "pk": 214, "fields": {"app_label": "problem_builder", "model": "share"}}, {"model": "contenttypes.contenttype", "pk": 215, "fields": {"app_label": "submissions", "model": "studentitem"}}, {"model": "contenttypes.contenttype", "pk": 216, "fields": {"app_label": "submissions", "model": "submission"}}, {"model": "contenttypes.contenttype", "pk": 217, "fields": {"app_label": "submissions", "model": "score"}}, {"model": "contenttypes.contenttype", "pk": 218, "fields": {"app_label": "submissions", "model": "scoresummary"}}, {"model": "contenttypes.contenttype", "pk": 219, "fields": {"app_label": "submissions", "model": "scoreannotation"}}, {"model": "contenttypes.contenttype", "pk": 220, "fields": {"app_label": "assessment", "model": "rubric"}}, {"model": "contenttypes.contenttype", "pk": 221, "fields": {"app_label": "assessment", "model": "criterion"}}, {"model": "contenttypes.contenttype", "pk": 222, "fields": {"app_label": "assessment", "model": "criterionoption"}}, {"model": "contenttypes.contenttype", "pk": 223, "fields": {"app_label": "assessment", "model": "assessment"}}, {"model": "contenttypes.contenttype", "pk": 224, "fields": {"app_label": "assessment", "model": "assessmentpart"}}, {"model": "contenttypes.contenttype", "pk": 225, "fields": {"app_label": "assessment", "model": "assessmentfeedbackoption"}}, {"model": "contenttypes.contenttype", "pk": 226, "fields": {"app_label": "assessment", "model": "assessmentfeedback"}}, {"model": "contenttypes.contenttype", "pk": 227, "fields": {"app_label": "assessment", "model": "peerworkflow"}}, {"model": "contenttypes.contenttype", "pk": 228, "fields": {"app_label": "assessment", "model": "peerworkflowitem"}}, {"model": "contenttypes.contenttype", "pk": 229, "fields": {"app_label": "assessment", "model": "trainingexample"}}, {"model": "contenttypes.contenttype", "pk": 230, "fields": {"app_label": "assessment", "model": "studenttrainingworkflow"}}, {"model": "contenttypes.contenttype", "pk": 231, "fields": {"app_label": "assessment", "model": "studenttrainingworkflowitem"}}, {"model": "contenttypes.contenttype", "pk": 232, "fields": {"app_label": "assessment", "model": "staffworkflow"}}, {"model": "contenttypes.contenttype", "pk": 233, "fields": {"app_label": "workflow", "model": "assessmentworkflow"}}, {"model": "contenttypes.contenttype", "pk": 234, "fields": {"app_label": "workflow", "model": "assessmentworkflowstep"}}, {"model": "contenttypes.contenttype", "pk": 235, "fields": {"app_label": "workflow", "model": "assessmentworkflowcancellation"}}, {"model": "contenttypes.contenttype", "pk": 236, "fields": {"app_label": "edxval", "model": "profile"}}, {"model": "contenttypes.contenttype", "pk": 237, "fields": {"app_label": "edxval", "model": "video"}}, {"model": "contenttypes.contenttype", "pk": 238, "fields": {"app_label": "edxval", "model": "coursevideo"}}, {"model": "contenttypes.contenttype", "pk": 239, "fields": {"app_label": "edxval", "model": "encodedvideo"}}, {"model": "contenttypes.contenttype", "pk": 240, "fields": {"app_label": "edxval", "model": "videoimage"}}, {"model": "contenttypes.contenttype", "pk": 241, "fields": {"app_label": "edxval", "model": "videotranscript"}}, {"model": "contenttypes.contenttype", "pk": 242, "fields": {"app_label": "edxval", "model": "transcriptpreference"}}, {"model": "contenttypes.contenttype", "pk": 243, "fields": {"app_label": "edxval", "model": "thirdpartytranscriptcredentialsstate"}}, {"model": "contenttypes.contenttype", "pk": 244, "fields": {"app_label": "course_overviews", "model": "courseoverview"}}, {"model": "contenttypes.contenttype", "pk": 245, "fields": {"app_label": "course_overviews", "model": "courseoverviewtab"}}, {"model": "contenttypes.contenttype", "pk": 246, "fields": {"app_label": "course_overviews", "model": "courseoverviewimageset"}}, {"model": "contenttypes.contenttype", "pk": 247, "fields": {"app_label": "course_overviews", "model": "courseoverviewimageconfig"}}, {"model": "contenttypes.contenttype", "pk": 248, "fields": {"app_label": "course_structures", "model": "coursestructure"}}, {"model": "contenttypes.contenttype", "pk": 249, "fields": {"app_label": "block_structure", "model": "blockstructureconfiguration"}}, {"model": "contenttypes.contenttype", "pk": 250, "fields": {"app_label": "block_structure", "model": "blockstructuremodel"}}, {"model": "contenttypes.contenttype", "pk": 251, "fields": {"app_label": "cors_csrf", "model": "xdomainproxyconfiguration"}}, {"model": "contenttypes.contenttype", "pk": 252, "fields": {"app_label": "commerce", "model": "commerceconfiguration"}}, {"model": "contenttypes.contenttype", "pk": 253, "fields": {"app_label": "credit", "model": "creditprovider"}}, {"model": "contenttypes.contenttype", "pk": 254, "fields": {"app_label": "credit", "model": "creditcourse"}}, {"model": "contenttypes.contenttype", "pk": 255, "fields": {"app_label": "credit", "model": "creditrequirement"}}, {"model": "contenttypes.contenttype", "pk": 256, "fields": {"app_label": "credit", "model": "creditrequirementstatus"}}, {"model": "contenttypes.contenttype", "pk": 257, "fields": {"app_label": "credit", "model": "crediteligibility"}}, {"model": "contenttypes.contenttype", "pk": 258, "fields": {"app_label": "credit", "model": "creditrequest"}}, {"model": "contenttypes.contenttype", "pk": 259, "fields": {"app_label": "credit", "model": "creditconfig"}}, {"model": "contenttypes.contenttype", "pk": 260, "fields": {"app_label": "teams", "model": "courseteam"}}, {"model": "contenttypes.contenttype", "pk": 261, "fields": {"app_label": "teams", "model": "courseteammembership"}}, {"model": "contenttypes.contenttype", "pk": 262, "fields": {"app_label": "xblock_django", "model": "xblockconfiguration"}}, {"model": "contenttypes.contenttype", "pk": 263, "fields": {"app_label": "xblock_django", "model": "xblockstudioconfigurationflag"}}, {"model": "contenttypes.contenttype", "pk": 264, "fields": {"app_label": "xblock_django", "model": "xblockstudioconfiguration"}}, {"model": "contenttypes.contenttype", "pk": 265, "fields": {"app_label": "programs", "model": "programsapiconfig"}}, {"model": "contenttypes.contenttype", "pk": 266, "fields": {"app_label": "catalog", "model": "catalogintegration"}}, {"model": "contenttypes.contenttype", "pk": 267, "fields": {"app_label": "self_paced", "model": "selfpacedconfiguration"}}, {"model": "contenttypes.contenttype", "pk": 268, "fields": {"app_label": "thumbnail", "model": "kvstore"}}, {"model": "contenttypes.contenttype", "pk": 269, "fields": {"app_label": "credentials", "model": "credentialsapiconfig"}}, {"model": "contenttypes.contenttype", "pk": 270, "fields": {"app_label": "milestones", "model": "milestone"}}, {"model": "contenttypes.contenttype", "pk": 271, "fields": {"app_label": "milestones", "model": "milestonerelationshiptype"}}, {"model": "contenttypes.contenttype", "pk": 272, "fields": {"app_label": "milestones", "model": "coursemilestone"}}, {"model": "contenttypes.contenttype", "pk": 273, "fields": {"app_label": "milestones", "model": "coursecontentmilestone"}}, {"model": "contenttypes.contenttype", "pk": 274, "fields": {"app_label": "milestones", "model": "usermilestone"}}, {"model": "contenttypes.contenttype", "pk": 275, "fields": {"app_label": "api_admin", "model": "apiaccessconfig"}}, {"model": "contenttypes.contenttype", "pk": 276, "fields": {"app_label": "api_admin", "model": "catalog"}}, {"model": "contenttypes.contenttype", "pk": 277, "fields": {"app_label": "verified_track_content", "model": "verifiedtrackcohortedcourse"}}, {"model": "contenttypes.contenttype", "pk": 278, "fields": {"app_label": "verified_track_content", "model": "migrateverifiedtrackcohortssetting"}}, {"model": "contenttypes.contenttype", "pk": 279, "fields": {"app_label": "badges", "model": "badgeclass"}}, {"model": "contenttypes.contenttype", "pk": 280, "fields": {"app_label": "badges", "model": "badgeassertion"}}, {"model": "contenttypes.contenttype", "pk": 281, "fields": {"app_label": "badges", "model": "coursecompleteimageconfiguration"}}, {"model": "contenttypes.contenttype", "pk": 282, "fields": {"app_label": "badges", "model": "courseeventbadgesconfiguration"}}, {"model": "contenttypes.contenttype", "pk": 283, "fields": {"app_label": "email_marketing", "model": "emailmarketingconfiguration"}}, {"model": "contenttypes.contenttype", "pk": 284, "fields": {"app_label": "celery_utils", "model": "failedtask"}}, {"model": "contenttypes.contenttype", "pk": 285, "fields": {"app_label": "celery_utils", "model": "chorddata"}}, {"model": "contenttypes.contenttype", "pk": 286, "fields": {"app_label": "crawlers", "model": "crawlersconfig"}}, {"model": "contenttypes.contenttype", "pk": 287, "fields": {"app_label": "waffle_utils", "model": "waffleflagcourseoverridemodel"}}, {"model": "contenttypes.contenttype", "pk": 288, "fields": {"app_label": "schedules", "model": "schedule"}}, {"model": "contenttypes.contenttype", "pk": 289, "fields": {"app_label": "schedules", "model": "scheduleconfig"}}, {"model": "contenttypes.contenttype", "pk": 290, "fields": {"app_label": "schedules", "model": "scheduleexperience"}}, {"model": "contenttypes.contenttype", "pk": 291, "fields": {"app_label": "course_goals", "model": "coursegoal"}}, {"model": "contenttypes.contenttype", "pk": 292, "fields": {"app_label": "completion", "model": "blockcompletion"}}, {"model": "contenttypes.contenttype", "pk": 293, "fields": {"app_label": "experiments", "model": "experimentdata"}}, {"model": "contenttypes.contenttype", "pk": 294, "fields": {"app_label": "experiments", "model": "experimentkeyvalue"}}, {"model": "contenttypes.contenttype", "pk": 295, "fields": {"app_label": "edx_proctoring", "model": "proctoredexam"}}, {"model": "contenttypes.contenttype", "pk": 296, "fields": {"app_label": "edx_proctoring", "model": "proctoredexamreviewpolicy"}}, {"model": "contenttypes.contenttype", "pk": 297, "fields": {"app_label": "edx_proctoring", "model": "proctoredexamreviewpolicyhistory"}}, {"model": "contenttypes.contenttype", "pk": 298, "fields": {"app_label": "edx_proctoring", "model": "proctoredexamstudentattempt"}}, {"model": "contenttypes.contenttype", "pk": 299, "fields": {"app_label": "edx_proctoring", "model": "proctoredexamstudentattempthistory"}}, {"model": "contenttypes.contenttype", "pk": 300, "fields": {"app_label": "edx_proctoring", "model": "proctoredexamstudentallowance"}}, {"model": "contenttypes.contenttype", "pk": 301, "fields": {"app_label": "edx_proctoring", "model": "proctoredexamstudentallowancehistory"}}, {"model": "contenttypes.contenttype", "pk": 302, "fields": {"app_label": "edx_proctoring", "model": "proctoredexamsoftwaresecurereview"}}, {"model": "contenttypes.contenttype", "pk": 303, "fields": {"app_label": "edx_proctoring", "model": "proctoredexamsoftwaresecurereviewhistory"}}, {"model": "contenttypes.contenttype", "pk": 304, "fields": {"app_label": "edx_proctoring", "model": "proctoredexamsoftwaresecurecomment"}}, {"model": "contenttypes.contenttype", "pk": 305, "fields": {"app_label": "organizations", "model": "organization"}}, {"model": "contenttypes.contenttype", "pk": 306, "fields": {"app_label": "organizations", "model": "organizationcourse"}}, {"model": "contenttypes.contenttype", "pk": 307, "fields": {"app_label": "enterprise", "model": "historicalenterprisecustomer"}}, {"model": "contenttypes.contenttype", "pk": 308, "fields": {"app_label": "enterprise", "model": "enterprisecustomer"}}, {"model": "contenttypes.contenttype", "pk": 309, "fields": {"app_label": "enterprise", "model": "enterprisecustomeruser"}}, {"model": "contenttypes.contenttype", "pk": 310, "fields": {"app_label": "enterprise", "model": "pendingenterprisecustomeruser"}}, {"model": "contenttypes.contenttype", "pk": 311, "fields": {"app_label": "enterprise", "model": "pendingenrollment"}}, {"model": "contenttypes.contenttype", "pk": 312, "fields": {"app_label": "enterprise", "model": "enterprisecustomerbrandingconfiguration"}}, {"model": "contenttypes.contenttype", "pk": 313, "fields": {"app_label": "enterprise", "model": "enterprisecustomeridentityprovider"}}, {"model": "contenttypes.contenttype", "pk": 314, "fields": {"app_label": "enterprise", "model": "historicalenterprisecustomerentitlement"}}, {"model": "contenttypes.contenttype", "pk": 315, "fields": {"app_label": "enterprise", "model": "enterprisecustomerentitlement"}}, {"model": "contenttypes.contenttype", "pk": 316, "fields": {"app_label": "enterprise", "model": "historicalenterprisecourseenrollment"}}, {"model": "contenttypes.contenttype", "pk": 317, "fields": {"app_label": "enterprise", "model": "enterprisecourseenrollment"}}, {"model": "contenttypes.contenttype", "pk": 318, "fields": {"app_label": "enterprise", "model": "historicalenterprisecustomercatalog"}}, {"model": "contenttypes.contenttype", "pk": 319, "fields": {"app_label": "enterprise", "model": "enterprisecustomercatalog"}}, {"model": "contenttypes.contenttype", "pk": 320, "fields": {"app_label": "enterprise", "model": "historicalenrollmentnotificationemailtemplate"}}, {"model": "contenttypes.contenttype", "pk": 321, "fields": {"app_label": "enterprise", "model": "enrollmentnotificationemailtemplate"}}, {"model": "contenttypes.contenttype", "pk": 322, "fields": {"app_label": "enterprise", "model": "enterprisecustomerreportingconfiguration"}}, {"model": "contenttypes.contenttype", "pk": 323, "fields": {"app_label": "consent", "model": "historicaldatasharingconsent"}}, {"model": "contenttypes.contenttype", "pk": 324, "fields": {"app_label": "consent", "model": "datasharingconsent"}}, {"model": "contenttypes.contenttype", "pk": 325, "fields": {"app_label": "integrated_channel", "model": "learnerdatatransmissionaudit"}}, {"model": "contenttypes.contenttype", "pk": 326, "fields": {"app_label": "integrated_channel", "model": "catalogtransmissionaudit"}}, {"model": "contenttypes.contenttype", "pk": 327, "fields": {"app_label": "degreed", "model": "degreedglobalconfiguration"}}, {"model": "contenttypes.contenttype", "pk": 328, "fields": {"app_label": "degreed", "model": "historicaldegreedenterprisecustomerconfiguration"}}, {"model": "contenttypes.contenttype", "pk": 329, "fields": {"app_label": "degreed", "model": "degreedenterprisecustomerconfiguration"}}, {"model": "contenttypes.contenttype", "pk": 330, "fields": {"app_label": "degreed", "model": "degreedlearnerdatatransmissionaudit"}}, {"model": "contenttypes.contenttype", "pk": 331, "fields": {"app_label": "sap_success_factors", "model": "sapsuccessfactorsglobalconfiguration"}}, {"model": "contenttypes.contenttype", "pk": 332, "fields": {"app_label": "sap_success_factors", "model": "historicalsapsuccessfactorsenterprisecustomerconfiguration"}}, {"model": "contenttypes.contenttype", "pk": 333, "fields": {"app_label": "sap_success_factors", "model": "sapsuccessfactorsenterprisecustomerconfiguration"}}, {"model": "contenttypes.contenttype", "pk": 334, "fields": {"app_label": "sap_success_factors", "model": "sapsuccessfactorslearnerdatatransmissionaudit"}}, {"model": "contenttypes.contenttype", "pk": 335, "fields": {"app_label": "ccx", "model": "customcourseforedx"}}, {"model": "contenttypes.contenttype", "pk": 336, "fields": {"app_label": "ccx", "model": "ccxfieldoverride"}}, {"model": "contenttypes.contenttype", "pk": 337, "fields": {"app_label": "ccxcon", "model": "ccxcon"}}, {"model": "contenttypes.contenttype", "pk": 338, "fields": {"app_label": "coursewarehistoryextended", "model": "studentmodulehistoryextended"}}, {"model": "contenttypes.contenttype", "pk": 339, "fields": {"app_label": "contentstore", "model": "videouploadconfig"}}, {"model": "contenttypes.contenttype", "pk": 340, "fields": {"app_label": "contentstore", "model": "pushnotificationconfig"}}, {"model": "contenttypes.contenttype", "pk": 341, "fields": {"app_label": "contentstore", "model": "newassetspageflag"}}, {"model": "contenttypes.contenttype", "pk": 342, "fields": {"app_label": "contentstore", "model": "coursenewassetspageflag"}}, {"model": "contenttypes.contenttype", "pk": 343, "fields": {"app_label": "course_creators", "model": "coursecreator"}}, {"model": "contenttypes.contenttype", "pk": 344, "fields": {"app_label": "xblock_config", "model": "studioconfig"}}, {"model": "contenttypes.contenttype", "pk": 345, "fields": {"app_label": "xblock_config", "model": "courseeditltifieldsenabledflag"}}, {"model": "contenttypes.contenttype", "pk": 346, "fields": {"app_label": "tagging", "model": "tagcategories"}}, {"model": "contenttypes.contenttype", "pk": 347, "fields": {"app_label": "tagging", "model": "tagavailablevalues"}}, {"model": "contenttypes.contenttype", "pk": 348, "fields": {"app_label": "user_tasks", "model": "usertaskstatus"}}, {"model": "contenttypes.contenttype", "pk": 349, "fields": {"app_label": "user_tasks", "model": "usertaskartifact"}}, {"model": "contenttypes.contenttype", "pk": 350, "fields": {"app_label": "entitlements", "model": "courseentitlementpolicy"}}, {"model": "contenttypes.contenttype", "pk": 351, "fields": {"app_label": "entitlements", "model": "courseentitlementsupportdetail"}}, {"model": "contenttypes.contenttype", "pk": 352, "fields": {"app_label": "integrated_channel", "model": "contentmetadataitemtransmission"}}, {"model": "contenttypes.contenttype", "pk": 353, "fields": {"app_label": "video_config", "model": "transcriptmigrationsetting"}}, {"model": "contenttypes.contenttype", "pk": 354, "fields": {"app_label": "verify_student", "model": "ssoverification"}}, {"model": "contenttypes.contenttype", "pk": 355, "fields": {"app_label": "user_api", "model": "userretirementstatus"}}, {"model": "contenttypes.contenttype", "pk": 356, "fields": {"app_label": "user_api", "model": "retirementstate"}}, {"model": "contenttypes.contenttype", "pk": 357, "fields": {"app_label": "consent", "model": "datasharingconsenttextoverrides"}}, {"model": "contenttypes.contenttype", "pk": 358, "fields": {"app_label": "user_api", "model": "userretirementrequest"}}, {"model": "contenttypes.contenttype", "pk": 359, "fields": {"app_label": "django_comment_common", "model": "discussionsidmapping"}}, {"model": "contenttypes.contenttype", "pk": 360, "fields": {"app_label": "oauth_dispatch", "model": "scopedapplication"}}, {"model": "contenttypes.contenttype", "pk": 361, "fields": {"app_label": "oauth_dispatch", "model": "scopedapplicationorganization"}}, {"model": "contenttypes.contenttype", "pk": 362, "fields": {"app_label": "user_api", "model": "userretirementpartnerreportingstatus"}}, {"model": "contenttypes.contenttype", "pk": 363, "fields": {"app_label": "verify_student", "model": "manualverification"}}, {"model": "contenttypes.contenttype", "pk": 364, "fields": {"app_label": "oauth_dispatch", "model": "applicationorganization"}}, {"model": "contenttypes.contenttype", "pk": 365, "fields": {"app_label": "oauth_dispatch", "model": "applicationaccess"}}, {"model": "contenttypes.contenttype", "pk": 366, "fields": {"app_label": "video_config", "model": "migrationenqueuedcourse"}}, {"model": "contenttypes.contenttype", "pk": 367, "fields": {"app_label": "xapi", "model": "xapilrsconfiguration"}}, {"model": "contenttypes.contenttype", "pk": 368, "fields": {"app_label": "credentials", "model": "notifycredentialsconfig"}}, {"model": "contenttypes.contenttype", "pk": 369, "fields": {"app_label": "video_config", "model": "updatedcoursevideos"}}, {"model": "contenttypes.contenttype", "pk": 370, "fields": {"app_label": "video_config", "model": "videothumbnailsetting"}}, {"model": "contenttypes.contenttype", "pk": 371, "fields": {"app_label": "course_duration_limits", "model": "coursedurationlimitconfig"}}, {"model": "contenttypes.contenttype", "pk": 372, "fields": {"app_label": "content_type_gating", "model": "contenttypegatingconfig"}}, {"model": "contenttypes.contenttype", "pk": 373, "fields": {"app_label": "grades", "model": "persistentsubsectiongradeoverridehistory"}}, {"model": "contenttypes.contenttype", "pk": 374, "fields": {"app_label": "student", "model": "accountrecovery"}}, {"model": "contenttypes.contenttype", "pk": 375, "fields": {"app_label": "enterprise", "model": "enterprisecustomertype"}}, {"model": "contenttypes.contenttype", "pk": 376, "fields": {"app_label": "student", "model": "pendingsecondaryemailchange"}}, {"model": "contenttypes.contenttype", "pk": 377, "fields": {"app_label": "lti_provider", "model": "lticonsumer"}}, {"model": "contenttypes.contenttype", "pk": 378, "fields": {"app_label": "lti_provider", "model": "gradedassignment"}}, {"model": "contenttypes.contenttype", "pk": 379, "fields": {"app_label": "lti_provider", "model": "ltiuser"}}, {"model": "contenttypes.contenttype", "pk": 380, "fields": {"app_label": "lti_provider", "model": "outcomeservice"}}, {"model": "contenttypes.contenttype", "pk": 381, "fields": {"app_label": "enterprise", "model": "systemwideenterpriserole"}}, {"model": "contenttypes.contenttype", "pk": 382, "fields": {"app_label": "enterprise", "model": "systemwideenterpriseuserroleassignment"}}, {"model": "contenttypes.contenttype", "pk": 383, "fields": {"app_label": "announcements", "model": "announcement"}}, {"model": "contenttypes.contenttype", "pk": 753, "fields": {"app_label": "enterprise", "model": "enterprisefeatureuserroleassignment"}}, {"model": "contenttypes.contenttype", "pk": 754, "fields": {"app_label": "enterprise", "model": "enterprisefeaturerole"}}, {"model": "contenttypes.contenttype", "pk": 755, "fields": {"app_label": "program_enrollments", "model": "programenrollment"}}, {"model": "contenttypes.contenttype", "pk": 756, "fields": {"app_label": "program_enrollments", "model": "historicalprogramenrollment"}}, {"model": "contenttypes.contenttype", "pk": 757, "fields": {"app_label": "program_enrollments", "model": "programcourseenrollment"}}, {"model": "contenttypes.contenttype", "pk": 758, "fields": {"app_label": "program_enrollments", "model": "historicalprogramcourseenrollment"}}, {"model": "contenttypes.contenttype", "pk": 759, "fields": {"app_label": "edx_when", "model": "contentdate"}}, {"model": "contenttypes.contenttype", "pk": 760, "fields": {"app_label": "edx_when", "model": "userdate"}}, {"model": "contenttypes.contenttype", "pk": 761, "fields": {"app_label": "edx_when", "model": "datepolicy"}}, {"model": "contenttypes.contenttype", "pk": 762, "fields": {"app_label": "student", "model": "historicalcourseenrollment"}}, {"model": "contenttypes.contenttype", "pk": 763, "fields": {"app_label": "cornerstone", "model": "cornerstoneglobalconfiguration"}}, {"model": "contenttypes.contenttype", "pk": 764, "fields": {"app_label": "cornerstone", "model": "historicalcornerstoneenterprisecustomerconfiguration"}}, {"model": "contenttypes.contenttype", "pk": 765, "fields": {"app_label": "cornerstone", "model": "cornerstonelearnerdatatransmissionaudit"}}, {"model": "contenttypes.contenttype", "pk": 766, "fields": {"app_label": "cornerstone", "model": "cornerstoneenterprisecustomerconfiguration"}}, {"model": "contenttypes.contenttype", "pk": 767, "fields": {"app_label": "discounts", "model": "discountrestrictionconfig"}}, {"model": "contenttypes.contenttype", "pk": 768, "fields": {"app_label": "entitlements", "model": "historicalcourseentitlement"}}, {"model": "contenttypes.contenttype", "pk": 769, "fields": {"app_label": "organizations", "model": "historicalorganization"}}, {"model": "contenttypes.contenttype", "pk": 770, "fields": {"app_label": "grades", "model": "historicalpersistentsubsectiongradeoverride"}}, {"model": "sites.site", "pk": 1, "fields": {"domain": "example.com", "name": "example.com"}}, {"model": "bulk_email.courseemailtemplate", "pk": 1, "fields": {"html_template": "<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Transitional//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd'><html xmlns:fb='http://www.facebook.com/2008/fbml' xmlns:og='http://opengraph.org/schema/'> <head><meta property='og:title' content='Update from {course_title}'/><meta property='fb:page_id' content='43929265776' /> <meta http-equiv='Content-Type' content='text/html; charset=UTF-8'> <title>Update from {course_title}</title> </head> <body leftmargin='0' marginwidth='0' topmargin='0' marginheight='0' offset='0' style='margin: 0;padding: 0;background-color: #ffffff;'> <center> <table align='center' border='0' cellpadding='0' cellspacing='0' height='100%' width='100%' id='bodyTable' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;margin: 0;padding: 0;background-color: #ffffff;height: 100% !important;width: 100% !important;'> <tr> <td align='center' valign='top' id='bodyCell' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;margin: 0;padding: 0;border-top: 0;height: 100% !important;width: 100% !important;'> <!-- BEGIN TEMPLATE // --> <table border='0' cellpadding='0' cellspacing='0' width='100%' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tr> <td align='center' valign='top' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <!-- BEGIN PREHEADER // --> <table border='0' cellpadding='0' cellspacing='0' width='100%' id='templatePreheader' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;background-color: #fcfcfc;border-top: 0;border-bottom: 0;'> <tr> <td align='center' valign='top' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <table border='0' cellpadding='0' cellspacing='0' width='600' class='templateContainer' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tr> <td valign='top' class='preheaderContainer' style='padding-top: 9px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'><table border='0' cellpadding='0' cellspacing='0' width='100%' class='mcnTextBlock' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody class='mcnTextBlockOuter'> <tr> <td valign='top' class='mcnTextBlockInner' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <table align='left' border='0' cellpadding='0' cellspacing='0' width='366' class='mcnTextContentContainer' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody><tr> <td valign='top' class='mcnTextContent' style='padding-top: 9px;padding-left: 18px;padding-bottom: 9px;padding-right: 0;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;color: #606060;font-family: Helvetica;font-size: 11px;line-height: 125%;text-align: left;'> <br> </td> </tr> </tbody></table> </td> </tr> </tbody></table></td> </tr> </table> </td> </tr> </table> <!-- // END PREHEADER --> </td> </tr> <tr> <td align='center' valign='top' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <!-- BEGIN HEADER // --> <table border='0' cellpadding='0' cellspacing='0' width='100%' id='templateHeader' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;background-color: #fcfcfc;border-top: 0;border-bottom: 0;'> <tr> <td align='center' valign='top' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <table border='0' cellpadding='0' cellspacing='0' width='600' class='templateContainer' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tr> <td valign='top' class='headerContainer' style='padding-top: 10px;padding-right: 18px;padding-bottom: 10px;padding-left: 18px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'><table border='0' cellpadding='0' cellspacing='0' width='100%' class='mcnImageBlock' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody class='mcnImageBlockOuter'> <tr> <td valign='top' style='padding: 9px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;' class='mcnImageBlockInner'> <table align='left' width='100%' border='0' cellpadding='0' cellspacing='0' class='mcnImageContentContainer' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody><tr> <td class='mcnImageContent' valign='top' style='padding-right: 9px;padding-left: 9px;padding-top: 0;padding-bottom: 0;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <a href='http://edx.org' title='' class='' target='_self' style='word-wrap: break-word !important;'> <img align='left' alt='edX' src='http://courses.edx.org/static/images/bulk_email/edXHeaderImage.jpg' width='564.0000152587891' style='max-width: 600px;padding-bottom: 0;display: inline !important;vertical-align: bottom;border: 0;line-height: 100%;outline: none;text-decoration: none;height: auto !important;' class='mcnImage'> </a> </td> </tr> </tbody></table> </td> </tr> </tbody></table><table border='0' cellpadding='0' cellspacing='0' width='100%' class='mcnTextBlock' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody class='mcnTextBlockOuter'> <tr> <td valign='top' class='mcnTextBlockInner' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <table align='left' border='0' cellpadding='0' cellspacing='0' width='599' class='mcnTextContentContainer' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody><tr> <td valign='top' class='mcnTextContent' style='padding-top: 9px;padding-right: 18px;padding-bottom: 9px;padding-left: 18px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;color: #606060;font-family: Helvetica;font-size: 15px;line-height: 150%;text-align: left;'> <div style='text-align: right;'><span style='font-size:11px;'><span style='color:#00a0e3;'>Connect with edX:</span></span> <a href='http://facebook.com/edxonline' target='_blank' style='color: #6DC6DD;font-weight: normal;text-decoration: underline;word-wrap: break-word !important;'><img align='none' height='16' src='http://courses.edx.org/static/images/bulk_email/FacebookIcon.png' style='width: 16px;height: 16px;border: 0;line-height: 100%;outline: none;text-decoration: none;' width='16'></a> <a href='http://twitter.com/edxonline' target='_blank' style='color: #6DC6DD;font-weight: normal;text-decoration: underline;word-wrap: break-word !important;'><img align='none' height='16' src='http://courses.edx.org/static/images/bulk_email/TwitterIcon.png' style='width: 16px;height: 16px;border: 0;line-height: 100%;outline: none;text-decoration: none;' width='16'></a> <a href='https://plus.google.com/108235383044095082735' target='_blank' style='color: #6DC6DD;font-weight: normal;text-decoration: underline;word-wrap: break-word !important;'><img align='none' height='16' src='http://courses.edx.org/static/images/bulk_email/GooglePlusIcon.png' style='width: 16px;height: 16px;border: 0;line-height: 100%;outline: none;text-decoration: none;' width='16'></a> <a href='http://www.meetup.com/edX-Communities/' target='_blank' style='color: #6DC6DD;font-weight: normal;text-decoration: underline;word-wrap: break-word !important;'><img align='none' height='16' src='http://courses.edx.org/static/images/bulk_email/MeetupIcon.png' style='width: 16px;height: 16px;border: 0;line-height: 100%;outline: none;text-decoration: none;' width='16'></a></div> </td> </tr> </tbody></table> </td> </tr> </tbody></table></td> </tr> </table> </td> </tr> </table> <!-- // END HEADER --> </td> </tr> <tr> <td align='center' valign='top' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <!-- BEGIN BODY // --> <table border='0' cellpadding='0' cellspacing='0' width='100%' id='templateBody' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;background-color: #fcfcfc;border-top: 0;border-bottom: 0;'> <tr> <td align='center' valign='top' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <table border='0' cellpadding='0' cellspacing='0' width='600' class='templateContainer' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tr> <td valign='top' class='bodyContainer' style='padding-top: 10px;padding-right: 18px;padding-bottom: 10px;padding-left: 18px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'><table border='0' cellpadding='0' cellspacing='0' width='100%' class='mcnCaptionBlock' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody class='mcnCaptionBlockOuter'> <tr> <td class='mcnCaptionBlockInner' valign='top' style='padding: 9px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <table border='0' cellpadding='0' cellspacing='0' class='mcnCaptionLeftContentOuter' width='100%' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody><tr> <td valign='top' class='mcnCaptionLeftContentInner' style='padding: 0 9px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <table align='right' border='0' cellpadding='0' cellspacing='0' class='mcnCaptionLeftImageContentContainer' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody><tr> <td class='mcnCaptionLeftImageContent' valign='top' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <img alt='' src='{course_image_url}' width='176' style='max-width: 180px;border: 0;line-height: 100%;outline: none;text-decoration: none;vertical-align: bottom;height: auto !important;' class='mcnImage'> </td> </tr> </tbody></table> <table class='mcnCaptionLeftTextContentContainer' align='left' border='0' cellpadding='0' cellspacing='0' width='352' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody><tr> <td valign='top' class='mcnTextContent' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;color: #606060;font-family: Helvetica;font-size: 14px;line-height: 150%;text-align: left;'> <h3 class='null' style='display: block;font-family: Helvetica;font-size: 18px;font-style: normal;font-weight: bold;line-height: 125%;letter-spacing: -.5px;margin: 0;text-align: left;color: #606060 !important;'><strong style='font-size: 22px;'>{course_title}</strong><br></h3><br> </td> </tr> </tbody></table> </td> </tr></tbody></table> </td> </tr> </tbody></table><table border='0' cellpadding='0' cellspacing='0' width='100%' class='mcnTextBlock' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody class='mcnTextBlockOuter'> <tr> <td valign='top' class='mcnTextBlockInner' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <table align='left' border='0' cellpadding='0' cellspacing='0' width='600' class='mcnTextContentContainer' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody><tr> <td valign='top' class='mcnTextContent' style='padding-top: 9px;padding-right: 18px;padding-bottom: 9px;padding-left: 18px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;color: #606060;font-family: Helvetica;font-size: 14px;line-height: 150%;text-align: left;'> {{message_body}} </td> </tr> </tbody></table> </td> </tr> </tbody></table><table border='0' cellpadding='0' cellspacing='0' width='100%' class='mcnDividerBlock' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody class='mcnDividerBlockOuter'> <tr> <td class='mcnDividerBlockInner' style='padding: 18px 18px 3px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <table class='mcnDividerContent' border='0' cellpadding='0' cellspacing='0' width='100%' style='border-top-width: 1px;border-top-style: solid;border-top-color: #666666;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody><tr> <td style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <span></span> </td> </tr> </tbody></table> </td> </tr> </tbody></table><table border='0' cellpadding='0' cellspacing='0' width='100%' class='mcnTextBlock' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody class='mcnTextBlockOuter'> <tr> <td valign='top' class='mcnTextBlockInner' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <table align='left' border='0' cellpadding='0' cellspacing='0' width='600' class='mcnTextContentContainer' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody><tr> <td valign='top' class='mcnTextContent' style='padding-top: 9px;padding-right: 18px;padding-bottom: 9px;padding-left: 18px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;color: #606060;font-family: Helvetica;font-size: 14px;line-height: 150%;text-align: left;'> <div style='text-align: right;'><a href='http://facebook.com/edxonline' target='_blank' style='color: #2f73bc;font-weight: normal;text-decoration: underline;word-wrap: break-word !important;'><img align='none' height='16' src='http://courses.edx.org/static/images/bulk_email/FacebookIcon.png' style='width: 16px;height: 16px;border: 0;line-height: 100%;outline: none;text-decoration: none;' width='16'></a> <a href='http://twitter.com/edxonline' target='_blank' style='color: #2f73bc;font-weight: normal;text-decoration: underline;word-wrap: break-word !important;'><img align='none' height='16' src='http://courses.edx.org/static/images/bulk_email/TwitterIcon.png' style='width: 16px;height: 16px;border: 0;line-height: 100%;outline: none;text-decoration: none;' width='16'></a> <a href='https://plus.google.com/108235383044095082735' target='_blank' style='color: #2f73bc;font-weight: normal;text-decoration: underline;word-wrap: break-word !important;'><img align='none' height='16' src='http://courses.edx.org/static/images/bulk_email/GooglePlusIcon.png' style='width: 16px;height: 16px;border: 0;line-height: 100%;outline: none;text-decoration: none;' width='16'></a> <a href='http://www.meetup.com/edX-Communities/' target='_blank' style='color: #2f73bc;font-weight: normal;text-decoration: underline;word-wrap: break-word !important;'><img align='none' height='16' src='http://courses.edx.org/static/images/bulk_email/MeetupIcon.png' style='width: 16px;height: 16px;border: 0;line-height: 100%;outline: none;text-decoration: none;' width='16'></a></div> </td> </tr> </tbody></table> </td> </tr> </tbody></table></td> </tr> </table> </td> </tr> </table> <!-- // END BODY --> </td> </tr> <tr> <td align='center' valign='top' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <!-- BEGIN FOOTER // --> <table border='0' cellpadding='0' cellspacing='0' width='100%' id='templateFooter' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;background-color: #9FCFE8;border-top: 0;border-bottom: 0;'> <tr> <td align='center' valign='top' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <table border='0' cellpadding='0' cellspacing='0' width='600' class='templateContainer' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tr> <td valign='top' class='footerContainer' style='padding-top: 10px;padding-right: 18px;padding-bottom: 10px;padding-left: 18px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'><table border='0' cellpadding='0' cellspacing='0' width='100%' class='mcnTextBlock' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody class='mcnTextBlockOuter'> <tr> <td valign='top' class='mcnTextBlockInner' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <table align='left' border='0' cellpadding='0' cellspacing='0' width='600' class='mcnTextContentContainer' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody><tr> <td valign='top' class='mcnTextContent' style='padding-top: 9px;padding-right: 18px;padding-bottom: 9px;padding-left: 18px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;color: #f2f2f2;font-family: Helvetica;font-size: 11px;line-height: 125%;text-align: left;'> <em>Copyright \u00a9 2013 edX, All rights reserved.</em><br><br><br> <b>Our mailing address is:</b><br> edX<br> 11 Cambridge Center, Suite 101<br> Cambridge, MA, USA 02142<br><br><br>This email was automatically sent from {platform_name}. <br>You are receiving this email at address {email} because you are enrolled in <a href='{course_url}'>{course_title}</a>.<br>To stop receiving email like this, update your course email settings <a href='{email_settings_url}'>here</a>. <br> </td> </tr> </tbody></table> </td> </tr> </tbody></table></td> </tr> </table> </td> </tr> </table> <!-- // END FOOTER --> </td> </tr> </table> <!-- // END TEMPLATE --> </td> </tr> </table> </center> </body> </body> </html>", "plain_template": "{course_title}\n\n{{message_body}}\r\n----\r\nCopyright 2013 edX, All rights reserved.\r\n----\r\nConnect with edX:\r\nFacebook (http://facebook.com/edxonline)\r\nTwitter (http://twitter.com/edxonline)\r\nGoogle+ (https://plus.google.com/108235383044095082735)\r\nMeetup (http://www.meetup.com/edX-Communities/)\r\n----\r\nThis email was automatically sent from {platform_name}.\r\nYou are receiving this email at address {email} because you are enrolled in {course_title}\r\n(URL: {course_url} ).\r\nTo stop receiving email like this, update your course email settings at {email_settings_url}.\r\n", "name": null}}, {"model": "bulk_email.courseemailtemplate", "pk": 2, "fields": {"html_template": "<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Transitional//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd'><html xmlns:fb='http://www.facebook.com/2008/fbml' xmlns:og='http://opengraph.org/schema/'> <head><meta property='og:title' content='Update from {course_title}'/><meta property='fb:page_id' content='43929265776' /> <meta http-equiv='Content-Type' content='text/html; charset=UTF-8'> THIS IS A BRANDED HTML TEMPLATE <title>Update from {course_title}</title> </head> <body leftmargin='0' marginwidth='0' topmargin='0' marginheight='0' offset='0' style='margin: 0;padding: 0;background-color: #ffffff;'> <center> <table align='center' border='0' cellpadding='0' cellspacing='0' height='100%' width='100%' id='bodyTable' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;margin: 0;padding: 0;background-color: #ffffff;height: 100% !important;width: 100% !important;'> <tr> <td align='center' valign='top' id='bodyCell' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;margin: 0;padding: 0;border-top: 0;height: 100% !important;width: 100% !important;'> <!-- BEGIN TEMPLATE // --> <table border='0' cellpadding='0' cellspacing='0' width='100%' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tr> <td align='center' valign='top' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <!-- BEGIN PREHEADER // --> <table border='0' cellpadding='0' cellspacing='0' width='100%' id='templatePreheader' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;background-color: #fcfcfc;border-top: 0;border-bottom: 0;'> <tr> <td align='center' valign='top' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <table border='0' cellpadding='0' cellspacing='0' width='600' class='templateContainer' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tr> <td valign='top' class='preheaderContainer' style='padding-top: 9px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'><table border='0' cellpadding='0' cellspacing='0' width='100%' class='mcnTextBlock' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody class='mcnTextBlockOuter'> <tr> <td valign='top' class='mcnTextBlockInner' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <table align='left' border='0' cellpadding='0' cellspacing='0' width='366' class='mcnTextContentContainer' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody><tr> <td valign='top' class='mcnTextContent' style='padding-top: 9px;padding-left: 18px;padding-bottom: 9px;padding-right: 0;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;color: #606060;font-family: Helvetica;font-size: 11px;line-height: 125%;text-align: left;'> <br> </td> </tr> </tbody></table> </td> </tr> </tbody></table></td> </tr> </table> </td> </tr> </table> <!-- // END PREHEADER --> </td> </tr> <tr> <td align='center' valign='top' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <!-- BEGIN HEADER // --> <table border='0' cellpadding='0' cellspacing='0' width='100%' id='templateHeader' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;background-color: #fcfcfc;border-top: 0;border-bottom: 0;'> <tr> <td align='center' valign='top' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <table border='0' cellpadding='0' cellspacing='0' width='600' class='templateContainer' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tr> <td valign='top' class='headerContainer' style='padding-top: 10px;padding-right: 18px;padding-bottom: 10px;padding-left: 18px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'><table border='0' cellpadding='0' cellspacing='0' width='100%' class='mcnImageBlock' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody class='mcnImageBlockOuter'> <tr> <td valign='top' style='padding: 9px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;' class='mcnImageBlockInner'> <table align='left' width='100%' border='0' cellpadding='0' cellspacing='0' class='mcnImageContentContainer' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody><tr> <td class='mcnImageContent' valign='top' style='padding-right: 9px;padding-left: 9px;padding-top: 0;padding-bottom: 0;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <a href='http://edx.org' title='' class='' target='_self' style='word-wrap: break-word !important;'> <img align='left' alt='edX' src='http://courses.edx.org/static/images/bulk_email/edXHeaderImage.jpg' width='564.0000152587891' style='max-width: 600px;padding-bottom: 0;display: inline !important;vertical-align: bottom;border: 0;line-height: 100%;outline: none;text-decoration: none;height: auto !important;' class='mcnImage'> </a> </td> </tr> </tbody></table> </td> </tr> </tbody></table><table border='0' cellpadding='0' cellspacing='0' width='100%' class='mcnTextBlock' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody class='mcnTextBlockOuter'> <tr> <td valign='top' class='mcnTextBlockInner' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <table align='left' border='0' cellpadding='0' cellspacing='0' width='599' class='mcnTextContentContainer' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody><tr> <td valign='top' class='mcnTextContent' style='padding-top: 9px;padding-right: 18px;padding-bottom: 9px;padding-left: 18px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;color: #606060;font-family: Helvetica;font-size: 15px;line-height: 150%;text-align: left;'> <div style='text-align: right;'><span style='font-size:11px;'><span style='color:#00a0e3;'>Connect with edX:</span></span> <a href='http://facebook.com/edxonline' target='_blank' style='color: #6DC6DD;font-weight: normal;text-decoration: underline;word-wrap: break-word !important;'><img align='none' height='16' src='http://courses.edx.org/static/images/bulk_email/FacebookIcon.png' style='width: 16px;height: 16px;border: 0;line-height: 100%;outline: none;text-decoration: none;' width='16'></a> <a href='http://twitter.com/edxonline' target='_blank' style='color: #6DC6DD;font-weight: normal;text-decoration: underline;word-wrap: break-word !important;'><img align='none' height='16' src='http://courses.edx.org/static/images/bulk_email/TwitterIcon.png' style='width: 16px;height: 16px;border: 0;line-height: 100%;outline: none;text-decoration: none;' width='16'></a> <a href='https://plus.google.com/108235383044095082735' target='_blank' style='color: #6DC6DD;font-weight: normal;text-decoration: underline;word-wrap: break-word !important;'><img align='none' height='16' src='http://courses.edx.org/static/images/bulk_email/GooglePlusIcon.png' style='width: 16px;height: 16px;border: 0;line-height: 100%;outline: none;text-decoration: none;' width='16'></a> <a href='http://www.meetup.com/edX-Communities/' target='_blank' style='color: #6DC6DD;font-weight: normal;text-decoration: underline;word-wrap: break-word !important;'><img align='none' height='16' src='http://courses.edx.org/static/images/bulk_email/MeetupIcon.png' style='width: 16px;height: 16px;border: 0;line-height: 100%;outline: none;text-decoration: none;' width='16'></a></div> </td> </tr> </tbody></table> </td> </tr> </tbody></table></td> </tr> </table> </td> </tr> </table> <!-- // END HEADER --> </td> </tr> <tr> <td align='center' valign='top' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <!-- BEGIN BODY // --> <table border='0' cellpadding='0' cellspacing='0' width='100%' id='templateBody' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;background-color: #fcfcfc;border-top: 0;border-bottom: 0;'> <tr> <td align='center' valign='top' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <table border='0' cellpadding='0' cellspacing='0' width='600' class='templateContainer' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tr> <td valign='top' class='bodyContainer' style='padding-top: 10px;padding-right: 18px;padding-bottom: 10px;padding-left: 18px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'><table border='0' cellpadding='0' cellspacing='0' width='100%' class='mcnCaptionBlock' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody class='mcnCaptionBlockOuter'> <tr> <td class='mcnCaptionBlockInner' valign='top' style='padding: 9px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <table border='0' cellpadding='0' cellspacing='0' class='mcnCaptionLeftContentOuter' width='100%' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody><tr> <td valign='top' class='mcnCaptionLeftContentInner' style='padding: 0 9px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <table align='right' border='0' cellpadding='0' cellspacing='0' class='mcnCaptionLeftImageContentContainer' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody><tr> <td class='mcnCaptionLeftImageContent' valign='top' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <img alt='' src='{course_image_url}' width='176' style='max-width: 180px;border: 0;line-height: 100%;outline: none;text-decoration: none;vertical-align: bottom;height: auto !important;' class='mcnImage'> </td> </tr> </tbody></table> <table class='mcnCaptionLeftTextContentContainer' align='left' border='0' cellpadding='0' cellspacing='0' width='352' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody><tr> <td valign='top' class='mcnTextContent' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;color: #606060;font-family: Helvetica;font-size: 14px;line-height: 150%;text-align: left;'> <h3 class='null' style='display: block;font-family: Helvetica;font-size: 18px;font-style: normal;font-weight: bold;line-height: 125%;letter-spacing: -.5px;margin: 0;text-align: left;color: #606060 !important;'><strong style='font-size: 22px;'>{course_title}</strong><br></h3><br> </td> </tr> </tbody></table> </td> </tr></tbody></table> </td> </tr> </tbody></table><table border='0' cellpadding='0' cellspacing='0' width='100%' class='mcnTextBlock' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody class='mcnTextBlockOuter'> <tr> <td valign='top' class='mcnTextBlockInner' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <table align='left' border='0' cellpadding='0' cellspacing='0' width='600' class='mcnTextContentContainer' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody><tr> <td valign='top' class='mcnTextContent' style='padding-top: 9px;padding-right: 18px;padding-bottom: 9px;padding-left: 18px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;color: #606060;font-family: Helvetica;font-size: 14px;line-height: 150%;text-align: left;'> {{message_body}} </td> </tr> </tbody></table> </td> </tr> </tbody></table><table border='0' cellpadding='0' cellspacing='0' width='100%' class='mcnDividerBlock' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody class='mcnDividerBlockOuter'> <tr> <td class='mcnDividerBlockInner' style='padding: 18px 18px 3px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <table class='mcnDividerContent' border='0' cellpadding='0' cellspacing='0' width='100%' style='border-top-width: 1px;border-top-style: solid;border-top-color: #666666;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody><tr> <td style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <span></span> </td> </tr> </tbody></table> </td> </tr> </tbody></table><table border='0' cellpadding='0' cellspacing='0' width='100%' class='mcnTextBlock' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody class='mcnTextBlockOuter'> <tr> <td valign='top' class='mcnTextBlockInner' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <table align='left' border='0' cellpadding='0' cellspacing='0' width='600' class='mcnTextContentContainer' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody><tr> <td valign='top' class='mcnTextContent' style='padding-top: 9px;padding-right: 18px;padding-bottom: 9px;padding-left: 18px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;color: #606060;font-family: Helvetica;font-size: 14px;line-height: 150%;text-align: left;'> <div style='text-align: right;'><a href='http://facebook.com/edxonline' target='_blank' style='color: #2f73bc;font-weight: normal;text-decoration: underline;word-wrap: break-word !important;'><img align='none' height='16' src='http://courses.edx.org/static/images/bulk_email/FacebookIcon.png' style='width: 16px;height: 16px;border: 0;line-height: 100%;outline: none;text-decoration: none;' width='16'></a> <a href='http://twitter.com/edxonline' target='_blank' style='color: #2f73bc;font-weight: normal;text-decoration: underline;word-wrap: break-word !important;'><img align='none' height='16' src='http://courses.edx.org/static/images/bulk_email/TwitterIcon.png' style='width: 16px;height: 16px;border: 0;line-height: 100%;outline: none;text-decoration: none;' width='16'></a> <a href='https://plus.google.com/108235383044095082735' target='_blank' style='color: #2f73bc;font-weight: normal;text-decoration: underline;word-wrap: break-word !important;'><img align='none' height='16' src='http://courses.edx.org/static/images/bulk_email/GooglePlusIcon.png' style='width: 16px;height: 16px;border: 0;line-height: 100%;outline: none;text-decoration: none;' width='16'></a> <a href='http://www.meetup.com/edX-Communities/' target='_blank' style='color: #2f73bc;font-weight: normal;text-decoration: underline;word-wrap: break-word !important;'><img align='none' height='16' src='http://courses.edx.org/static/images/bulk_email/MeetupIcon.png' style='width: 16px;height: 16px;border: 0;line-height: 100%;outline: none;text-decoration: none;' width='16'></a></div> </td> </tr> </tbody></table> </td> </tr> </tbody></table></td> </tr> </table> </td> </tr> </table> <!-- // END BODY --> </td> </tr> <tr> <td align='center' valign='top' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <!-- BEGIN FOOTER // --> <table border='0' cellpadding='0' cellspacing='0' width='100%' id='templateFooter' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;background-color: #9FCFE8;border-top: 0;border-bottom: 0;'> <tr> <td align='center' valign='top' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <table border='0' cellpadding='0' cellspacing='0' width='600' class='templateContainer' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tr> <td valign='top' class='footerContainer' style='padding-top: 10px;padding-right: 18px;padding-bottom: 10px;padding-left: 18px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'><table border='0' cellpadding='0' cellspacing='0' width='100%' class='mcnTextBlock' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody class='mcnTextBlockOuter'> <tr> <td valign='top' class='mcnTextBlockInner' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <table align='left' border='0' cellpadding='0' cellspacing='0' width='600' class='mcnTextContentContainer' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody><tr> <td valign='top' class='mcnTextContent' style='padding-top: 9px;padding-right: 18px;padding-bottom: 9px;padding-left: 18px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;color: #f2f2f2;font-family: Helvetica;font-size: 11px;line-height: 125%;text-align: left;'> <em>Copyright \u00a9 2013 edX, All rights reserved.</em><br><br><br> <b>Our mailing address is:</b><br> edX<br> 11 Cambridge Center, Suite 101<br> Cambridge, MA, USA 02142<br><br><br>This email was automatically sent from {platform_name}. <br>You are receiving this email at address {email} because you are enrolled in <a href='{course_url}'>{course_title}</a>.<br>To stop receiving email like this, update your course email settings <a href='{email_settings_url}'>here</a>. <br> </td> </tr> </tbody></table> </td> </tr> </tbody></table></td> </tr> </table> </td> </tr> </table> <!-- // END FOOTER --> </td> </tr> </table> <!-- // END TEMPLATE --> </td> </tr> </table> </center> </body> </body> </html>", "plain_template": "THIS IS A BRANDED TEXT TEMPLATE. {course_title}\n\n{{message_body}}\r\n----\r\nCopyright 2013 edX, All rights reserved.\r\n----\r\nConnect with edX:\r\nFacebook (http://facebook.com/edxonline)\r\nTwitter (http://twitter.com/edxonline)\r\nGoogle+ (https://plus.google.com/108235383044095082735)\r\nMeetup (http://www.meetup.com/edX-Communities/)\r\n----\r\nThis email was automatically sent from {platform_name}.\r\nYou are receiving this email at address {email} because you are enrolled in {course_title}\r\n(URL: {course_url} ).\r\nTo stop receiving email like this, update your course email settings at {email_settings_url}.\r\n", "name": "branded.template"}}, {"model": "embargo.country", "pk": 1, "fields": {"country": "AF"}}, {"model": "embargo.country", "pk": 2, "fields": {"country": "AX"}}, {"model": "embargo.country", "pk": 3, "fields": {"country": "AL"}}, {"model": "embargo.country", "pk": 4, "fields": {"country": "DZ"}}, {"model": "embargo.country", "pk": 5, "fields": {"country": "AS"}}, {"model": "embargo.country", "pk": 6, "fields": {"country": "AD"}}, {"model": "embargo.country", "pk": 7, "fields": {"country": "AO"}}, {"model": "embargo.country", "pk": 8, "fields": {"country": "AI"}}, {"model": "embargo.country", "pk": 9, "fields": {"country": "AQ"}}, {"model": "embargo.country", "pk": 10, "fields": {"country": "AG"}}, {"model": "embargo.country", "pk": 11, "fields": {"country": "AR"}}, {"model": "embargo.country", "pk": 12, "fields": {"country": "AM"}}, {"model": "embargo.country", "pk": 13, "fields": {"country": "AW"}}, {"model": "embargo.country", "pk": 14, "fields": {"country": "AU"}}, {"model": "embargo.country", "pk": 15, "fields": {"country": "AT"}}, {"model": "embargo.country", "pk": 16, "fields": {"country": "AZ"}}, {"model": "embargo.country", "pk": 17, "fields": {"country": "BS"}}, {"model": "embargo.country", "pk": 18, "fields": {"country": "BH"}}, {"model": "embargo.country", "pk": 19, "fields": {"country": "BD"}}, {"model": "embargo.country", "pk": 20, "fields": {"country": "BB"}}, {"model": "embargo.country", "pk": 21, "fields": {"country": "BY"}}, {"model": "embargo.country", "pk": 22, "fields": {"country": "BE"}}, {"model": "embargo.country", "pk": 23, "fields": {"country": "BZ"}}, {"model": "embargo.country", "pk": 24, "fields": {"country": "BJ"}}, {"model": "embargo.country", "pk": 25, "fields": {"country": "BM"}}, {"model": "embargo.country", "pk": 26, "fields": {"country": "BT"}}, {"model": "embargo.country", "pk": 27, "fields": {"country": "BO"}}, {"model": "embargo.country", "pk": 28, "fields": {"country": "BQ"}}, {"model": "embargo.country", "pk": 29, "fields": {"country": "BA"}}, {"model": "embargo.country", "pk": 30, "fields": {"country": "BW"}}, {"model": "embargo.country", "pk": 31, "fields": {"country": "BV"}}, {"model": "embargo.country", "pk": 32, "fields": {"country": "BR"}}, {"model": "embargo.country", "pk": 33, "fields": {"country": "IO"}}, {"model": "embargo.country", "pk": 34, "fields": {"country": "BN"}}, {"model": "embargo.country", "pk": 35, "fields": {"country": "BG"}}, {"model": "embargo.country", "pk": 36, "fields": {"country": "BF"}}, {"model": "embargo.country", "pk": 37, "fields": {"country": "BI"}}, {"model": "embargo.country", "pk": 38, "fields": {"country": "CV"}}, {"model": "embargo.country", "pk": 39, "fields": {"country": "KH"}}, {"model": "embargo.country", "pk": 40, "fields": {"country": "CM"}}, {"model": "embargo.country", "pk": 41, "fields": {"country": "CA"}}, {"model": "embargo.country", "pk": 42, "fields": {"country": "KY"}}, {"model": "embargo.country", "pk": 43, "fields": {"country": "CF"}}, {"model": "embargo.country", "pk": 44, "fields": {"country": "TD"}}, {"model": "embargo.country", "pk": 45, "fields": {"country": "CL"}}, {"model": "embargo.country", "pk": 46, "fields": {"country": "CN"}}, {"model": "embargo.country", "pk": 47, "fields": {"country": "CX"}}, {"model": "embargo.country", "pk": 48, "fields": {"country": "CC"}}, {"model": "embargo.country", "pk": 49, "fields": {"country": "CO"}}, {"model": "embargo.country", "pk": 50, "fields": {"country": "KM"}}, {"model": "embargo.country", "pk": 51, "fields": {"country": "CG"}}, {"model": "embargo.country", "pk": 52, "fields": {"country": "CD"}}, {"model": "embargo.country", "pk": 53, "fields": {"country": "CK"}}, {"model": "embargo.country", "pk": 54, "fields": {"country": "CR"}}, {"model": "embargo.country", "pk": 55, "fields": {"country": "CI"}}, {"model": "embargo.country", "pk": 56, "fields": {"country": "HR"}}, {"model": "embargo.country", "pk": 57, "fields": {"country": "CU"}}, {"model": "embargo.country", "pk": 58, "fields": {"country": "CW"}}, {"model": "embargo.country", "pk": 59, "fields": {"country": "CY"}}, {"model": "embargo.country", "pk": 60, "fields": {"country": "CZ"}}, {"model": "embargo.country", "pk": 61, "fields": {"country": "DK"}}, {"model": "embargo.country", "pk": 62, "fields": {"country": "DJ"}}, {"model": "embargo.country", "pk": 63, "fields": {"country": "DM"}}, {"model": "embargo.country", "pk": 64, "fields": {"country": "DO"}}, {"model": "embargo.country", "pk": 65, "fields": {"country": "EC"}}, {"model": "embargo.country", "pk": 66, "fields": {"country": "EG"}}, {"model": "embargo.country", "pk": 67, "fields": {"country": "SV"}}, {"model": "embargo.country", "pk": 68, "fields": {"country": "GQ"}}, {"model": "embargo.country", "pk": 69, "fields": {"country": "ER"}}, {"model": "embargo.country", "pk": 70, "fields": {"country": "EE"}}, {"model": "embargo.country", "pk": 71, "fields": {"country": "ET"}}, {"model": "embargo.country", "pk": 72, "fields": {"country": "FK"}}, {"model": "embargo.country", "pk": 73, "fields": {"country": "FO"}}, {"model": "embargo.country", "pk": 74, "fields": {"country": "FJ"}}, {"model": "embargo.country", "pk": 75, "fields": {"country": "FI"}}, {"model": "embargo.country", "pk": 76, "fields": {"country": "FR"}}, {"model": "embargo.country", "pk": 77, "fields": {"country": "GF"}}, {"model": "embargo.country", "pk": 78, "fields": {"country": "PF"}}, {"model": "embargo.country", "pk": 79, "fields": {"country": "TF"}}, {"model": "embargo.country", "pk": 80, "fields": {"country": "GA"}}, {"model": "embargo.country", "pk": 81, "fields": {"country": "GM"}}, {"model": "embargo.country", "pk": 82, "fields": {"country": "GE"}}, {"model": "embargo.country", "pk": 83, "fields": {"country": "DE"}}, {"model": "embargo.country", "pk": 84, "fields": {"country": "GH"}}, {"model": "embargo.country", "pk": 85, "fields": {"country": "GI"}}, {"model": "embargo.country", "pk": 86, "fields": {"country": "GR"}}, {"model": "embargo.country", "pk": 87, "fields": {"country": "GL"}}, {"model": "embargo.country", "pk": 88, "fields": {"country": "GD"}}, {"model": "embargo.country", "pk": 89, "fields": {"country": "GP"}}, {"model": "embargo.country", "pk": 90, "fields": {"country": "GU"}}, {"model": "embargo.country", "pk": 91, "fields": {"country": "GT"}}, {"model": "embargo.country", "pk": 92, "fields": {"country": "GG"}}, {"model": "embargo.country", "pk": 93, "fields": {"country": "GN"}}, {"model": "embargo.country", "pk": 94, "fields": {"country": "GW"}}, {"model": "embargo.country", "pk": 95, "fields": {"country": "GY"}}, {"model": "embargo.country", "pk": 96, "fields": {"country": "HT"}}, {"model": "embargo.country", "pk": 97, "fields": {"country": "HM"}}, {"model": "embargo.country", "pk": 98, "fields": {"country": "VA"}}, {"model": "embargo.country", "pk": 99, "fields": {"country": "HN"}}, {"model": "embargo.country", "pk": 100, "fields": {"country": "HK"}}, {"model": "embargo.country", "pk": 101, "fields": {"country": "HU"}}, {"model": "embargo.country", "pk": 102, "fields": {"country": "IS"}}, {"model": "embargo.country", "pk": 103, "fields": {"country": "IN"}}, {"model": "embargo.country", "pk": 104, "fields": {"country": "ID"}}, {"model": "embargo.country", "pk": 105, "fields": {"country": "IR"}}, {"model": "embargo.country", "pk": 106, "fields": {"country": "IQ"}}, {"model": "embargo.country", "pk": 107, "fields": {"country": "IE"}}, {"model": "embargo.country", "pk": 108, "fields": {"country": "IM"}}, {"model": "embargo.country", "pk": 109, "fields": {"country": "IL"}}, {"model": "embargo.country", "pk": 110, "fields": {"country": "IT"}}, {"model": "embargo.country", "pk": 111, "fields": {"country": "JM"}}, {"model": "embargo.country", "pk": 112, "fields": {"country": "JP"}}, {"model": "embargo.country", "pk": 113, "fields": {"country": "JE"}}, {"model": "embargo.country", "pk": 114, "fields": {"country": "JO"}}, {"model": "embargo.country", "pk": 115, "fields": {"country": "KZ"}}, {"model": "embargo.country", "pk": 116, "fields": {"country": "KE"}}, {"model": "embargo.country", "pk": 117, "fields": {"country": "KI"}}, {"model": "embargo.country", "pk": 118, "fields": {"country": "XK"}}, {"model": "embargo.country", "pk": 119, "fields": {"country": "KW"}}, {"model": "embargo.country", "pk": 120, "fields": {"country": "KG"}}, {"model": "embargo.country", "pk": 121, "fields": {"country": "LA"}}, {"model": "embargo.country", "pk": 122, "fields": {"country": "LV"}}, {"model": "embargo.country", "pk": 123, "fields": {"country": "LB"}}, {"model": "embargo.country", "pk": 124, "fields": {"country": "LS"}}, {"model": "embargo.country", "pk": 125, "fields": {"country": "LR"}}, {"model": "embargo.country", "pk": 126, "fields": {"country": "LY"}}, {"model": "embargo.country", "pk": 127, "fields": {"country": "LI"}}, {"model": "embargo.country", "pk": 128, "fields": {"country": "LT"}}, {"model": "embargo.country", "pk": 129, "fields": {"country": "LU"}}, {"model": "embargo.country", "pk": 130, "fields": {"country": "MO"}}, {"model": "embargo.country", "pk": 131, "fields": {"country": "MK"}}, {"model": "embargo.country", "pk": 132, "fields": {"country": "MG"}}, {"model": "embargo.country", "pk": 133, "fields": {"country": "MW"}}, {"model": "embargo.country", "pk": 134, "fields": {"country": "MY"}}, {"model": "embargo.country", "pk": 135, "fields": {"country": "MV"}}, {"model": "embargo.country", "pk": 136, "fields": {"country": "ML"}}, {"model": "embargo.country", "pk": 137, "fields": {"country": "MT"}}, {"model": "embargo.country", "pk": 138, "fields": {"country": "MH"}}, {"model": "embargo.country", "pk": 139, "fields": {"country": "MQ"}}, {"model": "embargo.country", "pk": 140, "fields": {"country": "MR"}}, {"model": "embargo.country", "pk": 141, "fields": {"country": "MU"}}, {"model": "embargo.country", "pk": 142, "fields": {"country": "YT"}}, {"model": "embargo.country", "pk": 143, "fields": {"country": "MX"}}, {"model": "embargo.country", "pk": 144, "fields": {"country": "FM"}}, {"model": "embargo.country", "pk": 145, "fields": {"country": "MD"}}, {"model": "embargo.country", "pk": 146, "fields": {"country": "MC"}}, {"model": "embargo.country", "pk": 147, "fields": {"country": "MN"}}, {"model": "embargo.country", "pk": 148, "fields": {"country": "ME"}}, {"model": "embargo.country", "pk": 149, "fields": {"country": "MS"}}, {"model": "embargo.country", "pk": 150, "fields": {"country": "MA"}}, {"model": "embargo.country", "pk": 151, "fields": {"country": "MZ"}}, {"model": "embargo.country", "pk": 152, "fields": {"country": "MM"}}, {"model": "embargo.country", "pk": 153, "fields": {"country": "NA"}}, {"model": "embargo.country", "pk": 154, "fields": {"country": "NR"}}, {"model": "embargo.country", "pk": 155, "fields": {"country": "NP"}}, {"model": "embargo.country", "pk": 156, "fields": {"country": "NL"}}, {"model": "embargo.country", "pk": 157, "fields": {"country": "NC"}}, {"model": "embargo.country", "pk": 158, "fields": {"country": "NZ"}}, {"model": "embargo.country", "pk": 159, "fields": {"country": "NI"}}, {"model": "embargo.country", "pk": 160, "fields": {"country": "NE"}}, {"model": "embargo.country", "pk": 161, "fields": {"country": "NG"}}, {"model": "embargo.country", "pk": 162, "fields": {"country": "NU"}}, {"model": "embargo.country", "pk": 163, "fields": {"country": "NF"}}, {"model": "embargo.country", "pk": 164, "fields": {"country": "KP"}}, {"model": "embargo.country", "pk": 165, "fields": {"country": "MP"}}, {"model": "embargo.country", "pk": 166, "fields": {"country": "NO"}}, {"model": "embargo.country", "pk": 167, "fields": {"country": "OM"}}, {"model": "embargo.country", "pk": 168, "fields": {"country": "PK"}}, {"model": "embargo.country", "pk": 169, "fields": {"country": "PW"}}, {"model": "embargo.country", "pk": 170, "fields": {"country": "PS"}}, {"model": "embargo.country", "pk": 171, "fields": {"country": "PA"}}, {"model": "embargo.country", "pk": 172, "fields": {"country": "PG"}}, {"model": "embargo.country", "pk": 173, "fields": {"country": "PY"}}, {"model": "embargo.country", "pk": 174, "fields": {"country": "PE"}}, {"model": "embargo.country", "pk": 175, "fields": {"country": "PH"}}, {"model": "embargo.country", "pk": 176, "fields": {"country": "PN"}}, {"model": "embargo.country", "pk": 177, "fields": {"country": "PL"}}, {"model": "embargo.country", "pk": 178, "fields": {"country": "PT"}}, {"model": "embargo.country", "pk": 179, "fields": {"country": "PR"}}, {"model": "embargo.country", "pk": 180, "fields": {"country": "QA"}}, {"model": "embargo.country", "pk": 181, "fields": {"country": "RE"}}, {"model": "embargo.country", "pk": 182, "fields": {"country": "RO"}}, {"model": "embargo.country", "pk": 183, "fields": {"country": "RU"}}, {"model": "embargo.country", "pk": 184, "fields": {"country": "RW"}}, {"model": "embargo.country", "pk": 185, "fields": {"country": "BL"}}, {"model": "embargo.country", "pk": 186, "fields": {"country": "SH"}}, {"model": "embargo.country", "pk": 187, "fields": {"country": "KN"}}, {"model": "embargo.country", "pk": 188, "fields": {"country": "LC"}}, {"model": "embargo.country", "pk": 189, "fields": {"country": "MF"}}, {"model": "embargo.country", "pk": 190, "fields": {"country": "PM"}}, {"model": "embargo.country", "pk": 191, "fields": {"country": "VC"}}, {"model": "embargo.country", "pk": 192, "fields": {"country": "WS"}}, {"model": "embargo.country", "pk": 193, "fields": {"country": "SM"}}, {"model": "embargo.country", "pk": 194, "fields": {"country": "ST"}}, {"model": "embargo.country", "pk": 195, "fields": {"country": "SA"}}, {"model": "embargo.country", "pk": 196, "fields": {"country": "SN"}}, {"model": "embargo.country", "pk": 197, "fields": {"country": "RS"}}, {"model": "embargo.country", "pk": 198, "fields": {"country": "SC"}}, {"model": "embargo.country", "pk": 199, "fields": {"country": "SL"}}, {"model": "embargo.country", "pk": 200, "fields": {"country": "SG"}}, {"model": "embargo.country", "pk": 201, "fields": {"country": "SX"}}, {"model": "embargo.country", "pk": 202, "fields": {"country": "SK"}}, {"model": "embargo.country", "pk": 203, "fields": {"country": "SI"}}, {"model": "embargo.country", "pk": 204, "fields": {"country": "SB"}}, {"model": "embargo.country", "pk": 205, "fields": {"country": "SO"}}, {"model": "embargo.country", "pk": 206, "fields": {"country": "ZA"}}, {"model": "embargo.country", "pk": 207, "fields": {"country": "GS"}}, {"model": "embargo.country", "pk": 208, "fields": {"country": "KR"}}, {"model": "embargo.country", "pk": 209, "fields": {"country": "SS"}}, {"model": "embargo.country", "pk": 210, "fields": {"country": "ES"}}, {"model": "embargo.country", "pk": 211, "fields": {"country": "LK"}}, {"model": "embargo.country", "pk": 212, "fields": {"country": "SD"}}, {"model": "embargo.country", "pk": 213, "fields": {"country": "SR"}}, {"model": "embargo.country", "pk": 214, "fields": {"country": "SJ"}}, {"model": "embargo.country", "pk": 215, "fields": {"country": "SZ"}}, {"model": "embargo.country", "pk": 216, "fields": {"country": "SE"}}, {"model": "embargo.country", "pk": 217, "fields": {"country": "CH"}}, {"model": "embargo.country", "pk": 218, "fields": {"country": "SY"}}, {"model": "embargo.country", "pk": 219, "fields": {"country": "TW"}}, {"model": "embargo.country", "pk": 220, "fields": {"country": "TJ"}}, {"model": "embargo.country", "pk": 221, "fields": {"country": "TZ"}}, {"model": "embargo.country", "pk": 222, "fields": {"country": "TH"}}, {"model": "embargo.country", "pk": 223, "fields": {"country": "TL"}}, {"model": "embargo.country", "pk": 224, "fields": {"country": "TG"}}, {"model": "embargo.country", "pk": 225, "fields": {"country": "TK"}}, {"model": "embargo.country", "pk": 226, "fields": {"country": "TO"}}, {"model": "embargo.country", "pk": 227, "fields": {"country": "TT"}}, {"model": "embargo.country", "pk": 228, "fields": {"country": "TN"}}, {"model": "embargo.country", "pk": 229, "fields": {"country": "TR"}}, {"model": "embargo.country", "pk": 230, "fields": {"country": "TM"}}, {"model": "embargo.country", "pk": 231, "fields": {"country": "TC"}}, {"model": "embargo.country", "pk": 232, "fields": {"country": "TV"}}, {"model": "embargo.country", "pk": 233, "fields": {"country": "UG"}}, {"model": "embargo.country", "pk": 234, "fields": {"country": "UA"}}, {"model": "embargo.country", "pk": 235, "fields": {"country": "AE"}}, {"model": "embargo.country", "pk": 236, "fields": {"country": "GB"}}, {"model": "embargo.country", "pk": 237, "fields": {"country": "UM"}}, {"model": "embargo.country", "pk": 238, "fields": {"country": "US"}}, {"model": "embargo.country", "pk": 239, "fields": {"country": "UY"}}, {"model": "embargo.country", "pk": 240, "fields": {"country": "UZ"}}, {"model": "embargo.country", "pk": 241, "fields": {"country": "VU"}}, {"model": "embargo.country", "pk": 242, "fields": {"country": "VE"}}, {"model": "embargo.country", "pk": 243, "fields": {"country": "VN"}}, {"model": "embargo.country", "pk": 244, "fields": {"country": "VG"}}, {"model": "embargo.country", "pk": 245, "fields": {"country": "VI"}}, {"model": "embargo.country", "pk": 246, "fields": {"country": "WF"}}, {"model": "embargo.country", "pk": 247, "fields": {"country": "EH"}}, {"model": "embargo.country", "pk": 248, "fields": {"country": "YE"}}, {"model": "embargo.country", "pk": 249, "fields": {"country": "ZM"}}, {"model": "embargo.country", "pk": 250, "fields": {"country": "ZW"}}, {"model": "edxval.profile", "pk": 1, "fields": {"profile_name": "desktop_mp4"}}, {"model": "edxval.profile", "pk": 2, "fields": {"profile_name": "desktop_webm"}}, {"model": "edxval.profile", "pk": 3, "fields": {"profile_name": "mobile_high"}}, {"model": "edxval.profile", "pk": 4, "fields": {"profile_name": "mobile_low"}}, {"model": "edxval.profile", "pk": 5, "fields": {"profile_name": "youtube"}}, {"model": "edxval.profile", "pk": 6, "fields": {"profile_name": "hls"}}, {"model": "edxval.profile", "pk": 7, "fields": {"profile_name": "audio_mp3"}}, {"model": "milestones.milestonerelationshiptype", "pk": 1, "fields": {"created": "2017-12-06T02:29:37.764Z", "modified": "2017-12-06T02:29:37.764Z", "name": "fulfills", "description": "Autogenerated milestone relationship type \"fulfills\"", "active": true}}, {"model": "milestones.milestonerelationshiptype", "pk": 2, "fields": {"created": "2017-12-06T02:29:37.767Z", "modified": "2017-12-06T02:29:37.767Z", "name": "requires", "description": "Autogenerated milestone relationship type \"requires\"", "active": true}}, {"model": "badges.coursecompleteimageconfiguration", "pk": 1, "fields": {"mode": "honor", "icon": "badges/honor_MYTwjzI.png", "default": false}}, {"model": "badges.coursecompleteimageconfiguration", "pk": 2, "fields": {"mode": "verified", "icon": "badges/verified_VzaI0PC.png", "default": false}}, {"model": "badges.coursecompleteimageconfiguration", "pk": 3, "fields": {"mode": "professional", "icon": "badges/professional_g7d5Aru.png", "default": false}}, {"model": "enterprise.enterprisecustomertype", "pk": 1, "fields": {"created": "2018-12-19T16:43:27.202Z", "modified": "2018-12-19T16:43:27.202Z", "name": "Enterprise"}}, {"model": "enterprise.systemwideenterpriserole", "pk": 1, "fields": {"created": "2019-03-08T15:47:17.791Z", "modified": "2019-03-08T15:47:17.792Z", "name": "enterprise_admin", "description": null}}, {"model": "enterprise.systemwideenterpriserole", "pk": 2, "fields": {"created": "2019-03-08T15:47:17.794Z", "modified": "2019-03-08T15:47:17.794Z", "name": "enterprise_learner", "description": null}}, {"model": "enterprise.systemwideenterpriserole", "pk": 3, "fields": {"created": "2019-03-28T19:29:40.175Z", "modified": "2019-03-28T19:29:40.175Z", "name": "enterprise_openedx_operator", "description": null}}, {"model": "enterprise.enterprisefeaturerole", "pk": 1, "fields": {"created": "2019-03-28T19:29:40.102Z", "modified": "2019-03-28T19:29:40.103Z", "name": "catalog_admin", "description": null}}, {"model": "enterprise.enterprisefeaturerole", "pk": 2, "fields": {"created": "2019-03-28T19:29:40.105Z", "modified": "2019-03-28T19:29:40.105Z", "name": "dashboard_admin", "description": null}}, {"model": "enterprise.enterprisefeaturerole", "pk": 3, "fields": {"created": "2019-03-28T19:29:40.108Z", "modified": "2019-03-28T19:29:40.108Z", "name": "enrollment_api_admin", "description": null}}, {"model": "auth.permission", "pk": 1, "fields": {"name": "Can add permission", "content_type": 2, "codename": "add_permission"}}, {"model": "auth.permission", "pk": 2, "fields": {"name": "Can change permission", "content_type": 2, "codename": "change_permission"}}, {"model": "auth.permission", "pk": 3, "fields": {"name": "Can delete permission", "content_type": 2, "codename": "delete_permission"}}, {"model": "auth.permission", "pk": 4, "fields": {"name": "Can add group", "content_type": 3, "codename": "add_group"}}, {"model": "auth.permission", "pk": 5, "fields": {"name": "Can change group", "content_type": 3, "codename": "change_group"}}, {"model": "auth.permission", "pk": 6, "fields": {"name": "Can delete group", "content_type": 3, "codename": "delete_group"}}, {"model": "auth.permission", "pk": 7, "fields": {"name": "Can add user", "content_type": 4, "codename": "add_user"}}, {"model": "auth.permission", "pk": 8, "fields": {"name": "Can change user", "content_type": 4, "codename": "change_user"}}, {"model": "auth.permission", "pk": 9, "fields": {"name": "Can delete user", "content_type": 4, "codename": "delete_user"}}, {"model": "auth.permission", "pk": 10, "fields": {"name": "Can add content type", "content_type": 5, "codename": "add_contenttype"}}, {"model": "auth.permission", "pk": 11, "fields": {"name": "Can change content type", "content_type": 5, "codename": "change_contenttype"}}, {"model": "auth.permission", "pk": 12, "fields": {"name": "Can delete content type", "content_type": 5, "codename": "delete_contenttype"}}, {"model": "auth.permission", "pk": 13, "fields": {"name": "Can add redirect", "content_type": 6, "codename": "add_redirect"}}, {"model": "auth.permission", "pk": 14, "fields": {"name": "Can change redirect", "content_type": 6, "codename": "change_redirect"}}, {"model": "auth.permission", "pk": 15, "fields": {"name": "Can delete redirect", "content_type": 6, "codename": "delete_redirect"}}, {"model": "auth.permission", "pk": 16, "fields": {"name": "Can add session", "content_type": 7, "codename": "add_session"}}, {"model": "auth.permission", "pk": 17, "fields": {"name": "Can change session", "content_type": 7, "codename": "change_session"}}, {"model": "auth.permission", "pk": 18, "fields": {"name": "Can delete session", "content_type": 7, "codename": "delete_session"}}, {"model": "auth.permission", "pk": 19, "fields": {"name": "Can add site", "content_type": 8, "codename": "add_site"}}, {"model": "auth.permission", "pk": 20, "fields": {"name": "Can change site", "content_type": 8, "codename": "change_site"}}, {"model": "auth.permission", "pk": 21, "fields": {"name": "Can delete site", "content_type": 8, "codename": "delete_site"}}, {"model": "auth.permission", "pk": 22, "fields": {"name": "Can add task state", "content_type": 9, "codename": "add_taskmeta"}}, {"model": "auth.permission", "pk": 23, "fields": {"name": "Can change task state", "content_type": 9, "codename": "change_taskmeta"}}, {"model": "auth.permission", "pk": 24, "fields": {"name": "Can delete task state", "content_type": 9, "codename": "delete_taskmeta"}}, {"model": "auth.permission", "pk": 25, "fields": {"name": "Can add saved group result", "content_type": 10, "codename": "add_tasksetmeta"}}, {"model": "auth.permission", "pk": 26, "fields": {"name": "Can change saved group result", "content_type": 10, "codename": "change_tasksetmeta"}}, {"model": "auth.permission", "pk": 27, "fields": {"name": "Can delete saved group result", "content_type": 10, "codename": "delete_tasksetmeta"}}, {"model": "auth.permission", "pk": 28, "fields": {"name": "Can add interval", "content_type": 11, "codename": "add_intervalschedule"}}, {"model": "auth.permission", "pk": 29, "fields": {"name": "Can change interval", "content_type": 11, "codename": "change_intervalschedule"}}, {"model": "auth.permission", "pk": 30, "fields": {"name": "Can delete interval", "content_type": 11, "codename": "delete_intervalschedule"}}, {"model": "auth.permission", "pk": 31, "fields": {"name": "Can add crontab", "content_type": 12, "codename": "add_crontabschedule"}}, {"model": "auth.permission", "pk": 32, "fields": {"name": "Can change crontab", "content_type": 12, "codename": "change_crontabschedule"}}, {"model": "auth.permission", "pk": 33, "fields": {"name": "Can delete crontab", "content_type": 12, "codename": "delete_crontabschedule"}}, {"model": "auth.permission", "pk": 34, "fields": {"name": "Can add periodic tasks", "content_type": 13, "codename": "add_periodictasks"}}, {"model": "auth.permission", "pk": 35, "fields": {"name": "Can change periodic tasks", "content_type": 13, "codename": "change_periodictasks"}}, {"model": "auth.permission", "pk": 36, "fields": {"name": "Can delete periodic tasks", "content_type": 13, "codename": "delete_periodictasks"}}, {"model": "auth.permission", "pk": 37, "fields": {"name": "Can add periodic task", "content_type": 14, "codename": "add_periodictask"}}, {"model": "auth.permission", "pk": 38, "fields": {"name": "Can change periodic task", "content_type": 14, "codename": "change_periodictask"}}, {"model": "auth.permission", "pk": 39, "fields": {"name": "Can delete periodic task", "content_type": 14, "codename": "delete_periodictask"}}, {"model": "auth.permission", "pk": 40, "fields": {"name": "Can add worker", "content_type": 15, "codename": "add_workerstate"}}, {"model": "auth.permission", "pk": 41, "fields": {"name": "Can change worker", "content_type": 15, "codename": "change_workerstate"}}, {"model": "auth.permission", "pk": 42, "fields": {"name": "Can delete worker", "content_type": 15, "codename": "delete_workerstate"}}, {"model": "auth.permission", "pk": 43, "fields": {"name": "Can add task", "content_type": 16, "codename": "add_taskstate"}}, {"model": "auth.permission", "pk": 44, "fields": {"name": "Can change task", "content_type": 16, "codename": "change_taskstate"}}, {"model": "auth.permission", "pk": 45, "fields": {"name": "Can delete task", "content_type": 16, "codename": "delete_taskstate"}}, {"model": "auth.permission", "pk": 46, "fields": {"name": "Can add flag", "content_type": 17, "codename": "add_flag"}}, {"model": "auth.permission", "pk": 47, "fields": {"name": "Can change flag", "content_type": 17, "codename": "change_flag"}}, {"model": "auth.permission", "pk": 48, "fields": {"name": "Can delete flag", "content_type": 17, "codename": "delete_flag"}}, {"model": "auth.permission", "pk": 49, "fields": {"name": "Can add switch", "content_type": 18, "codename": "add_switch"}}, {"model": "auth.permission", "pk": 50, "fields": {"name": "Can change switch", "content_type": 18, "codename": "change_switch"}}, {"model": "auth.permission", "pk": 51, "fields": {"name": "Can delete switch", "content_type": 18, "codename": "delete_switch"}}, {"model": "auth.permission", "pk": 52, "fields": {"name": "Can add sample", "content_type": 19, "codename": "add_sample"}}, {"model": "auth.permission", "pk": 53, "fields": {"name": "Can change sample", "content_type": 19, "codename": "change_sample"}}, {"model": "auth.permission", "pk": 54, "fields": {"name": "Can delete sample", "content_type": 19, "codename": "delete_sample"}}, {"model": "auth.permission", "pk": 55, "fields": {"name": "Can add global status message", "content_type": 20, "codename": "add_globalstatusmessage"}}, {"model": "auth.permission", "pk": 56, "fields": {"name": "Can change global status message", "content_type": 20, "codename": "change_globalstatusmessage"}}, {"model": "auth.permission", "pk": 57, "fields": {"name": "Can delete global status message", "content_type": 20, "codename": "delete_globalstatusmessage"}}, {"model": "auth.permission", "pk": 58, "fields": {"name": "Can add course message", "content_type": 21, "codename": "add_coursemessage"}}, {"model": "auth.permission", "pk": 59, "fields": {"name": "Can change course message", "content_type": 21, "codename": "change_coursemessage"}}, {"model": "auth.permission", "pk": 60, "fields": {"name": "Can delete course message", "content_type": 21, "codename": "delete_coursemessage"}}, {"model": "auth.permission", "pk": 61, "fields": {"name": "Can add asset base url config", "content_type": 22, "codename": "add_assetbaseurlconfig"}}, {"model": "auth.permission", "pk": 62, "fields": {"name": "Can change asset base url config", "content_type": 22, "codename": "change_assetbaseurlconfig"}}, {"model": "auth.permission", "pk": 63, "fields": {"name": "Can delete asset base url config", "content_type": 22, "codename": "delete_assetbaseurlconfig"}}, {"model": "auth.permission", "pk": 64, "fields": {"name": "Can add asset excluded extensions config", "content_type": 23, "codename": "add_assetexcludedextensionsconfig"}}, {"model": "auth.permission", "pk": 65, "fields": {"name": "Can change asset excluded extensions config", "content_type": 23, "codename": "change_assetexcludedextensionsconfig"}}, {"model": "auth.permission", "pk": 66, "fields": {"name": "Can delete asset excluded extensions config", "content_type": 23, "codename": "delete_assetexcludedextensionsconfig"}}, {"model": "auth.permission", "pk": 67, "fields": {"name": "Can add course asset cache ttl config", "content_type": 24, "codename": "add_courseassetcachettlconfig"}}, {"model": "auth.permission", "pk": 68, "fields": {"name": "Can change course asset cache ttl config", "content_type": 24, "codename": "change_courseassetcachettlconfig"}}, {"model": "auth.permission", "pk": 69, "fields": {"name": "Can delete course asset cache ttl config", "content_type": 24, "codename": "delete_courseassetcachettlconfig"}}, {"model": "auth.permission", "pk": 70, "fields": {"name": "Can add cdn user agents config", "content_type": 25, "codename": "add_cdnuseragentsconfig"}}, {"model": "auth.permission", "pk": 71, "fields": {"name": "Can change cdn user agents config", "content_type": 25, "codename": "change_cdnuseragentsconfig"}}, {"model": "auth.permission", "pk": 72, "fields": {"name": "Can delete cdn user agents config", "content_type": 25, "codename": "delete_cdnuseragentsconfig"}}, {"model": "auth.permission", "pk": 73, "fields": {"name": "Can add site theme", "content_type": 26, "codename": "add_sitetheme"}}, {"model": "auth.permission", "pk": 74, "fields": {"name": "Can change site theme", "content_type": 26, "codename": "change_sitetheme"}}, {"model": "auth.permission", "pk": 75, "fields": {"name": "Can delete site theme", "content_type": 26, "codename": "delete_sitetheme"}}, {"model": "auth.permission", "pk": 76, "fields": {"name": "Can add site configuration", "content_type": 27, "codename": "add_siteconfiguration"}}, {"model": "auth.permission", "pk": 77, "fields": {"name": "Can change site configuration", "content_type": 27, "codename": "change_siteconfiguration"}}, {"model": "auth.permission", "pk": 78, "fields": {"name": "Can delete site configuration", "content_type": 27, "codename": "delete_siteconfiguration"}}, {"model": "auth.permission", "pk": 79, "fields": {"name": "Can add site configuration history", "content_type": 28, "codename": "add_siteconfigurationhistory"}}, {"model": "auth.permission", "pk": 80, "fields": {"name": "Can change site configuration history", "content_type": 28, "codename": "change_siteconfigurationhistory"}}, {"model": "auth.permission", "pk": 81, "fields": {"name": "Can delete site configuration history", "content_type": 28, "codename": "delete_siteconfigurationhistory"}}, {"model": "auth.permission", "pk": 82, "fields": {"name": "Can add hls playback enabled flag", "content_type": 29, "codename": "add_hlsplaybackenabledflag"}}, {"model": "auth.permission", "pk": 83, "fields": {"name": "Can change hls playback enabled flag", "content_type": 29, "codename": "change_hlsplaybackenabledflag"}}, {"model": "auth.permission", "pk": 84, "fields": {"name": "Can delete hls playback enabled flag", "content_type": 29, "codename": "delete_hlsplaybackenabledflag"}}, {"model": "auth.permission", "pk": 85, "fields": {"name": "Can add course hls playback enabled flag", "content_type": 30, "codename": "add_coursehlsplaybackenabledflag"}}, {"model": "auth.permission", "pk": 86, "fields": {"name": "Can change course hls playback enabled flag", "content_type": 30, "codename": "change_coursehlsplaybackenabledflag"}}, {"model": "auth.permission", "pk": 87, "fields": {"name": "Can delete course hls playback enabled flag", "content_type": 30, "codename": "delete_coursehlsplaybackenabledflag"}}, {"model": "auth.permission", "pk": 88, "fields": {"name": "Can add video transcript enabled flag", "content_type": 31, "codename": "add_videotranscriptenabledflag"}}, {"model": "auth.permission", "pk": 89, "fields": {"name": "Can change video transcript enabled flag", "content_type": 31, "codename": "change_videotranscriptenabledflag"}}, {"model": "auth.permission", "pk": 90, "fields": {"name": "Can delete video transcript enabled flag", "content_type": 31, "codename": "delete_videotranscriptenabledflag"}}, {"model": "auth.permission", "pk": 91, "fields": {"name": "Can add course video transcript enabled flag", "content_type": 32, "codename": "add_coursevideotranscriptenabledflag"}}, {"model": "auth.permission", "pk": 92, "fields": {"name": "Can change course video transcript enabled flag", "content_type": 32, "codename": "change_coursevideotranscriptenabledflag"}}, {"model": "auth.permission", "pk": 93, "fields": {"name": "Can delete course video transcript enabled flag", "content_type": 32, "codename": "delete_coursevideotranscriptenabledflag"}}, {"model": "auth.permission", "pk": 94, "fields": {"name": "Can add video pipeline integration", "content_type": 33, "codename": "add_videopipelineintegration"}}, {"model": "auth.permission", "pk": 95, "fields": {"name": "Can change video pipeline integration", "content_type": 33, "codename": "change_videopipelineintegration"}}, {"model": "auth.permission", "pk": 96, "fields": {"name": "Can delete video pipeline integration", "content_type": 33, "codename": "delete_videopipelineintegration"}}, {"model": "auth.permission", "pk": 97, "fields": {"name": "Can add video uploads enabled by default", "content_type": 34, "codename": "add_videouploadsenabledbydefault"}}, {"model": "auth.permission", "pk": 98, "fields": {"name": "Can change video uploads enabled by default", "content_type": 34, "codename": "change_videouploadsenabledbydefault"}}, {"model": "auth.permission", "pk": 99, "fields": {"name": "Can delete video uploads enabled by default", "content_type": 34, "codename": "delete_videouploadsenabledbydefault"}}, {"model": "auth.permission", "pk": 100, "fields": {"name": "Can add course video uploads enabled by default", "content_type": 35, "codename": "add_coursevideouploadsenabledbydefault"}}, {"model": "auth.permission", "pk": 101, "fields": {"name": "Can change course video uploads enabled by default", "content_type": 35, "codename": "change_coursevideouploadsenabledbydefault"}}, {"model": "auth.permission", "pk": 102, "fields": {"name": "Can delete course video uploads enabled by default", "content_type": 35, "codename": "delete_coursevideouploadsenabledbydefault"}}, {"model": "auth.permission", "pk": 103, "fields": {"name": "Can add bookmark", "content_type": 36, "codename": "add_bookmark"}}, {"model": "auth.permission", "pk": 104, "fields": {"name": "Can change bookmark", "content_type": 36, "codename": "change_bookmark"}}, {"model": "auth.permission", "pk": 105, "fields": {"name": "Can delete bookmark", "content_type": 36, "codename": "delete_bookmark"}}, {"model": "auth.permission", "pk": 106, "fields": {"name": "Can add x block cache", "content_type": 37, "codename": "add_xblockcache"}}, {"model": "auth.permission", "pk": 107, "fields": {"name": "Can change x block cache", "content_type": 37, "codename": "change_xblockcache"}}, {"model": "auth.permission", "pk": 108, "fields": {"name": "Can delete x block cache", "content_type": 37, "codename": "delete_xblockcache"}}, {"model": "auth.permission", "pk": 109, "fields": {"name": "Can add student module", "content_type": 38, "codename": "add_studentmodule"}}, {"model": "auth.permission", "pk": 110, "fields": {"name": "Can change student module", "content_type": 38, "codename": "change_studentmodule"}}, {"model": "auth.permission", "pk": 111, "fields": {"name": "Can delete student module", "content_type": 38, "codename": "delete_studentmodule"}}, {"model": "auth.permission", "pk": 112, "fields": {"name": "Can add student module history", "content_type": 39, "codename": "add_studentmodulehistory"}}, {"model": "auth.permission", "pk": 113, "fields": {"name": "Can change student module history", "content_type": 39, "codename": "change_studentmodulehistory"}}, {"model": "auth.permission", "pk": 114, "fields": {"name": "Can delete student module history", "content_type": 39, "codename": "delete_studentmodulehistory"}}, {"model": "auth.permission", "pk": 115, "fields": {"name": "Can add x module user state summary field", "content_type": 40, "codename": "add_xmoduleuserstatesummaryfield"}}, {"model": "auth.permission", "pk": 116, "fields": {"name": "Can change x module user state summary field", "content_type": 40, "codename": "change_xmoduleuserstatesummaryfield"}}, {"model": "auth.permission", "pk": 117, "fields": {"name": "Can delete x module user state summary field", "content_type": 40, "codename": "delete_xmoduleuserstatesummaryfield"}}, {"model": "auth.permission", "pk": 118, "fields": {"name": "Can add x module student prefs field", "content_type": 41, "codename": "add_xmodulestudentprefsfield"}}, {"model": "auth.permission", "pk": 119, "fields": {"name": "Can change x module student prefs field", "content_type": 41, "codename": "change_xmodulestudentprefsfield"}}, {"model": "auth.permission", "pk": 120, "fields": {"name": "Can delete x module student prefs field", "content_type": 41, "codename": "delete_xmodulestudentprefsfield"}}, {"model": "auth.permission", "pk": 121, "fields": {"name": "Can add x module student info field", "content_type": 42, "codename": "add_xmodulestudentinfofield"}}, {"model": "auth.permission", "pk": 122, "fields": {"name": "Can change x module student info field", "content_type": 42, "codename": "change_xmodulestudentinfofield"}}, {"model": "auth.permission", "pk": 123, "fields": {"name": "Can delete x module student info field", "content_type": 42, "codename": "delete_xmodulestudentinfofield"}}, {"model": "auth.permission", "pk": 124, "fields": {"name": "Can add offline computed grade", "content_type": 43, "codename": "add_offlinecomputedgrade"}}, {"model": "auth.permission", "pk": 125, "fields": {"name": "Can change offline computed grade", "content_type": 43, "codename": "change_offlinecomputedgrade"}}, {"model": "auth.permission", "pk": 126, "fields": {"name": "Can delete offline computed grade", "content_type": 43, "codename": "delete_offlinecomputedgrade"}}, {"model": "auth.permission", "pk": 127, "fields": {"name": "Can add offline computed grade log", "content_type": 44, "codename": "add_offlinecomputedgradelog"}}, {"model": "auth.permission", "pk": 128, "fields": {"name": "Can change offline computed grade log", "content_type": 44, "codename": "change_offlinecomputedgradelog"}}, {"model": "auth.permission", "pk": 129, "fields": {"name": "Can delete offline computed grade log", "content_type": 44, "codename": "delete_offlinecomputedgradelog"}}, {"model": "auth.permission", "pk": 130, "fields": {"name": "Can add student field override", "content_type": 45, "codename": "add_studentfieldoverride"}}, {"model": "auth.permission", "pk": 131, "fields": {"name": "Can change student field override", "content_type": 45, "codename": "change_studentfieldoverride"}}, {"model": "auth.permission", "pk": 132, "fields": {"name": "Can delete student field override", "content_type": 45, "codename": "delete_studentfieldoverride"}}, {"model": "auth.permission", "pk": 133, "fields": {"name": "Can add dynamic upgrade deadline configuration", "content_type": 46, "codename": "add_dynamicupgradedeadlineconfiguration"}}, {"model": "auth.permission", "pk": 134, "fields": {"name": "Can change dynamic upgrade deadline configuration", "content_type": 46, "codename": "change_dynamicupgradedeadlineconfiguration"}}, {"model": "auth.permission", "pk": 135, "fields": {"name": "Can delete dynamic upgrade deadline configuration", "content_type": 46, "codename": "delete_dynamicupgradedeadlineconfiguration"}}, {"model": "auth.permission", "pk": 136, "fields": {"name": "Can add course dynamic upgrade deadline configuration", "content_type": 47, "codename": "add_coursedynamicupgradedeadlineconfiguration"}}, {"model": "auth.permission", "pk": 137, "fields": {"name": "Can change course dynamic upgrade deadline configuration", "content_type": 47, "codename": "change_coursedynamicupgradedeadlineconfiguration"}}, {"model": "auth.permission", "pk": 138, "fields": {"name": "Can delete course dynamic upgrade deadline configuration", "content_type": 47, "codename": "delete_coursedynamicupgradedeadlineconfiguration"}}, {"model": "auth.permission", "pk": 139, "fields": {"name": "Can add org dynamic upgrade deadline configuration", "content_type": 48, "codename": "add_orgdynamicupgradedeadlineconfiguration"}}, {"model": "auth.permission", "pk": 140, "fields": {"name": "Can change org dynamic upgrade deadline configuration", "content_type": 48, "codename": "change_orgdynamicupgradedeadlineconfiguration"}}, {"model": "auth.permission", "pk": 141, "fields": {"name": "Can delete org dynamic upgrade deadline configuration", "content_type": 48, "codename": "delete_orgdynamicupgradedeadlineconfiguration"}}, {"model": "auth.permission", "pk": 142, "fields": {"name": "Can add anonymous user id", "content_type": 49, "codename": "add_anonymoususerid"}}, {"model": "auth.permission", "pk": 143, "fields": {"name": "Can change anonymous user id", "content_type": 49, "codename": "change_anonymoususerid"}}, {"model": "auth.permission", "pk": 144, "fields": {"name": "Can delete anonymous user id", "content_type": 49, "codename": "delete_anonymoususerid"}}, {"model": "auth.permission", "pk": 145, "fields": {"name": "Can add user standing", "content_type": 50, "codename": "add_userstanding"}}, {"model": "auth.permission", "pk": 146, "fields": {"name": "Can change user standing", "content_type": 50, "codename": "change_userstanding"}}, {"model": "auth.permission", "pk": 147, "fields": {"name": "Can delete user standing", "content_type": 50, "codename": "delete_userstanding"}}, {"model": "auth.permission", "pk": 148, "fields": {"name": "Can add user profile", "content_type": 51, "codename": "add_userprofile"}}, {"model": "auth.permission", "pk": 149, "fields": {"name": "Can change user profile", "content_type": 51, "codename": "change_userprofile"}}, {"model": "auth.permission", "pk": 150, "fields": {"name": "Can delete user profile", "content_type": 51, "codename": "delete_userprofile"}}, {"model": "auth.permission", "pk": 151, "fields": {"name": "Can deactivate, but NOT delete users", "content_type": 51, "codename": "can_deactivate_users"}}, {"model": "auth.permission", "pk": 152, "fields": {"name": "Can add user signup source", "content_type": 52, "codename": "add_usersignupsource"}}, {"model": "auth.permission", "pk": 153, "fields": {"name": "Can change user signup source", "content_type": 52, "codename": "change_usersignupsource"}}, {"model": "auth.permission", "pk": 154, "fields": {"name": "Can delete user signup source", "content_type": 52, "codename": "delete_usersignupsource"}}, {"model": "auth.permission", "pk": 155, "fields": {"name": "Can add user test group", "content_type": 53, "codename": "add_usertestgroup"}}, {"model": "auth.permission", "pk": 156, "fields": {"name": "Can change user test group", "content_type": 53, "codename": "change_usertestgroup"}}, {"model": "auth.permission", "pk": 157, "fields": {"name": "Can delete user test group", "content_type": 53, "codename": "delete_usertestgroup"}}, {"model": "auth.permission", "pk": 158, "fields": {"name": "Can add registration", "content_type": 54, "codename": "add_registration"}}, {"model": "auth.permission", "pk": 159, "fields": {"name": "Can change registration", "content_type": 54, "codename": "change_registration"}}, {"model": "auth.permission", "pk": 160, "fields": {"name": "Can delete registration", "content_type": 54, "codename": "delete_registration"}}, {"model": "auth.permission", "pk": 161, "fields": {"name": "Can add pending name change", "content_type": 55, "codename": "add_pendingnamechange"}}, {"model": "auth.permission", "pk": 162, "fields": {"name": "Can change pending name change", "content_type": 55, "codename": "change_pendingnamechange"}}, {"model": "auth.permission", "pk": 163, "fields": {"name": "Can delete pending name change", "content_type": 55, "codename": "delete_pendingnamechange"}}, {"model": "auth.permission", "pk": 164, "fields": {"name": "Can add pending email change", "content_type": 56, "codename": "add_pendingemailchange"}}, {"model": "auth.permission", "pk": 165, "fields": {"name": "Can change pending email change", "content_type": 56, "codename": "change_pendingemailchange"}}, {"model": "auth.permission", "pk": 166, "fields": {"name": "Can delete pending email change", "content_type": 56, "codename": "delete_pendingemailchange"}}, {"model": "auth.permission", "pk": 167, "fields": {"name": "Can add password history", "content_type": 57, "codename": "add_passwordhistory"}}, {"model": "auth.permission", "pk": 168, "fields": {"name": "Can change password history", "content_type": 57, "codename": "change_passwordhistory"}}, {"model": "auth.permission", "pk": 169, "fields": {"name": "Can delete password history", "content_type": 57, "codename": "delete_passwordhistory"}}, {"model": "auth.permission", "pk": 170, "fields": {"name": "Can add login failures", "content_type": 58, "codename": "add_loginfailures"}}, {"model": "auth.permission", "pk": 171, "fields": {"name": "Can change login failures", "content_type": 58, "codename": "change_loginfailures"}}, {"model": "auth.permission", "pk": 172, "fields": {"name": "Can delete login failures", "content_type": 58, "codename": "delete_loginfailures"}}, {"model": "auth.permission", "pk": 173, "fields": {"name": "Can add course enrollment", "content_type": 59, "codename": "add_courseenrollment"}}, {"model": "auth.permission", "pk": 174, "fields": {"name": "Can change course enrollment", "content_type": 59, "codename": "change_courseenrollment"}}, {"model": "auth.permission", "pk": 175, "fields": {"name": "Can delete course enrollment", "content_type": 59, "codename": "delete_courseenrollment"}}, {"model": "auth.permission", "pk": 176, "fields": {"name": "Can add manual enrollment audit", "content_type": 60, "codename": "add_manualenrollmentaudit"}}, {"model": "auth.permission", "pk": 177, "fields": {"name": "Can change manual enrollment audit", "content_type": 60, "codename": "change_manualenrollmentaudit"}}, {"model": "auth.permission", "pk": 178, "fields": {"name": "Can delete manual enrollment audit", "content_type": 60, "codename": "delete_manualenrollmentaudit"}}, {"model": "auth.permission", "pk": 179, "fields": {"name": "Can add course enrollment allowed", "content_type": 61, "codename": "add_courseenrollmentallowed"}}, {"model": "auth.permission", "pk": 180, "fields": {"name": "Can change course enrollment allowed", "content_type": 61, "codename": "change_courseenrollmentallowed"}}, {"model": "auth.permission", "pk": 181, "fields": {"name": "Can delete course enrollment allowed", "content_type": 61, "codename": "delete_courseenrollmentallowed"}}, {"model": "auth.permission", "pk": 182, "fields": {"name": "Can add course access role", "content_type": 62, "codename": "add_courseaccessrole"}}, {"model": "auth.permission", "pk": 183, "fields": {"name": "Can change course access role", "content_type": 62, "codename": "change_courseaccessrole"}}, {"model": "auth.permission", "pk": 184, "fields": {"name": "Can delete course access role", "content_type": 62, "codename": "delete_courseaccessrole"}}, {"model": "auth.permission", "pk": 185, "fields": {"name": "Can add dashboard configuration", "content_type": 63, "codename": "add_dashboardconfiguration"}}, {"model": "auth.permission", "pk": 186, "fields": {"name": "Can change dashboard configuration", "content_type": 63, "codename": "change_dashboardconfiguration"}}, {"model": "auth.permission", "pk": 187, "fields": {"name": "Can delete dashboard configuration", "content_type": 63, "codename": "delete_dashboardconfiguration"}}, {"model": "auth.permission", "pk": 188, "fields": {"name": "Can add linked in add to profile configuration", "content_type": 64, "codename": "add_linkedinaddtoprofileconfiguration"}}, {"model": "auth.permission", "pk": 189, "fields": {"name": "Can change linked in add to profile configuration", "content_type": 64, "codename": "change_linkedinaddtoprofileconfiguration"}}, {"model": "auth.permission", "pk": 190, "fields": {"name": "Can delete linked in add to profile configuration", "content_type": 64, "codename": "delete_linkedinaddtoprofileconfiguration"}}, {"model": "auth.permission", "pk": 191, "fields": {"name": "Can add entrance exam configuration", "content_type": 65, "codename": "add_entranceexamconfiguration"}}, {"model": "auth.permission", "pk": 192, "fields": {"name": "Can change entrance exam configuration", "content_type": 65, "codename": "change_entranceexamconfiguration"}}, {"model": "auth.permission", "pk": 193, "fields": {"name": "Can delete entrance exam configuration", "content_type": 65, "codename": "delete_entranceexamconfiguration"}}, {"model": "auth.permission", "pk": 194, "fields": {"name": "Can add language proficiency", "content_type": 66, "codename": "add_languageproficiency"}}, {"model": "auth.permission", "pk": 195, "fields": {"name": "Can change language proficiency", "content_type": 66, "codename": "change_languageproficiency"}}, {"model": "auth.permission", "pk": 196, "fields": {"name": "Can delete language proficiency", "content_type": 66, "codename": "delete_languageproficiency"}}, {"model": "auth.permission", "pk": 197, "fields": {"name": "Can add social link", "content_type": 67, "codename": "add_sociallink"}}, {"model": "auth.permission", "pk": 198, "fields": {"name": "Can change social link", "content_type": 67, "codename": "change_sociallink"}}, {"model": "auth.permission", "pk": 199, "fields": {"name": "Can delete social link", "content_type": 67, "codename": "delete_sociallink"}}, {"model": "auth.permission", "pk": 200, "fields": {"name": "Can add course enrollment attribute", "content_type": 68, "codename": "add_courseenrollmentattribute"}}, {"model": "auth.permission", "pk": 201, "fields": {"name": "Can change course enrollment attribute", "content_type": 68, "codename": "change_courseenrollmentattribute"}}, {"model": "auth.permission", "pk": 202, "fields": {"name": "Can delete course enrollment attribute", "content_type": 68, "codename": "delete_courseenrollmentattribute"}}, {"model": "auth.permission", "pk": 203, "fields": {"name": "Can add enrollment refund configuration", "content_type": 69, "codename": "add_enrollmentrefundconfiguration"}}, {"model": "auth.permission", "pk": 204, "fields": {"name": "Can change enrollment refund configuration", "content_type": 69, "codename": "change_enrollmentrefundconfiguration"}}, {"model": "auth.permission", "pk": 205, "fields": {"name": "Can delete enrollment refund configuration", "content_type": 69, "codename": "delete_enrollmentrefundconfiguration"}}, {"model": "auth.permission", "pk": 206, "fields": {"name": "Can add registration cookie configuration", "content_type": 70, "codename": "add_registrationcookieconfiguration"}}, {"model": "auth.permission", "pk": 207, "fields": {"name": "Can change registration cookie configuration", "content_type": 70, "codename": "change_registrationcookieconfiguration"}}, {"model": "auth.permission", "pk": 208, "fields": {"name": "Can delete registration cookie configuration", "content_type": 70, "codename": "delete_registrationcookieconfiguration"}}, {"model": "auth.permission", "pk": 209, "fields": {"name": "Can add user attribute", "content_type": 71, "codename": "add_userattribute"}}, {"model": "auth.permission", "pk": 210, "fields": {"name": "Can change user attribute", "content_type": 71, "codename": "change_userattribute"}}, {"model": "auth.permission", "pk": 211, "fields": {"name": "Can delete user attribute", "content_type": 71, "codename": "delete_userattribute"}}, {"model": "auth.permission", "pk": 212, "fields": {"name": "Can add logout view configuration", "content_type": 72, "codename": "add_logoutviewconfiguration"}}, {"model": "auth.permission", "pk": 213, "fields": {"name": "Can change logout view configuration", "content_type": 72, "codename": "change_logoutviewconfiguration"}}, {"model": "auth.permission", "pk": 214, "fields": {"name": "Can delete logout view configuration", "content_type": 72, "codename": "delete_logoutviewconfiguration"}}, {"model": "auth.permission", "pk": 215, "fields": {"name": "Can add tracking log", "content_type": 73, "codename": "add_trackinglog"}}, {"model": "auth.permission", "pk": 216, "fields": {"name": "Can change tracking log", "content_type": 73, "codename": "change_trackinglog"}}, {"model": "auth.permission", "pk": 217, "fields": {"name": "Can delete tracking log", "content_type": 73, "codename": "delete_trackinglog"}}, {"model": "auth.permission", "pk": 218, "fields": {"name": "Can add rate limit configuration", "content_type": 74, "codename": "add_ratelimitconfiguration"}}, {"model": "auth.permission", "pk": 219, "fields": {"name": "Can change rate limit configuration", "content_type": 74, "codename": "change_ratelimitconfiguration"}}, {"model": "auth.permission", "pk": 220, "fields": {"name": "Can delete rate limit configuration", "content_type": 74, "codename": "delete_ratelimitconfiguration"}}, {"model": "auth.permission", "pk": 221, "fields": {"name": "Can add certificate whitelist", "content_type": 75, "codename": "add_certificatewhitelist"}}, {"model": "auth.permission", "pk": 222, "fields": {"name": "Can change certificate whitelist", "content_type": 75, "codename": "change_certificatewhitelist"}}, {"model": "auth.permission", "pk": 223, "fields": {"name": "Can delete certificate whitelist", "content_type": 75, "codename": "delete_certificatewhitelist"}}, {"model": "auth.permission", "pk": 224, "fields": {"name": "Can add generated certificate", "content_type": 76, "codename": "add_generatedcertificate"}}, {"model": "auth.permission", "pk": 225, "fields": {"name": "Can change generated certificate", "content_type": 76, "codename": "change_generatedcertificate"}}, {"model": "auth.permission", "pk": 226, "fields": {"name": "Can delete generated certificate", "content_type": 76, "codename": "delete_generatedcertificate"}}, {"model": "auth.permission", "pk": 227, "fields": {"name": "Can add certificate generation history", "content_type": 77, "codename": "add_certificategenerationhistory"}}, {"model": "auth.permission", "pk": 228, "fields": {"name": "Can change certificate generation history", "content_type": 77, "codename": "change_certificategenerationhistory"}}, {"model": "auth.permission", "pk": 229, "fields": {"name": "Can delete certificate generation history", "content_type": 77, "codename": "delete_certificategenerationhistory"}}, {"model": "auth.permission", "pk": 230, "fields": {"name": "Can add certificate invalidation", "content_type": 78, "codename": "add_certificateinvalidation"}}, {"model": "auth.permission", "pk": 231, "fields": {"name": "Can change certificate invalidation", "content_type": 78, "codename": "change_certificateinvalidation"}}, {"model": "auth.permission", "pk": 232, "fields": {"name": "Can delete certificate invalidation", "content_type": 78, "codename": "delete_certificateinvalidation"}}, {"model": "auth.permission", "pk": 233, "fields": {"name": "Can add example certificate set", "content_type": 79, "codename": "add_examplecertificateset"}}, {"model": "auth.permission", "pk": 234, "fields": {"name": "Can change example certificate set", "content_type": 79, "codename": "change_examplecertificateset"}}, {"model": "auth.permission", "pk": 235, "fields": {"name": "Can delete example certificate set", "content_type": 79, "codename": "delete_examplecertificateset"}}, {"model": "auth.permission", "pk": 236, "fields": {"name": "Can add example certificate", "content_type": 80, "codename": "add_examplecertificate"}}, {"model": "auth.permission", "pk": 237, "fields": {"name": "Can change example certificate", "content_type": 80, "codename": "change_examplecertificate"}}, {"model": "auth.permission", "pk": 238, "fields": {"name": "Can delete example certificate", "content_type": 80, "codename": "delete_examplecertificate"}}, {"model": "auth.permission", "pk": 239, "fields": {"name": "Can add certificate generation course setting", "content_type": 81, "codename": "add_certificategenerationcoursesetting"}}, {"model": "auth.permission", "pk": 240, "fields": {"name": "Can change certificate generation course setting", "content_type": 81, "codename": "change_certificategenerationcoursesetting"}}, {"model": "auth.permission", "pk": 241, "fields": {"name": "Can delete certificate generation course setting", "content_type": 81, "codename": "delete_certificategenerationcoursesetting"}}, {"model": "auth.permission", "pk": 242, "fields": {"name": "Can add certificate generation configuration", "content_type": 82, "codename": "add_certificategenerationconfiguration"}}, {"model": "auth.permission", "pk": 243, "fields": {"name": "Can change certificate generation configuration", "content_type": 82, "codename": "change_certificategenerationconfiguration"}}, {"model": "auth.permission", "pk": 244, "fields": {"name": "Can delete certificate generation configuration", "content_type": 82, "codename": "delete_certificategenerationconfiguration"}}, {"model": "auth.permission", "pk": 245, "fields": {"name": "Can add certificate html view configuration", "content_type": 83, "codename": "add_certificatehtmlviewconfiguration"}}, {"model": "auth.permission", "pk": 246, "fields": {"name": "Can change certificate html view configuration", "content_type": 83, "codename": "change_certificatehtmlviewconfiguration"}}, {"model": "auth.permission", "pk": 247, "fields": {"name": "Can delete certificate html view configuration", "content_type": 83, "codename": "delete_certificatehtmlviewconfiguration"}}, {"model": "auth.permission", "pk": 248, "fields": {"name": "Can add certificate template", "content_type": 84, "codename": "add_certificatetemplate"}}, {"model": "auth.permission", "pk": 249, "fields": {"name": "Can change certificate template", "content_type": 84, "codename": "change_certificatetemplate"}}, {"model": "auth.permission", "pk": 250, "fields": {"name": "Can delete certificate template", "content_type": 84, "codename": "delete_certificatetemplate"}}, {"model": "auth.permission", "pk": 251, "fields": {"name": "Can add certificate template asset", "content_type": 85, "codename": "add_certificatetemplateasset"}}, {"model": "auth.permission", "pk": 252, "fields": {"name": "Can change certificate template asset", "content_type": 85, "codename": "change_certificatetemplateasset"}}, {"model": "auth.permission", "pk": 253, "fields": {"name": "Can delete certificate template asset", "content_type": 85, "codename": "delete_certificatetemplateasset"}}, {"model": "auth.permission", "pk": 254, "fields": {"name": "Can add instructor task", "content_type": 86, "codename": "add_instructortask"}}, {"model": "auth.permission", "pk": 255, "fields": {"name": "Can change instructor task", "content_type": 86, "codename": "change_instructortask"}}, {"model": "auth.permission", "pk": 256, "fields": {"name": "Can delete instructor task", "content_type": 86, "codename": "delete_instructortask"}}, {"model": "auth.permission", "pk": 257, "fields": {"name": "Can add grade report setting", "content_type": 87, "codename": "add_gradereportsetting"}}, {"model": "auth.permission", "pk": 258, "fields": {"name": "Can change grade report setting", "content_type": 87, "codename": "change_gradereportsetting"}}, {"model": "auth.permission", "pk": 259, "fields": {"name": "Can delete grade report setting", "content_type": 87, "codename": "delete_gradereportsetting"}}, {"model": "auth.permission", "pk": 260, "fields": {"name": "Can add course user group", "content_type": 88, "codename": "add_courseusergroup"}}, {"model": "auth.permission", "pk": 261, "fields": {"name": "Can change course user group", "content_type": 88, "codename": "change_courseusergroup"}}, {"model": "auth.permission", "pk": 262, "fields": {"name": "Can delete course user group", "content_type": 88, "codename": "delete_courseusergroup"}}, {"model": "auth.permission", "pk": 263, "fields": {"name": "Can add cohort membership", "content_type": 89, "codename": "add_cohortmembership"}}, {"model": "auth.permission", "pk": 264, "fields": {"name": "Can change cohort membership", "content_type": 89, "codename": "change_cohortmembership"}}, {"model": "auth.permission", "pk": 265, "fields": {"name": "Can delete cohort membership", "content_type": 89, "codename": "delete_cohortmembership"}}, {"model": "auth.permission", "pk": 266, "fields": {"name": "Can add course user group partition group", "content_type": 90, "codename": "add_courseusergrouppartitiongroup"}}, {"model": "auth.permission", "pk": 267, "fields": {"name": "Can change course user group partition group", "content_type": 90, "codename": "change_courseusergrouppartitiongroup"}}, {"model": "auth.permission", "pk": 268, "fields": {"name": "Can delete course user group partition group", "content_type": 90, "codename": "delete_courseusergrouppartitiongroup"}}, {"model": "auth.permission", "pk": 269, "fields": {"name": "Can add course cohorts settings", "content_type": 91, "codename": "add_coursecohortssettings"}}, {"model": "auth.permission", "pk": 270, "fields": {"name": "Can change course cohorts settings", "content_type": 91, "codename": "change_coursecohortssettings"}}, {"model": "auth.permission", "pk": 271, "fields": {"name": "Can delete course cohorts settings", "content_type": 91, "codename": "delete_coursecohortssettings"}}, {"model": "auth.permission", "pk": 272, "fields": {"name": "Can add course cohort", "content_type": 92, "codename": "add_coursecohort"}}, {"model": "auth.permission", "pk": 273, "fields": {"name": "Can change course cohort", "content_type": 92, "codename": "change_coursecohort"}}, {"model": "auth.permission", "pk": 274, "fields": {"name": "Can delete course cohort", "content_type": 92, "codename": "delete_coursecohort"}}, {"model": "auth.permission", "pk": 275, "fields": {"name": "Can add unregistered learner cohort assignments", "content_type": 93, "codename": "add_unregisteredlearnercohortassignments"}}, {"model": "auth.permission", "pk": 276, "fields": {"name": "Can change unregistered learner cohort assignments", "content_type": 93, "codename": "change_unregisteredlearnercohortassignments"}}, {"model": "auth.permission", "pk": 277, "fields": {"name": "Can delete unregistered learner cohort assignments", "content_type": 93, "codename": "delete_unregisteredlearnercohortassignments"}}, {"model": "auth.permission", "pk": 278, "fields": {"name": "Can add target", "content_type": 94, "codename": "add_target"}}, {"model": "auth.permission", "pk": 279, "fields": {"name": "Can change target", "content_type": 94, "codename": "change_target"}}, {"model": "auth.permission", "pk": 280, "fields": {"name": "Can delete target", "content_type": 94, "codename": "delete_target"}}, {"model": "auth.permission", "pk": 281, "fields": {"name": "Can add cohort target", "content_type": 95, "codename": "add_cohorttarget"}}, {"model": "auth.permission", "pk": 282, "fields": {"name": "Can change cohort target", "content_type": 95, "codename": "change_cohorttarget"}}, {"model": "auth.permission", "pk": 283, "fields": {"name": "Can delete cohort target", "content_type": 95, "codename": "delete_cohorttarget"}}, {"model": "auth.permission", "pk": 284, "fields": {"name": "Can add course mode target", "content_type": 96, "codename": "add_coursemodetarget"}}, {"model": "auth.permission", "pk": 285, "fields": {"name": "Can change course mode target", "content_type": 96, "codename": "change_coursemodetarget"}}, {"model": "auth.permission", "pk": 286, "fields": {"name": "Can delete course mode target", "content_type": 96, "codename": "delete_coursemodetarget"}}, {"model": "auth.permission", "pk": 287, "fields": {"name": "Can add course email", "content_type": 97, "codename": "add_courseemail"}}, {"model": "auth.permission", "pk": 288, "fields": {"name": "Can change course email", "content_type": 97, "codename": "change_courseemail"}}, {"model": "auth.permission", "pk": 289, "fields": {"name": "Can delete course email", "content_type": 97, "codename": "delete_courseemail"}}, {"model": "auth.permission", "pk": 290, "fields": {"name": "Can add optout", "content_type": 98, "codename": "add_optout"}}, {"model": "auth.permission", "pk": 291, "fields": {"name": "Can change optout", "content_type": 98, "codename": "change_optout"}}, {"model": "auth.permission", "pk": 292, "fields": {"name": "Can delete optout", "content_type": 98, "codename": "delete_optout"}}, {"model": "auth.permission", "pk": 293, "fields": {"name": "Can add course email template", "content_type": 99, "codename": "add_courseemailtemplate"}}, {"model": "auth.permission", "pk": 294, "fields": {"name": "Can change course email template", "content_type": 99, "codename": "change_courseemailtemplate"}}, {"model": "auth.permission", "pk": 295, "fields": {"name": "Can delete course email template", "content_type": 99, "codename": "delete_courseemailtemplate"}}, {"model": "auth.permission", "pk": 296, "fields": {"name": "Can add course authorization", "content_type": 100, "codename": "add_courseauthorization"}}, {"model": "auth.permission", "pk": 297, "fields": {"name": "Can change course authorization", "content_type": 100, "codename": "change_courseauthorization"}}, {"model": "auth.permission", "pk": 298, "fields": {"name": "Can delete course authorization", "content_type": 100, "codename": "delete_courseauthorization"}}, {"model": "auth.permission", "pk": 299, "fields": {"name": "Can add bulk email flag", "content_type": 101, "codename": "add_bulkemailflag"}}, {"model": "auth.permission", "pk": 300, "fields": {"name": "Can change bulk email flag", "content_type": 101, "codename": "change_bulkemailflag"}}, {"model": "auth.permission", "pk": 301, "fields": {"name": "Can delete bulk email flag", "content_type": 101, "codename": "delete_bulkemailflag"}}, {"model": "auth.permission", "pk": 302, "fields": {"name": "Can add branding info config", "content_type": 102, "codename": "add_brandinginfoconfig"}}, {"model": "auth.permission", "pk": 303, "fields": {"name": "Can change branding info config", "content_type": 102, "codename": "change_brandinginfoconfig"}}, {"model": "auth.permission", "pk": 304, "fields": {"name": "Can delete branding info config", "content_type": 102, "codename": "delete_brandinginfoconfig"}}, {"model": "auth.permission", "pk": 305, "fields": {"name": "Can add branding api config", "content_type": 103, "codename": "add_brandingapiconfig"}}, {"model": "auth.permission", "pk": 306, "fields": {"name": "Can change branding api config", "content_type": 103, "codename": "change_brandingapiconfig"}}, {"model": "auth.permission", "pk": 307, "fields": {"name": "Can delete branding api config", "content_type": 103, "codename": "delete_brandingapiconfig"}}, {"model": "auth.permission", "pk": 308, "fields": {"name": "Can add visible blocks", "content_type": 104, "codename": "add_visibleblocks"}}, {"model": "auth.permission", "pk": 309, "fields": {"name": "Can change visible blocks", "content_type": 104, "codename": "change_visibleblocks"}}, {"model": "auth.permission", "pk": 310, "fields": {"name": "Can delete visible blocks", "content_type": 104, "codename": "delete_visibleblocks"}}, {"model": "auth.permission", "pk": 311, "fields": {"name": "Can add persistent subsection grade", "content_type": 105, "codename": "add_persistentsubsectiongrade"}}, {"model": "auth.permission", "pk": 312, "fields": {"name": "Can change persistent subsection grade", "content_type": 105, "codename": "change_persistentsubsectiongrade"}}, {"model": "auth.permission", "pk": 313, "fields": {"name": "Can delete persistent subsection grade", "content_type": 105, "codename": "delete_persistentsubsectiongrade"}}, {"model": "auth.permission", "pk": 314, "fields": {"name": "Can add persistent course grade", "content_type": 106, "codename": "add_persistentcoursegrade"}}, {"model": "auth.permission", "pk": 315, "fields": {"name": "Can change persistent course grade", "content_type": 106, "codename": "change_persistentcoursegrade"}}, {"model": "auth.permission", "pk": 316, "fields": {"name": "Can delete persistent course grade", "content_type": 106, "codename": "delete_persistentcoursegrade"}}, {"model": "auth.permission", "pk": 317, "fields": {"name": "Can add persistent subsection grade override", "content_type": 107, "codename": "add_persistentsubsectiongradeoverride"}}, {"model": "auth.permission", "pk": 318, "fields": {"name": "Can change persistent subsection grade override", "content_type": 107, "codename": "change_persistentsubsectiongradeoverride"}}, {"model": "auth.permission", "pk": 319, "fields": {"name": "Can delete persistent subsection grade override", "content_type": 107, "codename": "delete_persistentsubsectiongradeoverride"}}, {"model": "auth.permission", "pk": 320, "fields": {"name": "Can add persistent grades enabled flag", "content_type": 108, "codename": "add_persistentgradesenabledflag"}}, {"model": "auth.permission", "pk": 321, "fields": {"name": "Can change persistent grades enabled flag", "content_type": 108, "codename": "change_persistentgradesenabledflag"}}, {"model": "auth.permission", "pk": 322, "fields": {"name": "Can delete persistent grades enabled flag", "content_type": 108, "codename": "delete_persistentgradesenabledflag"}}, {"model": "auth.permission", "pk": 323, "fields": {"name": "Can add course persistent grades flag", "content_type": 109, "codename": "add_coursepersistentgradesflag"}}, {"model": "auth.permission", "pk": 324, "fields": {"name": "Can change course persistent grades flag", "content_type": 109, "codename": "change_coursepersistentgradesflag"}}, {"model": "auth.permission", "pk": 325, "fields": {"name": "Can delete course persistent grades flag", "content_type": 109, "codename": "delete_coursepersistentgradesflag"}}, {"model": "auth.permission", "pk": 326, "fields": {"name": "Can add compute grades setting", "content_type": 110, "codename": "add_computegradessetting"}}, {"model": "auth.permission", "pk": 327, "fields": {"name": "Can change compute grades setting", "content_type": 110, "codename": "change_computegradessetting"}}, {"model": "auth.permission", "pk": 328, "fields": {"name": "Can delete compute grades setting", "content_type": 110, "codename": "delete_computegradessetting"}}, {"model": "auth.permission", "pk": 329, "fields": {"name": "Can add external auth map", "content_type": 111, "codename": "add_externalauthmap"}}, {"model": "auth.permission", "pk": 330, "fields": {"name": "Can change external auth map", "content_type": 111, "codename": "change_externalauthmap"}}, {"model": "auth.permission", "pk": 331, "fields": {"name": "Can delete external auth map", "content_type": 111, "codename": "delete_externalauthmap"}}, {"model": "auth.permission", "pk": 332, "fields": {"name": "Can add nonce", "content_type": 112, "codename": "add_nonce"}}, {"model": "auth.permission", "pk": 333, "fields": {"name": "Can change nonce", "content_type": 112, "codename": "change_nonce"}}, {"model": "auth.permission", "pk": 334, "fields": {"name": "Can delete nonce", "content_type": 112, "codename": "delete_nonce"}}, {"model": "auth.permission", "pk": 335, "fields": {"name": "Can add association", "content_type": 113, "codename": "add_association"}}, {"model": "auth.permission", "pk": 336, "fields": {"name": "Can change association", "content_type": 113, "codename": "change_association"}}, {"model": "auth.permission", "pk": 337, "fields": {"name": "Can delete association", "content_type": 113, "codename": "delete_association"}}, {"model": "auth.permission", "pk": 338, "fields": {"name": "Can add user open id", "content_type": 114, "codename": "add_useropenid"}}, {"model": "auth.permission", "pk": 339, "fields": {"name": "Can change user open id", "content_type": 114, "codename": "change_useropenid"}}, {"model": "auth.permission", "pk": 340, "fields": {"name": "Can delete user open id", "content_type": 114, "codename": "delete_useropenid"}}, {"model": "auth.permission", "pk": 341, "fields": {"name": "The OpenID has been verified", "content_type": 114, "codename": "account_verified"}}, {"model": "auth.permission", "pk": 342, "fields": {"name": "Can add client", "content_type": 115, "codename": "add_client"}}, {"model": "auth.permission", "pk": 343, "fields": {"name": "Can change client", "content_type": 115, "codename": "change_client"}}, {"model": "auth.permission", "pk": 344, "fields": {"name": "Can delete client", "content_type": 115, "codename": "delete_client"}}, {"model": "auth.permission", "pk": 345, "fields": {"name": "Can add grant", "content_type": 116, "codename": "add_grant"}}, {"model": "auth.permission", "pk": 346, "fields": {"name": "Can change grant", "content_type": 116, "codename": "change_grant"}}, {"model": "auth.permission", "pk": 347, "fields": {"name": "Can delete grant", "content_type": 116, "codename": "delete_grant"}}, {"model": "auth.permission", "pk": 348, "fields": {"name": "Can add access token", "content_type": 117, "codename": "add_accesstoken"}}, {"model": "auth.permission", "pk": 349, "fields": {"name": "Can change access token", "content_type": 117, "codename": "change_accesstoken"}}, {"model": "auth.permission", "pk": 350, "fields": {"name": "Can delete access token", "content_type": 117, "codename": "delete_accesstoken"}}, {"model": "auth.permission", "pk": 351, "fields": {"name": "Can add refresh token", "content_type": 118, "codename": "add_refreshtoken"}}, {"model": "auth.permission", "pk": 352, "fields": {"name": "Can change refresh token", "content_type": 118, "codename": "change_refreshtoken"}}, {"model": "auth.permission", "pk": 353, "fields": {"name": "Can delete refresh token", "content_type": 118, "codename": "delete_refreshtoken"}}, {"model": "auth.permission", "pk": 354, "fields": {"name": "Can add trusted client", "content_type": 119, "codename": "add_trustedclient"}}, {"model": "auth.permission", "pk": 355, "fields": {"name": "Can change trusted client", "content_type": 119, "codename": "change_trustedclient"}}, {"model": "auth.permission", "pk": 356, "fields": {"name": "Can delete trusted client", "content_type": 119, "codename": "delete_trustedclient"}}, {"model": "auth.permission", "pk": 357, "fields": {"name": "Can add application", "content_type": 120, "codename": "add_application"}}, {"model": "auth.permission", "pk": 358, "fields": {"name": "Can change application", "content_type": 120, "codename": "change_application"}}, {"model": "auth.permission", "pk": 359, "fields": {"name": "Can delete application", "content_type": 120, "codename": "delete_application"}}, {"model": "auth.permission", "pk": 360, "fields": {"name": "Can add grant", "content_type": 121, "codename": "add_grant"}}, {"model": "auth.permission", "pk": 361, "fields": {"name": "Can change grant", "content_type": 121, "codename": "change_grant"}}, {"model": "auth.permission", "pk": 362, "fields": {"name": "Can delete grant", "content_type": 121, "codename": "delete_grant"}}, {"model": "auth.permission", "pk": 363, "fields": {"name": "Can add access token", "content_type": 122, "codename": "add_accesstoken"}}, {"model": "auth.permission", "pk": 364, "fields": {"name": "Can change access token", "content_type": 122, "codename": "change_accesstoken"}}, {"model": "auth.permission", "pk": 365, "fields": {"name": "Can delete access token", "content_type": 122, "codename": "delete_accesstoken"}}, {"model": "auth.permission", "pk": 366, "fields": {"name": "Can add refresh token", "content_type": 123, "codename": "add_refreshtoken"}}, {"model": "auth.permission", "pk": 367, "fields": {"name": "Can change refresh token", "content_type": 123, "codename": "change_refreshtoken"}}, {"model": "auth.permission", "pk": 368, "fields": {"name": "Can delete refresh token", "content_type": 123, "codename": "delete_refreshtoken"}}, {"model": "auth.permission", "pk": 369, "fields": {"name": "Can add restricted application", "content_type": 124, "codename": "add_restrictedapplication"}}, {"model": "auth.permission", "pk": 370, "fields": {"name": "Can change restricted application", "content_type": 124, "codename": "change_restrictedapplication"}}, {"model": "auth.permission", "pk": 371, "fields": {"name": "Can delete restricted application", "content_type": 124, "codename": "delete_restrictedapplication"}}, {"model": "auth.permission", "pk": 372, "fields": {"name": "Can add Provider Configuration (OAuth)", "content_type": 125, "codename": "add_oauth2providerconfig"}}, {"model": "auth.permission", "pk": 373, "fields": {"name": "Can change Provider Configuration (OAuth)", "content_type": 125, "codename": "change_oauth2providerconfig"}}, {"model": "auth.permission", "pk": 374, "fields": {"name": "Can delete Provider Configuration (OAuth)", "content_type": 125, "codename": "delete_oauth2providerconfig"}}, {"model": "auth.permission", "pk": 375, "fields": {"name": "Can add Provider Configuration (SAML IdP)", "content_type": 126, "codename": "add_samlproviderconfig"}}, {"model": "auth.permission", "pk": 376, "fields": {"name": "Can change Provider Configuration (SAML IdP)", "content_type": 126, "codename": "change_samlproviderconfig"}}, {"model": "auth.permission", "pk": 377, "fields": {"name": "Can delete Provider Configuration (SAML IdP)", "content_type": 126, "codename": "delete_samlproviderconfig"}}, {"model": "auth.permission", "pk": 378, "fields": {"name": "Can add SAML Configuration", "content_type": 127, "codename": "add_samlconfiguration"}}, {"model": "auth.permission", "pk": 379, "fields": {"name": "Can change SAML Configuration", "content_type": 127, "codename": "change_samlconfiguration"}}, {"model": "auth.permission", "pk": 380, "fields": {"name": "Can delete SAML Configuration", "content_type": 127, "codename": "delete_samlconfiguration"}}, {"model": "auth.permission", "pk": 381, "fields": {"name": "Can add SAML Provider Data", "content_type": 128, "codename": "add_samlproviderdata"}}, {"model": "auth.permission", "pk": 382, "fields": {"name": "Can change SAML Provider Data", "content_type": 128, "codename": "change_samlproviderdata"}}, {"model": "auth.permission", "pk": 383, "fields": {"name": "Can delete SAML Provider Data", "content_type": 128, "codename": "delete_samlproviderdata"}}, {"model": "auth.permission", "pk": 384, "fields": {"name": "Can add Provider Configuration (LTI)", "content_type": 129, "codename": "add_ltiproviderconfig"}}, {"model": "auth.permission", "pk": 385, "fields": {"name": "Can change Provider Configuration (LTI)", "content_type": 129, "codename": "change_ltiproviderconfig"}}, {"model": "auth.permission", "pk": 386, "fields": {"name": "Can delete Provider Configuration (LTI)", "content_type": 129, "codename": "delete_ltiproviderconfig"}}, {"model": "auth.permission", "pk": 387, "fields": {"name": "Can add Provider API Permission", "content_type": 130, "codename": "add_providerapipermissions"}}, {"model": "auth.permission", "pk": 388, "fields": {"name": "Can change Provider API Permission", "content_type": 130, "codename": "change_providerapipermissions"}}, {"model": "auth.permission", "pk": 389, "fields": {"name": "Can delete Provider API Permission", "content_type": 130, "codename": "delete_providerapipermissions"}}, {"model": "auth.permission", "pk": 390, "fields": {"name": "Can add nonce", "content_type": 131, "codename": "add_nonce"}}, {"model": "auth.permission", "pk": 391, "fields": {"name": "Can change nonce", "content_type": 131, "codename": "change_nonce"}}, {"model": "auth.permission", "pk": 392, "fields": {"name": "Can delete nonce", "content_type": 131, "codename": "delete_nonce"}}, {"model": "auth.permission", "pk": 393, "fields": {"name": "Can add scope", "content_type": 132, "codename": "add_scope"}}, {"model": "auth.permission", "pk": 394, "fields": {"name": "Can change scope", "content_type": 132, "codename": "change_scope"}}, {"model": "auth.permission", "pk": 395, "fields": {"name": "Can delete scope", "content_type": 132, "codename": "delete_scope"}}, {"model": "auth.permission", "pk": 396, "fields": {"name": "Can add resource", "content_type": 132, "codename": "add_resource"}}, {"model": "auth.permission", "pk": 397, "fields": {"name": "Can change resource", "content_type": 132, "codename": "change_resource"}}, {"model": "auth.permission", "pk": 398, "fields": {"name": "Can delete resource", "content_type": 132, "codename": "delete_resource"}}, {"model": "auth.permission", "pk": 399, "fields": {"name": "Can add consumer", "content_type": 133, "codename": "add_consumer"}}, {"model": "auth.permission", "pk": 400, "fields": {"name": "Can change consumer", "content_type": 133, "codename": "change_consumer"}}, {"model": "auth.permission", "pk": 401, "fields": {"name": "Can delete consumer", "content_type": 133, "codename": "delete_consumer"}}, {"model": "auth.permission", "pk": 402, "fields": {"name": "Can add token", "content_type": 134, "codename": "add_token"}}, {"model": "auth.permission", "pk": 403, "fields": {"name": "Can change token", "content_type": 134, "codename": "change_token"}}, {"model": "auth.permission", "pk": 404, "fields": {"name": "Can delete token", "content_type": 134, "codename": "delete_token"}}, {"model": "auth.permission", "pk": 405, "fields": {"name": "Can add article", "content_type": 136, "codename": "add_article"}}, {"model": "auth.permission", "pk": 406, "fields": {"name": "Can change article", "content_type": 136, "codename": "change_article"}}, {"model": "auth.permission", "pk": 407, "fields": {"name": "Can delete article", "content_type": 136, "codename": "delete_article"}}, {"model": "auth.permission", "pk": 408, "fields": {"name": "Can edit all articles and lock/unlock/restore", "content_type": 136, "codename": "moderate"}}, {"model": "auth.permission", "pk": 409, "fields": {"name": "Can change ownership of any article", "content_type": 136, "codename": "assign"}}, {"model": "auth.permission", "pk": 410, "fields": {"name": "Can assign permissions to other users", "content_type": 136, "codename": "grant"}}, {"model": "auth.permission", "pk": 411, "fields": {"name": "Can add Article for object", "content_type": 137, "codename": "add_articleforobject"}}, {"model": "auth.permission", "pk": 412, "fields": {"name": "Can change Article for object", "content_type": 137, "codename": "change_articleforobject"}}, {"model": "auth.permission", "pk": 413, "fields": {"name": "Can delete Article for object", "content_type": 137, "codename": "delete_articleforobject"}}, {"model": "auth.permission", "pk": 414, "fields": {"name": "Can add article revision", "content_type": 138, "codename": "add_articlerevision"}}, {"model": "auth.permission", "pk": 415, "fields": {"name": "Can change article revision", "content_type": 138, "codename": "change_articlerevision"}}, {"model": "auth.permission", "pk": 416, "fields": {"name": "Can delete article revision", "content_type": 138, "codename": "delete_articlerevision"}}, {"model": "auth.permission", "pk": 417, "fields": {"name": "Can add article plugin", "content_type": 139, "codename": "add_articleplugin"}}, {"model": "auth.permission", "pk": 418, "fields": {"name": "Can change article plugin", "content_type": 139, "codename": "change_articleplugin"}}, {"model": "auth.permission", "pk": 419, "fields": {"name": "Can delete article plugin", "content_type": 139, "codename": "delete_articleplugin"}}, {"model": "auth.permission", "pk": 420, "fields": {"name": "Can add reusable plugin", "content_type": 140, "codename": "add_reusableplugin"}}, {"model": "auth.permission", "pk": 421, "fields": {"name": "Can change reusable plugin", "content_type": 140, "codename": "change_reusableplugin"}}, {"model": "auth.permission", "pk": 422, "fields": {"name": "Can delete reusable plugin", "content_type": 140, "codename": "delete_reusableplugin"}}, {"model": "auth.permission", "pk": 423, "fields": {"name": "Can add simple plugin", "content_type": 141, "codename": "add_simpleplugin"}}, {"model": "auth.permission", "pk": 424, "fields": {"name": "Can change simple plugin", "content_type": 141, "codename": "change_simpleplugin"}}, {"model": "auth.permission", "pk": 425, "fields": {"name": "Can delete simple plugin", "content_type": 141, "codename": "delete_simpleplugin"}}, {"model": "auth.permission", "pk": 426, "fields": {"name": "Can add revision plugin", "content_type": 142, "codename": "add_revisionplugin"}}, {"model": "auth.permission", "pk": 427, "fields": {"name": "Can change revision plugin", "content_type": 142, "codename": "change_revisionplugin"}}, {"model": "auth.permission", "pk": 428, "fields": {"name": "Can delete revision plugin", "content_type": 142, "codename": "delete_revisionplugin"}}, {"model": "auth.permission", "pk": 429, "fields": {"name": "Can add revision plugin revision", "content_type": 143, "codename": "add_revisionpluginrevision"}}, {"model": "auth.permission", "pk": 430, "fields": {"name": "Can change revision plugin revision", "content_type": 143, "codename": "change_revisionpluginrevision"}}, {"model": "auth.permission", "pk": 431, "fields": {"name": "Can delete revision plugin revision", "content_type": 143, "codename": "delete_revisionpluginrevision"}}, {"model": "auth.permission", "pk": 432, "fields": {"name": "Can add URL path", "content_type": 144, "codename": "add_urlpath"}}, {"model": "auth.permission", "pk": 433, "fields": {"name": "Can change URL path", "content_type": 144, "codename": "change_urlpath"}}, {"model": "auth.permission", "pk": 434, "fields": {"name": "Can delete URL path", "content_type": 144, "codename": "delete_urlpath"}}, {"model": "auth.permission", "pk": 435, "fields": {"name": "Can add type", "content_type": 145, "codename": "add_notificationtype"}}, {"model": "auth.permission", "pk": 436, "fields": {"name": "Can change type", "content_type": 145, "codename": "change_notificationtype"}}, {"model": "auth.permission", "pk": 437, "fields": {"name": "Can delete type", "content_type": 145, "codename": "delete_notificationtype"}}, {"model": "auth.permission", "pk": 438, "fields": {"name": "Can add settings", "content_type": 146, "codename": "add_settings"}}, {"model": "auth.permission", "pk": 439, "fields": {"name": "Can change settings", "content_type": 146, "codename": "change_settings"}}, {"model": "auth.permission", "pk": 440, "fields": {"name": "Can delete settings", "content_type": 146, "codename": "delete_settings"}}, {"model": "auth.permission", "pk": 441, "fields": {"name": "Can add subscription", "content_type": 147, "codename": "add_subscription"}}, {"model": "auth.permission", "pk": 442, "fields": {"name": "Can change subscription", "content_type": 147, "codename": "change_subscription"}}, {"model": "auth.permission", "pk": 443, "fields": {"name": "Can delete subscription", "content_type": 147, "codename": "delete_subscription"}}, {"model": "auth.permission", "pk": 444, "fields": {"name": "Can add notification", "content_type": 148, "codename": "add_notification"}}, {"model": "auth.permission", "pk": 445, "fields": {"name": "Can change notification", "content_type": 148, "codename": "change_notification"}}, {"model": "auth.permission", "pk": 446, "fields": {"name": "Can delete notification", "content_type": 148, "codename": "delete_notification"}}, {"model": "auth.permission", "pk": 447, "fields": {"name": "Can add log entry", "content_type": 149, "codename": "add_logentry"}}, {"model": "auth.permission", "pk": 448, "fields": {"name": "Can change log entry", "content_type": 149, "codename": "change_logentry"}}, {"model": "auth.permission", "pk": 449, "fields": {"name": "Can delete log entry", "content_type": 149, "codename": "delete_logentry"}}, {"model": "auth.permission", "pk": 450, "fields": {"name": "Can add role", "content_type": 150, "codename": "add_role"}}, {"model": "auth.permission", "pk": 451, "fields": {"name": "Can change role", "content_type": 150, "codename": "change_role"}}, {"model": "auth.permission", "pk": 452, "fields": {"name": "Can delete role", "content_type": 150, "codename": "delete_role"}}, {"model": "auth.permission", "pk": 453, "fields": {"name": "Can add permission", "content_type": 151, "codename": "add_permission"}}, {"model": "auth.permission", "pk": 454, "fields": {"name": "Can change permission", "content_type": 151, "codename": "change_permission"}}, {"model": "auth.permission", "pk": 455, "fields": {"name": "Can delete permission", "content_type": 151, "codename": "delete_permission"}}, {"model": "auth.permission", "pk": 456, "fields": {"name": "Can add forums config", "content_type": 152, "codename": "add_forumsconfig"}}, {"model": "auth.permission", "pk": 457, "fields": {"name": "Can change forums config", "content_type": 152, "codename": "change_forumsconfig"}}, {"model": "auth.permission", "pk": 458, "fields": {"name": "Can delete forums config", "content_type": 152, "codename": "delete_forumsconfig"}}, {"model": "auth.permission", "pk": 459, "fields": {"name": "Can add course discussion settings", "content_type": 153, "codename": "add_coursediscussionsettings"}}, {"model": "auth.permission", "pk": 460, "fields": {"name": "Can change course discussion settings", "content_type": 153, "codename": "change_coursediscussionsettings"}}, {"model": "auth.permission", "pk": 461, "fields": {"name": "Can delete course discussion settings", "content_type": 153, "codename": "delete_coursediscussionsettings"}}, {"model": "auth.permission", "pk": 462, "fields": {"name": "Can add note", "content_type": 154, "codename": "add_note"}}, {"model": "auth.permission", "pk": 463, "fields": {"name": "Can change note", "content_type": 154, "codename": "change_note"}}, {"model": "auth.permission", "pk": 464, "fields": {"name": "Can delete note", "content_type": 154, "codename": "delete_note"}}, {"model": "auth.permission", "pk": 465, "fields": {"name": "Can add splash config", "content_type": 155, "codename": "add_splashconfig"}}, {"model": "auth.permission", "pk": 466, "fields": {"name": "Can change splash config", "content_type": 155, "codename": "change_splashconfig"}}, {"model": "auth.permission", "pk": 467, "fields": {"name": "Can delete splash config", "content_type": 155, "codename": "delete_splashconfig"}}, {"model": "auth.permission", "pk": 468, "fields": {"name": "Can add user preference", "content_type": 156, "codename": "add_userpreference"}}, {"model": "auth.permission", "pk": 469, "fields": {"name": "Can change user preference", "content_type": 156, "codename": "change_userpreference"}}, {"model": "auth.permission", "pk": 470, "fields": {"name": "Can delete user preference", "content_type": 156, "codename": "delete_userpreference"}}, {"model": "auth.permission", "pk": 471, "fields": {"name": "Can add user course tag", "content_type": 157, "codename": "add_usercoursetag"}}, {"model": "auth.permission", "pk": 472, "fields": {"name": "Can change user course tag", "content_type": 157, "codename": "change_usercoursetag"}}, {"model": "auth.permission", "pk": 473, "fields": {"name": "Can delete user course tag", "content_type": 157, "codename": "delete_usercoursetag"}}, {"model": "auth.permission", "pk": 474, "fields": {"name": "Can add user org tag", "content_type": 158, "codename": "add_userorgtag"}}, {"model": "auth.permission", "pk": 475, "fields": {"name": "Can change user org tag", "content_type": 158, "codename": "change_userorgtag"}}, {"model": "auth.permission", "pk": 476, "fields": {"name": "Can delete user org tag", "content_type": 158, "codename": "delete_userorgtag"}}, {"model": "auth.permission", "pk": 477, "fields": {"name": "Can add order", "content_type": 159, "codename": "add_order"}}, {"model": "auth.permission", "pk": 478, "fields": {"name": "Can change order", "content_type": 159, "codename": "change_order"}}, {"model": "auth.permission", "pk": 479, "fields": {"name": "Can delete order", "content_type": 159, "codename": "delete_order"}}, {"model": "auth.permission", "pk": 480, "fields": {"name": "Can add order item", "content_type": 160, "codename": "add_orderitem"}}, {"model": "auth.permission", "pk": 481, "fields": {"name": "Can change order item", "content_type": 160, "codename": "change_orderitem"}}, {"model": "auth.permission", "pk": 482, "fields": {"name": "Can delete order item", "content_type": 160, "codename": "delete_orderitem"}}, {"model": "auth.permission", "pk": 483, "fields": {"name": "Can add invoice", "content_type": 161, "codename": "add_invoice"}}, {"model": "auth.permission", "pk": 484, "fields": {"name": "Can change invoice", "content_type": 161, "codename": "change_invoice"}}, {"model": "auth.permission", "pk": 485, "fields": {"name": "Can delete invoice", "content_type": 161, "codename": "delete_invoice"}}, {"model": "auth.permission", "pk": 486, "fields": {"name": "Can add invoice transaction", "content_type": 162, "codename": "add_invoicetransaction"}}, {"model": "auth.permission", "pk": 487, "fields": {"name": "Can change invoice transaction", "content_type": 162, "codename": "change_invoicetransaction"}}, {"model": "auth.permission", "pk": 488, "fields": {"name": "Can delete invoice transaction", "content_type": 162, "codename": "delete_invoicetransaction"}}, {"model": "auth.permission", "pk": 489, "fields": {"name": "Can add invoice item", "content_type": 163, "codename": "add_invoiceitem"}}, {"model": "auth.permission", "pk": 490, "fields": {"name": "Can change invoice item", "content_type": 163, "codename": "change_invoiceitem"}}, {"model": "auth.permission", "pk": 491, "fields": {"name": "Can delete invoice item", "content_type": 163, "codename": "delete_invoiceitem"}}, {"model": "auth.permission", "pk": 492, "fields": {"name": "Can add course registration code invoice item", "content_type": 164, "codename": "add_courseregistrationcodeinvoiceitem"}}, {"model": "auth.permission", "pk": 493, "fields": {"name": "Can change course registration code invoice item", "content_type": 164, "codename": "change_courseregistrationcodeinvoiceitem"}}, {"model": "auth.permission", "pk": 494, "fields": {"name": "Can delete course registration code invoice item", "content_type": 164, "codename": "delete_courseregistrationcodeinvoiceitem"}}, {"model": "auth.permission", "pk": 495, "fields": {"name": "Can add invoice history", "content_type": 165, "codename": "add_invoicehistory"}}, {"model": "auth.permission", "pk": 496, "fields": {"name": "Can change invoice history", "content_type": 165, "codename": "change_invoicehistory"}}, {"model": "auth.permission", "pk": 497, "fields": {"name": "Can delete invoice history", "content_type": 165, "codename": "delete_invoicehistory"}}, {"model": "auth.permission", "pk": 498, "fields": {"name": "Can add course registration code", "content_type": 166, "codename": "add_courseregistrationcode"}}, {"model": "auth.permission", "pk": 499, "fields": {"name": "Can change course registration code", "content_type": 166, "codename": "change_courseregistrationcode"}}, {"model": "auth.permission", "pk": 500, "fields": {"name": "Can delete course registration code", "content_type": 166, "codename": "delete_courseregistrationcode"}}, {"model": "auth.permission", "pk": 501, "fields": {"name": "Can add registration code redemption", "content_type": 167, "codename": "add_registrationcoderedemption"}}, {"model": "auth.permission", "pk": 502, "fields": {"name": "Can change registration code redemption", "content_type": 167, "codename": "change_registrationcoderedemption"}}, {"model": "auth.permission", "pk": 503, "fields": {"name": "Can delete registration code redemption", "content_type": 167, "codename": "delete_registrationcoderedemption"}}, {"model": "auth.permission", "pk": 504, "fields": {"name": "Can add coupon", "content_type": 168, "codename": "add_coupon"}}, {"model": "auth.permission", "pk": 505, "fields": {"name": "Can change coupon", "content_type": 168, "codename": "change_coupon"}}, {"model": "auth.permission", "pk": 506, "fields": {"name": "Can delete coupon", "content_type": 168, "codename": "delete_coupon"}}, {"model": "auth.permission", "pk": 507, "fields": {"name": "Can add coupon redemption", "content_type": 169, "codename": "add_couponredemption"}}, {"model": "auth.permission", "pk": 508, "fields": {"name": "Can change coupon redemption", "content_type": 169, "codename": "change_couponredemption"}}, {"model": "auth.permission", "pk": 509, "fields": {"name": "Can delete coupon redemption", "content_type": 169, "codename": "delete_couponredemption"}}, {"model": "auth.permission", "pk": 510, "fields": {"name": "Can add paid course registration", "content_type": 170, "codename": "add_paidcourseregistration"}}, {"model": "auth.permission", "pk": 511, "fields": {"name": "Can change paid course registration", "content_type": 170, "codename": "change_paidcourseregistration"}}, {"model": "auth.permission", "pk": 512, "fields": {"name": "Can delete paid course registration", "content_type": 170, "codename": "delete_paidcourseregistration"}}, {"model": "auth.permission", "pk": 513, "fields": {"name": "Can add course reg code item", "content_type": 171, "codename": "add_courseregcodeitem"}}, {"model": "auth.permission", "pk": 514, "fields": {"name": "Can change course reg code item", "content_type": 171, "codename": "change_courseregcodeitem"}}, {"model": "auth.permission", "pk": 515, "fields": {"name": "Can delete course reg code item", "content_type": 171, "codename": "delete_courseregcodeitem"}}, {"model": "auth.permission", "pk": 516, "fields": {"name": "Can add course reg code item annotation", "content_type": 172, "codename": "add_courseregcodeitemannotation"}}, {"model": "auth.permission", "pk": 517, "fields": {"name": "Can change course reg code item annotation", "content_type": 172, "codename": "change_courseregcodeitemannotation"}}, {"model": "auth.permission", "pk": 518, "fields": {"name": "Can delete course reg code item annotation", "content_type": 172, "codename": "delete_courseregcodeitemannotation"}}, {"model": "auth.permission", "pk": 519, "fields": {"name": "Can add paid course registration annotation", "content_type": 173, "codename": "add_paidcourseregistrationannotation"}}, {"model": "auth.permission", "pk": 520, "fields": {"name": "Can change paid course registration annotation", "content_type": 173, "codename": "change_paidcourseregistrationannotation"}}, {"model": "auth.permission", "pk": 521, "fields": {"name": "Can delete paid course registration annotation", "content_type": 173, "codename": "delete_paidcourseregistrationannotation"}}, {"model": "auth.permission", "pk": 522, "fields": {"name": "Can add certificate item", "content_type": 174, "codename": "add_certificateitem"}}, {"model": "auth.permission", "pk": 523, "fields": {"name": "Can change certificate item", "content_type": 174, "codename": "change_certificateitem"}}, {"model": "auth.permission", "pk": 524, "fields": {"name": "Can delete certificate item", "content_type": 174, "codename": "delete_certificateitem"}}, {"model": "auth.permission", "pk": 525, "fields": {"name": "Can add donation configuration", "content_type": 175, "codename": "add_donationconfiguration"}}, {"model": "auth.permission", "pk": 526, "fields": {"name": "Can change donation configuration", "content_type": 175, "codename": "change_donationconfiguration"}}, {"model": "auth.permission", "pk": 527, "fields": {"name": "Can delete donation configuration", "content_type": 175, "codename": "delete_donationconfiguration"}}, {"model": "auth.permission", "pk": 528, "fields": {"name": "Can add donation", "content_type": 176, "codename": "add_donation"}}, {"model": "auth.permission", "pk": 529, "fields": {"name": "Can change donation", "content_type": 176, "codename": "change_donation"}}, {"model": "auth.permission", "pk": 530, "fields": {"name": "Can delete donation", "content_type": 176, "codename": "delete_donation"}}, {"model": "auth.permission", "pk": 531, "fields": {"name": "Can add course mode", "content_type": 177, "codename": "add_coursemode"}}, {"model": "auth.permission", "pk": 532, "fields": {"name": "Can change course mode", "content_type": 177, "codename": "change_coursemode"}}, {"model": "auth.permission", "pk": 533, "fields": {"name": "Can delete course mode", "content_type": 177, "codename": "delete_coursemode"}}, {"model": "auth.permission", "pk": 534, "fields": {"name": "Can add course modes archive", "content_type": 178, "codename": "add_coursemodesarchive"}}, {"model": "auth.permission", "pk": 535, "fields": {"name": "Can change course modes archive", "content_type": 178, "codename": "change_coursemodesarchive"}}, {"model": "auth.permission", "pk": 536, "fields": {"name": "Can delete course modes archive", "content_type": 178, "codename": "delete_coursemodesarchive"}}, {"model": "auth.permission", "pk": 537, "fields": {"name": "Can add course mode expiration config", "content_type": 179, "codename": "add_coursemodeexpirationconfig"}}, {"model": "auth.permission", "pk": 538, "fields": {"name": "Can change course mode expiration config", "content_type": 179, "codename": "change_coursemodeexpirationconfig"}}, {"model": "auth.permission", "pk": 539, "fields": {"name": "Can delete course mode expiration config", "content_type": 179, "codename": "delete_coursemodeexpirationconfig"}}, {"model": "auth.permission", "pk": 540, "fields": {"name": "Can add course entitlement", "content_type": 180, "codename": "add_courseentitlement"}}, {"model": "auth.permission", "pk": 541, "fields": {"name": "Can change course entitlement", "content_type": 180, "codename": "change_courseentitlement"}}, {"model": "auth.permission", "pk": 542, "fields": {"name": "Can delete course entitlement", "content_type": 180, "codename": "delete_courseentitlement"}}, {"model": "auth.permission", "pk": 543, "fields": {"name": "Can add software secure photo verification", "content_type": 181, "codename": "add_softwaresecurephotoverification"}}, {"model": "auth.permission", "pk": 544, "fields": {"name": "Can change software secure photo verification", "content_type": 181, "codename": "change_softwaresecurephotoverification"}}, {"model": "auth.permission", "pk": 545, "fields": {"name": "Can delete software secure photo verification", "content_type": 181, "codename": "delete_softwaresecurephotoverification"}}, {"model": "auth.permission", "pk": 546, "fields": {"name": "Can add verification deadline", "content_type": 182, "codename": "add_verificationdeadline"}}, {"model": "auth.permission", "pk": 547, "fields": {"name": "Can change verification deadline", "content_type": 182, "codename": "change_verificationdeadline"}}, {"model": "auth.permission", "pk": 548, "fields": {"name": "Can delete verification deadline", "content_type": 182, "codename": "delete_verificationdeadline"}}, {"model": "auth.permission", "pk": 549, "fields": {"name": "Can add verification checkpoint", "content_type": 183, "codename": "add_verificationcheckpoint"}}, {"model": "auth.permission", "pk": 550, "fields": {"name": "Can change verification checkpoint", "content_type": 183, "codename": "change_verificationcheckpoint"}}, {"model": "auth.permission", "pk": 551, "fields": {"name": "Can delete verification checkpoint", "content_type": 183, "codename": "delete_verificationcheckpoint"}}, {"model": "auth.permission", "pk": 552, "fields": {"name": "Can add Verification Status", "content_type": 184, "codename": "add_verificationstatus"}}, {"model": "auth.permission", "pk": 553, "fields": {"name": "Can change Verification Status", "content_type": 184, "codename": "change_verificationstatus"}}, {"model": "auth.permission", "pk": 554, "fields": {"name": "Can delete Verification Status", "content_type": 184, "codename": "delete_verificationstatus"}}, {"model": "auth.permission", "pk": 555, "fields": {"name": "Can add in course reverification configuration", "content_type": 185, "codename": "add_incoursereverificationconfiguration"}}, {"model": "auth.permission", "pk": 556, "fields": {"name": "Can change in course reverification configuration", "content_type": 185, "codename": "change_incoursereverificationconfiguration"}}, {"model": "auth.permission", "pk": 557, "fields": {"name": "Can delete in course reverification configuration", "content_type": 185, "codename": "delete_incoursereverificationconfiguration"}}, {"model": "auth.permission", "pk": 558, "fields": {"name": "Can add icrv status emails configuration", "content_type": 186, "codename": "add_icrvstatusemailsconfiguration"}}, {"model": "auth.permission", "pk": 559, "fields": {"name": "Can change icrv status emails configuration", "content_type": 186, "codename": "change_icrvstatusemailsconfiguration"}}, {"model": "auth.permission", "pk": 560, "fields": {"name": "Can delete icrv status emails configuration", "content_type": 186, "codename": "delete_icrvstatusemailsconfiguration"}}, {"model": "auth.permission", "pk": 561, "fields": {"name": "Can add skipped reverification", "content_type": 187, "codename": "add_skippedreverification"}}, {"model": "auth.permission", "pk": 562, "fields": {"name": "Can change skipped reverification", "content_type": 187, "codename": "change_skippedreverification"}}, {"model": "auth.permission", "pk": 563, "fields": {"name": "Can delete skipped reverification", "content_type": 187, "codename": "delete_skippedreverification"}}, {"model": "auth.permission", "pk": 564, "fields": {"name": "Can add dark lang config", "content_type": 188, "codename": "add_darklangconfig"}}, {"model": "auth.permission", "pk": 565, "fields": {"name": "Can change dark lang config", "content_type": 188, "codename": "change_darklangconfig"}}, {"model": "auth.permission", "pk": 566, "fields": {"name": "Can delete dark lang config", "content_type": 188, "codename": "delete_darklangconfig"}}, {"model": "auth.permission", "pk": 567, "fields": {"name": "Can add microsite", "content_type": 189, "codename": "add_microsite"}}, {"model": "auth.permission", "pk": 568, "fields": {"name": "Can change microsite", "content_type": 189, "codename": "change_microsite"}}, {"model": "auth.permission", "pk": 569, "fields": {"name": "Can delete microsite", "content_type": 189, "codename": "delete_microsite"}}, {"model": "auth.permission", "pk": 570, "fields": {"name": "Can add microsite history", "content_type": 190, "codename": "add_micrositehistory"}}, {"model": "auth.permission", "pk": 571, "fields": {"name": "Can change microsite history", "content_type": 190, "codename": "change_micrositehistory"}}, {"model": "auth.permission", "pk": 572, "fields": {"name": "Can delete microsite history", "content_type": 190, "codename": "delete_micrositehistory"}}, {"model": "auth.permission", "pk": 573, "fields": {"name": "Can add microsite organization mapping", "content_type": 191, "codename": "add_micrositeorganizationmapping"}}, {"model": "auth.permission", "pk": 574, "fields": {"name": "Can change microsite organization mapping", "content_type": 191, "codename": "change_micrositeorganizationmapping"}}, {"model": "auth.permission", "pk": 575, "fields": {"name": "Can delete microsite organization mapping", "content_type": 191, "codename": "delete_micrositeorganizationmapping"}}, {"model": "auth.permission", "pk": 576, "fields": {"name": "Can add microsite template", "content_type": 192, "codename": "add_micrositetemplate"}}, {"model": "auth.permission", "pk": 577, "fields": {"name": "Can change microsite template", "content_type": 192, "codename": "change_micrositetemplate"}}, {"model": "auth.permission", "pk": 578, "fields": {"name": "Can delete microsite template", "content_type": 192, "codename": "delete_micrositetemplate"}}, {"model": "auth.permission", "pk": 579, "fields": {"name": "Can add whitelisted rss url", "content_type": 193, "codename": "add_whitelistedrssurl"}}, {"model": "auth.permission", "pk": 580, "fields": {"name": "Can change whitelisted rss url", "content_type": 193, "codename": "change_whitelistedrssurl"}}, {"model": "auth.permission", "pk": 581, "fields": {"name": "Can delete whitelisted rss url", "content_type": 193, "codename": "delete_whitelistedrssurl"}}, {"model": "auth.permission", "pk": 582, "fields": {"name": "Can add embargoed course", "content_type": 194, "codename": "add_embargoedcourse"}}, {"model": "auth.permission", "pk": 583, "fields": {"name": "Can change embargoed course", "content_type": 194, "codename": "change_embargoedcourse"}}, {"model": "auth.permission", "pk": 584, "fields": {"name": "Can delete embargoed course", "content_type": 194, "codename": "delete_embargoedcourse"}}, {"model": "auth.permission", "pk": 585, "fields": {"name": "Can add embargoed state", "content_type": 195, "codename": "add_embargoedstate"}}, {"model": "auth.permission", "pk": 586, "fields": {"name": "Can change embargoed state", "content_type": 195, "codename": "change_embargoedstate"}}, {"model": "auth.permission", "pk": 587, "fields": {"name": "Can delete embargoed state", "content_type": 195, "codename": "delete_embargoedstate"}}, {"model": "auth.permission", "pk": 588, "fields": {"name": "Can add restricted course", "content_type": 196, "codename": "add_restrictedcourse"}}, {"model": "auth.permission", "pk": 589, "fields": {"name": "Can change restricted course", "content_type": 196, "codename": "change_restrictedcourse"}}, {"model": "auth.permission", "pk": 590, "fields": {"name": "Can delete restricted course", "content_type": 196, "codename": "delete_restrictedcourse"}}, {"model": "auth.permission", "pk": 591, "fields": {"name": "Can add country", "content_type": 197, "codename": "add_country"}}, {"model": "auth.permission", "pk": 592, "fields": {"name": "Can change country", "content_type": 197, "codename": "change_country"}}, {"model": "auth.permission", "pk": 593, "fields": {"name": "Can delete country", "content_type": 197, "codename": "delete_country"}}, {"model": "auth.permission", "pk": 594, "fields": {"name": "Can add country access rule", "content_type": 198, "codename": "add_countryaccessrule"}}, {"model": "auth.permission", "pk": 595, "fields": {"name": "Can change country access rule", "content_type": 198, "codename": "change_countryaccessrule"}}, {"model": "auth.permission", "pk": 596, "fields": {"name": "Can delete country access rule", "content_type": 198, "codename": "delete_countryaccessrule"}}, {"model": "auth.permission", "pk": 597, "fields": {"name": "Can add course access rule history", "content_type": 199, "codename": "add_courseaccessrulehistory"}}, {"model": "auth.permission", "pk": 598, "fields": {"name": "Can change course access rule history", "content_type": 199, "codename": "change_courseaccessrulehistory"}}, {"model": "auth.permission", "pk": 599, "fields": {"name": "Can delete course access rule history", "content_type": 199, "codename": "delete_courseaccessrulehistory"}}, {"model": "auth.permission", "pk": 600, "fields": {"name": "Can add ip filter", "content_type": 200, "codename": "add_ipfilter"}}, {"model": "auth.permission", "pk": 601, "fields": {"name": "Can change ip filter", "content_type": 200, "codename": "change_ipfilter"}}, {"model": "auth.permission", "pk": 602, "fields": {"name": "Can delete ip filter", "content_type": 200, "codename": "delete_ipfilter"}}, {"model": "auth.permission", "pk": 603, "fields": {"name": "Can add course rerun state", "content_type": 201, "codename": "add_coursererunstate"}}, {"model": "auth.permission", "pk": 604, "fields": {"name": "Can change course rerun state", "content_type": 201, "codename": "change_coursererunstate"}}, {"model": "auth.permission", "pk": 605, "fields": {"name": "Can delete course rerun state", "content_type": 201, "codename": "delete_coursererunstate"}}, {"model": "auth.permission", "pk": 606, "fields": {"name": "Can add mobile api config", "content_type": 202, "codename": "add_mobileapiconfig"}}, {"model": "auth.permission", "pk": 607, "fields": {"name": "Can change mobile api config", "content_type": 202, "codename": "change_mobileapiconfig"}}, {"model": "auth.permission", "pk": 608, "fields": {"name": "Can delete mobile api config", "content_type": 202, "codename": "delete_mobileapiconfig"}}, {"model": "auth.permission", "pk": 609, "fields": {"name": "Can add app version config", "content_type": 203, "codename": "add_appversionconfig"}}, {"model": "auth.permission", "pk": 610, "fields": {"name": "Can change app version config", "content_type": 203, "codename": "change_appversionconfig"}}, {"model": "auth.permission", "pk": 611, "fields": {"name": "Can delete app version config", "content_type": 203, "codename": "delete_appversionconfig"}}, {"model": "auth.permission", "pk": 612, "fields": {"name": "Can add ignore mobile available flag config", "content_type": 204, "codename": "add_ignoremobileavailableflagconfig"}}, {"model": "auth.permission", "pk": 613, "fields": {"name": "Can change ignore mobile available flag config", "content_type": 204, "codename": "change_ignoremobileavailableflagconfig"}}, {"model": "auth.permission", "pk": 614, "fields": {"name": "Can delete ignore mobile available flag config", "content_type": 204, "codename": "delete_ignoremobileavailableflagconfig"}}, {"model": "auth.permission", "pk": 615, "fields": {"name": "Can add user social auth", "content_type": 205, "codename": "add_usersocialauth"}}, {"model": "auth.permission", "pk": 616, "fields": {"name": "Can change user social auth", "content_type": 205, "codename": "change_usersocialauth"}}, {"model": "auth.permission", "pk": 617, "fields": {"name": "Can delete user social auth", "content_type": 205, "codename": "delete_usersocialauth"}}, {"model": "auth.permission", "pk": 618, "fields": {"name": "Can add nonce", "content_type": 206, "codename": "add_nonce"}}, {"model": "auth.permission", "pk": 619, "fields": {"name": "Can change nonce", "content_type": 206, "codename": "change_nonce"}}, {"model": "auth.permission", "pk": 620, "fields": {"name": "Can delete nonce", "content_type": 206, "codename": "delete_nonce"}}, {"model": "auth.permission", "pk": 621, "fields": {"name": "Can add association", "content_type": 207, "codename": "add_association"}}, {"model": "auth.permission", "pk": 622, "fields": {"name": "Can change association", "content_type": 207, "codename": "change_association"}}, {"model": "auth.permission", "pk": 623, "fields": {"name": "Can delete association", "content_type": 207, "codename": "delete_association"}}, {"model": "auth.permission", "pk": 624, "fields": {"name": "Can add code", "content_type": 208, "codename": "add_code"}}, {"model": "auth.permission", "pk": 625, "fields": {"name": "Can change code", "content_type": 208, "codename": "change_code"}}, {"model": "auth.permission", "pk": 626, "fields": {"name": "Can delete code", "content_type": 208, "codename": "delete_code"}}, {"model": "auth.permission", "pk": 627, "fields": {"name": "Can add partial", "content_type": 209, "codename": "add_partial"}}, {"model": "auth.permission", "pk": 628, "fields": {"name": "Can change partial", "content_type": 209, "codename": "change_partial"}}, {"model": "auth.permission", "pk": 629, "fields": {"name": "Can delete partial", "content_type": 209, "codename": "delete_partial"}}, {"model": "auth.permission", "pk": 630, "fields": {"name": "Can add survey form", "content_type": 210, "codename": "add_surveyform"}}, {"model": "auth.permission", "pk": 631, "fields": {"name": "Can change survey form", "content_type": 210, "codename": "change_surveyform"}}, {"model": "auth.permission", "pk": 632, "fields": {"name": "Can delete survey form", "content_type": 210, "codename": "delete_surveyform"}}, {"model": "auth.permission", "pk": 633, "fields": {"name": "Can add survey answer", "content_type": 211, "codename": "add_surveyanswer"}}, {"model": "auth.permission", "pk": 634, "fields": {"name": "Can change survey answer", "content_type": 211, "codename": "change_surveyanswer"}}, {"model": "auth.permission", "pk": 635, "fields": {"name": "Can delete survey answer", "content_type": 211, "codename": "delete_surveyanswer"}}, {"model": "auth.permission", "pk": 636, "fields": {"name": "Can add x block asides config", "content_type": 212, "codename": "add_xblockasidesconfig"}}, {"model": "auth.permission", "pk": 637, "fields": {"name": "Can change x block asides config", "content_type": 212, "codename": "change_xblockasidesconfig"}}, {"model": "auth.permission", "pk": 638, "fields": {"name": "Can delete x block asides config", "content_type": 212, "codename": "delete_xblockasidesconfig"}}, {"model": "auth.permission", "pk": 639, "fields": {"name": "Can add answer", "content_type": 213, "codename": "add_answer"}}, {"model": "auth.permission", "pk": 640, "fields": {"name": "Can change answer", "content_type": 213, "codename": "change_answer"}}, {"model": "auth.permission", "pk": 641, "fields": {"name": "Can delete answer", "content_type": 213, "codename": "delete_answer"}}, {"model": "auth.permission", "pk": 642, "fields": {"name": "Can add share", "content_type": 214, "codename": "add_share"}}, {"model": "auth.permission", "pk": 643, "fields": {"name": "Can change share", "content_type": 214, "codename": "change_share"}}, {"model": "auth.permission", "pk": 644, "fields": {"name": "Can delete share", "content_type": 214, "codename": "delete_share"}}, {"model": "auth.permission", "pk": 645, "fields": {"name": "Can add student item", "content_type": 215, "codename": "add_studentitem"}}, {"model": "auth.permission", "pk": 646, "fields": {"name": "Can change student item", "content_type": 215, "codename": "change_studentitem"}}, {"model": "auth.permission", "pk": 647, "fields": {"name": "Can delete student item", "content_type": 215, "codename": "delete_studentitem"}}, {"model": "auth.permission", "pk": 648, "fields": {"name": "Can add submission", "content_type": 216, "codename": "add_submission"}}, {"model": "auth.permission", "pk": 649, "fields": {"name": "Can change submission", "content_type": 216, "codename": "change_submission"}}, {"model": "auth.permission", "pk": 650, "fields": {"name": "Can delete submission", "content_type": 216, "codename": "delete_submission"}}, {"model": "auth.permission", "pk": 651, "fields": {"name": "Can add score", "content_type": 217, "codename": "add_score"}}, {"model": "auth.permission", "pk": 652, "fields": {"name": "Can change score", "content_type": 217, "codename": "change_score"}}, {"model": "auth.permission", "pk": 653, "fields": {"name": "Can delete score", "content_type": 217, "codename": "delete_score"}}, {"model": "auth.permission", "pk": 654, "fields": {"name": "Can add score summary", "content_type": 218, "codename": "add_scoresummary"}}, {"model": "auth.permission", "pk": 655, "fields": {"name": "Can change score summary", "content_type": 218, "codename": "change_scoresummary"}}, {"model": "auth.permission", "pk": 656, "fields": {"name": "Can delete score summary", "content_type": 218, "codename": "delete_scoresummary"}}, {"model": "auth.permission", "pk": 657, "fields": {"name": "Can add score annotation", "content_type": 219, "codename": "add_scoreannotation"}}, {"model": "auth.permission", "pk": 658, "fields": {"name": "Can change score annotation", "content_type": 219, "codename": "change_scoreannotation"}}, {"model": "auth.permission", "pk": 659, "fields": {"name": "Can delete score annotation", "content_type": 219, "codename": "delete_scoreannotation"}}, {"model": "auth.permission", "pk": 660, "fields": {"name": "Can add rubric", "content_type": 220, "codename": "add_rubric"}}, {"model": "auth.permission", "pk": 661, "fields": {"name": "Can change rubric", "content_type": 220, "codename": "change_rubric"}}, {"model": "auth.permission", "pk": 662, "fields": {"name": "Can delete rubric", "content_type": 220, "codename": "delete_rubric"}}, {"model": "auth.permission", "pk": 663, "fields": {"name": "Can add criterion", "content_type": 221, "codename": "add_criterion"}}, {"model": "auth.permission", "pk": 664, "fields": {"name": "Can change criterion", "content_type": 221, "codename": "change_criterion"}}, {"model": "auth.permission", "pk": 665, "fields": {"name": "Can delete criterion", "content_type": 221, "codename": "delete_criterion"}}, {"model": "auth.permission", "pk": 666, "fields": {"name": "Can add criterion option", "content_type": 222, "codename": "add_criterionoption"}}, {"model": "auth.permission", "pk": 667, "fields": {"name": "Can change criterion option", "content_type": 222, "codename": "change_criterionoption"}}, {"model": "auth.permission", "pk": 668, "fields": {"name": "Can delete criterion option", "content_type": 222, "codename": "delete_criterionoption"}}, {"model": "auth.permission", "pk": 669, "fields": {"name": "Can add assessment", "content_type": 223, "codename": "add_assessment"}}, {"model": "auth.permission", "pk": 670, "fields": {"name": "Can change assessment", "content_type": 223, "codename": "change_assessment"}}, {"model": "auth.permission", "pk": 671, "fields": {"name": "Can delete assessment", "content_type": 223, "codename": "delete_assessment"}}, {"model": "auth.permission", "pk": 672, "fields": {"name": "Can add assessment part", "content_type": 224, "codename": "add_assessmentpart"}}, {"model": "auth.permission", "pk": 673, "fields": {"name": "Can change assessment part", "content_type": 224, "codename": "change_assessmentpart"}}, {"model": "auth.permission", "pk": 674, "fields": {"name": "Can delete assessment part", "content_type": 224, "codename": "delete_assessmentpart"}}, {"model": "auth.permission", "pk": 675, "fields": {"name": "Can add assessment feedback option", "content_type": 225, "codename": "add_assessmentfeedbackoption"}}, {"model": "auth.permission", "pk": 676, "fields": {"name": "Can change assessment feedback option", "content_type": 225, "codename": "change_assessmentfeedbackoption"}}, {"model": "auth.permission", "pk": 677, "fields": {"name": "Can delete assessment feedback option", "content_type": 225, "codename": "delete_assessmentfeedbackoption"}}, {"model": "auth.permission", "pk": 678, "fields": {"name": "Can add assessment feedback", "content_type": 226, "codename": "add_assessmentfeedback"}}, {"model": "auth.permission", "pk": 679, "fields": {"name": "Can change assessment feedback", "content_type": 226, "codename": "change_assessmentfeedback"}}, {"model": "auth.permission", "pk": 680, "fields": {"name": "Can delete assessment feedback", "content_type": 226, "codename": "delete_assessmentfeedback"}}, {"model": "auth.permission", "pk": 681, "fields": {"name": "Can add peer workflow", "content_type": 227, "codename": "add_peerworkflow"}}, {"model": "auth.permission", "pk": 682, "fields": {"name": "Can change peer workflow", "content_type": 227, "codename": "change_peerworkflow"}}, {"model": "auth.permission", "pk": 683, "fields": {"name": "Can delete peer workflow", "content_type": 227, "codename": "delete_peerworkflow"}}, {"model": "auth.permission", "pk": 684, "fields": {"name": "Can add peer workflow item", "content_type": 228, "codename": "add_peerworkflowitem"}}, {"model": "auth.permission", "pk": 685, "fields": {"name": "Can change peer workflow item", "content_type": 228, "codename": "change_peerworkflowitem"}}, {"model": "auth.permission", "pk": 686, "fields": {"name": "Can delete peer workflow item", "content_type": 228, "codename": "delete_peerworkflowitem"}}, {"model": "auth.permission", "pk": 687, "fields": {"name": "Can add training example", "content_type": 229, "codename": "add_trainingexample"}}, {"model": "auth.permission", "pk": 688, "fields": {"name": "Can change training example", "content_type": 229, "codename": "change_trainingexample"}}, {"model": "auth.permission", "pk": 689, "fields": {"name": "Can delete training example", "content_type": 229, "codename": "delete_trainingexample"}}, {"model": "auth.permission", "pk": 690, "fields": {"name": "Can add student training workflow", "content_type": 230, "codename": "add_studenttrainingworkflow"}}, {"model": "auth.permission", "pk": 691, "fields": {"name": "Can change student training workflow", "content_type": 230, "codename": "change_studenttrainingworkflow"}}, {"model": "auth.permission", "pk": 692, "fields": {"name": "Can delete student training workflow", "content_type": 230, "codename": "delete_studenttrainingworkflow"}}, {"model": "auth.permission", "pk": 693, "fields": {"name": "Can add student training workflow item", "content_type": 231, "codename": "add_studenttrainingworkflowitem"}}, {"model": "auth.permission", "pk": 694, "fields": {"name": "Can change student training workflow item", "content_type": 231, "codename": "change_studenttrainingworkflowitem"}}, {"model": "auth.permission", "pk": 695, "fields": {"name": "Can delete student training workflow item", "content_type": 231, "codename": "delete_studenttrainingworkflowitem"}}, {"model": "auth.permission", "pk": 696, "fields": {"name": "Can add staff workflow", "content_type": 232, "codename": "add_staffworkflow"}}, {"model": "auth.permission", "pk": 697, "fields": {"name": "Can change staff workflow", "content_type": 232, "codename": "change_staffworkflow"}}, {"model": "auth.permission", "pk": 698, "fields": {"name": "Can delete staff workflow", "content_type": 232, "codename": "delete_staffworkflow"}}, {"model": "auth.permission", "pk": 699, "fields": {"name": "Can add assessment workflow", "content_type": 233, "codename": "add_assessmentworkflow"}}, {"model": "auth.permission", "pk": 700, "fields": {"name": "Can change assessment workflow", "content_type": 233, "codename": "change_assessmentworkflow"}}, {"model": "auth.permission", "pk": 701, "fields": {"name": "Can delete assessment workflow", "content_type": 233, "codename": "delete_assessmentworkflow"}}, {"model": "auth.permission", "pk": 702, "fields": {"name": "Can add assessment workflow step", "content_type": 234, "codename": "add_assessmentworkflowstep"}}, {"model": "auth.permission", "pk": 703, "fields": {"name": "Can change assessment workflow step", "content_type": 234, "codename": "change_assessmentworkflowstep"}}, {"model": "auth.permission", "pk": 704, "fields": {"name": "Can delete assessment workflow step", "content_type": 234, "codename": "delete_assessmentworkflowstep"}}, {"model": "auth.permission", "pk": 705, "fields": {"name": "Can add assessment workflow cancellation", "content_type": 235, "codename": "add_assessmentworkflowcancellation"}}, {"model": "auth.permission", "pk": 706, "fields": {"name": "Can change assessment workflow cancellation", "content_type": 235, "codename": "change_assessmentworkflowcancellation"}}, {"model": "auth.permission", "pk": 707, "fields": {"name": "Can delete assessment workflow cancellation", "content_type": 235, "codename": "delete_assessmentworkflowcancellation"}}, {"model": "auth.permission", "pk": 708, "fields": {"name": "Can add profile", "content_type": 236, "codename": "add_profile"}}, {"model": "auth.permission", "pk": 709, "fields": {"name": "Can change profile", "content_type": 236, "codename": "change_profile"}}, {"model": "auth.permission", "pk": 710, "fields": {"name": "Can delete profile", "content_type": 236, "codename": "delete_profile"}}, {"model": "auth.permission", "pk": 711, "fields": {"name": "Can add video", "content_type": 237, "codename": "add_video"}}, {"model": "auth.permission", "pk": 712, "fields": {"name": "Can change video", "content_type": 237, "codename": "change_video"}}, {"model": "auth.permission", "pk": 713, "fields": {"name": "Can delete video", "content_type": 237, "codename": "delete_video"}}, {"model": "auth.permission", "pk": 714, "fields": {"name": "Can add course video", "content_type": 238, "codename": "add_coursevideo"}}, {"model": "auth.permission", "pk": 715, "fields": {"name": "Can change course video", "content_type": 238, "codename": "change_coursevideo"}}, {"model": "auth.permission", "pk": 716, "fields": {"name": "Can delete course video", "content_type": 238, "codename": "delete_coursevideo"}}, {"model": "auth.permission", "pk": 717, "fields": {"name": "Can add encoded video", "content_type": 239, "codename": "add_encodedvideo"}}, {"model": "auth.permission", "pk": 718, "fields": {"name": "Can change encoded video", "content_type": 239, "codename": "change_encodedvideo"}}, {"model": "auth.permission", "pk": 719, "fields": {"name": "Can delete encoded video", "content_type": 239, "codename": "delete_encodedvideo"}}, {"model": "auth.permission", "pk": 720, "fields": {"name": "Can add video image", "content_type": 240, "codename": "add_videoimage"}}, {"model": "auth.permission", "pk": 721, "fields": {"name": "Can change video image", "content_type": 240, "codename": "change_videoimage"}}, {"model": "auth.permission", "pk": 722, "fields": {"name": "Can delete video image", "content_type": 240, "codename": "delete_videoimage"}}, {"model": "auth.permission", "pk": 723, "fields": {"name": "Can add video transcript", "content_type": 241, "codename": "add_videotranscript"}}, {"model": "auth.permission", "pk": 724, "fields": {"name": "Can change video transcript", "content_type": 241, "codename": "change_videotranscript"}}, {"model": "auth.permission", "pk": 725, "fields": {"name": "Can delete video transcript", "content_type": 241, "codename": "delete_videotranscript"}}, {"model": "auth.permission", "pk": 726, "fields": {"name": "Can add transcript preference", "content_type": 242, "codename": "add_transcriptpreference"}}, {"model": "auth.permission", "pk": 727, "fields": {"name": "Can change transcript preference", "content_type": 242, "codename": "change_transcriptpreference"}}, {"model": "auth.permission", "pk": 728, "fields": {"name": "Can delete transcript preference", "content_type": 242, "codename": "delete_transcriptpreference"}}, {"model": "auth.permission", "pk": 729, "fields": {"name": "Can add third party transcript credentials state", "content_type": 243, "codename": "add_thirdpartytranscriptcredentialsstate"}}, {"model": "auth.permission", "pk": 730, "fields": {"name": "Can change third party transcript credentials state", "content_type": 243, "codename": "change_thirdpartytranscriptcredentialsstate"}}, {"model": "auth.permission", "pk": 731, "fields": {"name": "Can delete third party transcript credentials state", "content_type": 243, "codename": "delete_thirdpartytranscriptcredentialsstate"}}, {"model": "auth.permission", "pk": 732, "fields": {"name": "Can add course overview", "content_type": 244, "codename": "add_courseoverview"}}, {"model": "auth.permission", "pk": 733, "fields": {"name": "Can change course overview", "content_type": 244, "codename": "change_courseoverview"}}, {"model": "auth.permission", "pk": 734, "fields": {"name": "Can delete course overview", "content_type": 244, "codename": "delete_courseoverview"}}, {"model": "auth.permission", "pk": 735, "fields": {"name": "Can add course overview tab", "content_type": 245, "codename": "add_courseoverviewtab"}}, {"model": "auth.permission", "pk": 736, "fields": {"name": "Can change course overview tab", "content_type": 245, "codename": "change_courseoverviewtab"}}, {"model": "auth.permission", "pk": 737, "fields": {"name": "Can delete course overview tab", "content_type": 245, "codename": "delete_courseoverviewtab"}}, {"model": "auth.permission", "pk": 738, "fields": {"name": "Can add course overview image set", "content_type": 246, "codename": "add_courseoverviewimageset"}}, {"model": "auth.permission", "pk": 739, "fields": {"name": "Can change course overview image set", "content_type": 246, "codename": "change_courseoverviewimageset"}}, {"model": "auth.permission", "pk": 740, "fields": {"name": "Can delete course overview image set", "content_type": 246, "codename": "delete_courseoverviewimageset"}}, {"model": "auth.permission", "pk": 741, "fields": {"name": "Can add course overview image config", "content_type": 247, "codename": "add_courseoverviewimageconfig"}}, {"model": "auth.permission", "pk": 742, "fields": {"name": "Can change course overview image config", "content_type": 247, "codename": "change_courseoverviewimageconfig"}}, {"model": "auth.permission", "pk": 743, "fields": {"name": "Can delete course overview image config", "content_type": 247, "codename": "delete_courseoverviewimageconfig"}}, {"model": "auth.permission", "pk": 744, "fields": {"name": "Can add course structure", "content_type": 248, "codename": "add_coursestructure"}}, {"model": "auth.permission", "pk": 745, "fields": {"name": "Can change course structure", "content_type": 248, "codename": "change_coursestructure"}}, {"model": "auth.permission", "pk": 746, "fields": {"name": "Can delete course structure", "content_type": 248, "codename": "delete_coursestructure"}}, {"model": "auth.permission", "pk": 747, "fields": {"name": "Can add block structure configuration", "content_type": 249, "codename": "add_blockstructureconfiguration"}}, {"model": "auth.permission", "pk": 748, "fields": {"name": "Can change block structure configuration", "content_type": 249, "codename": "change_blockstructureconfiguration"}}, {"model": "auth.permission", "pk": 749, "fields": {"name": "Can delete block structure configuration", "content_type": 249, "codename": "delete_blockstructureconfiguration"}}, {"model": "auth.permission", "pk": 750, "fields": {"name": "Can add block structure model", "content_type": 250, "codename": "add_blockstructuremodel"}}, {"model": "auth.permission", "pk": 751, "fields": {"name": "Can change block structure model", "content_type": 250, "codename": "change_blockstructuremodel"}}, {"model": "auth.permission", "pk": 752, "fields": {"name": "Can delete block structure model", "content_type": 250, "codename": "delete_blockstructuremodel"}}, {"model": "auth.permission", "pk": 753, "fields": {"name": "Can add x domain proxy configuration", "content_type": 251, "codename": "add_xdomainproxyconfiguration"}}, {"model": "auth.permission", "pk": 754, "fields": {"name": "Can change x domain proxy configuration", "content_type": 251, "codename": "change_xdomainproxyconfiguration"}}, {"model": "auth.permission", "pk": 755, "fields": {"name": "Can delete x domain proxy configuration", "content_type": 251, "codename": "delete_xdomainproxyconfiguration"}}, {"model": "auth.permission", "pk": 756, "fields": {"name": "Can add commerce configuration", "content_type": 252, "codename": "add_commerceconfiguration"}}, {"model": "auth.permission", "pk": 757, "fields": {"name": "Can change commerce configuration", "content_type": 252, "codename": "change_commerceconfiguration"}}, {"model": "auth.permission", "pk": 758, "fields": {"name": "Can delete commerce configuration", "content_type": 252, "codename": "delete_commerceconfiguration"}}, {"model": "auth.permission", "pk": 759, "fields": {"name": "Can add credit provider", "content_type": 253, "codename": "add_creditprovider"}}, {"model": "auth.permission", "pk": 760, "fields": {"name": "Can change credit provider", "content_type": 253, "codename": "change_creditprovider"}}, {"model": "auth.permission", "pk": 761, "fields": {"name": "Can delete credit provider", "content_type": 253, "codename": "delete_creditprovider"}}, {"model": "auth.permission", "pk": 762, "fields": {"name": "Can add credit course", "content_type": 254, "codename": "add_creditcourse"}}, {"model": "auth.permission", "pk": 763, "fields": {"name": "Can change credit course", "content_type": 254, "codename": "change_creditcourse"}}, {"model": "auth.permission", "pk": 764, "fields": {"name": "Can delete credit course", "content_type": 254, "codename": "delete_creditcourse"}}, {"model": "auth.permission", "pk": 765, "fields": {"name": "Can add credit requirement", "content_type": 255, "codename": "add_creditrequirement"}}, {"model": "auth.permission", "pk": 766, "fields": {"name": "Can change credit requirement", "content_type": 255, "codename": "change_creditrequirement"}}, {"model": "auth.permission", "pk": 767, "fields": {"name": "Can delete credit requirement", "content_type": 255, "codename": "delete_creditrequirement"}}, {"model": "auth.permission", "pk": 768, "fields": {"name": "Can add credit requirement status", "content_type": 256, "codename": "add_creditrequirementstatus"}}, {"model": "auth.permission", "pk": 769, "fields": {"name": "Can change credit requirement status", "content_type": 256, "codename": "change_creditrequirementstatus"}}, {"model": "auth.permission", "pk": 770, "fields": {"name": "Can delete credit requirement status", "content_type": 256, "codename": "delete_creditrequirementstatus"}}, {"model": "auth.permission", "pk": 771, "fields": {"name": "Can add credit eligibility", "content_type": 257, "codename": "add_crediteligibility"}}, {"model": "auth.permission", "pk": 772, "fields": {"name": "Can change credit eligibility", "content_type": 257, "codename": "change_crediteligibility"}}, {"model": "auth.permission", "pk": 773, "fields": {"name": "Can delete credit eligibility", "content_type": 257, "codename": "delete_crediteligibility"}}, {"model": "auth.permission", "pk": 774, "fields": {"name": "Can add credit request", "content_type": 258, "codename": "add_creditrequest"}}, {"model": "auth.permission", "pk": 775, "fields": {"name": "Can change credit request", "content_type": 258, "codename": "change_creditrequest"}}, {"model": "auth.permission", "pk": 776, "fields": {"name": "Can delete credit request", "content_type": 258, "codename": "delete_creditrequest"}}, {"model": "auth.permission", "pk": 777, "fields": {"name": "Can add credit config", "content_type": 259, "codename": "add_creditconfig"}}, {"model": "auth.permission", "pk": 778, "fields": {"name": "Can change credit config", "content_type": 259, "codename": "change_creditconfig"}}, {"model": "auth.permission", "pk": 779, "fields": {"name": "Can delete credit config", "content_type": 259, "codename": "delete_creditconfig"}}, {"model": "auth.permission", "pk": 780, "fields": {"name": "Can add course team", "content_type": 260, "codename": "add_courseteam"}}, {"model": "auth.permission", "pk": 781, "fields": {"name": "Can change course team", "content_type": 260, "codename": "change_courseteam"}}, {"model": "auth.permission", "pk": 782, "fields": {"name": "Can delete course team", "content_type": 260, "codename": "delete_courseteam"}}, {"model": "auth.permission", "pk": 783, "fields": {"name": "Can add course team membership", "content_type": 261, "codename": "add_courseteammembership"}}, {"model": "auth.permission", "pk": 784, "fields": {"name": "Can change course team membership", "content_type": 261, "codename": "change_courseteammembership"}}, {"model": "auth.permission", "pk": 785, "fields": {"name": "Can delete course team membership", "content_type": 261, "codename": "delete_courseteammembership"}}, {"model": "auth.permission", "pk": 786, "fields": {"name": "Can add x block configuration", "content_type": 262, "codename": "add_xblockconfiguration"}}, {"model": "auth.permission", "pk": 787, "fields": {"name": "Can change x block configuration", "content_type": 262, "codename": "change_xblockconfiguration"}}, {"model": "auth.permission", "pk": 788, "fields": {"name": "Can delete x block configuration", "content_type": 262, "codename": "delete_xblockconfiguration"}}, {"model": "auth.permission", "pk": 789, "fields": {"name": "Can add x block studio configuration flag", "content_type": 263, "codename": "add_xblockstudioconfigurationflag"}}, {"model": "auth.permission", "pk": 790, "fields": {"name": "Can change x block studio configuration flag", "content_type": 263, "codename": "change_xblockstudioconfigurationflag"}}, {"model": "auth.permission", "pk": 791, "fields": {"name": "Can delete x block studio configuration flag", "content_type": 263, "codename": "delete_xblockstudioconfigurationflag"}}, {"model": "auth.permission", "pk": 792, "fields": {"name": "Can add x block studio configuration", "content_type": 264, "codename": "add_xblockstudioconfiguration"}}, {"model": "auth.permission", "pk": 793, "fields": {"name": "Can change x block studio configuration", "content_type": 264, "codename": "change_xblockstudioconfiguration"}}, {"model": "auth.permission", "pk": 794, "fields": {"name": "Can delete x block studio configuration", "content_type": 264, "codename": "delete_xblockstudioconfiguration"}}, {"model": "auth.permission", "pk": 795, "fields": {"name": "Can add programs api config", "content_type": 265, "codename": "add_programsapiconfig"}}, {"model": "auth.permission", "pk": 796, "fields": {"name": "Can change programs api config", "content_type": 265, "codename": "change_programsapiconfig"}}, {"model": "auth.permission", "pk": 797, "fields": {"name": "Can delete programs api config", "content_type": 265, "codename": "delete_programsapiconfig"}}, {"model": "auth.permission", "pk": 798, "fields": {"name": "Can add catalog integration", "content_type": 266, "codename": "add_catalogintegration"}}, {"model": "auth.permission", "pk": 799, "fields": {"name": "Can change catalog integration", "content_type": 266, "codename": "change_catalogintegration"}}, {"model": "auth.permission", "pk": 800, "fields": {"name": "Can delete catalog integration", "content_type": 266, "codename": "delete_catalogintegration"}}, {"model": "auth.permission", "pk": 801, "fields": {"name": "Can add self paced configuration", "content_type": 267, "codename": "add_selfpacedconfiguration"}}, {"model": "auth.permission", "pk": 802, "fields": {"name": "Can change self paced configuration", "content_type": 267, "codename": "change_selfpacedconfiguration"}}, {"model": "auth.permission", "pk": 803, "fields": {"name": "Can delete self paced configuration", "content_type": 267, "codename": "delete_selfpacedconfiguration"}}, {"model": "auth.permission", "pk": 804, "fields": {"name": "Can add kv store", "content_type": 268, "codename": "add_kvstore"}}, {"model": "auth.permission", "pk": 805, "fields": {"name": "Can change kv store", "content_type": 268, "codename": "change_kvstore"}}, {"model": "auth.permission", "pk": 806, "fields": {"name": "Can delete kv store", "content_type": 268, "codename": "delete_kvstore"}}, {"model": "auth.permission", "pk": 807, "fields": {"name": "Can add credentials api config", "content_type": 269, "codename": "add_credentialsapiconfig"}}, {"model": "auth.permission", "pk": 808, "fields": {"name": "Can change credentials api config", "content_type": 269, "codename": "change_credentialsapiconfig"}}, {"model": "auth.permission", "pk": 809, "fields": {"name": "Can delete credentials api config", "content_type": 269, "codename": "delete_credentialsapiconfig"}}, {"model": "auth.permission", "pk": 810, "fields": {"name": "Can add milestone", "content_type": 270, "codename": "add_milestone"}}, {"model": "auth.permission", "pk": 811, "fields": {"name": "Can change milestone", "content_type": 270, "codename": "change_milestone"}}, {"model": "auth.permission", "pk": 812, "fields": {"name": "Can delete milestone", "content_type": 270, "codename": "delete_milestone"}}, {"model": "auth.permission", "pk": 813, "fields": {"name": "Can add milestone relationship type", "content_type": 271, "codename": "add_milestonerelationshiptype"}}, {"model": "auth.permission", "pk": 814, "fields": {"name": "Can change milestone relationship type", "content_type": 271, "codename": "change_milestonerelationshiptype"}}, {"model": "auth.permission", "pk": 815, "fields": {"name": "Can delete milestone relationship type", "content_type": 271, "codename": "delete_milestonerelationshiptype"}}, {"model": "auth.permission", "pk": 816, "fields": {"name": "Can add course milestone", "content_type": 272, "codename": "add_coursemilestone"}}, {"model": "auth.permission", "pk": 817, "fields": {"name": "Can change course milestone", "content_type": 272, "codename": "change_coursemilestone"}}, {"model": "auth.permission", "pk": 818, "fields": {"name": "Can delete course milestone", "content_type": 272, "codename": "delete_coursemilestone"}}, {"model": "auth.permission", "pk": 819, "fields": {"name": "Can add course content milestone", "content_type": 273, "codename": "add_coursecontentmilestone"}}, {"model": "auth.permission", "pk": 820, "fields": {"name": "Can change course content milestone", "content_type": 273, "codename": "change_coursecontentmilestone"}}, {"model": "auth.permission", "pk": 821, "fields": {"name": "Can delete course content milestone", "content_type": 273, "codename": "delete_coursecontentmilestone"}}, {"model": "auth.permission", "pk": 822, "fields": {"name": "Can add user milestone", "content_type": 274, "codename": "add_usermilestone"}}, {"model": "auth.permission", "pk": 823, "fields": {"name": "Can change user milestone", "content_type": 274, "codename": "change_usermilestone"}}, {"model": "auth.permission", "pk": 824, "fields": {"name": "Can delete user milestone", "content_type": 274, "codename": "delete_usermilestone"}}, {"model": "auth.permission", "pk": 825, "fields": {"name": "Can add api access request", "content_type": 1, "codename": "add_apiaccessrequest"}}, {"model": "auth.permission", "pk": 826, "fields": {"name": "Can change api access request", "content_type": 1, "codename": "change_apiaccessrequest"}}, {"model": "auth.permission", "pk": 827, "fields": {"name": "Can delete api access request", "content_type": 1, "codename": "delete_apiaccessrequest"}}, {"model": "auth.permission", "pk": 828, "fields": {"name": "Can add api access config", "content_type": 275, "codename": "add_apiaccessconfig"}}, {"model": "auth.permission", "pk": 829, "fields": {"name": "Can change api access config", "content_type": 275, "codename": "change_apiaccessconfig"}}, {"model": "auth.permission", "pk": 830, "fields": {"name": "Can delete api access config", "content_type": 275, "codename": "delete_apiaccessconfig"}}, {"model": "auth.permission", "pk": 831, "fields": {"name": "Can add catalog", "content_type": 276, "codename": "add_catalog"}}, {"model": "auth.permission", "pk": 832, "fields": {"name": "Can change catalog", "content_type": 276, "codename": "change_catalog"}}, {"model": "auth.permission", "pk": 833, "fields": {"name": "Can delete catalog", "content_type": 276, "codename": "delete_catalog"}}, {"model": "auth.permission", "pk": 834, "fields": {"name": "Can add verified track cohorted course", "content_type": 277, "codename": "add_verifiedtrackcohortedcourse"}}, {"model": "auth.permission", "pk": 835, "fields": {"name": "Can change verified track cohorted course", "content_type": 277, "codename": "change_verifiedtrackcohortedcourse"}}, {"model": "auth.permission", "pk": 836, "fields": {"name": "Can delete verified track cohorted course", "content_type": 277, "codename": "delete_verifiedtrackcohortedcourse"}}, {"model": "auth.permission", "pk": 837, "fields": {"name": "Can add migrate verified track cohorts setting", "content_type": 278, "codename": "add_migrateverifiedtrackcohortssetting"}}, {"model": "auth.permission", "pk": 838, "fields": {"name": "Can change migrate verified track cohorts setting", "content_type": 278, "codename": "change_migrateverifiedtrackcohortssetting"}}, {"model": "auth.permission", "pk": 839, "fields": {"name": "Can delete migrate verified track cohorts setting", "content_type": 278, "codename": "delete_migrateverifiedtrackcohortssetting"}}, {"model": "auth.permission", "pk": 840, "fields": {"name": "Can add badge class", "content_type": 279, "codename": "add_badgeclass"}}, {"model": "auth.permission", "pk": 841, "fields": {"name": "Can change badge class", "content_type": 279, "codename": "change_badgeclass"}}, {"model": "auth.permission", "pk": 842, "fields": {"name": "Can delete badge class", "content_type": 279, "codename": "delete_badgeclass"}}, {"model": "auth.permission", "pk": 843, "fields": {"name": "Can add badge assertion", "content_type": 280, "codename": "add_badgeassertion"}}, {"model": "auth.permission", "pk": 844, "fields": {"name": "Can change badge assertion", "content_type": 280, "codename": "change_badgeassertion"}}, {"model": "auth.permission", "pk": 845, "fields": {"name": "Can delete badge assertion", "content_type": 280, "codename": "delete_badgeassertion"}}, {"model": "auth.permission", "pk": 846, "fields": {"name": "Can add course complete image configuration", "content_type": 281, "codename": "add_coursecompleteimageconfiguration"}}, {"model": "auth.permission", "pk": 847, "fields": {"name": "Can change course complete image configuration", "content_type": 281, "codename": "change_coursecompleteimageconfiguration"}}, {"model": "auth.permission", "pk": 848, "fields": {"name": "Can delete course complete image configuration", "content_type": 281, "codename": "delete_coursecompleteimageconfiguration"}}, {"model": "auth.permission", "pk": 849, "fields": {"name": "Can add course event badges configuration", "content_type": 282, "codename": "add_courseeventbadgesconfiguration"}}, {"model": "auth.permission", "pk": 850, "fields": {"name": "Can change course event badges configuration", "content_type": 282, "codename": "change_courseeventbadgesconfiguration"}}, {"model": "auth.permission", "pk": 851, "fields": {"name": "Can delete course event badges configuration", "content_type": 282, "codename": "delete_courseeventbadgesconfiguration"}}, {"model": "auth.permission", "pk": 852, "fields": {"name": "Can add email marketing configuration", "content_type": 283, "codename": "add_emailmarketingconfiguration"}}, {"model": "auth.permission", "pk": 853, "fields": {"name": "Can change email marketing configuration", "content_type": 283, "codename": "change_emailmarketingconfiguration"}}, {"model": "auth.permission", "pk": 854, "fields": {"name": "Can delete email marketing configuration", "content_type": 283, "codename": "delete_emailmarketingconfiguration"}}, {"model": "auth.permission", "pk": 855, "fields": {"name": "Can add failed task", "content_type": 284, "codename": "add_failedtask"}}, {"model": "auth.permission", "pk": 856, "fields": {"name": "Can change failed task", "content_type": 284, "codename": "change_failedtask"}}, {"model": "auth.permission", "pk": 857, "fields": {"name": "Can delete failed task", "content_type": 284, "codename": "delete_failedtask"}}, {"model": "auth.permission", "pk": 858, "fields": {"name": "Can add chord data", "content_type": 285, "codename": "add_chorddata"}}, {"model": "auth.permission", "pk": 859, "fields": {"name": "Can change chord data", "content_type": 285, "codename": "change_chorddata"}}, {"model": "auth.permission", "pk": 860, "fields": {"name": "Can delete chord data", "content_type": 285, "codename": "delete_chorddata"}}, {"model": "auth.permission", "pk": 861, "fields": {"name": "Can add crawlers config", "content_type": 286, "codename": "add_crawlersconfig"}}, {"model": "auth.permission", "pk": 862, "fields": {"name": "Can change crawlers config", "content_type": 286, "codename": "change_crawlersconfig"}}, {"model": "auth.permission", "pk": 863, "fields": {"name": "Can delete crawlers config", "content_type": 286, "codename": "delete_crawlersconfig"}}, {"model": "auth.permission", "pk": 864, "fields": {"name": "Can add Waffle flag course override", "content_type": 287, "codename": "add_waffleflagcourseoverridemodel"}}, {"model": "auth.permission", "pk": 865, "fields": {"name": "Can change Waffle flag course override", "content_type": 287, "codename": "change_waffleflagcourseoverridemodel"}}, {"model": "auth.permission", "pk": 866, "fields": {"name": "Can delete Waffle flag course override", "content_type": 287, "codename": "delete_waffleflagcourseoverridemodel"}}, {"model": "auth.permission", "pk": 867, "fields": {"name": "Can add Schedule", "content_type": 288, "codename": "add_schedule"}}, {"model": "auth.permission", "pk": 868, "fields": {"name": "Can change Schedule", "content_type": 288, "codename": "change_schedule"}}, {"model": "auth.permission", "pk": 869, "fields": {"name": "Can delete Schedule", "content_type": 288, "codename": "delete_schedule"}}, {"model": "auth.permission", "pk": 870, "fields": {"name": "Can add schedule config", "content_type": 289, "codename": "add_scheduleconfig"}}, {"model": "auth.permission", "pk": 871, "fields": {"name": "Can change schedule config", "content_type": 289, "codename": "change_scheduleconfig"}}, {"model": "auth.permission", "pk": 872, "fields": {"name": "Can delete schedule config", "content_type": 289, "codename": "delete_scheduleconfig"}}, {"model": "auth.permission", "pk": 873, "fields": {"name": "Can add schedule experience", "content_type": 290, "codename": "add_scheduleexperience"}}, {"model": "auth.permission", "pk": 874, "fields": {"name": "Can change schedule experience", "content_type": 290, "codename": "change_scheduleexperience"}}, {"model": "auth.permission", "pk": 875, "fields": {"name": "Can delete schedule experience", "content_type": 290, "codename": "delete_scheduleexperience"}}, {"model": "auth.permission", "pk": 876, "fields": {"name": "Can add course goal", "content_type": 291, "codename": "add_coursegoal"}}, {"model": "auth.permission", "pk": 877, "fields": {"name": "Can change course goal", "content_type": 291, "codename": "change_coursegoal"}}, {"model": "auth.permission", "pk": 878, "fields": {"name": "Can delete course goal", "content_type": 291, "codename": "delete_coursegoal"}}, {"model": "auth.permission", "pk": 879, "fields": {"name": "Can add block completion", "content_type": 292, "codename": "add_blockcompletion"}}, {"model": "auth.permission", "pk": 880, "fields": {"name": "Can change block completion", "content_type": 292, "codename": "change_blockcompletion"}}, {"model": "auth.permission", "pk": 881, "fields": {"name": "Can delete block completion", "content_type": 292, "codename": "delete_blockcompletion"}}, {"model": "auth.permission", "pk": 882, "fields": {"name": "Can add Experiment Data", "content_type": 293, "codename": "add_experimentdata"}}, {"model": "auth.permission", "pk": 883, "fields": {"name": "Can change Experiment Data", "content_type": 293, "codename": "change_experimentdata"}}, {"model": "auth.permission", "pk": 884, "fields": {"name": "Can delete Experiment Data", "content_type": 293, "codename": "delete_experimentdata"}}, {"model": "auth.permission", "pk": 885, "fields": {"name": "Can add Experiment Key-Value Pair", "content_type": 294, "codename": "add_experimentkeyvalue"}}, {"model": "auth.permission", "pk": 886, "fields": {"name": "Can change Experiment Key-Value Pair", "content_type": 294, "codename": "change_experimentkeyvalue"}}, {"model": "auth.permission", "pk": 887, "fields": {"name": "Can delete Experiment Key-Value Pair", "content_type": 294, "codename": "delete_experimentkeyvalue"}}, {"model": "auth.permission", "pk": 888, "fields": {"name": "Can add proctored exam", "content_type": 295, "codename": "add_proctoredexam"}}, {"model": "auth.permission", "pk": 889, "fields": {"name": "Can change proctored exam", "content_type": 295, "codename": "change_proctoredexam"}}, {"model": "auth.permission", "pk": 890, "fields": {"name": "Can delete proctored exam", "content_type": 295, "codename": "delete_proctoredexam"}}, {"model": "auth.permission", "pk": 891, "fields": {"name": "Can add Proctored exam review policy", "content_type": 296, "codename": "add_proctoredexamreviewpolicy"}}, {"model": "auth.permission", "pk": 892, "fields": {"name": "Can change Proctored exam review policy", "content_type": 296, "codename": "change_proctoredexamreviewpolicy"}}, {"model": "auth.permission", "pk": 893, "fields": {"name": "Can delete Proctored exam review policy", "content_type": 296, "codename": "delete_proctoredexamreviewpolicy"}}, {"model": "auth.permission", "pk": 894, "fields": {"name": "Can add proctored exam review policy history", "content_type": 297, "codename": "add_proctoredexamreviewpolicyhistory"}}, {"model": "auth.permission", "pk": 895, "fields": {"name": "Can change proctored exam review policy history", "content_type": 297, "codename": "change_proctoredexamreviewpolicyhistory"}}, {"model": "auth.permission", "pk": 896, "fields": {"name": "Can delete proctored exam review policy history", "content_type": 297, "codename": "delete_proctoredexamreviewpolicyhistory"}}, {"model": "auth.permission", "pk": 897, "fields": {"name": "Can add proctored exam attempt", "content_type": 298, "codename": "add_proctoredexamstudentattempt"}}, {"model": "auth.permission", "pk": 898, "fields": {"name": "Can change proctored exam attempt", "content_type": 298, "codename": "change_proctoredexamstudentattempt"}}, {"model": "auth.permission", "pk": 899, "fields": {"name": "Can delete proctored exam attempt", "content_type": 298, "codename": "delete_proctoredexamstudentattempt"}}, {"model": "auth.permission", "pk": 900, "fields": {"name": "Can add proctored exam attempt history", "content_type": 299, "codename": "add_proctoredexamstudentattempthistory"}}, {"model": "auth.permission", "pk": 901, "fields": {"name": "Can change proctored exam attempt history", "content_type": 299, "codename": "change_proctoredexamstudentattempthistory"}}, {"model": "auth.permission", "pk": 902, "fields": {"name": "Can delete proctored exam attempt history", "content_type": 299, "codename": "delete_proctoredexamstudentattempthistory"}}, {"model": "auth.permission", "pk": 903, "fields": {"name": "Can add proctored allowance", "content_type": 300, "codename": "add_proctoredexamstudentallowance"}}, {"model": "auth.permission", "pk": 904, "fields": {"name": "Can change proctored allowance", "content_type": 300, "codename": "change_proctoredexamstudentallowance"}}, {"model": "auth.permission", "pk": 905, "fields": {"name": "Can delete proctored allowance", "content_type": 300, "codename": "delete_proctoredexamstudentallowance"}}, {"model": "auth.permission", "pk": 906, "fields": {"name": "Can add proctored allowance history", "content_type": 301, "codename": "add_proctoredexamstudentallowancehistory"}}, {"model": "auth.permission", "pk": 907, "fields": {"name": "Can change proctored allowance history", "content_type": 301, "codename": "change_proctoredexamstudentallowancehistory"}}, {"model": "auth.permission", "pk": 908, "fields": {"name": "Can delete proctored allowance history", "content_type": 301, "codename": "delete_proctoredexamstudentallowancehistory"}}, {"model": "auth.permission", "pk": 909, "fields": {"name": "Can add Proctored exam software secure review", "content_type": 302, "codename": "add_proctoredexamsoftwaresecurereview"}}, {"model": "auth.permission", "pk": 910, "fields": {"name": "Can change Proctored exam software secure review", "content_type": 302, "codename": "change_proctoredexamsoftwaresecurereview"}}, {"model": "auth.permission", "pk": 911, "fields": {"name": "Can delete Proctored exam software secure review", "content_type": 302, "codename": "delete_proctoredexamsoftwaresecurereview"}}, {"model": "auth.permission", "pk": 912, "fields": {"name": "Can add Proctored exam review archive", "content_type": 303, "codename": "add_proctoredexamsoftwaresecurereviewhistory"}}, {"model": "auth.permission", "pk": 913, "fields": {"name": "Can change Proctored exam review archive", "content_type": 303, "codename": "change_proctoredexamsoftwaresecurereviewhistory"}}, {"model": "auth.permission", "pk": 914, "fields": {"name": "Can delete Proctored exam review archive", "content_type": 303, "codename": "delete_proctoredexamsoftwaresecurereviewhistory"}}, {"model": "auth.permission", "pk": 915, "fields": {"name": "Can add proctored exam software secure comment", "content_type": 304, "codename": "add_proctoredexamsoftwaresecurecomment"}}, {"model": "auth.permission", "pk": 916, "fields": {"name": "Can change proctored exam software secure comment", "content_type": 304, "codename": "change_proctoredexamsoftwaresecurecomment"}}, {"model": "auth.permission", "pk": 917, "fields": {"name": "Can delete proctored exam software secure comment", "content_type": 304, "codename": "delete_proctoredexamsoftwaresecurecomment"}}, {"model": "auth.permission", "pk": 918, "fields": {"name": "Can add organization", "content_type": 305, "codename": "add_organization"}}, {"model": "auth.permission", "pk": 919, "fields": {"name": "Can change organization", "content_type": 305, "codename": "change_organization"}}, {"model": "auth.permission", "pk": 920, "fields": {"name": "Can delete organization", "content_type": 305, "codename": "delete_organization"}}, {"model": "auth.permission", "pk": 921, "fields": {"name": "Can add Link Course", "content_type": 306, "codename": "add_organizationcourse"}}, {"model": "auth.permission", "pk": 922, "fields": {"name": "Can change Link Course", "content_type": 306, "codename": "change_organizationcourse"}}, {"model": "auth.permission", "pk": 923, "fields": {"name": "Can delete Link Course", "content_type": 306, "codename": "delete_organizationcourse"}}, {"model": "auth.permission", "pk": 924, "fields": {"name": "Can add historical Enterprise Customer", "content_type": 307, "codename": "add_historicalenterprisecustomer"}}, {"model": "auth.permission", "pk": 925, "fields": {"name": "Can change historical Enterprise Customer", "content_type": 307, "codename": "change_historicalenterprisecustomer"}}, {"model": "auth.permission", "pk": 926, "fields": {"name": "Can delete historical Enterprise Customer", "content_type": 307, "codename": "delete_historicalenterprisecustomer"}}, {"model": "auth.permission", "pk": 927, "fields": {"name": "Can add Enterprise Customer", "content_type": 308, "codename": "add_enterprisecustomer"}}, {"model": "auth.permission", "pk": 928, "fields": {"name": "Can change Enterprise Customer", "content_type": 308, "codename": "change_enterprisecustomer"}}, {"model": "auth.permission", "pk": 929, "fields": {"name": "Can delete Enterprise Customer", "content_type": 308, "codename": "delete_enterprisecustomer"}}, {"model": "auth.permission", "pk": 930, "fields": {"name": "Can add Enterprise Customer Learner", "content_type": 309, "codename": "add_enterprisecustomeruser"}}, {"model": "auth.permission", "pk": 931, "fields": {"name": "Can change Enterprise Customer Learner", "content_type": 309, "codename": "change_enterprisecustomeruser"}}, {"model": "auth.permission", "pk": 932, "fields": {"name": "Can delete Enterprise Customer Learner", "content_type": 309, "codename": "delete_enterprisecustomeruser"}}, {"model": "auth.permission", "pk": 933, "fields": {"name": "Can add pending enterprise customer user", "content_type": 310, "codename": "add_pendingenterprisecustomeruser"}}, {"model": "auth.permission", "pk": 934, "fields": {"name": "Can change pending enterprise customer user", "content_type": 310, "codename": "change_pendingenterprisecustomeruser"}}, {"model": "auth.permission", "pk": 935, "fields": {"name": "Can delete pending enterprise customer user", "content_type": 310, "codename": "delete_pendingenterprisecustomeruser"}}, {"model": "auth.permission", "pk": 936, "fields": {"name": "Can add pending enrollment", "content_type": 311, "codename": "add_pendingenrollment"}}, {"model": "auth.permission", "pk": 937, "fields": {"name": "Can change pending enrollment", "content_type": 311, "codename": "change_pendingenrollment"}}, {"model": "auth.permission", "pk": 938, "fields": {"name": "Can delete pending enrollment", "content_type": 311, "codename": "delete_pendingenrollment"}}, {"model": "auth.permission", "pk": 939, "fields": {"name": "Can add Branding Configuration", "content_type": 312, "codename": "add_enterprisecustomerbrandingconfiguration"}}, {"model": "auth.permission", "pk": 940, "fields": {"name": "Can change Branding Configuration", "content_type": 312, "codename": "change_enterprisecustomerbrandingconfiguration"}}, {"model": "auth.permission", "pk": 941, "fields": {"name": "Can delete Branding Configuration", "content_type": 312, "codename": "delete_enterprisecustomerbrandingconfiguration"}}, {"model": "auth.permission", "pk": 942, "fields": {"name": "Can add enterprise customer identity provider", "content_type": 313, "codename": "add_enterprisecustomeridentityprovider"}}, {"model": "auth.permission", "pk": 943, "fields": {"name": "Can change enterprise customer identity provider", "content_type": 313, "codename": "change_enterprisecustomeridentityprovider"}}, {"model": "auth.permission", "pk": 944, "fields": {"name": "Can delete enterprise customer identity provider", "content_type": 313, "codename": "delete_enterprisecustomeridentityprovider"}}, {"model": "auth.permission", "pk": 945, "fields": {"name": "Can add historical Enterprise Customer Entitlement", "content_type": 314, "codename": "add_historicalenterprisecustomerentitlement"}}, {"model": "auth.permission", "pk": 946, "fields": {"name": "Can change historical Enterprise Customer Entitlement", "content_type": 314, "codename": "change_historicalenterprisecustomerentitlement"}}, {"model": "auth.permission", "pk": 947, "fields": {"name": "Can delete historical Enterprise Customer Entitlement", "content_type": 314, "codename": "delete_historicalenterprisecustomerentitlement"}}, {"model": "auth.permission", "pk": 948, "fields": {"name": "Can add Enterprise Customer Entitlement", "content_type": 315, "codename": "add_enterprisecustomerentitlement"}}, {"model": "auth.permission", "pk": 949, "fields": {"name": "Can change Enterprise Customer Entitlement", "content_type": 315, "codename": "change_enterprisecustomerentitlement"}}, {"model": "auth.permission", "pk": 950, "fields": {"name": "Can delete Enterprise Customer Entitlement", "content_type": 315, "codename": "delete_enterprisecustomerentitlement"}}, {"model": "auth.permission", "pk": 951, "fields": {"name": "Can add historical enterprise course enrollment", "content_type": 316, "codename": "add_historicalenterprisecourseenrollment"}}, {"model": "auth.permission", "pk": 952, "fields": {"name": "Can change historical enterprise course enrollment", "content_type": 316, "codename": "change_historicalenterprisecourseenrollment"}}, {"model": "auth.permission", "pk": 953, "fields": {"name": "Can delete historical enterprise course enrollment", "content_type": 316, "codename": "delete_historicalenterprisecourseenrollment"}}, {"model": "auth.permission", "pk": 954, "fields": {"name": "Can add enterprise course enrollment", "content_type": 317, "codename": "add_enterprisecourseenrollment"}}, {"model": "auth.permission", "pk": 955, "fields": {"name": "Can change enterprise course enrollment", "content_type": 317, "codename": "change_enterprisecourseenrollment"}}, {"model": "auth.permission", "pk": 956, "fields": {"name": "Can delete enterprise course enrollment", "content_type": 317, "codename": "delete_enterprisecourseenrollment"}}, {"model": "auth.permission", "pk": 957, "fields": {"name": "Can add historical Enterprise Customer Catalog", "content_type": 318, "codename": "add_historicalenterprisecustomercatalog"}}, {"model": "auth.permission", "pk": 958, "fields": {"name": "Can change historical Enterprise Customer Catalog", "content_type": 318, "codename": "change_historicalenterprisecustomercatalog"}}, {"model": "auth.permission", "pk": 959, "fields": {"name": "Can delete historical Enterprise Customer Catalog", "content_type": 318, "codename": "delete_historicalenterprisecustomercatalog"}}, {"model": "auth.permission", "pk": 960, "fields": {"name": "Can add Enterprise Customer Catalog", "content_type": 319, "codename": "add_enterprisecustomercatalog"}}, {"model": "auth.permission", "pk": 961, "fields": {"name": "Can change Enterprise Customer Catalog", "content_type": 319, "codename": "change_enterprisecustomercatalog"}}, {"model": "auth.permission", "pk": 962, "fields": {"name": "Can delete Enterprise Customer Catalog", "content_type": 319, "codename": "delete_enterprisecustomercatalog"}}, {"model": "auth.permission", "pk": 963, "fields": {"name": "Can add historical enrollment notification email template", "content_type": 320, "codename": "add_historicalenrollmentnotificationemailtemplate"}}, {"model": "auth.permission", "pk": 964, "fields": {"name": "Can change historical enrollment notification email template", "content_type": 320, "codename": "change_historicalenrollmentnotificationemailtemplate"}}, {"model": "auth.permission", "pk": 965, "fields": {"name": "Can delete historical enrollment notification email template", "content_type": 320, "codename": "delete_historicalenrollmentnotificationemailtemplate"}}, {"model": "auth.permission", "pk": 966, "fields": {"name": "Can add enrollment notification email template", "content_type": 321, "codename": "add_enrollmentnotificationemailtemplate"}}, {"model": "auth.permission", "pk": 967, "fields": {"name": "Can change enrollment notification email template", "content_type": 321, "codename": "change_enrollmentnotificationemailtemplate"}}, {"model": "auth.permission", "pk": 968, "fields": {"name": "Can delete enrollment notification email template", "content_type": 321, "codename": "delete_enrollmentnotificationemailtemplate"}}, {"model": "auth.permission", "pk": 969, "fields": {"name": "Can add enterprise customer reporting configuration", "content_type": 322, "codename": "add_enterprisecustomerreportingconfiguration"}}, {"model": "auth.permission", "pk": 970, "fields": {"name": "Can change enterprise customer reporting configuration", "content_type": 322, "codename": "change_enterprisecustomerreportingconfiguration"}}, {"model": "auth.permission", "pk": 971, "fields": {"name": "Can delete enterprise customer reporting configuration", "content_type": 322, "codename": "delete_enterprisecustomerreportingconfiguration"}}, {"model": "auth.permission", "pk": 972, "fields": {"name": "Can add historical Data Sharing Consent Record", "content_type": 323, "codename": "add_historicaldatasharingconsent"}}, {"model": "auth.permission", "pk": 973, "fields": {"name": "Can change historical Data Sharing Consent Record", "content_type": 323, "codename": "change_historicaldatasharingconsent"}}, {"model": "auth.permission", "pk": 974, "fields": {"name": "Can delete historical Data Sharing Consent Record", "content_type": 323, "codename": "delete_historicaldatasharingconsent"}}, {"model": "auth.permission", "pk": 975, "fields": {"name": "Can add Data Sharing Consent Record", "content_type": 324, "codename": "add_datasharingconsent"}}, {"model": "auth.permission", "pk": 976, "fields": {"name": "Can change Data Sharing Consent Record", "content_type": 324, "codename": "change_datasharingconsent"}}, {"model": "auth.permission", "pk": 977, "fields": {"name": "Can delete Data Sharing Consent Record", "content_type": 324, "codename": "delete_datasharingconsent"}}, {"model": "auth.permission", "pk": 978, "fields": {"name": "Can add learner data transmission audit", "content_type": 325, "codename": "add_learnerdatatransmissionaudit"}}, {"model": "auth.permission", "pk": 979, "fields": {"name": "Can change learner data transmission audit", "content_type": 325, "codename": "change_learnerdatatransmissionaudit"}}, {"model": "auth.permission", "pk": 980, "fields": {"name": "Can delete learner data transmission audit", "content_type": 325, "codename": "delete_learnerdatatransmissionaudit"}}, {"model": "auth.permission", "pk": 981, "fields": {"name": "Can add catalog transmission audit", "content_type": 326, "codename": "add_catalogtransmissionaudit"}}, {"model": "auth.permission", "pk": 982, "fields": {"name": "Can change catalog transmission audit", "content_type": 326, "codename": "change_catalogtransmissionaudit"}}, {"model": "auth.permission", "pk": 983, "fields": {"name": "Can delete catalog transmission audit", "content_type": 326, "codename": "delete_catalogtransmissionaudit"}}, {"model": "auth.permission", "pk": 984, "fields": {"name": "Can add degreed global configuration", "content_type": 327, "codename": "add_degreedglobalconfiguration"}}, {"model": "auth.permission", "pk": 985, "fields": {"name": "Can change degreed global configuration", "content_type": 327, "codename": "change_degreedglobalconfiguration"}}, {"model": "auth.permission", "pk": 986, "fields": {"name": "Can delete degreed global configuration", "content_type": 327, "codename": "delete_degreedglobalconfiguration"}}, {"model": "auth.permission", "pk": 987, "fields": {"name": "Can add historical degreed enterprise customer configuration", "content_type": 328, "codename": "add_historicaldegreedenterprisecustomerconfiguration"}}, {"model": "auth.permission", "pk": 988, "fields": {"name": "Can change historical degreed enterprise customer configuration", "content_type": 328, "codename": "change_historicaldegreedenterprisecustomerconfiguration"}}, {"model": "auth.permission", "pk": 989, "fields": {"name": "Can delete historical degreed enterprise customer configuration", "content_type": 328, "codename": "delete_historicaldegreedenterprisecustomerconfiguration"}}, {"model": "auth.permission", "pk": 990, "fields": {"name": "Can add degreed enterprise customer configuration", "content_type": 329, "codename": "add_degreedenterprisecustomerconfiguration"}}, {"model": "auth.permission", "pk": 991, "fields": {"name": "Can change degreed enterprise customer configuration", "content_type": 329, "codename": "change_degreedenterprisecustomerconfiguration"}}, {"model": "auth.permission", "pk": 992, "fields": {"name": "Can delete degreed enterprise customer configuration", "content_type": 329, "codename": "delete_degreedenterprisecustomerconfiguration"}}, {"model": "auth.permission", "pk": 993, "fields": {"name": "Can add degreed learner data transmission audit", "content_type": 330, "codename": "add_degreedlearnerdatatransmissionaudit"}}, {"model": "auth.permission", "pk": 994, "fields": {"name": "Can change degreed learner data transmission audit", "content_type": 330, "codename": "change_degreedlearnerdatatransmissionaudit"}}, {"model": "auth.permission", "pk": 995, "fields": {"name": "Can delete degreed learner data transmission audit", "content_type": 330, "codename": "delete_degreedlearnerdatatransmissionaudit"}}, {"model": "auth.permission", "pk": 996, "fields": {"name": "Can add sap success factors global configuration", "content_type": 331, "codename": "add_sapsuccessfactorsglobalconfiguration"}}, {"model": "auth.permission", "pk": 997, "fields": {"name": "Can change sap success factors global configuration", "content_type": 331, "codename": "change_sapsuccessfactorsglobalconfiguration"}}, {"model": "auth.permission", "pk": 998, "fields": {"name": "Can delete sap success factors global configuration", "content_type": 331, "codename": "delete_sapsuccessfactorsglobalconfiguration"}}, {"model": "auth.permission", "pk": 999, "fields": {"name": "Can add historical sap success factors enterprise customer configuration", "content_type": 332, "codename": "add_historicalsapsuccessfactorsenterprisecustomerconfiguration"}}, {"model": "auth.permission", "pk": 1000, "fields": {"name": "Can change historical sap success factors enterprise customer configuration", "content_type": 332, "codename": "change_historicalsapsuccessfactorsenterprisecustomerconfiguration"}}, {"model": "auth.permission", "pk": 1001, "fields": {"name": "Can delete historical sap success factors enterprise customer configuration", "content_type": 332, "codename": "delete_historicalsapsuccessfactorsenterprisecustomerconfiguration"}}, {"model": "auth.permission", "pk": 1002, "fields": {"name": "Can add sap success factors enterprise customer configuration", "content_type": 333, "codename": "add_sapsuccessfactorsenterprisecustomerconfiguration"}}, {"model": "auth.permission", "pk": 1003, "fields": {"name": "Can change sap success factors enterprise customer configuration", "content_type": 333, "codename": "change_sapsuccessfactorsenterprisecustomerconfiguration"}}, {"model": "auth.permission", "pk": 1004, "fields": {"name": "Can delete sap success factors enterprise customer configuration", "content_type": 333, "codename": "delete_sapsuccessfactorsenterprisecustomerconfiguration"}}, {"model": "auth.permission", "pk": 1005, "fields": {"name": "Can add sap success factors learner data transmission audit", "content_type": 334, "codename": "add_sapsuccessfactorslearnerdatatransmissionaudit"}}, {"model": "auth.permission", "pk": 1006, "fields": {"name": "Can change sap success factors learner data transmission audit", "content_type": 334, "codename": "change_sapsuccessfactorslearnerdatatransmissionaudit"}}, {"model": "auth.permission", "pk": 1007, "fields": {"name": "Can delete sap success factors learner data transmission audit", "content_type": 334, "codename": "delete_sapsuccessfactorslearnerdatatransmissionaudit"}}, {"model": "auth.permission", "pk": 1008, "fields": {"name": "Can add custom course for ed x", "content_type": 335, "codename": "add_customcourseforedx"}}, {"model": "auth.permission", "pk": 1009, "fields": {"name": "Can change custom course for ed x", "content_type": 335, "codename": "change_customcourseforedx"}}, {"model": "auth.permission", "pk": 1010, "fields": {"name": "Can delete custom course for ed x", "content_type": 335, "codename": "delete_customcourseforedx"}}, {"model": "auth.permission", "pk": 1011, "fields": {"name": "Can add ccx field override", "content_type": 336, "codename": "add_ccxfieldoverride"}}, {"model": "auth.permission", "pk": 1012, "fields": {"name": "Can change ccx field override", "content_type": 336, "codename": "change_ccxfieldoverride"}}, {"model": "auth.permission", "pk": 1013, "fields": {"name": "Can delete ccx field override", "content_type": 336, "codename": "delete_ccxfieldoverride"}}, {"model": "auth.permission", "pk": 1014, "fields": {"name": "Can add CCX Connector", "content_type": 337, "codename": "add_ccxcon"}}, {"model": "auth.permission", "pk": 1015, "fields": {"name": "Can change CCX Connector", "content_type": 337, "codename": "change_ccxcon"}}, {"model": "auth.permission", "pk": 1016, "fields": {"name": "Can delete CCX Connector", "content_type": 337, "codename": "delete_ccxcon"}}, {"model": "auth.permission", "pk": 1017, "fields": {"name": "Can add student module history extended", "content_type": 338, "codename": "add_studentmodulehistoryextended"}}, {"model": "auth.permission", "pk": 1018, "fields": {"name": "Can change student module history extended", "content_type": 338, "codename": "change_studentmodulehistoryextended"}}, {"model": "auth.permission", "pk": 1019, "fields": {"name": "Can delete student module history extended", "content_type": 338, "codename": "delete_studentmodulehistoryextended"}}, {"model": "auth.permission", "pk": 1020, "fields": {"name": "Can add video upload config", "content_type": 339, "codename": "add_videouploadconfig"}}, {"model": "auth.permission", "pk": 1021, "fields": {"name": "Can change video upload config", "content_type": 339, "codename": "change_videouploadconfig"}}, {"model": "auth.permission", "pk": 1022, "fields": {"name": "Can delete video upload config", "content_type": 339, "codename": "delete_videouploadconfig"}}, {"model": "auth.permission", "pk": 1023, "fields": {"name": "Can add push notification config", "content_type": 340, "codename": "add_pushnotificationconfig"}}, {"model": "auth.permission", "pk": 1024, "fields": {"name": "Can change push notification config", "content_type": 340, "codename": "change_pushnotificationconfig"}}, {"model": "auth.permission", "pk": 1025, "fields": {"name": "Can delete push notification config", "content_type": 340, "codename": "delete_pushnotificationconfig"}}, {"model": "auth.permission", "pk": 1026, "fields": {"name": "Can add new assets page flag", "content_type": 341, "codename": "add_newassetspageflag"}}, {"model": "auth.permission", "pk": 1027, "fields": {"name": "Can change new assets page flag", "content_type": 341, "codename": "change_newassetspageflag"}}, {"model": "auth.permission", "pk": 1028, "fields": {"name": "Can delete new assets page flag", "content_type": 341, "codename": "delete_newassetspageflag"}}, {"model": "auth.permission", "pk": 1029, "fields": {"name": "Can add course new assets page flag", "content_type": 342, "codename": "add_coursenewassetspageflag"}}, {"model": "auth.permission", "pk": 1030, "fields": {"name": "Can change course new assets page flag", "content_type": 342, "codename": "change_coursenewassetspageflag"}}, {"model": "auth.permission", "pk": 1031, "fields": {"name": "Can delete course new assets page flag", "content_type": 342, "codename": "delete_coursenewassetspageflag"}}, {"model": "auth.permission", "pk": 1032, "fields": {"name": "Can add course creator", "content_type": 343, "codename": "add_coursecreator"}}, {"model": "auth.permission", "pk": 1033, "fields": {"name": "Can change course creator", "content_type": 343, "codename": "change_coursecreator"}}, {"model": "auth.permission", "pk": 1034, "fields": {"name": "Can delete course creator", "content_type": 343, "codename": "delete_coursecreator"}}, {"model": "auth.permission", "pk": 1035, "fields": {"name": "Can add studio config", "content_type": 344, "codename": "add_studioconfig"}}, {"model": "auth.permission", "pk": 1036, "fields": {"name": "Can change studio config", "content_type": 344, "codename": "change_studioconfig"}}, {"model": "auth.permission", "pk": 1037, "fields": {"name": "Can delete studio config", "content_type": 344, "codename": "delete_studioconfig"}}, {"model": "auth.permission", "pk": 1038, "fields": {"name": "Can add course edit lti fields enabled flag", "content_type": 345, "codename": "add_courseeditltifieldsenabledflag"}}, {"model": "auth.permission", "pk": 1039, "fields": {"name": "Can change course edit lti fields enabled flag", "content_type": 345, "codename": "change_courseeditltifieldsenabledflag"}}, {"model": "auth.permission", "pk": 1040, "fields": {"name": "Can delete course edit lti fields enabled flag", "content_type": 345, "codename": "delete_courseeditltifieldsenabledflag"}}, {"model": "auth.permission", "pk": 1041, "fields": {"name": "Can add tag category", "content_type": 346, "codename": "add_tagcategories"}}, {"model": "auth.permission", "pk": 1042, "fields": {"name": "Can change tag category", "content_type": 346, "codename": "change_tagcategories"}}, {"model": "auth.permission", "pk": 1043, "fields": {"name": "Can delete tag category", "content_type": 346, "codename": "delete_tagcategories"}}, {"model": "auth.permission", "pk": 1044, "fields": {"name": "Can add available tag value", "content_type": 347, "codename": "add_tagavailablevalues"}}, {"model": "auth.permission", "pk": 1045, "fields": {"name": "Can change available tag value", "content_type": 347, "codename": "change_tagavailablevalues"}}, {"model": "auth.permission", "pk": 1046, "fields": {"name": "Can delete available tag value", "content_type": 347, "codename": "delete_tagavailablevalues"}}, {"model": "auth.permission", "pk": 1047, "fields": {"name": "Can add user task status", "content_type": 348, "codename": "add_usertaskstatus"}}, {"model": "auth.permission", "pk": 1048, "fields": {"name": "Can change user task status", "content_type": 348, "codename": "change_usertaskstatus"}}, {"model": "auth.permission", "pk": 1049, "fields": {"name": "Can delete user task status", "content_type": 348, "codename": "delete_usertaskstatus"}}, {"model": "auth.permission", "pk": 1050, "fields": {"name": "Can add user task artifact", "content_type": 349, "codename": "add_usertaskartifact"}}, {"model": "auth.permission", "pk": 1051, "fields": {"name": "Can change user task artifact", "content_type": 349, "codename": "change_usertaskartifact"}}, {"model": "auth.permission", "pk": 1052, "fields": {"name": "Can delete user task artifact", "content_type": 349, "codename": "delete_usertaskartifact"}}, {"model": "auth.permission", "pk": 1053, "fields": {"name": "Can add course entitlement policy", "content_type": 350, "codename": "add_courseentitlementpolicy"}}, {"model": "auth.permission", "pk": 1054, "fields": {"name": "Can change course entitlement policy", "content_type": 350, "codename": "change_courseentitlementpolicy"}}, {"model": "auth.permission", "pk": 1055, "fields": {"name": "Can delete course entitlement policy", "content_type": 350, "codename": "delete_courseentitlementpolicy"}}, {"model": "auth.permission", "pk": 1056, "fields": {"name": "Can add course entitlement support detail", "content_type": 351, "codename": "add_courseentitlementsupportdetail"}}, {"model": "auth.permission", "pk": 1057, "fields": {"name": "Can change course entitlement support detail", "content_type": 351, "codename": "change_courseentitlementsupportdetail"}}, {"model": "auth.permission", "pk": 1058, "fields": {"name": "Can delete course entitlement support detail", "content_type": 351, "codename": "delete_courseentitlementsupportdetail"}}, {"model": "auth.permission", "pk": 1059, "fields": {"name": "Can add content metadata item transmission", "content_type": 352, "codename": "add_contentmetadataitemtransmission"}}, {"model": "auth.permission", "pk": 1060, "fields": {"name": "Can change content metadata item transmission", "content_type": 352, "codename": "change_contentmetadataitemtransmission"}}, {"model": "auth.permission", "pk": 1061, "fields": {"name": "Can delete content metadata item transmission", "content_type": 352, "codename": "delete_contentmetadataitemtransmission"}}, {"model": "auth.permission", "pk": 1062, "fields": {"name": "Can add transcript migration setting", "content_type": 353, "codename": "add_transcriptmigrationsetting"}}, {"model": "auth.permission", "pk": 1063, "fields": {"name": "Can change transcript migration setting", "content_type": 353, "codename": "change_transcriptmigrationsetting"}}, {"model": "auth.permission", "pk": 1064, "fields": {"name": "Can delete transcript migration setting", "content_type": 353, "codename": "delete_transcriptmigrationsetting"}}, {"model": "auth.permission", "pk": 1065, "fields": {"name": "Can add sso verification", "content_type": 354, "codename": "add_ssoverification"}}, {"model": "auth.permission", "pk": 1066, "fields": {"name": "Can change sso verification", "content_type": 354, "codename": "change_ssoverification"}}, {"model": "auth.permission", "pk": 1067, "fields": {"name": "Can delete sso verification", "content_type": 354, "codename": "delete_ssoverification"}}, {"model": "auth.permission", "pk": 1068, "fields": {"name": "Can add User Retirement Status", "content_type": 355, "codename": "add_userretirementstatus"}}, {"model": "auth.permission", "pk": 1069, "fields": {"name": "Can change User Retirement Status", "content_type": 355, "codename": "change_userretirementstatus"}}, {"model": "auth.permission", "pk": 1070, "fields": {"name": "Can delete User Retirement Status", "content_type": 355, "codename": "delete_userretirementstatus"}}, {"model": "auth.permission", "pk": 1071, "fields": {"name": "Can add retirement state", "content_type": 356, "codename": "add_retirementstate"}}, {"model": "auth.permission", "pk": 1072, "fields": {"name": "Can change retirement state", "content_type": 356, "codename": "change_retirementstate"}}, {"model": "auth.permission", "pk": 1073, "fields": {"name": "Can delete retirement state", "content_type": 356, "codename": "delete_retirementstate"}}, {"model": "auth.permission", "pk": 1074, "fields": {"name": "Can add data sharing consent text overrides", "content_type": 357, "codename": "add_datasharingconsenttextoverrides"}}, {"model": "auth.permission", "pk": 1075, "fields": {"name": "Can change data sharing consent text overrides", "content_type": 357, "codename": "change_datasharingconsenttextoverrides"}}, {"model": "auth.permission", "pk": 1076, "fields": {"name": "Can delete data sharing consent text overrides", "content_type": 357, "codename": "delete_datasharingconsenttextoverrides"}}, {"model": "auth.permission", "pk": 1077, "fields": {"name": "Can add User Retirement Request", "content_type": 358, "codename": "add_userretirementrequest"}}, {"model": "auth.permission", "pk": 1078, "fields": {"name": "Can change User Retirement Request", "content_type": 358, "codename": "change_userretirementrequest"}}, {"model": "auth.permission", "pk": 1079, "fields": {"name": "Can delete User Retirement Request", "content_type": 358, "codename": "delete_userretirementrequest"}}, {"model": "auth.permission", "pk": 1080, "fields": {"name": "Can add discussions id mapping", "content_type": 359, "codename": "add_discussionsidmapping"}}, {"model": "auth.permission", "pk": 1081, "fields": {"name": "Can change discussions id mapping", "content_type": 359, "codename": "change_discussionsidmapping"}}, {"model": "auth.permission", "pk": 1082, "fields": {"name": "Can delete discussions id mapping", "content_type": 359, "codename": "delete_discussionsidmapping"}}, {"model": "auth.permission", "pk": 1083, "fields": {"name": "Can add scoped application", "content_type": 360, "codename": "add_scopedapplication"}}, {"model": "auth.permission", "pk": 1084, "fields": {"name": "Can change scoped application", "content_type": 360, "codename": "change_scopedapplication"}}, {"model": "auth.permission", "pk": 1085, "fields": {"name": "Can delete scoped application", "content_type": 360, "codename": "delete_scopedapplication"}}, {"model": "auth.permission", "pk": 1086, "fields": {"name": "Can add scoped application organization", "content_type": 361, "codename": "add_scopedapplicationorganization"}}, {"model": "auth.permission", "pk": 1087, "fields": {"name": "Can change scoped application organization", "content_type": 361, "codename": "change_scopedapplicationorganization"}}, {"model": "auth.permission", "pk": 1088, "fields": {"name": "Can delete scoped application organization", "content_type": 361, "codename": "delete_scopedapplicationorganization"}}, {"model": "auth.permission", "pk": 1089, "fields": {"name": "Can add User Retirement Reporting Status", "content_type": 362, "codename": "add_userretirementpartnerreportingstatus"}}, {"model": "auth.permission", "pk": 1090, "fields": {"name": "Can change User Retirement Reporting Status", "content_type": 362, "codename": "change_userretirementpartnerreportingstatus"}}, {"model": "auth.permission", "pk": 1091, "fields": {"name": "Can delete User Retirement Reporting Status", "content_type": 362, "codename": "delete_userretirementpartnerreportingstatus"}}, {"model": "auth.permission", "pk": 1092, "fields": {"name": "Can add manual verification", "content_type": 363, "codename": "add_manualverification"}}, {"model": "auth.permission", "pk": 1093, "fields": {"name": "Can change manual verification", "content_type": 363, "codename": "change_manualverification"}}, {"model": "auth.permission", "pk": 1094, "fields": {"name": "Can delete manual verification", "content_type": 363, "codename": "delete_manualverification"}}, {"model": "auth.permission", "pk": 1095, "fields": {"name": "Can add application organization", "content_type": 364, "codename": "add_applicationorganization"}}, {"model": "auth.permission", "pk": 1096, "fields": {"name": "Can change application organization", "content_type": 364, "codename": "change_applicationorganization"}}, {"model": "auth.permission", "pk": 1097, "fields": {"name": "Can delete application organization", "content_type": 364, "codename": "delete_applicationorganization"}}, {"model": "auth.permission", "pk": 1098, "fields": {"name": "Can add application access", "content_type": 365, "codename": "add_applicationaccess"}}, {"model": "auth.permission", "pk": 1099, "fields": {"name": "Can change application access", "content_type": 365, "codename": "change_applicationaccess"}}, {"model": "auth.permission", "pk": 1100, "fields": {"name": "Can delete application access", "content_type": 365, "codename": "delete_applicationaccess"}}, {"model": "auth.permission", "pk": 1101, "fields": {"name": "Can add migration enqueued course", "content_type": 366, "codename": "add_migrationenqueuedcourse"}}, {"model": "auth.permission", "pk": 1102, "fields": {"name": "Can change migration enqueued course", "content_type": 366, "codename": "change_migrationenqueuedcourse"}}, {"model": "auth.permission", "pk": 1103, "fields": {"name": "Can delete migration enqueued course", "content_type": 366, "codename": "delete_migrationenqueuedcourse"}}, {"model": "auth.permission", "pk": 1104, "fields": {"name": "Can add xapilrs configuration", "content_type": 367, "codename": "add_xapilrsconfiguration"}}, {"model": "auth.permission", "pk": 1105, "fields": {"name": "Can change xapilrs configuration", "content_type": 367, "codename": "change_xapilrsconfiguration"}}, {"model": "auth.permission", "pk": 1106, "fields": {"name": "Can delete xapilrs configuration", "content_type": 367, "codename": "delete_xapilrsconfiguration"}}, {"model": "auth.permission", "pk": 1107, "fields": {"name": "Can add notify_credentials argument", "content_type": 368, "codename": "add_notifycredentialsconfig"}}, {"model": "auth.permission", "pk": 1108, "fields": {"name": "Can change notify_credentials argument", "content_type": 368, "codename": "change_notifycredentialsconfig"}}, {"model": "auth.permission", "pk": 1109, "fields": {"name": "Can delete notify_credentials argument", "content_type": 368, "codename": "delete_notifycredentialsconfig"}}, {"model": "auth.permission", "pk": 1110, "fields": {"name": "Can add updated course videos", "content_type": 369, "codename": "add_updatedcoursevideos"}}, {"model": "auth.permission", "pk": 1111, "fields": {"name": "Can change updated course videos", "content_type": 369, "codename": "change_updatedcoursevideos"}}, {"model": "auth.permission", "pk": 1112, "fields": {"name": "Can delete updated course videos", "content_type": 369, "codename": "delete_updatedcoursevideos"}}, {"model": "auth.permission", "pk": 1113, "fields": {"name": "Can add video thumbnail setting", "content_type": 370, "codename": "add_videothumbnailsetting"}}, {"model": "auth.permission", "pk": 1114, "fields": {"name": "Can change video thumbnail setting", "content_type": 370, "codename": "change_videothumbnailsetting"}}, {"model": "auth.permission", "pk": 1115, "fields": {"name": "Can delete video thumbnail setting", "content_type": 370, "codename": "delete_videothumbnailsetting"}}, {"model": "auth.permission", "pk": 1116, "fields": {"name": "Can add course duration limit config", "content_type": 371, "codename": "add_coursedurationlimitconfig"}}, {"model": "auth.permission", "pk": 1117, "fields": {"name": "Can change course duration limit config", "content_type": 371, "codename": "change_coursedurationlimitconfig"}}, {"model": "auth.permission", "pk": 1118, "fields": {"name": "Can delete course duration limit config", "content_type": 371, "codename": "delete_coursedurationlimitconfig"}}, {"model": "auth.permission", "pk": 1119, "fields": {"name": "Can add content type gating config", "content_type": 372, "codename": "add_contenttypegatingconfig"}}, {"model": "auth.permission", "pk": 1120, "fields": {"name": "Can change content type gating config", "content_type": 372, "codename": "change_contenttypegatingconfig"}}, {"model": "auth.permission", "pk": 1121, "fields": {"name": "Can delete content type gating config", "content_type": 372, "codename": "delete_contenttypegatingconfig"}}, {"model": "auth.permission", "pk": 1122, "fields": {"name": "Can add persistent subsection grade override history", "content_type": 373, "codename": "add_persistentsubsectiongradeoverridehistory"}}, {"model": "auth.permission", "pk": 1123, "fields": {"name": "Can change persistent subsection grade override history", "content_type": 373, "codename": "change_persistentsubsectiongradeoverridehistory"}}, {"model": "auth.permission", "pk": 1124, "fields": {"name": "Can delete persistent subsection grade override history", "content_type": 373, "codename": "delete_persistentsubsectiongradeoverridehistory"}}, {"model": "auth.permission", "pk": 1125, "fields": {"name": "Can add account recovery", "content_type": 374, "codename": "add_accountrecovery"}}, {"model": "auth.permission", "pk": 1126, "fields": {"name": "Can change account recovery", "content_type": 374, "codename": "change_accountrecovery"}}, {"model": "auth.permission", "pk": 1127, "fields": {"name": "Can delete account recovery", "content_type": 374, "codename": "delete_accountrecovery"}}, {"model": "auth.permission", "pk": 1128, "fields": {"name": "Can add Enterprise Customer Type", "content_type": 375, "codename": "add_enterprisecustomertype"}}, {"model": "auth.permission", "pk": 1129, "fields": {"name": "Can change Enterprise Customer Type", "content_type": 375, "codename": "change_enterprisecustomertype"}}, {"model": "auth.permission", "pk": 1130, "fields": {"name": "Can delete Enterprise Customer Type", "content_type": 375, "codename": "delete_enterprisecustomertype"}}, {"model": "auth.permission", "pk": 1131, "fields": {"name": "Can add pending secondary email change", "content_type": 376, "codename": "add_pendingsecondaryemailchange"}}, {"model": "auth.permission", "pk": 1132, "fields": {"name": "Can change pending secondary email change", "content_type": 376, "codename": "change_pendingsecondaryemailchange"}}, {"model": "auth.permission", "pk": 1133, "fields": {"name": "Can delete pending secondary email change", "content_type": 376, "codename": "delete_pendingsecondaryemailchange"}}, {"model": "auth.permission", "pk": 1134, "fields": {"name": "Can add lti consumer", "content_type": 377, "codename": "add_lticonsumer"}}, {"model": "auth.permission", "pk": 1135, "fields": {"name": "Can change lti consumer", "content_type": 377, "codename": "change_lticonsumer"}}, {"model": "auth.permission", "pk": 1136, "fields": {"name": "Can delete lti consumer", "content_type": 377, "codename": "delete_lticonsumer"}}, {"model": "auth.permission", "pk": 1137, "fields": {"name": "Can add graded assignment", "content_type": 378, "codename": "add_gradedassignment"}}, {"model": "auth.permission", "pk": 1138, "fields": {"name": "Can change graded assignment", "content_type": 378, "codename": "change_gradedassignment"}}, {"model": "auth.permission", "pk": 1139, "fields": {"name": "Can delete graded assignment", "content_type": 378, "codename": "delete_gradedassignment"}}, {"model": "auth.permission", "pk": 1140, "fields": {"name": "Can add lti user", "content_type": 379, "codename": "add_ltiuser"}}, {"model": "auth.permission", "pk": 1141, "fields": {"name": "Can change lti user", "content_type": 379, "codename": "change_ltiuser"}}, {"model": "auth.permission", "pk": 1142, "fields": {"name": "Can delete lti user", "content_type": 379, "codename": "delete_ltiuser"}}, {"model": "auth.permission", "pk": 1143, "fields": {"name": "Can add outcome service", "content_type": 380, "codename": "add_outcomeservice"}}, {"model": "auth.permission", "pk": 1144, "fields": {"name": "Can change outcome service", "content_type": 380, "codename": "change_outcomeservice"}}, {"model": "auth.permission", "pk": 1145, "fields": {"name": "Can delete outcome service", "content_type": 380, "codename": "delete_outcomeservice"}}, {"model": "auth.permission", "pk": 1146, "fields": {"name": "Can add system wide enterprise role", "content_type": 381, "codename": "add_systemwideenterpriserole"}}, {"model": "auth.permission", "pk": 1147, "fields": {"name": "Can change system wide enterprise role", "content_type": 381, "codename": "change_systemwideenterpriserole"}}, {"model": "auth.permission", "pk": 1148, "fields": {"name": "Can delete system wide enterprise role", "content_type": 381, "codename": "delete_systemwideenterpriserole"}}, {"model": "auth.permission", "pk": 1149, "fields": {"name": "Can add system wide enterprise user role assignment", "content_type": 382, "codename": "add_systemwideenterpriseuserroleassignment"}}, {"model": "auth.permission", "pk": 1150, "fields": {"name": "Can change system wide enterprise user role assignment", "content_type": 382, "codename": "change_systemwideenterpriseuserroleassignment"}}, {"model": "auth.permission", "pk": 1151, "fields": {"name": "Can delete system wide enterprise user role assignment", "content_type": 382, "codename": "delete_systemwideenterpriseuserroleassignment"}}, {"model": "auth.permission", "pk": 1152, "fields": {"name": "Can add announcement", "content_type": 383, "codename": "add_announcement"}}, {"model": "auth.permission", "pk": 1153, "fields": {"name": "Can change announcement", "content_type": 383, "codename": "change_announcement"}}, {"model": "auth.permission", "pk": 1154, "fields": {"name": "Can delete announcement", "content_type": 383, "codename": "delete_announcement"}}, {"model": "auth.permission", "pk": 2267, "fields": {"name": "Can add enterprise feature user role assignment", "content_type": 753, "codename": "add_enterprisefeatureuserroleassignment"}}, {"model": "auth.permission", "pk": 2268, "fields": {"name": "Can change enterprise feature user role assignment", "content_type": 753, "codename": "change_enterprisefeatureuserroleassignment"}}, {"model": "auth.permission", "pk": 2269, "fields": {"name": "Can delete enterprise feature user role assignment", "content_type": 753, "codename": "delete_enterprisefeatureuserroleassignment"}}, {"model": "auth.permission", "pk": 2270, "fields": {"name": "Can add enterprise feature role", "content_type": 754, "codename": "add_enterprisefeaturerole"}}, {"model": "auth.permission", "pk": 2271, "fields": {"name": "Can change enterprise feature role", "content_type": 754, "codename": "change_enterprisefeaturerole"}}, {"model": "auth.permission", "pk": 2272, "fields": {"name": "Can delete enterprise feature role", "content_type": 754, "codename": "delete_enterprisefeaturerole"}}, {"model": "auth.permission", "pk": 2273, "fields": {"name": "Can add program enrollment", "content_type": 755, "codename": "add_programenrollment"}}, {"model": "auth.permission", "pk": 2274, "fields": {"name": "Can change program enrollment", "content_type": 755, "codename": "change_programenrollment"}}, {"model": "auth.permission", "pk": 2275, "fields": {"name": "Can delete program enrollment", "content_type": 755, "codename": "delete_programenrollment"}}, {"model": "auth.permission", "pk": 2276, "fields": {"name": "Can add historical program enrollment", "content_type": 756, "codename": "add_historicalprogramenrollment"}}, {"model": "auth.permission", "pk": 2277, "fields": {"name": "Can change historical program enrollment", "content_type": 756, "codename": "change_historicalprogramenrollment"}}, {"model": "auth.permission", "pk": 2278, "fields": {"name": "Can delete historical program enrollment", "content_type": 756, "codename": "delete_historicalprogramenrollment"}}, {"model": "auth.permission", "pk": 2279, "fields": {"name": "Can add program course enrollment", "content_type": 757, "codename": "add_programcourseenrollment"}}, {"model": "auth.permission", "pk": 2280, "fields": {"name": "Can change program course enrollment", "content_type": 757, "codename": "change_programcourseenrollment"}}, {"model": "auth.permission", "pk": 2281, "fields": {"name": "Can delete program course enrollment", "content_type": 757, "codename": "delete_programcourseenrollment"}}, {"model": "auth.permission", "pk": 2282, "fields": {"name": "Can add historical program course enrollment", "content_type": 758, "codename": "add_historicalprogramcourseenrollment"}}, {"model": "auth.permission", "pk": 2283, "fields": {"name": "Can change historical program course enrollment", "content_type": 758, "codename": "change_historicalprogramcourseenrollment"}}, {"model": "auth.permission", "pk": 2284, "fields": {"name": "Can delete historical program course enrollment", "content_type": 758, "codename": "delete_historicalprogramcourseenrollment"}}, {"model": "auth.permission", "pk": 2285, "fields": {"name": "Can add content date", "content_type": 759, "codename": "add_contentdate"}}, {"model": "auth.permission", "pk": 2286, "fields": {"name": "Can change content date", "content_type": 759, "codename": "change_contentdate"}}, {"model": "auth.permission", "pk": 2287, "fields": {"name": "Can delete content date", "content_type": 759, "codename": "delete_contentdate"}}, {"model": "auth.permission", "pk": 2288, "fields": {"name": "Can add user date", "content_type": 760, "codename": "add_userdate"}}, {"model": "auth.permission", "pk": 2289, "fields": {"name": "Can change user date", "content_type": 760, "codename": "change_userdate"}}, {"model": "auth.permission", "pk": 2290, "fields": {"name": "Can delete user date", "content_type": 760, "codename": "delete_userdate"}}, {"model": "auth.permission", "pk": 2291, "fields": {"name": "Can add date policy", "content_type": 761, "codename": "add_datepolicy"}}, {"model": "auth.permission", "pk": 2292, "fields": {"name": "Can change date policy", "content_type": 761, "codename": "change_datepolicy"}}, {"model": "auth.permission", "pk": 2293, "fields": {"name": "Can delete date policy", "content_type": 761, "codename": "delete_datepolicy"}}, {"model": "auth.permission", "pk": 2294, "fields": {"name": "Can add historical course enrollment", "content_type": 762, "codename": "add_historicalcourseenrollment"}}, {"model": "auth.permission", "pk": 2295, "fields": {"name": "Can change historical course enrollment", "content_type": 762, "codename": "change_historicalcourseenrollment"}}, {"model": "auth.permission", "pk": 2296, "fields": {"name": "Can delete historical course enrollment", "content_type": 762, "codename": "delete_historicalcourseenrollment"}}, {"model": "auth.permission", "pk": 2297, "fields": {"name": "Can add cornerstone global configuration", "content_type": 763, "codename": "add_cornerstoneglobalconfiguration"}}, {"model": "auth.permission", "pk": 2298, "fields": {"name": "Can change cornerstone global configuration", "content_type": 763, "codename": "change_cornerstoneglobalconfiguration"}}, {"model": "auth.permission", "pk": 2299, "fields": {"name": "Can delete cornerstone global configuration", "content_type": 763, "codename": "delete_cornerstoneglobalconfiguration"}}, {"model": "auth.permission", "pk": 2300, "fields": {"name": "Can add historical cornerstone enterprise customer configuration", "content_type": 764, "codename": "add_historicalcornerstoneenterprisecustomerconfiguration"}}, {"model": "auth.permission", "pk": 2301, "fields": {"name": "Can change historical cornerstone enterprise customer configuration", "content_type": 764, "codename": "change_historicalcornerstoneenterprisecustomerconfiguration"}}, {"model": "auth.permission", "pk": 2302, "fields": {"name": "Can delete historical cornerstone enterprise customer configuration", "content_type": 764, "codename": "delete_historicalcornerstoneenterprisecustomerconfiguration"}}, {"model": "auth.permission", "pk": 2303, "fields": {"name": "Can add cornerstone learner data transmission audit", "content_type": 765, "codename": "add_cornerstonelearnerdatatransmissionaudit"}}, {"model": "auth.permission", "pk": 2304, "fields": {"name": "Can change cornerstone learner data transmission audit", "content_type": 765, "codename": "change_cornerstonelearnerdatatransmissionaudit"}}, {"model": "auth.permission", "pk": 2305, "fields": {"name": "Can delete cornerstone learner data transmission audit", "content_type": 765, "codename": "delete_cornerstonelearnerdatatransmissionaudit"}}, {"model": "auth.permission", "pk": 2306, "fields": {"name": "Can add cornerstone enterprise customer configuration", "content_type": 766, "codename": "add_cornerstoneenterprisecustomerconfiguration"}}, {"model": "auth.permission", "pk": 2307, "fields": {"name": "Can change cornerstone enterprise customer configuration", "content_type": 766, "codename": "change_cornerstoneenterprisecustomerconfiguration"}}, {"model": "auth.permission", "pk": 2308, "fields": {"name": "Can delete cornerstone enterprise customer configuration", "content_type": 766, "codename": "delete_cornerstoneenterprisecustomerconfiguration"}}, {"model": "auth.permission", "pk": 2309, "fields": {"name": "Can add discount restriction config", "content_type": 767, "codename": "add_discountrestrictionconfig"}}, {"model": "auth.permission", "pk": 2310, "fields": {"name": "Can change discount restriction config", "content_type": 767, "codename": "change_discountrestrictionconfig"}}, {"model": "auth.permission", "pk": 2311, "fields": {"name": "Can delete discount restriction config", "content_type": 767, "codename": "delete_discountrestrictionconfig"}}, {"model": "auth.permission", "pk": 2312, "fields": {"name": "Can add historical course entitlement", "content_type": 768, "codename": "add_historicalcourseentitlement"}}, {"model": "auth.permission", "pk": 2313, "fields": {"name": "Can change historical course entitlement", "content_type": 768, "codename": "change_historicalcourseentitlement"}}, {"model": "auth.permission", "pk": 2314, "fields": {"name": "Can delete historical course entitlement", "content_type": 768, "codename": "delete_historicalcourseentitlement"}}, {"model": "auth.permission", "pk": 2315, "fields": {"name": "Can add historical organization", "content_type": 769, "codename": "add_historicalorganization"}}, {"model": "auth.permission", "pk": 2316, "fields": {"name": "Can change historical organization", "content_type": 769, "codename": "change_historicalorganization"}}, {"model": "auth.permission", "pk": 2317, "fields": {"name": "Can delete historical organization", "content_type": 769, "codename": "delete_historicalorganization"}}, {"model": "auth.permission", "pk": 2318, "fields": {"name": "Can add historical persistent subsection grade override", "content_type": 770, "codename": "add_historicalpersistentsubsectiongradeoverride"}}, {"model": "auth.permission", "pk": 2319, "fields": {"name": "Can change historical persistent subsection grade override", "content_type": 770, "codename": "change_historicalpersistentsubsectiongradeoverride"}}, {"model": "auth.permission", "pk": 2320, "fields": {"name": "Can delete historical persistent subsection grade override", "content_type": 770, "codename": "delete_historicalpersistentsubsectiongradeoverride"}}, {"model": "auth.group", "pk": 1, "fields": {"name": "API Access Request Approvers", "permissions": []}}, {"model": "auth.user", "pk": 1, "fields": {"password": "!FXJJHcjbqdW2yNqrkNvJXSnTXxNZVYIj3SsIt7BB", "last_login": null, "is_superuser": false, "username": "ecommerce_worker", "first_name": "", "last_name": "", "email": "ecommerce_worker@fake.email", "is_staff": false, "is_active": true, "date_joined": "2017-12-06T02:20:20.329Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 2, "fields": {"password": "!rUv06Bh8BQoqyhkOEl2BtUKUwOX3NlpCVPBSwqBj", "last_login": null, "is_superuser": false, "username": "login_service_user", "first_name": "", "last_name": "", "email": "login_service_user@fake.email", "is_staff": false, "is_active": true, "date_joined": "2018-10-25T14:53:08.044Z", "groups": [], "user_permissions": []}}, {"model": "util.ratelimitconfiguration", "pk": 1, "fields": {"change_date": "2017-12-06T02:37:46.125Z", "changed_by": null, "enabled": true}}, {"model": "certificates.certificatehtmlviewconfiguration", "pk": 1, "fields": {"change_date": "2017-12-06T02:19:25.679Z", "changed_by": null, "enabled": false, "configuration": "{\"default\": {\"accomplishment_class_append\": \"accomplishment-certificate\", \"platform_name\": \"Your Platform Name Here\", \"logo_src\": \"/static/certificates/images/logo.png\", \"logo_url\": \"http://www.example.com\", \"company_verified_certificate_url\": \"http://www.example.com/verified-certificate\", \"company_privacy_url\": \"http://www.example.com/privacy-policy\", \"company_tos_url\": \"http://www.example.com/terms-service\", \"company_about_url\": \"http://www.example.com/about-us\"}, \"verified\": {\"certificate_type\": \"Verified\", \"certificate_title\": \"Verified Certificate of Achievement\"}, \"honor\": {\"certificate_type\": \"Honor Code\", \"certificate_title\": \"Certificate of Achievement\"}}"}}, {"model": "oauth2_provider.application", "pk": 2, "fields": {"client_id": "login-service-client-id", "user": 2, "redirect_uris": "", "client_type": "public", "authorization_grant_type": "password", "client_secret": "mpAwLT424Wm3HQfjVydNCceq7ZOERB72jVuzLSo0B7KldmPHqCmYQNyCMS2mklqzJN4XyT7VRcqHG7bHC0KDHIqcOAMpMisuCi7jIigmseHKKLjgjsx6DM9Rem2cOvO6", "name": "Login Service for JWT Cookies", "skip_authorization": false, "created": "2018-10-25T14:53:08.054Z", "updated": "2018-10-25T14:53:08.054Z"}}, {"model": "django_comment_common.forumsconfig", "pk": 1, "fields": {"change_date": "2017-12-06T02:23:41.040Z", "changed_by": null, "enabled": true, "connection_timeout": 5.0}}, {"model": "dark_lang.darklangconfig", "pk": 1, "fields": {"change_date": "2017-12-06T02:22:45.120Z", "changed_by": null, "enabled": true, "released_languages": "", "enable_beta_languages": false, "beta_languages": ""}}] \ No newline at end of file +[{"model": "contenttypes.contenttype", "pk": 1, "fields": {"app_label": "api_admin", "model": "apiaccessrequest"}}, {"model": "contenttypes.contenttype", "pk": 2, "fields": {"app_label": "auth", "model": "permission"}}, {"model": "contenttypes.contenttype", "pk": 3, "fields": {"app_label": "auth", "model": "group"}}, {"model": "contenttypes.contenttype", "pk": 4, "fields": {"app_label": "auth", "model": "user"}}, {"model": "contenttypes.contenttype", "pk": 5, "fields": {"app_label": "contenttypes", "model": "contenttype"}}, {"model": "contenttypes.contenttype", "pk": 6, "fields": {"app_label": "redirects", "model": "redirect"}}, {"model": "contenttypes.contenttype", "pk": 7, "fields": {"app_label": "sessions", "model": "session"}}, {"model": "contenttypes.contenttype", "pk": 8, "fields": {"app_label": "sites", "model": "site"}}, {"model": "contenttypes.contenttype", "pk": 9, "fields": {"app_label": "djcelery", "model": "taskmeta"}}, {"model": "contenttypes.contenttype", "pk": 10, "fields": {"app_label": "djcelery", "model": "tasksetmeta"}}, {"model": "contenttypes.contenttype", "pk": 11, "fields": {"app_label": "djcelery", "model": "intervalschedule"}}, {"model": "contenttypes.contenttype", "pk": 12, "fields": {"app_label": "djcelery", "model": "crontabschedule"}}, {"model": "contenttypes.contenttype", "pk": 13, "fields": {"app_label": "djcelery", "model": "periodictasks"}}, {"model": "contenttypes.contenttype", "pk": 14, "fields": {"app_label": "djcelery", "model": "periodictask"}}, {"model": "contenttypes.contenttype", "pk": 15, "fields": {"app_label": "djcelery", "model": "workerstate"}}, {"model": "contenttypes.contenttype", "pk": 16, "fields": {"app_label": "djcelery", "model": "taskstate"}}, {"model": "contenttypes.contenttype", "pk": 17, "fields": {"app_label": "waffle", "model": "flag"}}, {"model": "contenttypes.contenttype", "pk": 18, "fields": {"app_label": "waffle", "model": "switch"}}, {"model": "contenttypes.contenttype", "pk": 19, "fields": {"app_label": "waffle", "model": "sample"}}, {"model": "contenttypes.contenttype", "pk": 20, "fields": {"app_label": "status", "model": "globalstatusmessage"}}, {"model": "contenttypes.contenttype", "pk": 21, "fields": {"app_label": "status", "model": "coursemessage"}}, {"model": "contenttypes.contenttype", "pk": 22, "fields": {"app_label": "static_replace", "model": "assetbaseurlconfig"}}, {"model": "contenttypes.contenttype", "pk": 23, "fields": {"app_label": "static_replace", "model": "assetexcludedextensionsconfig"}}, {"model": "contenttypes.contenttype", "pk": 24, "fields": {"app_label": "contentserver", "model": "courseassetcachettlconfig"}}, {"model": "contenttypes.contenttype", "pk": 25, "fields": {"app_label": "contentserver", "model": "cdnuseragentsconfig"}}, {"model": "contenttypes.contenttype", "pk": 26, "fields": {"app_label": "theming", "model": "sitetheme"}}, {"model": "contenttypes.contenttype", "pk": 27, "fields": {"app_label": "site_configuration", "model": "siteconfiguration"}}, {"model": "contenttypes.contenttype", "pk": 28, "fields": {"app_label": "site_configuration", "model": "siteconfigurationhistory"}}, {"model": "contenttypes.contenttype", "pk": 29, "fields": {"app_label": "video_config", "model": "hlsplaybackenabledflag"}}, {"model": "contenttypes.contenttype", "pk": 30, "fields": {"app_label": "video_config", "model": "coursehlsplaybackenabledflag"}}, {"model": "contenttypes.contenttype", "pk": 31, "fields": {"app_label": "video_config", "model": "videotranscriptenabledflag"}}, {"model": "contenttypes.contenttype", "pk": 32, "fields": {"app_label": "video_config", "model": "coursevideotranscriptenabledflag"}}, {"model": "contenttypes.contenttype", "pk": 33, "fields": {"app_label": "video_pipeline", "model": "videopipelineintegration"}}, {"model": "contenttypes.contenttype", "pk": 34, "fields": {"app_label": "video_pipeline", "model": "videouploadsenabledbydefault"}}, {"model": "contenttypes.contenttype", "pk": 35, "fields": {"app_label": "video_pipeline", "model": "coursevideouploadsenabledbydefault"}}, {"model": "contenttypes.contenttype", "pk": 36, "fields": {"app_label": "bookmarks", "model": "bookmark"}}, {"model": "contenttypes.contenttype", "pk": 37, "fields": {"app_label": "bookmarks", "model": "xblockcache"}}, {"model": "contenttypes.contenttype", "pk": 38, "fields": {"app_label": "courseware", "model": "studentmodule"}}, {"model": "contenttypes.contenttype", "pk": 39, "fields": {"app_label": "courseware", "model": "studentmodulehistory"}}, {"model": "contenttypes.contenttype", "pk": 40, "fields": {"app_label": "courseware", "model": "xmoduleuserstatesummaryfield"}}, {"model": "contenttypes.contenttype", "pk": 41, "fields": {"app_label": "courseware", "model": "xmodulestudentprefsfield"}}, {"model": "contenttypes.contenttype", "pk": 42, "fields": {"app_label": "courseware", "model": "xmodulestudentinfofield"}}, {"model": "contenttypes.contenttype", "pk": 43, "fields": {"app_label": "courseware", "model": "offlinecomputedgrade"}}, {"model": "contenttypes.contenttype", "pk": 44, "fields": {"app_label": "courseware", "model": "offlinecomputedgradelog"}}, {"model": "contenttypes.contenttype", "pk": 45, "fields": {"app_label": "courseware", "model": "studentfieldoverride"}}, {"model": "contenttypes.contenttype", "pk": 46, "fields": {"app_label": "courseware", "model": "dynamicupgradedeadlineconfiguration"}}, {"model": "contenttypes.contenttype", "pk": 47, "fields": {"app_label": "courseware", "model": "coursedynamicupgradedeadlineconfiguration"}}, {"model": "contenttypes.contenttype", "pk": 48, "fields": {"app_label": "courseware", "model": "orgdynamicupgradedeadlineconfiguration"}}, {"model": "contenttypes.contenttype", "pk": 49, "fields": {"app_label": "student", "model": "anonymoususerid"}}, {"model": "contenttypes.contenttype", "pk": 50, "fields": {"app_label": "student", "model": "userstanding"}}, {"model": "contenttypes.contenttype", "pk": 51, "fields": {"app_label": "student", "model": "userprofile"}}, {"model": "contenttypes.contenttype", "pk": 52, "fields": {"app_label": "student", "model": "usersignupsource"}}, {"model": "contenttypes.contenttype", "pk": 53, "fields": {"app_label": "student", "model": "usertestgroup"}}, {"model": "contenttypes.contenttype", "pk": 54, "fields": {"app_label": "student", "model": "registration"}}, {"model": "contenttypes.contenttype", "pk": 55, "fields": {"app_label": "student", "model": "pendingnamechange"}}, {"model": "contenttypes.contenttype", "pk": 56, "fields": {"app_label": "student", "model": "pendingemailchange"}}, {"model": "contenttypes.contenttype", "pk": 57, "fields": {"app_label": "student", "model": "passwordhistory"}}, {"model": "contenttypes.contenttype", "pk": 58, "fields": {"app_label": "student", "model": "loginfailures"}}, {"model": "contenttypes.contenttype", "pk": 59, "fields": {"app_label": "student", "model": "courseenrollment"}}, {"model": "contenttypes.contenttype", "pk": 60, "fields": {"app_label": "student", "model": "manualenrollmentaudit"}}, {"model": "contenttypes.contenttype", "pk": 61, "fields": {"app_label": "student", "model": "courseenrollmentallowed"}}, {"model": "contenttypes.contenttype", "pk": 62, "fields": {"app_label": "student", "model": "courseaccessrole"}}, {"model": "contenttypes.contenttype", "pk": 63, "fields": {"app_label": "student", "model": "dashboardconfiguration"}}, {"model": "contenttypes.contenttype", "pk": 64, "fields": {"app_label": "student", "model": "linkedinaddtoprofileconfiguration"}}, {"model": "contenttypes.contenttype", "pk": 65, "fields": {"app_label": "student", "model": "entranceexamconfiguration"}}, {"model": "contenttypes.contenttype", "pk": 66, "fields": {"app_label": "student", "model": "languageproficiency"}}, {"model": "contenttypes.contenttype", "pk": 67, "fields": {"app_label": "student", "model": "sociallink"}}, {"model": "contenttypes.contenttype", "pk": 68, "fields": {"app_label": "student", "model": "courseenrollmentattribute"}}, {"model": "contenttypes.contenttype", "pk": 69, "fields": {"app_label": "student", "model": "enrollmentrefundconfiguration"}}, {"model": "contenttypes.contenttype", "pk": 70, "fields": {"app_label": "student", "model": "registrationcookieconfiguration"}}, {"model": "contenttypes.contenttype", "pk": 71, "fields": {"app_label": "student", "model": "userattribute"}}, {"model": "contenttypes.contenttype", "pk": 72, "fields": {"app_label": "student", "model": "logoutviewconfiguration"}}, {"model": "contenttypes.contenttype", "pk": 73, "fields": {"app_label": "track", "model": "trackinglog"}}, {"model": "contenttypes.contenttype", "pk": 74, "fields": {"app_label": "util", "model": "ratelimitconfiguration"}}, {"model": "contenttypes.contenttype", "pk": 75, "fields": {"app_label": "certificates", "model": "certificatewhitelist"}}, {"model": "contenttypes.contenttype", "pk": 76, "fields": {"app_label": "certificates", "model": "generatedcertificate"}}, {"model": "contenttypes.contenttype", "pk": 77, "fields": {"app_label": "certificates", "model": "certificategenerationhistory"}}, {"model": "contenttypes.contenttype", "pk": 78, "fields": {"app_label": "certificates", "model": "certificateinvalidation"}}, {"model": "contenttypes.contenttype", "pk": 79, "fields": {"app_label": "certificates", "model": "examplecertificateset"}}, {"model": "contenttypes.contenttype", "pk": 80, "fields": {"app_label": "certificates", "model": "examplecertificate"}}, {"model": "contenttypes.contenttype", "pk": 81, "fields": {"app_label": "certificates", "model": "certificategenerationcoursesetting"}}, {"model": "contenttypes.contenttype", "pk": 82, "fields": {"app_label": "certificates", "model": "certificategenerationconfiguration"}}, {"model": "contenttypes.contenttype", "pk": 83, "fields": {"app_label": "certificates", "model": "certificatehtmlviewconfiguration"}}, {"model": "contenttypes.contenttype", "pk": 84, "fields": {"app_label": "certificates", "model": "certificatetemplate"}}, {"model": "contenttypes.contenttype", "pk": 85, "fields": {"app_label": "certificates", "model": "certificatetemplateasset"}}, {"model": "contenttypes.contenttype", "pk": 86, "fields": {"app_label": "instructor_task", "model": "instructortask"}}, {"model": "contenttypes.contenttype", "pk": 87, "fields": {"app_label": "instructor_task", "model": "gradereportsetting"}}, {"model": "contenttypes.contenttype", "pk": 88, "fields": {"app_label": "course_groups", "model": "courseusergroup"}}, {"model": "contenttypes.contenttype", "pk": 89, "fields": {"app_label": "course_groups", "model": "cohortmembership"}}, {"model": "contenttypes.contenttype", "pk": 90, "fields": {"app_label": "course_groups", "model": "courseusergrouppartitiongroup"}}, {"model": "contenttypes.contenttype", "pk": 91, "fields": {"app_label": "course_groups", "model": "coursecohortssettings"}}, {"model": "contenttypes.contenttype", "pk": 92, "fields": {"app_label": "course_groups", "model": "coursecohort"}}, {"model": "contenttypes.contenttype", "pk": 93, "fields": {"app_label": "course_groups", "model": "unregisteredlearnercohortassignments"}}, {"model": "contenttypes.contenttype", "pk": 94, "fields": {"app_label": "bulk_email", "model": "target"}}, {"model": "contenttypes.contenttype", "pk": 95, "fields": {"app_label": "bulk_email", "model": "cohorttarget"}}, {"model": "contenttypes.contenttype", "pk": 96, "fields": {"app_label": "bulk_email", "model": "coursemodetarget"}}, {"model": "contenttypes.contenttype", "pk": 97, "fields": {"app_label": "bulk_email", "model": "courseemail"}}, {"model": "contenttypes.contenttype", "pk": 98, "fields": {"app_label": "bulk_email", "model": "optout"}}, {"model": "contenttypes.contenttype", "pk": 99, "fields": {"app_label": "bulk_email", "model": "courseemailtemplate"}}, {"model": "contenttypes.contenttype", "pk": 100, "fields": {"app_label": "bulk_email", "model": "courseauthorization"}}, {"model": "contenttypes.contenttype", "pk": 101, "fields": {"app_label": "bulk_email", "model": "bulkemailflag"}}, {"model": "contenttypes.contenttype", "pk": 102, "fields": {"app_label": "branding", "model": "brandinginfoconfig"}}, {"model": "contenttypes.contenttype", "pk": 103, "fields": {"app_label": "branding", "model": "brandingapiconfig"}}, {"model": "contenttypes.contenttype", "pk": 104, "fields": {"app_label": "grades", "model": "visibleblocks"}}, {"model": "contenttypes.contenttype", "pk": 105, "fields": {"app_label": "grades", "model": "persistentsubsectiongrade"}}, {"model": "contenttypes.contenttype", "pk": 106, "fields": {"app_label": "grades", "model": "persistentcoursegrade"}}, {"model": "contenttypes.contenttype", "pk": 107, "fields": {"app_label": "grades", "model": "persistentsubsectiongradeoverride"}}, {"model": "contenttypes.contenttype", "pk": 108, "fields": {"app_label": "grades", "model": "persistentgradesenabledflag"}}, {"model": "contenttypes.contenttype", "pk": 109, "fields": {"app_label": "grades", "model": "coursepersistentgradesflag"}}, {"model": "contenttypes.contenttype", "pk": 110, "fields": {"app_label": "grades", "model": "computegradessetting"}}, {"model": "contenttypes.contenttype", "pk": 111, "fields": {"app_label": "external_auth", "model": "externalauthmap"}}, {"model": "contenttypes.contenttype", "pk": 112, "fields": {"app_label": "django_openid_auth", "model": "nonce"}}, {"model": "contenttypes.contenttype", "pk": 113, "fields": {"app_label": "django_openid_auth", "model": "association"}}, {"model": "contenttypes.contenttype", "pk": 114, "fields": {"app_label": "django_openid_auth", "model": "useropenid"}}, {"model": "contenttypes.contenttype", "pk": 115, "fields": {"app_label": "oauth2", "model": "client"}}, {"model": "contenttypes.contenttype", "pk": 116, "fields": {"app_label": "oauth2", "model": "grant"}}, {"model": "contenttypes.contenttype", "pk": 117, "fields": {"app_label": "oauth2", "model": "accesstoken"}}, {"model": "contenttypes.contenttype", "pk": 118, "fields": {"app_label": "oauth2", "model": "refreshtoken"}}, {"model": "contenttypes.contenttype", "pk": 119, "fields": {"app_label": "edx_oauth2_provider", "model": "trustedclient"}}, {"model": "contenttypes.contenttype", "pk": 120, "fields": {"app_label": "oauth2_provider", "model": "application"}}, {"model": "contenttypes.contenttype", "pk": 121, "fields": {"app_label": "oauth2_provider", "model": "grant"}}, {"model": "contenttypes.contenttype", "pk": 122, "fields": {"app_label": "oauth2_provider", "model": "accesstoken"}}, {"model": "contenttypes.contenttype", "pk": 123, "fields": {"app_label": "oauth2_provider", "model": "refreshtoken"}}, {"model": "contenttypes.contenttype", "pk": 124, "fields": {"app_label": "oauth_dispatch", "model": "restrictedapplication"}}, {"model": "contenttypes.contenttype", "pk": 125, "fields": {"app_label": "third_party_auth", "model": "oauth2providerconfig"}}, {"model": "contenttypes.contenttype", "pk": 126, "fields": {"app_label": "third_party_auth", "model": "samlproviderconfig"}}, {"model": "contenttypes.contenttype", "pk": 127, "fields": {"app_label": "third_party_auth", "model": "samlconfiguration"}}, {"model": "contenttypes.contenttype", "pk": 128, "fields": {"app_label": "third_party_auth", "model": "samlproviderdata"}}, {"model": "contenttypes.contenttype", "pk": 129, "fields": {"app_label": "third_party_auth", "model": "ltiproviderconfig"}}, {"model": "contenttypes.contenttype", "pk": 130, "fields": {"app_label": "third_party_auth", "model": "providerapipermissions"}}, {"model": "contenttypes.contenttype", "pk": 131, "fields": {"app_label": "oauth_provider", "model": "nonce"}}, {"model": "contenttypes.contenttype", "pk": 132, "fields": {"app_label": "oauth_provider", "model": "scope"}}, {"model": "contenttypes.contenttype", "pk": 133, "fields": {"app_label": "oauth_provider", "model": "consumer"}}, {"model": "contenttypes.contenttype", "pk": 134, "fields": {"app_label": "oauth_provider", "model": "token"}}, {"model": "contenttypes.contenttype", "pk": 135, "fields": {"app_label": "oauth_provider", "model": "resource"}}, {"model": "contenttypes.contenttype", "pk": 136, "fields": {"app_label": "wiki", "model": "article"}}, {"model": "contenttypes.contenttype", "pk": 137, "fields": {"app_label": "wiki", "model": "articleforobject"}}, {"model": "contenttypes.contenttype", "pk": 138, "fields": {"app_label": "wiki", "model": "articlerevision"}}, {"model": "contenttypes.contenttype", "pk": 139, "fields": {"app_label": "wiki", "model": "articleplugin"}}, {"model": "contenttypes.contenttype", "pk": 140, "fields": {"app_label": "wiki", "model": "reusableplugin"}}, {"model": "contenttypes.contenttype", "pk": 141, "fields": {"app_label": "wiki", "model": "simpleplugin"}}, {"model": "contenttypes.contenttype", "pk": 142, "fields": {"app_label": "wiki", "model": "revisionplugin"}}, {"model": "contenttypes.contenttype", "pk": 143, "fields": {"app_label": "wiki", "model": "revisionpluginrevision"}}, {"model": "contenttypes.contenttype", "pk": 144, "fields": {"app_label": "wiki", "model": "urlpath"}}, {"model": "contenttypes.contenttype", "pk": 145, "fields": {"app_label": "django_notify", "model": "notificationtype"}}, {"model": "contenttypes.contenttype", "pk": 146, "fields": {"app_label": "django_notify", "model": "settings"}}, {"model": "contenttypes.contenttype", "pk": 147, "fields": {"app_label": "django_notify", "model": "subscription"}}, {"model": "contenttypes.contenttype", "pk": 148, "fields": {"app_label": "django_notify", "model": "notification"}}, {"model": "contenttypes.contenttype", "pk": 149, "fields": {"app_label": "admin", "model": "logentry"}}, {"model": "contenttypes.contenttype", "pk": 150, "fields": {"app_label": "django_comment_common", "model": "role"}}, {"model": "contenttypes.contenttype", "pk": 151, "fields": {"app_label": "django_comment_common", "model": "permission"}}, {"model": "contenttypes.contenttype", "pk": 152, "fields": {"app_label": "django_comment_common", "model": "forumsconfig"}}, {"model": "contenttypes.contenttype", "pk": 153, "fields": {"app_label": "django_comment_common", "model": "coursediscussionsettings"}}, {"model": "contenttypes.contenttype", "pk": 154, "fields": {"app_label": "notes", "model": "note"}}, {"model": "contenttypes.contenttype", "pk": 155, "fields": {"app_label": "splash", "model": "splashconfig"}}, {"model": "contenttypes.contenttype", "pk": 156, "fields": {"app_label": "user_api", "model": "userpreference"}}, {"model": "contenttypes.contenttype", "pk": 157, "fields": {"app_label": "user_api", "model": "usercoursetag"}}, {"model": "contenttypes.contenttype", "pk": 158, "fields": {"app_label": "user_api", "model": "userorgtag"}}, {"model": "contenttypes.contenttype", "pk": 159, "fields": {"app_label": "shoppingcart", "model": "order"}}, {"model": "contenttypes.contenttype", "pk": 160, "fields": {"app_label": "shoppingcart", "model": "orderitem"}}, {"model": "contenttypes.contenttype", "pk": 161, "fields": {"app_label": "shoppingcart", "model": "invoice"}}, {"model": "contenttypes.contenttype", "pk": 162, "fields": {"app_label": "shoppingcart", "model": "invoicetransaction"}}, {"model": "contenttypes.contenttype", "pk": 163, "fields": {"app_label": "shoppingcart", "model": "invoiceitem"}}, {"model": "contenttypes.contenttype", "pk": 164, "fields": {"app_label": "shoppingcart", "model": "courseregistrationcodeinvoiceitem"}}, {"model": "contenttypes.contenttype", "pk": 165, "fields": {"app_label": "shoppingcart", "model": "invoicehistory"}}, {"model": "contenttypes.contenttype", "pk": 166, "fields": {"app_label": "shoppingcart", "model": "courseregistrationcode"}}, {"model": "contenttypes.contenttype", "pk": 167, "fields": {"app_label": "shoppingcart", "model": "registrationcoderedemption"}}, {"model": "contenttypes.contenttype", "pk": 168, "fields": {"app_label": "shoppingcart", "model": "coupon"}}, {"model": "contenttypes.contenttype", "pk": 169, "fields": {"app_label": "shoppingcart", "model": "couponredemption"}}, {"model": "contenttypes.contenttype", "pk": 170, "fields": {"app_label": "shoppingcart", "model": "paidcourseregistration"}}, {"model": "contenttypes.contenttype", "pk": 171, "fields": {"app_label": "shoppingcart", "model": "courseregcodeitem"}}, {"model": "contenttypes.contenttype", "pk": 172, "fields": {"app_label": "shoppingcart", "model": "courseregcodeitemannotation"}}, {"model": "contenttypes.contenttype", "pk": 173, "fields": {"app_label": "shoppingcart", "model": "paidcourseregistrationannotation"}}, {"model": "contenttypes.contenttype", "pk": 174, "fields": {"app_label": "shoppingcart", "model": "certificateitem"}}, {"model": "contenttypes.contenttype", "pk": 175, "fields": {"app_label": "shoppingcart", "model": "donationconfiguration"}}, {"model": "contenttypes.contenttype", "pk": 176, "fields": {"app_label": "shoppingcart", "model": "donation"}}, {"model": "contenttypes.contenttype", "pk": 177, "fields": {"app_label": "course_modes", "model": "coursemode"}}, {"model": "contenttypes.contenttype", "pk": 178, "fields": {"app_label": "course_modes", "model": "coursemodesarchive"}}, {"model": "contenttypes.contenttype", "pk": 179, "fields": {"app_label": "course_modes", "model": "coursemodeexpirationconfig"}}, {"model": "contenttypes.contenttype", "pk": 180, "fields": {"app_label": "entitlements", "model": "courseentitlement"}}, {"model": "contenttypes.contenttype", "pk": 181, "fields": {"app_label": "verify_student", "model": "softwaresecurephotoverification"}}, {"model": "contenttypes.contenttype", "pk": 182, "fields": {"app_label": "verify_student", "model": "verificationdeadline"}}, {"model": "contenttypes.contenttype", "pk": 183, "fields": {"app_label": "verify_student", "model": "verificationcheckpoint"}}, {"model": "contenttypes.contenttype", "pk": 184, "fields": {"app_label": "verify_student", "model": "verificationstatus"}}, {"model": "contenttypes.contenttype", "pk": 185, "fields": {"app_label": "verify_student", "model": "incoursereverificationconfiguration"}}, {"model": "contenttypes.contenttype", "pk": 186, "fields": {"app_label": "verify_student", "model": "icrvstatusemailsconfiguration"}}, {"model": "contenttypes.contenttype", "pk": 187, "fields": {"app_label": "verify_student", "model": "skippedreverification"}}, {"model": "contenttypes.contenttype", "pk": 188, "fields": {"app_label": "dark_lang", "model": "darklangconfig"}}, {"model": "contenttypes.contenttype", "pk": 189, "fields": {"app_label": "microsite_configuration", "model": "microsite"}}, {"model": "contenttypes.contenttype", "pk": 190, "fields": {"app_label": "microsite_configuration", "model": "micrositehistory"}}, {"model": "contenttypes.contenttype", "pk": 191, "fields": {"app_label": "microsite_configuration", "model": "micrositeorganizationmapping"}}, {"model": "contenttypes.contenttype", "pk": 192, "fields": {"app_label": "microsite_configuration", "model": "micrositetemplate"}}, {"model": "contenttypes.contenttype", "pk": 193, "fields": {"app_label": "rss_proxy", "model": "whitelistedrssurl"}}, {"model": "contenttypes.contenttype", "pk": 194, "fields": {"app_label": "embargo", "model": "embargoedcourse"}}, {"model": "contenttypes.contenttype", "pk": 195, "fields": {"app_label": "embargo", "model": "embargoedstate"}}, {"model": "contenttypes.contenttype", "pk": 196, "fields": {"app_label": "embargo", "model": "restrictedcourse"}}, {"model": "contenttypes.contenttype", "pk": 197, "fields": {"app_label": "embargo", "model": "country"}}, {"model": "contenttypes.contenttype", "pk": 198, "fields": {"app_label": "embargo", "model": "countryaccessrule"}}, {"model": "contenttypes.contenttype", "pk": 199, "fields": {"app_label": "embargo", "model": "courseaccessrulehistory"}}, {"model": "contenttypes.contenttype", "pk": 200, "fields": {"app_label": "embargo", "model": "ipfilter"}}, {"model": "contenttypes.contenttype", "pk": 201, "fields": {"app_label": "course_action_state", "model": "coursererunstate"}}, {"model": "contenttypes.contenttype", "pk": 202, "fields": {"app_label": "mobile_api", "model": "mobileapiconfig"}}, {"model": "contenttypes.contenttype", "pk": 203, "fields": {"app_label": "mobile_api", "model": "appversionconfig"}}, {"model": "contenttypes.contenttype", "pk": 204, "fields": {"app_label": "mobile_api", "model": "ignoremobileavailableflagconfig"}}, {"model": "contenttypes.contenttype", "pk": 205, "fields": {"app_label": "social_django", "model": "usersocialauth"}}, {"model": "contenttypes.contenttype", "pk": 206, "fields": {"app_label": "social_django", "model": "nonce"}}, {"model": "contenttypes.contenttype", "pk": 207, "fields": {"app_label": "social_django", "model": "association"}}, {"model": "contenttypes.contenttype", "pk": 208, "fields": {"app_label": "social_django", "model": "code"}}, {"model": "contenttypes.contenttype", "pk": 209, "fields": {"app_label": "social_django", "model": "partial"}}, {"model": "contenttypes.contenttype", "pk": 210, "fields": {"app_label": "survey", "model": "surveyform"}}, {"model": "contenttypes.contenttype", "pk": 211, "fields": {"app_label": "survey", "model": "surveyanswer"}}, {"model": "contenttypes.contenttype", "pk": 212, "fields": {"app_label": "lms_xblock", "model": "xblockasidesconfig"}}, {"model": "contenttypes.contenttype", "pk": 213, "fields": {"app_label": "problem_builder", "model": "answer"}}, {"model": "contenttypes.contenttype", "pk": 214, "fields": {"app_label": "problem_builder", "model": "share"}}, {"model": "contenttypes.contenttype", "pk": 215, "fields": {"app_label": "submissions", "model": "studentitem"}}, {"model": "contenttypes.contenttype", "pk": 216, "fields": {"app_label": "submissions", "model": "submission"}}, {"model": "contenttypes.contenttype", "pk": 217, "fields": {"app_label": "submissions", "model": "score"}}, {"model": "contenttypes.contenttype", "pk": 218, "fields": {"app_label": "submissions", "model": "scoresummary"}}, {"model": "contenttypes.contenttype", "pk": 219, "fields": {"app_label": "submissions", "model": "scoreannotation"}}, {"model": "contenttypes.contenttype", "pk": 220, "fields": {"app_label": "assessment", "model": "rubric"}}, {"model": "contenttypes.contenttype", "pk": 221, "fields": {"app_label": "assessment", "model": "criterion"}}, {"model": "contenttypes.contenttype", "pk": 222, "fields": {"app_label": "assessment", "model": "criterionoption"}}, {"model": "contenttypes.contenttype", "pk": 223, "fields": {"app_label": "assessment", "model": "assessment"}}, {"model": "contenttypes.contenttype", "pk": 224, "fields": {"app_label": "assessment", "model": "assessmentpart"}}, {"model": "contenttypes.contenttype", "pk": 225, "fields": {"app_label": "assessment", "model": "assessmentfeedbackoption"}}, {"model": "contenttypes.contenttype", "pk": 226, "fields": {"app_label": "assessment", "model": "assessmentfeedback"}}, {"model": "contenttypes.contenttype", "pk": 227, "fields": {"app_label": "assessment", "model": "peerworkflow"}}, {"model": "contenttypes.contenttype", "pk": 228, "fields": {"app_label": "assessment", "model": "peerworkflowitem"}}, {"model": "contenttypes.contenttype", "pk": 229, "fields": {"app_label": "assessment", "model": "trainingexample"}}, {"model": "contenttypes.contenttype", "pk": 230, "fields": {"app_label": "assessment", "model": "studenttrainingworkflow"}}, {"model": "contenttypes.contenttype", "pk": 231, "fields": {"app_label": "assessment", "model": "studenttrainingworkflowitem"}}, {"model": "contenttypes.contenttype", "pk": 232, "fields": {"app_label": "assessment", "model": "staffworkflow"}}, {"model": "contenttypes.contenttype", "pk": 233, "fields": {"app_label": "workflow", "model": "assessmentworkflow"}}, {"model": "contenttypes.contenttype", "pk": 234, "fields": {"app_label": "workflow", "model": "assessmentworkflowstep"}}, {"model": "contenttypes.contenttype", "pk": 235, "fields": {"app_label": "workflow", "model": "assessmentworkflowcancellation"}}, {"model": "contenttypes.contenttype", "pk": 236, "fields": {"app_label": "edxval", "model": "profile"}}, {"model": "contenttypes.contenttype", "pk": 237, "fields": {"app_label": "edxval", "model": "video"}}, {"model": "contenttypes.contenttype", "pk": 238, "fields": {"app_label": "edxval", "model": "coursevideo"}}, {"model": "contenttypes.contenttype", "pk": 239, "fields": {"app_label": "edxval", "model": "encodedvideo"}}, {"model": "contenttypes.contenttype", "pk": 240, "fields": {"app_label": "edxval", "model": "videoimage"}}, {"model": "contenttypes.contenttype", "pk": 241, "fields": {"app_label": "edxval", "model": "videotranscript"}}, {"model": "contenttypes.contenttype", "pk": 242, "fields": {"app_label": "edxval", "model": "transcriptpreference"}}, {"model": "contenttypes.contenttype", "pk": 243, "fields": {"app_label": "edxval", "model": "thirdpartytranscriptcredentialsstate"}}, {"model": "contenttypes.contenttype", "pk": 244, "fields": {"app_label": "course_overviews", "model": "courseoverview"}}, {"model": "contenttypes.contenttype", "pk": 245, "fields": {"app_label": "course_overviews", "model": "courseoverviewtab"}}, {"model": "contenttypes.contenttype", "pk": 246, "fields": {"app_label": "course_overviews", "model": "courseoverviewimageset"}}, {"model": "contenttypes.contenttype", "pk": 247, "fields": {"app_label": "course_overviews", "model": "courseoverviewimageconfig"}}, {"model": "contenttypes.contenttype", "pk": 248, "fields": {"app_label": "course_structures", "model": "coursestructure"}}, {"model": "contenttypes.contenttype", "pk": 249, "fields": {"app_label": "block_structure", "model": "blockstructureconfiguration"}}, {"model": "contenttypes.contenttype", "pk": 250, "fields": {"app_label": "block_structure", "model": "blockstructuremodel"}}, {"model": "contenttypes.contenttype", "pk": 251, "fields": {"app_label": "cors_csrf", "model": "xdomainproxyconfiguration"}}, {"model": "contenttypes.contenttype", "pk": 252, "fields": {"app_label": "commerce", "model": "commerceconfiguration"}}, {"model": "contenttypes.contenttype", "pk": 253, "fields": {"app_label": "credit", "model": "creditprovider"}}, {"model": "contenttypes.contenttype", "pk": 254, "fields": {"app_label": "credit", "model": "creditcourse"}}, {"model": "contenttypes.contenttype", "pk": 255, "fields": {"app_label": "credit", "model": "creditrequirement"}}, {"model": "contenttypes.contenttype", "pk": 256, "fields": {"app_label": "credit", "model": "creditrequirementstatus"}}, {"model": "contenttypes.contenttype", "pk": 257, "fields": {"app_label": "credit", "model": "crediteligibility"}}, {"model": "contenttypes.contenttype", "pk": 258, "fields": {"app_label": "credit", "model": "creditrequest"}}, {"model": "contenttypes.contenttype", "pk": 259, "fields": {"app_label": "credit", "model": "creditconfig"}}, {"model": "contenttypes.contenttype", "pk": 260, "fields": {"app_label": "teams", "model": "courseteam"}}, {"model": "contenttypes.contenttype", "pk": 261, "fields": {"app_label": "teams", "model": "courseteammembership"}}, {"model": "contenttypes.contenttype", "pk": 262, "fields": {"app_label": "xblock_django", "model": "xblockconfiguration"}}, {"model": "contenttypes.contenttype", "pk": 263, "fields": {"app_label": "xblock_django", "model": "xblockstudioconfigurationflag"}}, {"model": "contenttypes.contenttype", "pk": 264, "fields": {"app_label": "xblock_django", "model": "xblockstudioconfiguration"}}, {"model": "contenttypes.contenttype", "pk": 265, "fields": {"app_label": "programs", "model": "programsapiconfig"}}, {"model": "contenttypes.contenttype", "pk": 266, "fields": {"app_label": "catalog", "model": "catalogintegration"}}, {"model": "contenttypes.contenttype", "pk": 267, "fields": {"app_label": "self_paced", "model": "selfpacedconfiguration"}}, {"model": "contenttypes.contenttype", "pk": 268, "fields": {"app_label": "thumbnail", "model": "kvstore"}}, {"model": "contenttypes.contenttype", "pk": 269, "fields": {"app_label": "credentials", "model": "credentialsapiconfig"}}, {"model": "contenttypes.contenttype", "pk": 270, "fields": {"app_label": "milestones", "model": "milestone"}}, {"model": "contenttypes.contenttype", "pk": 271, "fields": {"app_label": "milestones", "model": "milestonerelationshiptype"}}, {"model": "contenttypes.contenttype", "pk": 272, "fields": {"app_label": "milestones", "model": "coursemilestone"}}, {"model": "contenttypes.contenttype", "pk": 273, "fields": {"app_label": "milestones", "model": "coursecontentmilestone"}}, {"model": "contenttypes.contenttype", "pk": 274, "fields": {"app_label": "milestones", "model": "usermilestone"}}, {"model": "contenttypes.contenttype", "pk": 275, "fields": {"app_label": "api_admin", "model": "apiaccessconfig"}}, {"model": "contenttypes.contenttype", "pk": 276, "fields": {"app_label": "api_admin", "model": "catalog"}}, {"model": "contenttypes.contenttype", "pk": 277, "fields": {"app_label": "verified_track_content", "model": "verifiedtrackcohortedcourse"}}, {"model": "contenttypes.contenttype", "pk": 278, "fields": {"app_label": "verified_track_content", "model": "migrateverifiedtrackcohortssetting"}}, {"model": "contenttypes.contenttype", "pk": 279, "fields": {"app_label": "badges", "model": "badgeclass"}}, {"model": "contenttypes.contenttype", "pk": 280, "fields": {"app_label": "badges", "model": "badgeassertion"}}, {"model": "contenttypes.contenttype", "pk": 281, "fields": {"app_label": "badges", "model": "coursecompleteimageconfiguration"}}, {"model": "contenttypes.contenttype", "pk": 282, "fields": {"app_label": "badges", "model": "courseeventbadgesconfiguration"}}, {"model": "contenttypes.contenttype", "pk": 283, "fields": {"app_label": "email_marketing", "model": "emailmarketingconfiguration"}}, {"model": "contenttypes.contenttype", "pk": 284, "fields": {"app_label": "celery_utils", "model": "failedtask"}}, {"model": "contenttypes.contenttype", "pk": 285, "fields": {"app_label": "celery_utils", "model": "chorddata"}}, {"model": "contenttypes.contenttype", "pk": 286, "fields": {"app_label": "crawlers", "model": "crawlersconfig"}}, {"model": "contenttypes.contenttype", "pk": 287, "fields": {"app_label": "waffle_utils", "model": "waffleflagcourseoverridemodel"}}, {"model": "contenttypes.contenttype", "pk": 288, "fields": {"app_label": "schedules", "model": "schedule"}}, {"model": "contenttypes.contenttype", "pk": 289, "fields": {"app_label": "schedules", "model": "scheduleconfig"}}, {"model": "contenttypes.contenttype", "pk": 290, "fields": {"app_label": "schedules", "model": "scheduleexperience"}}, {"model": "contenttypes.contenttype", "pk": 291, "fields": {"app_label": "course_goals", "model": "coursegoal"}}, {"model": "contenttypes.contenttype", "pk": 292, "fields": {"app_label": "completion", "model": "blockcompletion"}}, {"model": "contenttypes.contenttype", "pk": 293, "fields": {"app_label": "experiments", "model": "experimentdata"}}, {"model": "contenttypes.contenttype", "pk": 294, "fields": {"app_label": "experiments", "model": "experimentkeyvalue"}}, {"model": "contenttypes.contenttype", "pk": 295, "fields": {"app_label": "edx_proctoring", "model": "proctoredexam"}}, {"model": "contenttypes.contenttype", "pk": 296, "fields": {"app_label": "edx_proctoring", "model": "proctoredexamreviewpolicy"}}, {"model": "contenttypes.contenttype", "pk": 297, "fields": {"app_label": "edx_proctoring", "model": "proctoredexamreviewpolicyhistory"}}, {"model": "contenttypes.contenttype", "pk": 298, "fields": {"app_label": "edx_proctoring", "model": "proctoredexamstudentattempt"}}, {"model": "contenttypes.contenttype", "pk": 299, "fields": {"app_label": "edx_proctoring", "model": "proctoredexamstudentattempthistory"}}, {"model": "contenttypes.contenttype", "pk": 300, "fields": {"app_label": "edx_proctoring", "model": "proctoredexamstudentallowance"}}, {"model": "contenttypes.contenttype", "pk": 301, "fields": {"app_label": "edx_proctoring", "model": "proctoredexamstudentallowancehistory"}}, {"model": "contenttypes.contenttype", "pk": 302, "fields": {"app_label": "edx_proctoring", "model": "proctoredexamsoftwaresecurereview"}}, {"model": "contenttypes.contenttype", "pk": 303, "fields": {"app_label": "edx_proctoring", "model": "proctoredexamsoftwaresecurereviewhistory"}}, {"model": "contenttypes.contenttype", "pk": 304, "fields": {"app_label": "edx_proctoring", "model": "proctoredexamsoftwaresecurecomment"}}, {"model": "contenttypes.contenttype", "pk": 305, "fields": {"app_label": "organizations", "model": "organization"}}, {"model": "contenttypes.contenttype", "pk": 306, "fields": {"app_label": "organizations", "model": "organizationcourse"}}, {"model": "contenttypes.contenttype", "pk": 307, "fields": {"app_label": "enterprise", "model": "historicalenterprisecustomer"}}, {"model": "contenttypes.contenttype", "pk": 308, "fields": {"app_label": "enterprise", "model": "enterprisecustomer"}}, {"model": "contenttypes.contenttype", "pk": 309, "fields": {"app_label": "enterprise", "model": "enterprisecustomeruser"}}, {"model": "contenttypes.contenttype", "pk": 310, "fields": {"app_label": "enterprise", "model": "pendingenterprisecustomeruser"}}, {"model": "contenttypes.contenttype", "pk": 311, "fields": {"app_label": "enterprise", "model": "pendingenrollment"}}, {"model": "contenttypes.contenttype", "pk": 312, "fields": {"app_label": "enterprise", "model": "enterprisecustomerbrandingconfiguration"}}, {"model": "contenttypes.contenttype", "pk": 313, "fields": {"app_label": "enterprise", "model": "enterprisecustomeridentityprovider"}}, {"model": "contenttypes.contenttype", "pk": 314, "fields": {"app_label": "enterprise", "model": "historicalenterprisecustomerentitlement"}}, {"model": "contenttypes.contenttype", "pk": 315, "fields": {"app_label": "enterprise", "model": "enterprisecustomerentitlement"}}, {"model": "contenttypes.contenttype", "pk": 316, "fields": {"app_label": "enterprise", "model": "historicalenterprisecourseenrollment"}}, {"model": "contenttypes.contenttype", "pk": 317, "fields": {"app_label": "enterprise", "model": "enterprisecourseenrollment"}}, {"model": "contenttypes.contenttype", "pk": 318, "fields": {"app_label": "enterprise", "model": "historicalenterprisecustomercatalog"}}, {"model": "contenttypes.contenttype", "pk": 319, "fields": {"app_label": "enterprise", "model": "enterprisecustomercatalog"}}, {"model": "contenttypes.contenttype", "pk": 320, "fields": {"app_label": "enterprise", "model": "historicalenrollmentnotificationemailtemplate"}}, {"model": "contenttypes.contenttype", "pk": 321, "fields": {"app_label": "enterprise", "model": "enrollmentnotificationemailtemplate"}}, {"model": "contenttypes.contenttype", "pk": 322, "fields": {"app_label": "enterprise", "model": "enterprisecustomerreportingconfiguration"}}, {"model": "contenttypes.contenttype", "pk": 323, "fields": {"app_label": "consent", "model": "historicaldatasharingconsent"}}, {"model": "contenttypes.contenttype", "pk": 324, "fields": {"app_label": "consent", "model": "datasharingconsent"}}, {"model": "contenttypes.contenttype", "pk": 325, "fields": {"app_label": "integrated_channel", "model": "learnerdatatransmissionaudit"}}, {"model": "contenttypes.contenttype", "pk": 326, "fields": {"app_label": "integrated_channel", "model": "catalogtransmissionaudit"}}, {"model": "contenttypes.contenttype", "pk": 327, "fields": {"app_label": "degreed", "model": "degreedglobalconfiguration"}}, {"model": "contenttypes.contenttype", "pk": 328, "fields": {"app_label": "degreed", "model": "historicaldegreedenterprisecustomerconfiguration"}}, {"model": "contenttypes.contenttype", "pk": 329, "fields": {"app_label": "degreed", "model": "degreedenterprisecustomerconfiguration"}}, {"model": "contenttypes.contenttype", "pk": 330, "fields": {"app_label": "degreed", "model": "degreedlearnerdatatransmissionaudit"}}, {"model": "contenttypes.contenttype", "pk": 331, "fields": {"app_label": "sap_success_factors", "model": "sapsuccessfactorsglobalconfiguration"}}, {"model": "contenttypes.contenttype", "pk": 332, "fields": {"app_label": "sap_success_factors", "model": "historicalsapsuccessfactorsenterprisecustomerconfiguration"}}, {"model": "contenttypes.contenttype", "pk": 333, "fields": {"app_label": "sap_success_factors", "model": "sapsuccessfactorsenterprisecustomerconfiguration"}}, {"model": "contenttypes.contenttype", "pk": 334, "fields": {"app_label": "sap_success_factors", "model": "sapsuccessfactorslearnerdatatransmissionaudit"}}, {"model": "contenttypes.contenttype", "pk": 335, "fields": {"app_label": "ccx", "model": "customcourseforedx"}}, {"model": "contenttypes.contenttype", "pk": 336, "fields": {"app_label": "ccx", "model": "ccxfieldoverride"}}, {"model": "contenttypes.contenttype", "pk": 337, "fields": {"app_label": "ccxcon", "model": "ccxcon"}}, {"model": "contenttypes.contenttype", "pk": 338, "fields": {"app_label": "coursewarehistoryextended", "model": "studentmodulehistoryextended"}}, {"model": "contenttypes.contenttype", "pk": 339, "fields": {"app_label": "contentstore", "model": "videouploadconfig"}}, {"model": "contenttypes.contenttype", "pk": 340, "fields": {"app_label": "contentstore", "model": "pushnotificationconfig"}}, {"model": "contenttypes.contenttype", "pk": 341, "fields": {"app_label": "contentstore", "model": "newassetspageflag"}}, {"model": "contenttypes.contenttype", "pk": 342, "fields": {"app_label": "contentstore", "model": "coursenewassetspageflag"}}, {"model": "contenttypes.contenttype", "pk": 343, "fields": {"app_label": "course_creators", "model": "coursecreator"}}, {"model": "contenttypes.contenttype", "pk": 344, "fields": {"app_label": "xblock_config", "model": "studioconfig"}}, {"model": "contenttypes.contenttype", "pk": 345, "fields": {"app_label": "xblock_config", "model": "courseeditltifieldsenabledflag"}}, {"model": "contenttypes.contenttype", "pk": 346, "fields": {"app_label": "tagging", "model": "tagcategories"}}, {"model": "contenttypes.contenttype", "pk": 347, "fields": {"app_label": "tagging", "model": "tagavailablevalues"}}, {"model": "contenttypes.contenttype", "pk": 348, "fields": {"app_label": "user_tasks", "model": "usertaskstatus"}}, {"model": "contenttypes.contenttype", "pk": 349, "fields": {"app_label": "user_tasks", "model": "usertaskartifact"}}, {"model": "contenttypes.contenttype", "pk": 350, "fields": {"app_label": "entitlements", "model": "courseentitlementpolicy"}}, {"model": "contenttypes.contenttype", "pk": 351, "fields": {"app_label": "entitlements", "model": "courseentitlementsupportdetail"}}, {"model": "contenttypes.contenttype", "pk": 352, "fields": {"app_label": "integrated_channel", "model": "contentmetadataitemtransmission"}}, {"model": "contenttypes.contenttype", "pk": 353, "fields": {"app_label": "video_config", "model": "transcriptmigrationsetting"}}, {"model": "contenttypes.contenttype", "pk": 354, "fields": {"app_label": "verify_student", "model": "ssoverification"}}, {"model": "contenttypes.contenttype", "pk": 355, "fields": {"app_label": "user_api", "model": "userretirementstatus"}}, {"model": "contenttypes.contenttype", "pk": 356, "fields": {"app_label": "user_api", "model": "retirementstate"}}, {"model": "contenttypes.contenttype", "pk": 357, "fields": {"app_label": "consent", "model": "datasharingconsenttextoverrides"}}, {"model": "contenttypes.contenttype", "pk": 358, "fields": {"app_label": "user_api", "model": "userretirementrequest"}}, {"model": "contenttypes.contenttype", "pk": 359, "fields": {"app_label": "django_comment_common", "model": "discussionsidmapping"}}, {"model": "contenttypes.contenttype", "pk": 360, "fields": {"app_label": "oauth_dispatch", "model": "scopedapplication"}}, {"model": "contenttypes.contenttype", "pk": 361, "fields": {"app_label": "oauth_dispatch", "model": "scopedapplicationorganization"}}, {"model": "contenttypes.contenttype", "pk": 362, "fields": {"app_label": "user_api", "model": "userretirementpartnerreportingstatus"}}, {"model": "contenttypes.contenttype", "pk": 363, "fields": {"app_label": "verify_student", "model": "manualverification"}}, {"model": "contenttypes.contenttype", "pk": 364, "fields": {"app_label": "oauth_dispatch", "model": "applicationorganization"}}, {"model": "contenttypes.contenttype", "pk": 365, "fields": {"app_label": "oauth_dispatch", "model": "applicationaccess"}}, {"model": "contenttypes.contenttype", "pk": 366, "fields": {"app_label": "video_config", "model": "migrationenqueuedcourse"}}, {"model": "contenttypes.contenttype", "pk": 367, "fields": {"app_label": "xapi", "model": "xapilrsconfiguration"}}, {"model": "contenttypes.contenttype", "pk": 368, "fields": {"app_label": "credentials", "model": "notifycredentialsconfig"}}, {"model": "contenttypes.contenttype", "pk": 369, "fields": {"app_label": "video_config", "model": "updatedcoursevideos"}}, {"model": "contenttypes.contenttype", "pk": 370, "fields": {"app_label": "video_config", "model": "videothumbnailsetting"}}, {"model": "contenttypes.contenttype", "pk": 371, "fields": {"app_label": "course_duration_limits", "model": "coursedurationlimitconfig"}}, {"model": "contenttypes.contenttype", "pk": 372, "fields": {"app_label": "content_type_gating", "model": "contenttypegatingconfig"}}, {"model": "contenttypes.contenttype", "pk": 373, "fields": {"app_label": "grades", "model": "persistentsubsectiongradeoverridehistory"}}, {"model": "contenttypes.contenttype", "pk": 374, "fields": {"app_label": "student", "model": "accountrecovery"}}, {"model": "contenttypes.contenttype", "pk": 375, "fields": {"app_label": "enterprise", "model": "enterprisecustomertype"}}, {"model": "contenttypes.contenttype", "pk": 376, "fields": {"app_label": "student", "model": "pendingsecondaryemailchange"}}, {"model": "contenttypes.contenttype", "pk": 377, "fields": {"app_label": "lti_provider", "model": "lticonsumer"}}, {"model": "contenttypes.contenttype", "pk": 378, "fields": {"app_label": "lti_provider", "model": "gradedassignment"}}, {"model": "contenttypes.contenttype", "pk": 379, "fields": {"app_label": "lti_provider", "model": "ltiuser"}}, {"model": "contenttypes.contenttype", "pk": 380, "fields": {"app_label": "lti_provider", "model": "outcomeservice"}}, {"model": "contenttypes.contenttype", "pk": 381, "fields": {"app_label": "enterprise", "model": "systemwideenterpriserole"}}, {"model": "contenttypes.contenttype", "pk": 382, "fields": {"app_label": "enterprise", "model": "systemwideenterpriseuserroleassignment"}}, {"model": "contenttypes.contenttype", "pk": 383, "fields": {"app_label": "announcements", "model": "announcement"}}, {"model": "contenttypes.contenttype", "pk": 753, "fields": {"app_label": "enterprise", "model": "enterprisefeatureuserroleassignment"}}, {"model": "contenttypes.contenttype", "pk": 754, "fields": {"app_label": "enterprise", "model": "enterprisefeaturerole"}}, {"model": "contenttypes.contenttype", "pk": 755, "fields": {"app_label": "program_enrollments", "model": "programenrollment"}}, {"model": "contenttypes.contenttype", "pk": 756, "fields": {"app_label": "program_enrollments", "model": "historicalprogramenrollment"}}, {"model": "contenttypes.contenttype", "pk": 757, "fields": {"app_label": "program_enrollments", "model": "programcourseenrollment"}}, {"model": "contenttypes.contenttype", "pk": 758, "fields": {"app_label": "program_enrollments", "model": "historicalprogramcourseenrollment"}}, {"model": "contenttypes.contenttype", "pk": 759, "fields": {"app_label": "edx_when", "model": "contentdate"}}, {"model": "contenttypes.contenttype", "pk": 760, "fields": {"app_label": "edx_when", "model": "userdate"}}, {"model": "contenttypes.contenttype", "pk": 761, "fields": {"app_label": "edx_when", "model": "datepolicy"}}, {"model": "contenttypes.contenttype", "pk": 762, "fields": {"app_label": "student", "model": "historicalcourseenrollment"}}, {"model": "contenttypes.contenttype", "pk": 763, "fields": {"app_label": "cornerstone", "model": "cornerstoneglobalconfiguration"}}, {"model": "contenttypes.contenttype", "pk": 764, "fields": {"app_label": "cornerstone", "model": "historicalcornerstoneenterprisecustomerconfiguration"}}, {"model": "contenttypes.contenttype", "pk": 765, "fields": {"app_label": "cornerstone", "model": "cornerstonelearnerdatatransmissionaudit"}}, {"model": "contenttypes.contenttype", "pk": 766, "fields": {"app_label": "cornerstone", "model": "cornerstoneenterprisecustomerconfiguration"}}, {"model": "contenttypes.contenttype", "pk": 767, "fields": {"app_label": "discounts", "model": "discountrestrictionconfig"}}, {"model": "contenttypes.contenttype", "pk": 768, "fields": {"app_label": "entitlements", "model": "historicalcourseentitlement"}}, {"model": "contenttypes.contenttype", "pk": 769, "fields": {"app_label": "organizations", "model": "historicalorganization"}}, {"model": "contenttypes.contenttype", "pk": 770, "fields": {"app_label": "grades", "model": "historicalpersistentsubsectiongradeoverride"}}, {"model": "contenttypes.contenttype", "pk": 771, "fields": {"app_label": "super_csv", "model": "csvoperation"}}, {"model": "contenttypes.contenttype", "pk": 772, "fields": {"app_label": "bulk_grades", "model": "scoreoverrider"}}, {"model": "sites.site", "pk": 1, "fields": {"domain": "example.com", "name": "example.com"}}, {"model": "bulk_email.courseemailtemplate", "pk": 1, "fields": {"html_template": "<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Transitional//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd'><html xmlns:fb='http://www.facebook.com/2008/fbml' xmlns:og='http://opengraph.org/schema/'> <head><meta property='og:title' content='Update from {course_title}'/><meta property='fb:page_id' content='43929265776' /> <meta http-equiv='Content-Type' content='text/html; charset=UTF-8'> <title>Update from {course_title}</title> </head> <body leftmargin='0' marginwidth='0' topmargin='0' marginheight='0' offset='0' style='margin: 0;padding: 0;background-color: #ffffff;'> <center> <table align='center' border='0' cellpadding='0' cellspacing='0' height='100%' width='100%' id='bodyTable' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;margin: 0;padding: 0;background-color: #ffffff;height: 100% !important;width: 100% !important;'> <tr> <td align='center' valign='top' id='bodyCell' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;margin: 0;padding: 0;border-top: 0;height: 100% !important;width: 100% !important;'> <!-- BEGIN TEMPLATE // --> <table border='0' cellpadding='0' cellspacing='0' width='100%' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tr> <td align='center' valign='top' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <!-- BEGIN PREHEADER // --> <table border='0' cellpadding='0' cellspacing='0' width='100%' id='templatePreheader' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;background-color: #fcfcfc;border-top: 0;border-bottom: 0;'> <tr> <td align='center' valign='top' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <table border='0' cellpadding='0' cellspacing='0' width='600' class='templateContainer' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tr> <td valign='top' class='preheaderContainer' style='padding-top: 9px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'><table border='0' cellpadding='0' cellspacing='0' width='100%' class='mcnTextBlock' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody class='mcnTextBlockOuter'> <tr> <td valign='top' class='mcnTextBlockInner' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <table align='left' border='0' cellpadding='0' cellspacing='0' width='366' class='mcnTextContentContainer' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody><tr> <td valign='top' class='mcnTextContent' style='padding-top: 9px;padding-left: 18px;padding-bottom: 9px;padding-right: 0;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;color: #606060;font-family: Helvetica;font-size: 11px;line-height: 125%;text-align: left;'> <br> </td> </tr> </tbody></table> </td> </tr> </tbody></table></td> </tr> </table> </td> </tr> </table> <!-- // END PREHEADER --> </td> </tr> <tr> <td align='center' valign='top' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <!-- BEGIN HEADER // --> <table border='0' cellpadding='0' cellspacing='0' width='100%' id='templateHeader' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;background-color: #fcfcfc;border-top: 0;border-bottom: 0;'> <tr> <td align='center' valign='top' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <table border='0' cellpadding='0' cellspacing='0' width='600' class='templateContainer' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tr> <td valign='top' class='headerContainer' style='padding-top: 10px;padding-right: 18px;padding-bottom: 10px;padding-left: 18px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'><table border='0' cellpadding='0' cellspacing='0' width='100%' class='mcnImageBlock' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody class='mcnImageBlockOuter'> <tr> <td valign='top' style='padding: 9px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;' class='mcnImageBlockInner'> <table align='left' width='100%' border='0' cellpadding='0' cellspacing='0' class='mcnImageContentContainer' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody><tr> <td class='mcnImageContent' valign='top' style='padding-right: 9px;padding-left: 9px;padding-top: 0;padding-bottom: 0;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <a href='http://edx.org' title='' class='' target='_self' style='word-wrap: break-word !important;'> <img align='left' alt='edX' src='http://courses.edx.org/static/images/bulk_email/edXHeaderImage.jpg' width='564.0000152587891' style='max-width: 600px;padding-bottom: 0;display: inline !important;vertical-align: bottom;border: 0;line-height: 100%;outline: none;text-decoration: none;height: auto !important;' class='mcnImage'> </a> </td> </tr> </tbody></table> </td> </tr> </tbody></table><table border='0' cellpadding='0' cellspacing='0' width='100%' class='mcnTextBlock' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody class='mcnTextBlockOuter'> <tr> <td valign='top' class='mcnTextBlockInner' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <table align='left' border='0' cellpadding='0' cellspacing='0' width='599' class='mcnTextContentContainer' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody><tr> <td valign='top' class='mcnTextContent' style='padding-top: 9px;padding-right: 18px;padding-bottom: 9px;padding-left: 18px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;color: #606060;font-family: Helvetica;font-size: 15px;line-height: 150%;text-align: left;'> <div style='text-align: right;'><span style='font-size:11px;'><span style='color:#00a0e3;'>Connect with edX:</span></span> <a href='http://facebook.com/edxonline' target='_blank' style='color: #6DC6DD;font-weight: normal;text-decoration: underline;word-wrap: break-word !important;'><img align='none' height='16' src='http://courses.edx.org/static/images/bulk_email/FacebookIcon.png' style='width: 16px;height: 16px;border: 0;line-height: 100%;outline: none;text-decoration: none;' width='16'></a> <a href='http://twitter.com/edxonline' target='_blank' style='color: #6DC6DD;font-weight: normal;text-decoration: underline;word-wrap: break-word !important;'><img align='none' height='16' src='http://courses.edx.org/static/images/bulk_email/TwitterIcon.png' style='width: 16px;height: 16px;border: 0;line-height: 100%;outline: none;text-decoration: none;' width='16'></a> <a href='https://plus.google.com/108235383044095082735' target='_blank' style='color: #6DC6DD;font-weight: normal;text-decoration: underline;word-wrap: break-word !important;'><img align='none' height='16' src='http://courses.edx.org/static/images/bulk_email/GooglePlusIcon.png' style='width: 16px;height: 16px;border: 0;line-height: 100%;outline: none;text-decoration: none;' width='16'></a> <a href='http://www.meetup.com/edX-Communities/' target='_blank' style='color: #6DC6DD;font-weight: normal;text-decoration: underline;word-wrap: break-word !important;'><img align='none' height='16' src='http://courses.edx.org/static/images/bulk_email/MeetupIcon.png' style='width: 16px;height: 16px;border: 0;line-height: 100%;outline: none;text-decoration: none;' width='16'></a></div> </td> </tr> </tbody></table> </td> </tr> </tbody></table></td> </tr> </table> </td> </tr> </table> <!-- // END HEADER --> </td> </tr> <tr> <td align='center' valign='top' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <!-- BEGIN BODY // --> <table border='0' cellpadding='0' cellspacing='0' width='100%' id='templateBody' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;background-color: #fcfcfc;border-top: 0;border-bottom: 0;'> <tr> <td align='center' valign='top' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <table border='0' cellpadding='0' cellspacing='0' width='600' class='templateContainer' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tr> <td valign='top' class='bodyContainer' style='padding-top: 10px;padding-right: 18px;padding-bottom: 10px;padding-left: 18px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'><table border='0' cellpadding='0' cellspacing='0' width='100%' class='mcnCaptionBlock' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody class='mcnCaptionBlockOuter'> <tr> <td class='mcnCaptionBlockInner' valign='top' style='padding: 9px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <table border='0' cellpadding='0' cellspacing='0' class='mcnCaptionLeftContentOuter' width='100%' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody><tr> <td valign='top' class='mcnCaptionLeftContentInner' style='padding: 0 9px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <table align='right' border='0' cellpadding='0' cellspacing='0' class='mcnCaptionLeftImageContentContainer' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody><tr> <td class='mcnCaptionLeftImageContent' valign='top' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <img alt='' src='{course_image_url}' width='176' style='max-width: 180px;border: 0;line-height: 100%;outline: none;text-decoration: none;vertical-align: bottom;height: auto !important;' class='mcnImage'> </td> </tr> </tbody></table> <table class='mcnCaptionLeftTextContentContainer' align='left' border='0' cellpadding='0' cellspacing='0' width='352' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody><tr> <td valign='top' class='mcnTextContent' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;color: #606060;font-family: Helvetica;font-size: 14px;line-height: 150%;text-align: left;'> <h3 class='null' style='display: block;font-family: Helvetica;font-size: 18px;font-style: normal;font-weight: bold;line-height: 125%;letter-spacing: -.5px;margin: 0;text-align: left;color: #606060 !important;'><strong style='font-size: 22px;'>{course_title}</strong><br></h3><br> </td> </tr> </tbody></table> </td> </tr></tbody></table> </td> </tr> </tbody></table><table border='0' cellpadding='0' cellspacing='0' width='100%' class='mcnTextBlock' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody class='mcnTextBlockOuter'> <tr> <td valign='top' class='mcnTextBlockInner' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <table align='left' border='0' cellpadding='0' cellspacing='0' width='600' class='mcnTextContentContainer' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody><tr> <td valign='top' class='mcnTextContent' style='padding-top: 9px;padding-right: 18px;padding-bottom: 9px;padding-left: 18px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;color: #606060;font-family: Helvetica;font-size: 14px;line-height: 150%;text-align: left;'> {{message_body}} </td> </tr> </tbody></table> </td> </tr> </tbody></table><table border='0' cellpadding='0' cellspacing='0' width='100%' class='mcnDividerBlock' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody class='mcnDividerBlockOuter'> <tr> <td class='mcnDividerBlockInner' style='padding: 18px 18px 3px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <table class='mcnDividerContent' border='0' cellpadding='0' cellspacing='0' width='100%' style='border-top-width: 1px;border-top-style: solid;border-top-color: #666666;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody><tr> <td style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <span></span> </td> </tr> </tbody></table> </td> </tr> </tbody></table><table border='0' cellpadding='0' cellspacing='0' width='100%' class='mcnTextBlock' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody class='mcnTextBlockOuter'> <tr> <td valign='top' class='mcnTextBlockInner' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <table align='left' border='0' cellpadding='0' cellspacing='0' width='600' class='mcnTextContentContainer' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody><tr> <td valign='top' class='mcnTextContent' style='padding-top: 9px;padding-right: 18px;padding-bottom: 9px;padding-left: 18px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;color: #606060;font-family: Helvetica;font-size: 14px;line-height: 150%;text-align: left;'> <div style='text-align: right;'><a href='http://facebook.com/edxonline' target='_blank' style='color: #2f73bc;font-weight: normal;text-decoration: underline;word-wrap: break-word !important;'><img align='none' height='16' src='http://courses.edx.org/static/images/bulk_email/FacebookIcon.png' style='width: 16px;height: 16px;border: 0;line-height: 100%;outline: none;text-decoration: none;' width='16'></a> <a href='http://twitter.com/edxonline' target='_blank' style='color: #2f73bc;font-weight: normal;text-decoration: underline;word-wrap: break-word !important;'><img align='none' height='16' src='http://courses.edx.org/static/images/bulk_email/TwitterIcon.png' style='width: 16px;height: 16px;border: 0;line-height: 100%;outline: none;text-decoration: none;' width='16'></a> <a href='https://plus.google.com/108235383044095082735' target='_blank' style='color: #2f73bc;font-weight: normal;text-decoration: underline;word-wrap: break-word !important;'><img align='none' height='16' src='http://courses.edx.org/static/images/bulk_email/GooglePlusIcon.png' style='width: 16px;height: 16px;border: 0;line-height: 100%;outline: none;text-decoration: none;' width='16'></a> <a href='http://www.meetup.com/edX-Communities/' target='_blank' style='color: #2f73bc;font-weight: normal;text-decoration: underline;word-wrap: break-word !important;'><img align='none' height='16' src='http://courses.edx.org/static/images/bulk_email/MeetupIcon.png' style='width: 16px;height: 16px;border: 0;line-height: 100%;outline: none;text-decoration: none;' width='16'></a></div> </td> </tr> </tbody></table> </td> </tr> </tbody></table></td> </tr> </table> </td> </tr> </table> <!-- // END BODY --> </td> </tr> <tr> <td align='center' valign='top' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <!-- BEGIN FOOTER // --> <table border='0' cellpadding='0' cellspacing='0' width='100%' id='templateFooter' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;background-color: #9FCFE8;border-top: 0;border-bottom: 0;'> <tr> <td align='center' valign='top' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <table border='0' cellpadding='0' cellspacing='0' width='600' class='templateContainer' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tr> <td valign='top' class='footerContainer' style='padding-top: 10px;padding-right: 18px;padding-bottom: 10px;padding-left: 18px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'><table border='0' cellpadding='0' cellspacing='0' width='100%' class='mcnTextBlock' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody class='mcnTextBlockOuter'> <tr> <td valign='top' class='mcnTextBlockInner' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <table align='left' border='0' cellpadding='0' cellspacing='0' width='600' class='mcnTextContentContainer' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody><tr> <td valign='top' class='mcnTextContent' style='padding-top: 9px;padding-right: 18px;padding-bottom: 9px;padding-left: 18px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;color: #f2f2f2;font-family: Helvetica;font-size: 11px;line-height: 125%;text-align: left;'> <em>Copyright \u00a9 2013 edX, All rights reserved.</em><br><br><br> <b>Our mailing address is:</b><br> edX<br> 11 Cambridge Center, Suite 101<br> Cambridge, MA, USA 02142<br><br><br>This email was automatically sent from {platform_name}. <br>You are receiving this email at address {email} because you are enrolled in <a href='{course_url}'>{course_title}</a>.<br>To stop receiving email like this, update your course email settings <a href='{email_settings_url}'>here</a>. <br> </td> </tr> </tbody></table> </td> </tr> </tbody></table></td> </tr> </table> </td> </tr> </table> <!-- // END FOOTER --> </td> </tr> </table> <!-- // END TEMPLATE --> </td> </tr> </table> </center> </body> </body> </html>", "plain_template": "{course_title}\n\n{{message_body}}\r\n----\r\nCopyright 2013 edX, All rights reserved.\r\n----\r\nConnect with edX:\r\nFacebook (http://facebook.com/edxonline)\r\nTwitter (http://twitter.com/edxonline)\r\nGoogle+ (https://plus.google.com/108235383044095082735)\r\nMeetup (http://www.meetup.com/edX-Communities/)\r\n----\r\nThis email was automatically sent from {platform_name}.\r\nYou are receiving this email at address {email} because you are enrolled in {course_title}\r\n(URL: {course_url} ).\r\nTo stop receiving email like this, update your course email settings at {email_settings_url}.\r\n", "name": null}}, {"model": "bulk_email.courseemailtemplate", "pk": 2, "fields": {"html_template": "<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Transitional//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd'><html xmlns:fb='http://www.facebook.com/2008/fbml' xmlns:og='http://opengraph.org/schema/'> <head><meta property='og:title' content='Update from {course_title}'/><meta property='fb:page_id' content='43929265776' /> <meta http-equiv='Content-Type' content='text/html; charset=UTF-8'> THIS IS A BRANDED HTML TEMPLATE <title>Update from {course_title}</title> </head> <body leftmargin='0' marginwidth='0' topmargin='0' marginheight='0' offset='0' style='margin: 0;padding: 0;background-color: #ffffff;'> <center> <table align='center' border='0' cellpadding='0' cellspacing='0' height='100%' width='100%' id='bodyTable' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;margin: 0;padding: 0;background-color: #ffffff;height: 100% !important;width: 100% !important;'> <tr> <td align='center' valign='top' id='bodyCell' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;margin: 0;padding: 0;border-top: 0;height: 100% !important;width: 100% !important;'> <!-- BEGIN TEMPLATE // --> <table border='0' cellpadding='0' cellspacing='0' width='100%' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tr> <td align='center' valign='top' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <!-- BEGIN PREHEADER // --> <table border='0' cellpadding='0' cellspacing='0' width='100%' id='templatePreheader' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;background-color: #fcfcfc;border-top: 0;border-bottom: 0;'> <tr> <td align='center' valign='top' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <table border='0' cellpadding='0' cellspacing='0' width='600' class='templateContainer' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tr> <td valign='top' class='preheaderContainer' style='padding-top: 9px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'><table border='0' cellpadding='0' cellspacing='0' width='100%' class='mcnTextBlock' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody class='mcnTextBlockOuter'> <tr> <td valign='top' class='mcnTextBlockInner' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <table align='left' border='0' cellpadding='0' cellspacing='0' width='366' class='mcnTextContentContainer' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody><tr> <td valign='top' class='mcnTextContent' style='padding-top: 9px;padding-left: 18px;padding-bottom: 9px;padding-right: 0;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;color: #606060;font-family: Helvetica;font-size: 11px;line-height: 125%;text-align: left;'> <br> </td> </tr> </tbody></table> </td> </tr> </tbody></table></td> </tr> </table> </td> </tr> </table> <!-- // END PREHEADER --> </td> </tr> <tr> <td align='center' valign='top' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <!-- BEGIN HEADER // --> <table border='0' cellpadding='0' cellspacing='0' width='100%' id='templateHeader' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;background-color: #fcfcfc;border-top: 0;border-bottom: 0;'> <tr> <td align='center' valign='top' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <table border='0' cellpadding='0' cellspacing='0' width='600' class='templateContainer' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tr> <td valign='top' class='headerContainer' style='padding-top: 10px;padding-right: 18px;padding-bottom: 10px;padding-left: 18px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'><table border='0' cellpadding='0' cellspacing='0' width='100%' class='mcnImageBlock' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody class='mcnImageBlockOuter'> <tr> <td valign='top' style='padding: 9px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;' class='mcnImageBlockInner'> <table align='left' width='100%' border='0' cellpadding='0' cellspacing='0' class='mcnImageContentContainer' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody><tr> <td class='mcnImageContent' valign='top' style='padding-right: 9px;padding-left: 9px;padding-top: 0;padding-bottom: 0;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <a href='http://edx.org' title='' class='' target='_self' style='word-wrap: break-word !important;'> <img align='left' alt='edX' src='http://courses.edx.org/static/images/bulk_email/edXHeaderImage.jpg' width='564.0000152587891' style='max-width: 600px;padding-bottom: 0;display: inline !important;vertical-align: bottom;border: 0;line-height: 100%;outline: none;text-decoration: none;height: auto !important;' class='mcnImage'> </a> </td> </tr> </tbody></table> </td> </tr> </tbody></table><table border='0' cellpadding='0' cellspacing='0' width='100%' class='mcnTextBlock' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody class='mcnTextBlockOuter'> <tr> <td valign='top' class='mcnTextBlockInner' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <table align='left' border='0' cellpadding='0' cellspacing='0' width='599' class='mcnTextContentContainer' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody><tr> <td valign='top' class='mcnTextContent' style='padding-top: 9px;padding-right: 18px;padding-bottom: 9px;padding-left: 18px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;color: #606060;font-family: Helvetica;font-size: 15px;line-height: 150%;text-align: left;'> <div style='text-align: right;'><span style='font-size:11px;'><span style='color:#00a0e3;'>Connect with edX:</span></span> <a href='http://facebook.com/edxonline' target='_blank' style='color: #6DC6DD;font-weight: normal;text-decoration: underline;word-wrap: break-word !important;'><img align='none' height='16' src='http://courses.edx.org/static/images/bulk_email/FacebookIcon.png' style='width: 16px;height: 16px;border: 0;line-height: 100%;outline: none;text-decoration: none;' width='16'></a> <a href='http://twitter.com/edxonline' target='_blank' style='color: #6DC6DD;font-weight: normal;text-decoration: underline;word-wrap: break-word !important;'><img align='none' height='16' src='http://courses.edx.org/static/images/bulk_email/TwitterIcon.png' style='width: 16px;height: 16px;border: 0;line-height: 100%;outline: none;text-decoration: none;' width='16'></a> <a href='https://plus.google.com/108235383044095082735' target='_blank' style='color: #6DC6DD;font-weight: normal;text-decoration: underline;word-wrap: break-word !important;'><img align='none' height='16' src='http://courses.edx.org/static/images/bulk_email/GooglePlusIcon.png' style='width: 16px;height: 16px;border: 0;line-height: 100%;outline: none;text-decoration: none;' width='16'></a> <a href='http://www.meetup.com/edX-Communities/' target='_blank' style='color: #6DC6DD;font-weight: normal;text-decoration: underline;word-wrap: break-word !important;'><img align='none' height='16' src='http://courses.edx.org/static/images/bulk_email/MeetupIcon.png' style='width: 16px;height: 16px;border: 0;line-height: 100%;outline: none;text-decoration: none;' width='16'></a></div> </td> </tr> </tbody></table> </td> </tr> </tbody></table></td> </tr> </table> </td> </tr> </table> <!-- // END HEADER --> </td> </tr> <tr> <td align='center' valign='top' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <!-- BEGIN BODY // --> <table border='0' cellpadding='0' cellspacing='0' width='100%' id='templateBody' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;background-color: #fcfcfc;border-top: 0;border-bottom: 0;'> <tr> <td align='center' valign='top' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <table border='0' cellpadding='0' cellspacing='0' width='600' class='templateContainer' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tr> <td valign='top' class='bodyContainer' style='padding-top: 10px;padding-right: 18px;padding-bottom: 10px;padding-left: 18px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'><table border='0' cellpadding='0' cellspacing='0' width='100%' class='mcnCaptionBlock' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody class='mcnCaptionBlockOuter'> <tr> <td class='mcnCaptionBlockInner' valign='top' style='padding: 9px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <table border='0' cellpadding='0' cellspacing='0' class='mcnCaptionLeftContentOuter' width='100%' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody><tr> <td valign='top' class='mcnCaptionLeftContentInner' style='padding: 0 9px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <table align='right' border='0' cellpadding='0' cellspacing='0' class='mcnCaptionLeftImageContentContainer' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody><tr> <td class='mcnCaptionLeftImageContent' valign='top' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <img alt='' src='{course_image_url}' width='176' style='max-width: 180px;border: 0;line-height: 100%;outline: none;text-decoration: none;vertical-align: bottom;height: auto !important;' class='mcnImage'> </td> </tr> </tbody></table> <table class='mcnCaptionLeftTextContentContainer' align='left' border='0' cellpadding='0' cellspacing='0' width='352' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody><tr> <td valign='top' class='mcnTextContent' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;color: #606060;font-family: Helvetica;font-size: 14px;line-height: 150%;text-align: left;'> <h3 class='null' style='display: block;font-family: Helvetica;font-size: 18px;font-style: normal;font-weight: bold;line-height: 125%;letter-spacing: -.5px;margin: 0;text-align: left;color: #606060 !important;'><strong style='font-size: 22px;'>{course_title}</strong><br></h3><br> </td> </tr> </tbody></table> </td> </tr></tbody></table> </td> </tr> </tbody></table><table border='0' cellpadding='0' cellspacing='0' width='100%' class='mcnTextBlock' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody class='mcnTextBlockOuter'> <tr> <td valign='top' class='mcnTextBlockInner' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <table align='left' border='0' cellpadding='0' cellspacing='0' width='600' class='mcnTextContentContainer' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody><tr> <td valign='top' class='mcnTextContent' style='padding-top: 9px;padding-right: 18px;padding-bottom: 9px;padding-left: 18px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;color: #606060;font-family: Helvetica;font-size: 14px;line-height: 150%;text-align: left;'> {{message_body}} </td> </tr> </tbody></table> </td> </tr> </tbody></table><table border='0' cellpadding='0' cellspacing='0' width='100%' class='mcnDividerBlock' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody class='mcnDividerBlockOuter'> <tr> <td class='mcnDividerBlockInner' style='padding: 18px 18px 3px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <table class='mcnDividerContent' border='0' cellpadding='0' cellspacing='0' width='100%' style='border-top-width: 1px;border-top-style: solid;border-top-color: #666666;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody><tr> <td style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <span></span> </td> </tr> </tbody></table> </td> </tr> </tbody></table><table border='0' cellpadding='0' cellspacing='0' width='100%' class='mcnTextBlock' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody class='mcnTextBlockOuter'> <tr> <td valign='top' class='mcnTextBlockInner' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <table align='left' border='0' cellpadding='0' cellspacing='0' width='600' class='mcnTextContentContainer' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody><tr> <td valign='top' class='mcnTextContent' style='padding-top: 9px;padding-right: 18px;padding-bottom: 9px;padding-left: 18px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;color: #606060;font-family: Helvetica;font-size: 14px;line-height: 150%;text-align: left;'> <div style='text-align: right;'><a href='http://facebook.com/edxonline' target='_blank' style='color: #2f73bc;font-weight: normal;text-decoration: underline;word-wrap: break-word !important;'><img align='none' height='16' src='http://courses.edx.org/static/images/bulk_email/FacebookIcon.png' style='width: 16px;height: 16px;border: 0;line-height: 100%;outline: none;text-decoration: none;' width='16'></a> <a href='http://twitter.com/edxonline' target='_blank' style='color: #2f73bc;font-weight: normal;text-decoration: underline;word-wrap: break-word !important;'><img align='none' height='16' src='http://courses.edx.org/static/images/bulk_email/TwitterIcon.png' style='width: 16px;height: 16px;border: 0;line-height: 100%;outline: none;text-decoration: none;' width='16'></a> <a href='https://plus.google.com/108235383044095082735' target='_blank' style='color: #2f73bc;font-weight: normal;text-decoration: underline;word-wrap: break-word !important;'><img align='none' height='16' src='http://courses.edx.org/static/images/bulk_email/GooglePlusIcon.png' style='width: 16px;height: 16px;border: 0;line-height: 100%;outline: none;text-decoration: none;' width='16'></a> <a href='http://www.meetup.com/edX-Communities/' target='_blank' style='color: #2f73bc;font-weight: normal;text-decoration: underline;word-wrap: break-word !important;'><img align='none' height='16' src='http://courses.edx.org/static/images/bulk_email/MeetupIcon.png' style='width: 16px;height: 16px;border: 0;line-height: 100%;outline: none;text-decoration: none;' width='16'></a></div> </td> </tr> </tbody></table> </td> </tr> </tbody></table></td> </tr> </table> </td> </tr> </table> <!-- // END BODY --> </td> </tr> <tr> <td align='center' valign='top' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <!-- BEGIN FOOTER // --> <table border='0' cellpadding='0' cellspacing='0' width='100%' id='templateFooter' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;background-color: #9FCFE8;border-top: 0;border-bottom: 0;'> <tr> <td align='center' valign='top' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <table border='0' cellpadding='0' cellspacing='0' width='600' class='templateContainer' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tr> <td valign='top' class='footerContainer' style='padding-top: 10px;padding-right: 18px;padding-bottom: 10px;padding-left: 18px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'><table border='0' cellpadding='0' cellspacing='0' width='100%' class='mcnTextBlock' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody class='mcnTextBlockOuter'> <tr> <td valign='top' class='mcnTextBlockInner' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <table align='left' border='0' cellpadding='0' cellspacing='0' width='600' class='mcnTextContentContainer' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody><tr> <td valign='top' class='mcnTextContent' style='padding-top: 9px;padding-right: 18px;padding-bottom: 9px;padding-left: 18px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;color: #f2f2f2;font-family: Helvetica;font-size: 11px;line-height: 125%;text-align: left;'> <em>Copyright \u00a9 2013 edX, All rights reserved.</em><br><br><br> <b>Our mailing address is:</b><br> edX<br> 11 Cambridge Center, Suite 101<br> Cambridge, MA, USA 02142<br><br><br>This email was automatically sent from {platform_name}. <br>You are receiving this email at address {email} because you are enrolled in <a href='{course_url}'>{course_title}</a>.<br>To stop receiving email like this, update your course email settings <a href='{email_settings_url}'>here</a>. <br> </td> </tr> </tbody></table> </td> </tr> </tbody></table></td> </tr> </table> </td> </tr> </table> <!-- // END FOOTER --> </td> </tr> </table> <!-- // END TEMPLATE --> </td> </tr> </table> </center> </body> </body> </html>", "plain_template": "THIS IS A BRANDED TEXT TEMPLATE. {course_title}\n\n{{message_body}}\r\n----\r\nCopyright 2013 edX, All rights reserved.\r\n----\r\nConnect with edX:\r\nFacebook (http://facebook.com/edxonline)\r\nTwitter (http://twitter.com/edxonline)\r\nGoogle+ (https://plus.google.com/108235383044095082735)\r\nMeetup (http://www.meetup.com/edX-Communities/)\r\n----\r\nThis email was automatically sent from {platform_name}.\r\nYou are receiving this email at address {email} because you are enrolled in {course_title}\r\n(URL: {course_url} ).\r\nTo stop receiving email like this, update your course email settings at {email_settings_url}.\r\n", "name": "branded.template"}}, {"model": "embargo.country", "pk": 1, "fields": {"country": "AF"}}, {"model": "embargo.country", "pk": 2, "fields": {"country": "AX"}}, {"model": "embargo.country", "pk": 3, "fields": {"country": "AL"}}, {"model": "embargo.country", "pk": 4, "fields": {"country": "DZ"}}, {"model": "embargo.country", "pk": 5, "fields": {"country": "AS"}}, {"model": "embargo.country", "pk": 6, "fields": {"country": "AD"}}, {"model": "embargo.country", "pk": 7, "fields": {"country": "AO"}}, {"model": "embargo.country", "pk": 8, "fields": {"country": "AI"}}, {"model": "embargo.country", "pk": 9, "fields": {"country": "AQ"}}, {"model": "embargo.country", "pk": 10, "fields": {"country": "AG"}}, {"model": "embargo.country", "pk": 11, "fields": {"country": "AR"}}, {"model": "embargo.country", "pk": 12, "fields": {"country": "AM"}}, {"model": "embargo.country", "pk": 13, "fields": {"country": "AW"}}, {"model": "embargo.country", "pk": 14, "fields": {"country": "AU"}}, {"model": "embargo.country", "pk": 15, "fields": {"country": "AT"}}, {"model": "embargo.country", "pk": 16, "fields": {"country": "AZ"}}, {"model": "embargo.country", "pk": 17, "fields": {"country": "BS"}}, {"model": "embargo.country", "pk": 18, "fields": {"country": "BH"}}, {"model": "embargo.country", "pk": 19, "fields": {"country": "BD"}}, {"model": "embargo.country", "pk": 20, "fields": {"country": "BB"}}, {"model": "embargo.country", "pk": 21, "fields": {"country": "BY"}}, {"model": "embargo.country", "pk": 22, "fields": {"country": "BE"}}, {"model": "embargo.country", "pk": 23, "fields": {"country": "BZ"}}, {"model": "embargo.country", "pk": 24, "fields": {"country": "BJ"}}, {"model": "embargo.country", "pk": 25, "fields": {"country": "BM"}}, {"model": "embargo.country", "pk": 26, "fields": {"country": "BT"}}, {"model": "embargo.country", "pk": 27, "fields": {"country": "BO"}}, {"model": "embargo.country", "pk": 28, "fields": {"country": "BQ"}}, {"model": "embargo.country", "pk": 29, "fields": {"country": "BA"}}, {"model": "embargo.country", "pk": 30, "fields": {"country": "BW"}}, {"model": "embargo.country", "pk": 31, "fields": {"country": "BV"}}, {"model": "embargo.country", "pk": 32, "fields": {"country": "BR"}}, {"model": "embargo.country", "pk": 33, "fields": {"country": "IO"}}, {"model": "embargo.country", "pk": 34, "fields": {"country": "BN"}}, {"model": "embargo.country", "pk": 35, "fields": {"country": "BG"}}, {"model": "embargo.country", "pk": 36, "fields": {"country": "BF"}}, {"model": "embargo.country", "pk": 37, "fields": {"country": "BI"}}, {"model": "embargo.country", "pk": 38, "fields": {"country": "CV"}}, {"model": "embargo.country", "pk": 39, "fields": {"country": "KH"}}, {"model": "embargo.country", "pk": 40, "fields": {"country": "CM"}}, {"model": "embargo.country", "pk": 41, "fields": {"country": "CA"}}, {"model": "embargo.country", "pk": 42, "fields": {"country": "KY"}}, {"model": "embargo.country", "pk": 43, "fields": {"country": "CF"}}, {"model": "embargo.country", "pk": 44, "fields": {"country": "TD"}}, {"model": "embargo.country", "pk": 45, "fields": {"country": "CL"}}, {"model": "embargo.country", "pk": 46, "fields": {"country": "CN"}}, {"model": "embargo.country", "pk": 47, "fields": {"country": "CX"}}, {"model": "embargo.country", "pk": 48, "fields": {"country": "CC"}}, {"model": "embargo.country", "pk": 49, "fields": {"country": "CO"}}, {"model": "embargo.country", "pk": 50, "fields": {"country": "KM"}}, {"model": "embargo.country", "pk": 51, "fields": {"country": "CG"}}, {"model": "embargo.country", "pk": 52, "fields": {"country": "CD"}}, {"model": "embargo.country", "pk": 53, "fields": {"country": "CK"}}, {"model": "embargo.country", "pk": 54, "fields": {"country": "CR"}}, {"model": "embargo.country", "pk": 55, "fields": {"country": "CI"}}, {"model": "embargo.country", "pk": 56, "fields": {"country": "HR"}}, {"model": "embargo.country", "pk": 57, "fields": {"country": "CU"}}, {"model": "embargo.country", "pk": 58, "fields": {"country": "CW"}}, {"model": "embargo.country", "pk": 59, "fields": {"country": "CY"}}, {"model": "embargo.country", "pk": 60, "fields": {"country": "CZ"}}, {"model": "embargo.country", "pk": 61, "fields": {"country": "DK"}}, {"model": "embargo.country", "pk": 62, "fields": {"country": "DJ"}}, {"model": "embargo.country", "pk": 63, "fields": {"country": "DM"}}, {"model": "embargo.country", "pk": 64, "fields": {"country": "DO"}}, {"model": "embargo.country", "pk": 65, "fields": {"country": "EC"}}, {"model": "embargo.country", "pk": 66, "fields": {"country": "EG"}}, {"model": "embargo.country", "pk": 67, "fields": {"country": "SV"}}, {"model": "embargo.country", "pk": 68, "fields": {"country": "GQ"}}, {"model": "embargo.country", "pk": 69, "fields": {"country": "ER"}}, {"model": "embargo.country", "pk": 70, "fields": {"country": "EE"}}, {"model": "embargo.country", "pk": 71, "fields": {"country": "ET"}}, {"model": "embargo.country", "pk": 72, "fields": {"country": "FK"}}, {"model": "embargo.country", "pk": 73, "fields": {"country": "FO"}}, {"model": "embargo.country", "pk": 74, "fields": {"country": "FJ"}}, {"model": "embargo.country", "pk": 75, "fields": {"country": "FI"}}, {"model": "embargo.country", "pk": 76, "fields": {"country": "FR"}}, {"model": "embargo.country", "pk": 77, "fields": {"country": "GF"}}, {"model": "embargo.country", "pk": 78, "fields": {"country": "PF"}}, {"model": "embargo.country", "pk": 79, "fields": {"country": "TF"}}, {"model": "embargo.country", "pk": 80, "fields": {"country": "GA"}}, {"model": "embargo.country", "pk": 81, "fields": {"country": "GM"}}, {"model": "embargo.country", "pk": 82, "fields": {"country": "GE"}}, {"model": "embargo.country", "pk": 83, "fields": {"country": "DE"}}, {"model": "embargo.country", "pk": 84, "fields": {"country": "GH"}}, {"model": "embargo.country", "pk": 85, "fields": {"country": "GI"}}, {"model": "embargo.country", "pk": 86, "fields": {"country": "GR"}}, {"model": "embargo.country", "pk": 87, "fields": {"country": "GL"}}, {"model": "embargo.country", "pk": 88, "fields": {"country": "GD"}}, {"model": "embargo.country", "pk": 89, "fields": {"country": "GP"}}, {"model": "embargo.country", "pk": 90, "fields": {"country": "GU"}}, {"model": "embargo.country", "pk": 91, "fields": {"country": "GT"}}, {"model": "embargo.country", "pk": 92, "fields": {"country": "GG"}}, {"model": "embargo.country", "pk": 93, "fields": {"country": "GN"}}, {"model": "embargo.country", "pk": 94, "fields": {"country": "GW"}}, {"model": "embargo.country", "pk": 95, "fields": {"country": "GY"}}, {"model": "embargo.country", "pk": 96, "fields": {"country": "HT"}}, {"model": "embargo.country", "pk": 97, "fields": {"country": "HM"}}, {"model": "embargo.country", "pk": 98, "fields": {"country": "VA"}}, {"model": "embargo.country", "pk": 99, "fields": {"country": "HN"}}, {"model": "embargo.country", "pk": 100, "fields": {"country": "HK"}}, {"model": "embargo.country", "pk": 101, "fields": {"country": "HU"}}, {"model": "embargo.country", "pk": 102, "fields": {"country": "IS"}}, {"model": "embargo.country", "pk": 103, "fields": {"country": "IN"}}, {"model": "embargo.country", "pk": 104, "fields": {"country": "ID"}}, {"model": "embargo.country", "pk": 105, "fields": {"country": "IR"}}, {"model": "embargo.country", "pk": 106, "fields": {"country": "IQ"}}, {"model": "embargo.country", "pk": 107, "fields": {"country": "IE"}}, {"model": "embargo.country", "pk": 108, "fields": {"country": "IM"}}, {"model": "embargo.country", "pk": 109, "fields": {"country": "IL"}}, {"model": "embargo.country", "pk": 110, "fields": {"country": "IT"}}, {"model": "embargo.country", "pk": 111, "fields": {"country": "JM"}}, {"model": "embargo.country", "pk": 112, "fields": {"country": "JP"}}, {"model": "embargo.country", "pk": 113, "fields": {"country": "JE"}}, {"model": "embargo.country", "pk": 114, "fields": {"country": "JO"}}, {"model": "embargo.country", "pk": 115, "fields": {"country": "KZ"}}, {"model": "embargo.country", "pk": 116, "fields": {"country": "KE"}}, {"model": "embargo.country", "pk": 117, "fields": {"country": "KI"}}, {"model": "embargo.country", "pk": 118, "fields": {"country": "XK"}}, {"model": "embargo.country", "pk": 119, "fields": {"country": "KW"}}, {"model": "embargo.country", "pk": 120, "fields": {"country": "KG"}}, {"model": "embargo.country", "pk": 121, "fields": {"country": "LA"}}, {"model": "embargo.country", "pk": 122, "fields": {"country": "LV"}}, {"model": "embargo.country", "pk": 123, "fields": {"country": "LB"}}, {"model": "embargo.country", "pk": 124, "fields": {"country": "LS"}}, {"model": "embargo.country", "pk": 125, "fields": {"country": "LR"}}, {"model": "embargo.country", "pk": 126, "fields": {"country": "LY"}}, {"model": "embargo.country", "pk": 127, "fields": {"country": "LI"}}, {"model": "embargo.country", "pk": 128, "fields": {"country": "LT"}}, {"model": "embargo.country", "pk": 129, "fields": {"country": "LU"}}, {"model": "embargo.country", "pk": 130, "fields": {"country": "MO"}}, {"model": "embargo.country", "pk": 131, "fields": {"country": "MK"}}, {"model": "embargo.country", "pk": 132, "fields": {"country": "MG"}}, {"model": "embargo.country", "pk": 133, "fields": {"country": "MW"}}, {"model": "embargo.country", "pk": 134, "fields": {"country": "MY"}}, {"model": "embargo.country", "pk": 135, "fields": {"country": "MV"}}, {"model": "embargo.country", "pk": 136, "fields": {"country": "ML"}}, {"model": "embargo.country", "pk": 137, "fields": {"country": "MT"}}, {"model": "embargo.country", "pk": 138, "fields": {"country": "MH"}}, {"model": "embargo.country", "pk": 139, "fields": {"country": "MQ"}}, {"model": "embargo.country", "pk": 140, "fields": {"country": "MR"}}, {"model": "embargo.country", "pk": 141, "fields": {"country": "MU"}}, {"model": "embargo.country", "pk": 142, "fields": {"country": "YT"}}, {"model": "embargo.country", "pk": 143, "fields": {"country": "MX"}}, {"model": "embargo.country", "pk": 144, "fields": {"country": "FM"}}, {"model": "embargo.country", "pk": 145, "fields": {"country": "MD"}}, {"model": "embargo.country", "pk": 146, "fields": {"country": "MC"}}, {"model": "embargo.country", "pk": 147, "fields": {"country": "MN"}}, {"model": "embargo.country", "pk": 148, "fields": {"country": "ME"}}, {"model": "embargo.country", "pk": 149, "fields": {"country": "MS"}}, {"model": "embargo.country", "pk": 150, "fields": {"country": "MA"}}, {"model": "embargo.country", "pk": 151, "fields": {"country": "MZ"}}, {"model": "embargo.country", "pk": 152, "fields": {"country": "MM"}}, {"model": "embargo.country", "pk": 153, "fields": {"country": "NA"}}, {"model": "embargo.country", "pk": 154, "fields": {"country": "NR"}}, {"model": "embargo.country", "pk": 155, "fields": {"country": "NP"}}, {"model": "embargo.country", "pk": 156, "fields": {"country": "NL"}}, {"model": "embargo.country", "pk": 157, "fields": {"country": "NC"}}, {"model": "embargo.country", "pk": 158, "fields": {"country": "NZ"}}, {"model": "embargo.country", "pk": 159, "fields": {"country": "NI"}}, {"model": "embargo.country", "pk": 160, "fields": {"country": "NE"}}, {"model": "embargo.country", "pk": 161, "fields": {"country": "NG"}}, {"model": "embargo.country", "pk": 162, "fields": {"country": "NU"}}, {"model": "embargo.country", "pk": 163, "fields": {"country": "NF"}}, {"model": "embargo.country", "pk": 164, "fields": {"country": "KP"}}, {"model": "embargo.country", "pk": 165, "fields": {"country": "MP"}}, {"model": "embargo.country", "pk": 166, "fields": {"country": "NO"}}, {"model": "embargo.country", "pk": 167, "fields": {"country": "OM"}}, {"model": "embargo.country", "pk": 168, "fields": {"country": "PK"}}, {"model": "embargo.country", "pk": 169, "fields": {"country": "PW"}}, {"model": "embargo.country", "pk": 170, "fields": {"country": "PS"}}, {"model": "embargo.country", "pk": 171, "fields": {"country": "PA"}}, {"model": "embargo.country", "pk": 172, "fields": {"country": "PG"}}, {"model": "embargo.country", "pk": 173, "fields": {"country": "PY"}}, {"model": "embargo.country", "pk": 174, "fields": {"country": "PE"}}, {"model": "embargo.country", "pk": 175, "fields": {"country": "PH"}}, {"model": "embargo.country", "pk": 176, "fields": {"country": "PN"}}, {"model": "embargo.country", "pk": 177, "fields": {"country": "PL"}}, {"model": "embargo.country", "pk": 178, "fields": {"country": "PT"}}, {"model": "embargo.country", "pk": 179, "fields": {"country": "PR"}}, {"model": "embargo.country", "pk": 180, "fields": {"country": "QA"}}, {"model": "embargo.country", "pk": 181, "fields": {"country": "RE"}}, {"model": "embargo.country", "pk": 182, "fields": {"country": "RO"}}, {"model": "embargo.country", "pk": 183, "fields": {"country": "RU"}}, {"model": "embargo.country", "pk": 184, "fields": {"country": "RW"}}, {"model": "embargo.country", "pk": 185, "fields": {"country": "BL"}}, {"model": "embargo.country", "pk": 186, "fields": {"country": "SH"}}, {"model": "embargo.country", "pk": 187, "fields": {"country": "KN"}}, {"model": "embargo.country", "pk": 188, "fields": {"country": "LC"}}, {"model": "embargo.country", "pk": 189, "fields": {"country": "MF"}}, {"model": "embargo.country", "pk": 190, "fields": {"country": "PM"}}, {"model": "embargo.country", "pk": 191, "fields": {"country": "VC"}}, {"model": "embargo.country", "pk": 192, "fields": {"country": "WS"}}, {"model": "embargo.country", "pk": 193, "fields": {"country": "SM"}}, {"model": "embargo.country", "pk": 194, "fields": {"country": "ST"}}, {"model": "embargo.country", "pk": 195, "fields": {"country": "SA"}}, {"model": "embargo.country", "pk": 196, "fields": {"country": "SN"}}, {"model": "embargo.country", "pk": 197, "fields": {"country": "RS"}}, {"model": "embargo.country", "pk": 198, "fields": {"country": "SC"}}, {"model": "embargo.country", "pk": 199, "fields": {"country": "SL"}}, {"model": "embargo.country", "pk": 200, "fields": {"country": "SG"}}, {"model": "embargo.country", "pk": 201, "fields": {"country": "SX"}}, {"model": "embargo.country", "pk": 202, "fields": {"country": "SK"}}, {"model": "embargo.country", "pk": 203, "fields": {"country": "SI"}}, {"model": "embargo.country", "pk": 204, "fields": {"country": "SB"}}, {"model": "embargo.country", "pk": 205, "fields": {"country": "SO"}}, {"model": "embargo.country", "pk": 206, "fields": {"country": "ZA"}}, {"model": "embargo.country", "pk": 207, "fields": {"country": "GS"}}, {"model": "embargo.country", "pk": 208, "fields": {"country": "KR"}}, {"model": "embargo.country", "pk": 209, "fields": {"country": "SS"}}, {"model": "embargo.country", "pk": 210, "fields": {"country": "ES"}}, {"model": "embargo.country", "pk": 211, "fields": {"country": "LK"}}, {"model": "embargo.country", "pk": 212, "fields": {"country": "SD"}}, {"model": "embargo.country", "pk": 213, "fields": {"country": "SR"}}, {"model": "embargo.country", "pk": 214, "fields": {"country": "SJ"}}, {"model": "embargo.country", "pk": 215, "fields": {"country": "SZ"}}, {"model": "embargo.country", "pk": 216, "fields": {"country": "SE"}}, {"model": "embargo.country", "pk": 217, "fields": {"country": "CH"}}, {"model": "embargo.country", "pk": 218, "fields": {"country": "SY"}}, {"model": "embargo.country", "pk": 219, "fields": {"country": "TW"}}, {"model": "embargo.country", "pk": 220, "fields": {"country": "TJ"}}, {"model": "embargo.country", "pk": 221, "fields": {"country": "TZ"}}, {"model": "embargo.country", "pk": 222, "fields": {"country": "TH"}}, {"model": "embargo.country", "pk": 223, "fields": {"country": "TL"}}, {"model": "embargo.country", "pk": 224, "fields": {"country": "TG"}}, {"model": "embargo.country", "pk": 225, "fields": {"country": "TK"}}, {"model": "embargo.country", "pk": 226, "fields": {"country": "TO"}}, {"model": "embargo.country", "pk": 227, "fields": {"country": "TT"}}, {"model": "embargo.country", "pk": 228, "fields": {"country": "TN"}}, {"model": "embargo.country", "pk": 229, "fields": {"country": "TR"}}, {"model": "embargo.country", "pk": 230, "fields": {"country": "TM"}}, {"model": "embargo.country", "pk": 231, "fields": {"country": "TC"}}, {"model": "embargo.country", "pk": 232, "fields": {"country": "TV"}}, {"model": "embargo.country", "pk": 233, "fields": {"country": "UG"}}, {"model": "embargo.country", "pk": 234, "fields": {"country": "UA"}}, {"model": "embargo.country", "pk": 235, "fields": {"country": "AE"}}, {"model": "embargo.country", "pk": 236, "fields": {"country": "GB"}}, {"model": "embargo.country", "pk": 237, "fields": {"country": "UM"}}, {"model": "embargo.country", "pk": 238, "fields": {"country": "US"}}, {"model": "embargo.country", "pk": 239, "fields": {"country": "UY"}}, {"model": "embargo.country", "pk": 240, "fields": {"country": "UZ"}}, {"model": "embargo.country", "pk": 241, "fields": {"country": "VU"}}, {"model": "embargo.country", "pk": 242, "fields": {"country": "VE"}}, {"model": "embargo.country", "pk": 243, "fields": {"country": "VN"}}, {"model": "embargo.country", "pk": 244, "fields": {"country": "VG"}}, {"model": "embargo.country", "pk": 245, "fields": {"country": "VI"}}, {"model": "embargo.country", "pk": 246, "fields": {"country": "WF"}}, {"model": "embargo.country", "pk": 247, "fields": {"country": "EH"}}, {"model": "embargo.country", "pk": 248, "fields": {"country": "YE"}}, {"model": "embargo.country", "pk": 249, "fields": {"country": "ZM"}}, {"model": "embargo.country", "pk": 250, "fields": {"country": "ZW"}}, {"model": "edxval.profile", "pk": 1, "fields": {"profile_name": "desktop_mp4"}}, {"model": "edxval.profile", "pk": 2, "fields": {"profile_name": "desktop_webm"}}, {"model": "edxval.profile", "pk": 3, "fields": {"profile_name": "mobile_high"}}, {"model": "edxval.profile", "pk": 4, "fields": {"profile_name": "mobile_low"}}, {"model": "edxval.profile", "pk": 5, "fields": {"profile_name": "youtube"}}, {"model": "edxval.profile", "pk": 6, "fields": {"profile_name": "hls"}}, {"model": "edxval.profile", "pk": 7, "fields": {"profile_name": "audio_mp3"}}, {"model": "milestones.milestonerelationshiptype", "pk": 1, "fields": {"created": "2017-12-06T02:29:37.764Z", "modified": "2017-12-06T02:29:37.764Z", "name": "fulfills", "description": "Autogenerated milestone relationship type \"fulfills\"", "active": true}}, {"model": "milestones.milestonerelationshiptype", "pk": 2, "fields": {"created": "2017-12-06T02:29:37.767Z", "modified": "2017-12-06T02:29:37.767Z", "name": "requires", "description": "Autogenerated milestone relationship type \"requires\"", "active": true}}, {"model": "badges.coursecompleteimageconfiguration", "pk": 1, "fields": {"mode": "honor", "icon": "badges/honor_MYTwjzI.png", "default": false}}, {"model": "badges.coursecompleteimageconfiguration", "pk": 2, "fields": {"mode": "verified", "icon": "badges/verified_VzaI0PC.png", "default": false}}, {"model": "badges.coursecompleteimageconfiguration", "pk": 3, "fields": {"mode": "professional", "icon": "badges/professional_g7d5Aru.png", "default": false}}, {"model": "enterprise.enterprisecustomertype", "pk": 1, "fields": {"created": "2018-12-19T16:43:27.202Z", "modified": "2018-12-19T16:43:27.202Z", "name": "Enterprise"}}, {"model": "enterprise.systemwideenterpriserole", "pk": 1, "fields": {"created": "2019-03-08T15:47:17.791Z", "modified": "2019-03-08T15:47:17.792Z", "name": "enterprise_admin", "description": null}}, {"model": "enterprise.systemwideenterpriserole", "pk": 2, "fields": {"created": "2019-03-08T15:47:17.794Z", "modified": "2019-03-08T15:47:17.794Z", "name": "enterprise_learner", "description": null}}, {"model": "enterprise.systemwideenterpriserole", "pk": 3, "fields": {"created": "2019-03-28T19:29:40.175Z", "modified": "2019-03-28T19:29:40.175Z", "name": "enterprise_openedx_operator", "description": null}}, {"model": "enterprise.enterprisefeaturerole", "pk": 1, "fields": {"created": "2019-03-28T19:29:40.102Z", "modified": "2019-03-28T19:29:40.103Z", "name": "catalog_admin", "description": null}}, {"model": "enterprise.enterprisefeaturerole", "pk": 2, "fields": {"created": "2019-03-28T19:29:40.105Z", "modified": "2019-03-28T19:29:40.105Z", "name": "dashboard_admin", "description": null}}, {"model": "enterprise.enterprisefeaturerole", "pk": 3, "fields": {"created": "2019-03-28T19:29:40.108Z", "modified": "2019-03-28T19:29:40.108Z", "name": "enrollment_api_admin", "description": null}}, {"model": "auth.permission", "pk": 1, "fields": {"name": "Can add permission", "content_type": 2, "codename": "add_permission"}}, {"model": "auth.permission", "pk": 2, "fields": {"name": "Can change permission", "content_type": 2, "codename": "change_permission"}}, {"model": "auth.permission", "pk": 3, "fields": {"name": "Can delete permission", "content_type": 2, "codename": "delete_permission"}}, {"model": "auth.permission", "pk": 4, "fields": {"name": "Can add group", "content_type": 3, "codename": "add_group"}}, {"model": "auth.permission", "pk": 5, "fields": {"name": "Can change group", "content_type": 3, "codename": "change_group"}}, {"model": "auth.permission", "pk": 6, "fields": {"name": "Can delete group", "content_type": 3, "codename": "delete_group"}}, {"model": "auth.permission", "pk": 7, "fields": {"name": "Can add user", "content_type": 4, "codename": "add_user"}}, {"model": "auth.permission", "pk": 8, "fields": {"name": "Can change user", "content_type": 4, "codename": "change_user"}}, {"model": "auth.permission", "pk": 9, "fields": {"name": "Can delete user", "content_type": 4, "codename": "delete_user"}}, {"model": "auth.permission", "pk": 10, "fields": {"name": "Can add content type", "content_type": 5, "codename": "add_contenttype"}}, {"model": "auth.permission", "pk": 11, "fields": {"name": "Can change content type", "content_type": 5, "codename": "change_contenttype"}}, {"model": "auth.permission", "pk": 12, "fields": {"name": "Can delete content type", "content_type": 5, "codename": "delete_contenttype"}}, {"model": "auth.permission", "pk": 13, "fields": {"name": "Can add redirect", "content_type": 6, "codename": "add_redirect"}}, {"model": "auth.permission", "pk": 14, "fields": {"name": "Can change redirect", "content_type": 6, "codename": "change_redirect"}}, {"model": "auth.permission", "pk": 15, "fields": {"name": "Can delete redirect", "content_type": 6, "codename": "delete_redirect"}}, {"model": "auth.permission", "pk": 16, "fields": {"name": "Can add session", "content_type": 7, "codename": "add_session"}}, {"model": "auth.permission", "pk": 17, "fields": {"name": "Can change session", "content_type": 7, "codename": "change_session"}}, {"model": "auth.permission", "pk": 18, "fields": {"name": "Can delete session", "content_type": 7, "codename": "delete_session"}}, {"model": "auth.permission", "pk": 19, "fields": {"name": "Can add site", "content_type": 8, "codename": "add_site"}}, {"model": "auth.permission", "pk": 20, "fields": {"name": "Can change site", "content_type": 8, "codename": "change_site"}}, {"model": "auth.permission", "pk": 21, "fields": {"name": "Can delete site", "content_type": 8, "codename": "delete_site"}}, {"model": "auth.permission", "pk": 22, "fields": {"name": "Can add task state", "content_type": 9, "codename": "add_taskmeta"}}, {"model": "auth.permission", "pk": 23, "fields": {"name": "Can change task state", "content_type": 9, "codename": "change_taskmeta"}}, {"model": "auth.permission", "pk": 24, "fields": {"name": "Can delete task state", "content_type": 9, "codename": "delete_taskmeta"}}, {"model": "auth.permission", "pk": 25, "fields": {"name": "Can add saved group result", "content_type": 10, "codename": "add_tasksetmeta"}}, {"model": "auth.permission", "pk": 26, "fields": {"name": "Can change saved group result", "content_type": 10, "codename": "change_tasksetmeta"}}, {"model": "auth.permission", "pk": 27, "fields": {"name": "Can delete saved group result", "content_type": 10, "codename": "delete_tasksetmeta"}}, {"model": "auth.permission", "pk": 28, "fields": {"name": "Can add interval", "content_type": 11, "codename": "add_intervalschedule"}}, {"model": "auth.permission", "pk": 29, "fields": {"name": "Can change interval", "content_type": 11, "codename": "change_intervalschedule"}}, {"model": "auth.permission", "pk": 30, "fields": {"name": "Can delete interval", "content_type": 11, "codename": "delete_intervalschedule"}}, {"model": "auth.permission", "pk": 31, "fields": {"name": "Can add crontab", "content_type": 12, "codename": "add_crontabschedule"}}, {"model": "auth.permission", "pk": 32, "fields": {"name": "Can change crontab", "content_type": 12, "codename": "change_crontabschedule"}}, {"model": "auth.permission", "pk": 33, "fields": {"name": "Can delete crontab", "content_type": 12, "codename": "delete_crontabschedule"}}, {"model": "auth.permission", "pk": 34, "fields": {"name": "Can add periodic tasks", "content_type": 13, "codename": "add_periodictasks"}}, {"model": "auth.permission", "pk": 35, "fields": {"name": "Can change periodic tasks", "content_type": 13, "codename": "change_periodictasks"}}, {"model": "auth.permission", "pk": 36, "fields": {"name": "Can delete periodic tasks", "content_type": 13, "codename": "delete_periodictasks"}}, {"model": "auth.permission", "pk": 37, "fields": {"name": "Can add periodic task", "content_type": 14, "codename": "add_periodictask"}}, {"model": "auth.permission", "pk": 38, "fields": {"name": "Can change periodic task", "content_type": 14, "codename": "change_periodictask"}}, {"model": "auth.permission", "pk": 39, "fields": {"name": "Can delete periodic task", "content_type": 14, "codename": "delete_periodictask"}}, {"model": "auth.permission", "pk": 40, "fields": {"name": "Can add worker", "content_type": 15, "codename": "add_workerstate"}}, {"model": "auth.permission", "pk": 41, "fields": {"name": "Can change worker", "content_type": 15, "codename": "change_workerstate"}}, {"model": "auth.permission", "pk": 42, "fields": {"name": "Can delete worker", "content_type": 15, "codename": "delete_workerstate"}}, {"model": "auth.permission", "pk": 43, "fields": {"name": "Can add task", "content_type": 16, "codename": "add_taskstate"}}, {"model": "auth.permission", "pk": 44, "fields": {"name": "Can change task", "content_type": 16, "codename": "change_taskstate"}}, {"model": "auth.permission", "pk": 45, "fields": {"name": "Can delete task", "content_type": 16, "codename": "delete_taskstate"}}, {"model": "auth.permission", "pk": 46, "fields": {"name": "Can add flag", "content_type": 17, "codename": "add_flag"}}, {"model": "auth.permission", "pk": 47, "fields": {"name": "Can change flag", "content_type": 17, "codename": "change_flag"}}, {"model": "auth.permission", "pk": 48, "fields": {"name": "Can delete flag", "content_type": 17, "codename": "delete_flag"}}, {"model": "auth.permission", "pk": 49, "fields": {"name": "Can add switch", "content_type": 18, "codename": "add_switch"}}, {"model": "auth.permission", "pk": 50, "fields": {"name": "Can change switch", "content_type": 18, "codename": "change_switch"}}, {"model": "auth.permission", "pk": 51, "fields": {"name": "Can delete switch", "content_type": 18, "codename": "delete_switch"}}, {"model": "auth.permission", "pk": 52, "fields": {"name": "Can add sample", "content_type": 19, "codename": "add_sample"}}, {"model": "auth.permission", "pk": 53, "fields": {"name": "Can change sample", "content_type": 19, "codename": "change_sample"}}, {"model": "auth.permission", "pk": 54, "fields": {"name": "Can delete sample", "content_type": 19, "codename": "delete_sample"}}, {"model": "auth.permission", "pk": 55, "fields": {"name": "Can add global status message", "content_type": 20, "codename": "add_globalstatusmessage"}}, {"model": "auth.permission", "pk": 56, "fields": {"name": "Can change global status message", "content_type": 20, "codename": "change_globalstatusmessage"}}, {"model": "auth.permission", "pk": 57, "fields": {"name": "Can delete global status message", "content_type": 20, "codename": "delete_globalstatusmessage"}}, {"model": "auth.permission", "pk": 58, "fields": {"name": "Can add course message", "content_type": 21, "codename": "add_coursemessage"}}, {"model": "auth.permission", "pk": 59, "fields": {"name": "Can change course message", "content_type": 21, "codename": "change_coursemessage"}}, {"model": "auth.permission", "pk": 60, "fields": {"name": "Can delete course message", "content_type": 21, "codename": "delete_coursemessage"}}, {"model": "auth.permission", "pk": 61, "fields": {"name": "Can add asset base url config", "content_type": 22, "codename": "add_assetbaseurlconfig"}}, {"model": "auth.permission", "pk": 62, "fields": {"name": "Can change asset base url config", "content_type": 22, "codename": "change_assetbaseurlconfig"}}, {"model": "auth.permission", "pk": 63, "fields": {"name": "Can delete asset base url config", "content_type": 22, "codename": "delete_assetbaseurlconfig"}}, {"model": "auth.permission", "pk": 64, "fields": {"name": "Can add asset excluded extensions config", "content_type": 23, "codename": "add_assetexcludedextensionsconfig"}}, {"model": "auth.permission", "pk": 65, "fields": {"name": "Can change asset excluded extensions config", "content_type": 23, "codename": "change_assetexcludedextensionsconfig"}}, {"model": "auth.permission", "pk": 66, "fields": {"name": "Can delete asset excluded extensions config", "content_type": 23, "codename": "delete_assetexcludedextensionsconfig"}}, {"model": "auth.permission", "pk": 67, "fields": {"name": "Can add course asset cache ttl config", "content_type": 24, "codename": "add_courseassetcachettlconfig"}}, {"model": "auth.permission", "pk": 68, "fields": {"name": "Can change course asset cache ttl config", "content_type": 24, "codename": "change_courseassetcachettlconfig"}}, {"model": "auth.permission", "pk": 69, "fields": {"name": "Can delete course asset cache ttl config", "content_type": 24, "codename": "delete_courseassetcachettlconfig"}}, {"model": "auth.permission", "pk": 70, "fields": {"name": "Can add cdn user agents config", "content_type": 25, "codename": "add_cdnuseragentsconfig"}}, {"model": "auth.permission", "pk": 71, "fields": {"name": "Can change cdn user agents config", "content_type": 25, "codename": "change_cdnuseragentsconfig"}}, {"model": "auth.permission", "pk": 72, "fields": {"name": "Can delete cdn user agents config", "content_type": 25, "codename": "delete_cdnuseragentsconfig"}}, {"model": "auth.permission", "pk": 73, "fields": {"name": "Can add site theme", "content_type": 26, "codename": "add_sitetheme"}}, {"model": "auth.permission", "pk": 74, "fields": {"name": "Can change site theme", "content_type": 26, "codename": "change_sitetheme"}}, {"model": "auth.permission", "pk": 75, "fields": {"name": "Can delete site theme", "content_type": 26, "codename": "delete_sitetheme"}}, {"model": "auth.permission", "pk": 76, "fields": {"name": "Can add site configuration", "content_type": 27, "codename": "add_siteconfiguration"}}, {"model": "auth.permission", "pk": 77, "fields": {"name": "Can change site configuration", "content_type": 27, "codename": "change_siteconfiguration"}}, {"model": "auth.permission", "pk": 78, "fields": {"name": "Can delete site configuration", "content_type": 27, "codename": "delete_siteconfiguration"}}, {"model": "auth.permission", "pk": 79, "fields": {"name": "Can add site configuration history", "content_type": 28, "codename": "add_siteconfigurationhistory"}}, {"model": "auth.permission", "pk": 80, "fields": {"name": "Can change site configuration history", "content_type": 28, "codename": "change_siteconfigurationhistory"}}, {"model": "auth.permission", "pk": 81, "fields": {"name": "Can delete site configuration history", "content_type": 28, "codename": "delete_siteconfigurationhistory"}}, {"model": "auth.permission", "pk": 82, "fields": {"name": "Can add hls playback enabled flag", "content_type": 29, "codename": "add_hlsplaybackenabledflag"}}, {"model": "auth.permission", "pk": 83, "fields": {"name": "Can change hls playback enabled flag", "content_type": 29, "codename": "change_hlsplaybackenabledflag"}}, {"model": "auth.permission", "pk": 84, "fields": {"name": "Can delete hls playback enabled flag", "content_type": 29, "codename": "delete_hlsplaybackenabledflag"}}, {"model": "auth.permission", "pk": 85, "fields": {"name": "Can add course hls playback enabled flag", "content_type": 30, "codename": "add_coursehlsplaybackenabledflag"}}, {"model": "auth.permission", "pk": 86, "fields": {"name": "Can change course hls playback enabled flag", "content_type": 30, "codename": "change_coursehlsplaybackenabledflag"}}, {"model": "auth.permission", "pk": 87, "fields": {"name": "Can delete course hls playback enabled flag", "content_type": 30, "codename": "delete_coursehlsplaybackenabledflag"}}, {"model": "auth.permission", "pk": 88, "fields": {"name": "Can add video transcript enabled flag", "content_type": 31, "codename": "add_videotranscriptenabledflag"}}, {"model": "auth.permission", "pk": 89, "fields": {"name": "Can change video transcript enabled flag", "content_type": 31, "codename": "change_videotranscriptenabledflag"}}, {"model": "auth.permission", "pk": 90, "fields": {"name": "Can delete video transcript enabled flag", "content_type": 31, "codename": "delete_videotranscriptenabledflag"}}, {"model": "auth.permission", "pk": 91, "fields": {"name": "Can add course video transcript enabled flag", "content_type": 32, "codename": "add_coursevideotranscriptenabledflag"}}, {"model": "auth.permission", "pk": 92, "fields": {"name": "Can change course video transcript enabled flag", "content_type": 32, "codename": "change_coursevideotranscriptenabledflag"}}, {"model": "auth.permission", "pk": 93, "fields": {"name": "Can delete course video transcript enabled flag", "content_type": 32, "codename": "delete_coursevideotranscriptenabledflag"}}, {"model": "auth.permission", "pk": 94, "fields": {"name": "Can add video pipeline integration", "content_type": 33, "codename": "add_videopipelineintegration"}}, {"model": "auth.permission", "pk": 95, "fields": {"name": "Can change video pipeline integration", "content_type": 33, "codename": "change_videopipelineintegration"}}, {"model": "auth.permission", "pk": 96, "fields": {"name": "Can delete video pipeline integration", "content_type": 33, "codename": "delete_videopipelineintegration"}}, {"model": "auth.permission", "pk": 97, "fields": {"name": "Can add video uploads enabled by default", "content_type": 34, "codename": "add_videouploadsenabledbydefault"}}, {"model": "auth.permission", "pk": 98, "fields": {"name": "Can change video uploads enabled by default", "content_type": 34, "codename": "change_videouploadsenabledbydefault"}}, {"model": "auth.permission", "pk": 99, "fields": {"name": "Can delete video uploads enabled by default", "content_type": 34, "codename": "delete_videouploadsenabledbydefault"}}, {"model": "auth.permission", "pk": 100, "fields": {"name": "Can add course video uploads enabled by default", "content_type": 35, "codename": "add_coursevideouploadsenabledbydefault"}}, {"model": "auth.permission", "pk": 101, "fields": {"name": "Can change course video uploads enabled by default", "content_type": 35, "codename": "change_coursevideouploadsenabledbydefault"}}, {"model": "auth.permission", "pk": 102, "fields": {"name": "Can delete course video uploads enabled by default", "content_type": 35, "codename": "delete_coursevideouploadsenabledbydefault"}}, {"model": "auth.permission", "pk": 103, "fields": {"name": "Can add bookmark", "content_type": 36, "codename": "add_bookmark"}}, {"model": "auth.permission", "pk": 104, "fields": {"name": "Can change bookmark", "content_type": 36, "codename": "change_bookmark"}}, {"model": "auth.permission", "pk": 105, "fields": {"name": "Can delete bookmark", "content_type": 36, "codename": "delete_bookmark"}}, {"model": "auth.permission", "pk": 106, "fields": {"name": "Can add x block cache", "content_type": 37, "codename": "add_xblockcache"}}, {"model": "auth.permission", "pk": 107, "fields": {"name": "Can change x block cache", "content_type": 37, "codename": "change_xblockcache"}}, {"model": "auth.permission", "pk": 108, "fields": {"name": "Can delete x block cache", "content_type": 37, "codename": "delete_xblockcache"}}, {"model": "auth.permission", "pk": 109, "fields": {"name": "Can add student module", "content_type": 38, "codename": "add_studentmodule"}}, {"model": "auth.permission", "pk": 110, "fields": {"name": "Can change student module", "content_type": 38, "codename": "change_studentmodule"}}, {"model": "auth.permission", "pk": 111, "fields": {"name": "Can delete student module", "content_type": 38, "codename": "delete_studentmodule"}}, {"model": "auth.permission", "pk": 112, "fields": {"name": "Can add student module history", "content_type": 39, "codename": "add_studentmodulehistory"}}, {"model": "auth.permission", "pk": 113, "fields": {"name": "Can change student module history", "content_type": 39, "codename": "change_studentmodulehistory"}}, {"model": "auth.permission", "pk": 114, "fields": {"name": "Can delete student module history", "content_type": 39, "codename": "delete_studentmodulehistory"}}, {"model": "auth.permission", "pk": 115, "fields": {"name": "Can add x module user state summary field", "content_type": 40, "codename": "add_xmoduleuserstatesummaryfield"}}, {"model": "auth.permission", "pk": 116, "fields": {"name": "Can change x module user state summary field", "content_type": 40, "codename": "change_xmoduleuserstatesummaryfield"}}, {"model": "auth.permission", "pk": 117, "fields": {"name": "Can delete x module user state summary field", "content_type": 40, "codename": "delete_xmoduleuserstatesummaryfield"}}, {"model": "auth.permission", "pk": 118, "fields": {"name": "Can add x module student prefs field", "content_type": 41, "codename": "add_xmodulestudentprefsfield"}}, {"model": "auth.permission", "pk": 119, "fields": {"name": "Can change x module student prefs field", "content_type": 41, "codename": "change_xmodulestudentprefsfield"}}, {"model": "auth.permission", "pk": 120, "fields": {"name": "Can delete x module student prefs field", "content_type": 41, "codename": "delete_xmodulestudentprefsfield"}}, {"model": "auth.permission", "pk": 121, "fields": {"name": "Can add x module student info field", "content_type": 42, "codename": "add_xmodulestudentinfofield"}}, {"model": "auth.permission", "pk": 122, "fields": {"name": "Can change x module student info field", "content_type": 42, "codename": "change_xmodulestudentinfofield"}}, {"model": "auth.permission", "pk": 123, "fields": {"name": "Can delete x module student info field", "content_type": 42, "codename": "delete_xmodulestudentinfofield"}}, {"model": "auth.permission", "pk": 124, "fields": {"name": "Can add offline computed grade", "content_type": 43, "codename": "add_offlinecomputedgrade"}}, {"model": "auth.permission", "pk": 125, "fields": {"name": "Can change offline computed grade", "content_type": 43, "codename": "change_offlinecomputedgrade"}}, {"model": "auth.permission", "pk": 126, "fields": {"name": "Can delete offline computed grade", "content_type": 43, "codename": "delete_offlinecomputedgrade"}}, {"model": "auth.permission", "pk": 127, "fields": {"name": "Can add offline computed grade log", "content_type": 44, "codename": "add_offlinecomputedgradelog"}}, {"model": "auth.permission", "pk": 128, "fields": {"name": "Can change offline computed grade log", "content_type": 44, "codename": "change_offlinecomputedgradelog"}}, {"model": "auth.permission", "pk": 129, "fields": {"name": "Can delete offline computed grade log", "content_type": 44, "codename": "delete_offlinecomputedgradelog"}}, {"model": "auth.permission", "pk": 130, "fields": {"name": "Can add student field override", "content_type": 45, "codename": "add_studentfieldoverride"}}, {"model": "auth.permission", "pk": 131, "fields": {"name": "Can change student field override", "content_type": 45, "codename": "change_studentfieldoverride"}}, {"model": "auth.permission", "pk": 132, "fields": {"name": "Can delete student field override", "content_type": 45, "codename": "delete_studentfieldoverride"}}, {"model": "auth.permission", "pk": 133, "fields": {"name": "Can add dynamic upgrade deadline configuration", "content_type": 46, "codename": "add_dynamicupgradedeadlineconfiguration"}}, {"model": "auth.permission", "pk": 134, "fields": {"name": "Can change dynamic upgrade deadline configuration", "content_type": 46, "codename": "change_dynamicupgradedeadlineconfiguration"}}, {"model": "auth.permission", "pk": 135, "fields": {"name": "Can delete dynamic upgrade deadline configuration", "content_type": 46, "codename": "delete_dynamicupgradedeadlineconfiguration"}}, {"model": "auth.permission", "pk": 136, "fields": {"name": "Can add course dynamic upgrade deadline configuration", "content_type": 47, "codename": "add_coursedynamicupgradedeadlineconfiguration"}}, {"model": "auth.permission", "pk": 137, "fields": {"name": "Can change course dynamic upgrade deadline configuration", "content_type": 47, "codename": "change_coursedynamicupgradedeadlineconfiguration"}}, {"model": "auth.permission", "pk": 138, "fields": {"name": "Can delete course dynamic upgrade deadline configuration", "content_type": 47, "codename": "delete_coursedynamicupgradedeadlineconfiguration"}}, {"model": "auth.permission", "pk": 139, "fields": {"name": "Can add org dynamic upgrade deadline configuration", "content_type": 48, "codename": "add_orgdynamicupgradedeadlineconfiguration"}}, {"model": "auth.permission", "pk": 140, "fields": {"name": "Can change org dynamic upgrade deadline configuration", "content_type": 48, "codename": "change_orgdynamicupgradedeadlineconfiguration"}}, {"model": "auth.permission", "pk": 141, "fields": {"name": "Can delete org dynamic upgrade deadline configuration", "content_type": 48, "codename": "delete_orgdynamicupgradedeadlineconfiguration"}}, {"model": "auth.permission", "pk": 142, "fields": {"name": "Can add anonymous user id", "content_type": 49, "codename": "add_anonymoususerid"}}, {"model": "auth.permission", "pk": 143, "fields": {"name": "Can change anonymous user id", "content_type": 49, "codename": "change_anonymoususerid"}}, {"model": "auth.permission", "pk": 144, "fields": {"name": "Can delete anonymous user id", "content_type": 49, "codename": "delete_anonymoususerid"}}, {"model": "auth.permission", "pk": 145, "fields": {"name": "Can add user standing", "content_type": 50, "codename": "add_userstanding"}}, {"model": "auth.permission", "pk": 146, "fields": {"name": "Can change user standing", "content_type": 50, "codename": "change_userstanding"}}, {"model": "auth.permission", "pk": 147, "fields": {"name": "Can delete user standing", "content_type": 50, "codename": "delete_userstanding"}}, {"model": "auth.permission", "pk": 148, "fields": {"name": "Can add user profile", "content_type": 51, "codename": "add_userprofile"}}, {"model": "auth.permission", "pk": 149, "fields": {"name": "Can change user profile", "content_type": 51, "codename": "change_userprofile"}}, {"model": "auth.permission", "pk": 150, "fields": {"name": "Can delete user profile", "content_type": 51, "codename": "delete_userprofile"}}, {"model": "auth.permission", "pk": 151, "fields": {"name": "Can deactivate, but NOT delete users", "content_type": 51, "codename": "can_deactivate_users"}}, {"model": "auth.permission", "pk": 152, "fields": {"name": "Can add user signup source", "content_type": 52, "codename": "add_usersignupsource"}}, {"model": "auth.permission", "pk": 153, "fields": {"name": "Can change user signup source", "content_type": 52, "codename": "change_usersignupsource"}}, {"model": "auth.permission", "pk": 154, "fields": {"name": "Can delete user signup source", "content_type": 52, "codename": "delete_usersignupsource"}}, {"model": "auth.permission", "pk": 155, "fields": {"name": "Can add user test group", "content_type": 53, "codename": "add_usertestgroup"}}, {"model": "auth.permission", "pk": 156, "fields": {"name": "Can change user test group", "content_type": 53, "codename": "change_usertestgroup"}}, {"model": "auth.permission", "pk": 157, "fields": {"name": "Can delete user test group", "content_type": 53, "codename": "delete_usertestgroup"}}, {"model": "auth.permission", "pk": 158, "fields": {"name": "Can add registration", "content_type": 54, "codename": "add_registration"}}, {"model": "auth.permission", "pk": 159, "fields": {"name": "Can change registration", "content_type": 54, "codename": "change_registration"}}, {"model": "auth.permission", "pk": 160, "fields": {"name": "Can delete registration", "content_type": 54, "codename": "delete_registration"}}, {"model": "auth.permission", "pk": 161, "fields": {"name": "Can add pending name change", "content_type": 55, "codename": "add_pendingnamechange"}}, {"model": "auth.permission", "pk": 162, "fields": {"name": "Can change pending name change", "content_type": 55, "codename": "change_pendingnamechange"}}, {"model": "auth.permission", "pk": 163, "fields": {"name": "Can delete pending name change", "content_type": 55, "codename": "delete_pendingnamechange"}}, {"model": "auth.permission", "pk": 164, "fields": {"name": "Can add pending email change", "content_type": 56, "codename": "add_pendingemailchange"}}, {"model": "auth.permission", "pk": 165, "fields": {"name": "Can change pending email change", "content_type": 56, "codename": "change_pendingemailchange"}}, {"model": "auth.permission", "pk": 166, "fields": {"name": "Can delete pending email change", "content_type": 56, "codename": "delete_pendingemailchange"}}, {"model": "auth.permission", "pk": 167, "fields": {"name": "Can add password history", "content_type": 57, "codename": "add_passwordhistory"}}, {"model": "auth.permission", "pk": 168, "fields": {"name": "Can change password history", "content_type": 57, "codename": "change_passwordhistory"}}, {"model": "auth.permission", "pk": 169, "fields": {"name": "Can delete password history", "content_type": 57, "codename": "delete_passwordhistory"}}, {"model": "auth.permission", "pk": 170, "fields": {"name": "Can add login failures", "content_type": 58, "codename": "add_loginfailures"}}, {"model": "auth.permission", "pk": 171, "fields": {"name": "Can change login failures", "content_type": 58, "codename": "change_loginfailures"}}, {"model": "auth.permission", "pk": 172, "fields": {"name": "Can delete login failures", "content_type": 58, "codename": "delete_loginfailures"}}, {"model": "auth.permission", "pk": 173, "fields": {"name": "Can add course enrollment", "content_type": 59, "codename": "add_courseenrollment"}}, {"model": "auth.permission", "pk": 174, "fields": {"name": "Can change course enrollment", "content_type": 59, "codename": "change_courseenrollment"}}, {"model": "auth.permission", "pk": 175, "fields": {"name": "Can delete course enrollment", "content_type": 59, "codename": "delete_courseenrollment"}}, {"model": "auth.permission", "pk": 176, "fields": {"name": "Can add manual enrollment audit", "content_type": 60, "codename": "add_manualenrollmentaudit"}}, {"model": "auth.permission", "pk": 177, "fields": {"name": "Can change manual enrollment audit", "content_type": 60, "codename": "change_manualenrollmentaudit"}}, {"model": "auth.permission", "pk": 178, "fields": {"name": "Can delete manual enrollment audit", "content_type": 60, "codename": "delete_manualenrollmentaudit"}}, {"model": "auth.permission", "pk": 179, "fields": {"name": "Can add course enrollment allowed", "content_type": 61, "codename": "add_courseenrollmentallowed"}}, {"model": "auth.permission", "pk": 180, "fields": {"name": "Can change course enrollment allowed", "content_type": 61, "codename": "change_courseenrollmentallowed"}}, {"model": "auth.permission", "pk": 181, "fields": {"name": "Can delete course enrollment allowed", "content_type": 61, "codename": "delete_courseenrollmentallowed"}}, {"model": "auth.permission", "pk": 182, "fields": {"name": "Can add course access role", "content_type": 62, "codename": "add_courseaccessrole"}}, {"model": "auth.permission", "pk": 183, "fields": {"name": "Can change course access role", "content_type": 62, "codename": "change_courseaccessrole"}}, {"model": "auth.permission", "pk": 184, "fields": {"name": "Can delete course access role", "content_type": 62, "codename": "delete_courseaccessrole"}}, {"model": "auth.permission", "pk": 185, "fields": {"name": "Can add dashboard configuration", "content_type": 63, "codename": "add_dashboardconfiguration"}}, {"model": "auth.permission", "pk": 186, "fields": {"name": "Can change dashboard configuration", "content_type": 63, "codename": "change_dashboardconfiguration"}}, {"model": "auth.permission", "pk": 187, "fields": {"name": "Can delete dashboard configuration", "content_type": 63, "codename": "delete_dashboardconfiguration"}}, {"model": "auth.permission", "pk": 188, "fields": {"name": "Can add linked in add to profile configuration", "content_type": 64, "codename": "add_linkedinaddtoprofileconfiguration"}}, {"model": "auth.permission", "pk": 189, "fields": {"name": "Can change linked in add to profile configuration", "content_type": 64, "codename": "change_linkedinaddtoprofileconfiguration"}}, {"model": "auth.permission", "pk": 190, "fields": {"name": "Can delete linked in add to profile configuration", "content_type": 64, "codename": "delete_linkedinaddtoprofileconfiguration"}}, {"model": "auth.permission", "pk": 191, "fields": {"name": "Can add entrance exam configuration", "content_type": 65, "codename": "add_entranceexamconfiguration"}}, {"model": "auth.permission", "pk": 192, "fields": {"name": "Can change entrance exam configuration", "content_type": 65, "codename": "change_entranceexamconfiguration"}}, {"model": "auth.permission", "pk": 193, "fields": {"name": "Can delete entrance exam configuration", "content_type": 65, "codename": "delete_entranceexamconfiguration"}}, {"model": "auth.permission", "pk": 194, "fields": {"name": "Can add language proficiency", "content_type": 66, "codename": "add_languageproficiency"}}, {"model": "auth.permission", "pk": 195, "fields": {"name": "Can change language proficiency", "content_type": 66, "codename": "change_languageproficiency"}}, {"model": "auth.permission", "pk": 196, "fields": {"name": "Can delete language proficiency", "content_type": 66, "codename": "delete_languageproficiency"}}, {"model": "auth.permission", "pk": 197, "fields": {"name": "Can add social link", "content_type": 67, "codename": "add_sociallink"}}, {"model": "auth.permission", "pk": 198, "fields": {"name": "Can change social link", "content_type": 67, "codename": "change_sociallink"}}, {"model": "auth.permission", "pk": 199, "fields": {"name": "Can delete social link", "content_type": 67, "codename": "delete_sociallink"}}, {"model": "auth.permission", "pk": 200, "fields": {"name": "Can add course enrollment attribute", "content_type": 68, "codename": "add_courseenrollmentattribute"}}, {"model": "auth.permission", "pk": 201, "fields": {"name": "Can change course enrollment attribute", "content_type": 68, "codename": "change_courseenrollmentattribute"}}, {"model": "auth.permission", "pk": 202, "fields": {"name": "Can delete course enrollment attribute", "content_type": 68, "codename": "delete_courseenrollmentattribute"}}, {"model": "auth.permission", "pk": 203, "fields": {"name": "Can add enrollment refund configuration", "content_type": 69, "codename": "add_enrollmentrefundconfiguration"}}, {"model": "auth.permission", "pk": 204, "fields": {"name": "Can change enrollment refund configuration", "content_type": 69, "codename": "change_enrollmentrefundconfiguration"}}, {"model": "auth.permission", "pk": 205, "fields": {"name": "Can delete enrollment refund configuration", "content_type": 69, "codename": "delete_enrollmentrefundconfiguration"}}, {"model": "auth.permission", "pk": 206, "fields": {"name": "Can add registration cookie configuration", "content_type": 70, "codename": "add_registrationcookieconfiguration"}}, {"model": "auth.permission", "pk": 207, "fields": {"name": "Can change registration cookie configuration", "content_type": 70, "codename": "change_registrationcookieconfiguration"}}, {"model": "auth.permission", "pk": 208, "fields": {"name": "Can delete registration cookie configuration", "content_type": 70, "codename": "delete_registrationcookieconfiguration"}}, {"model": "auth.permission", "pk": 209, "fields": {"name": "Can add user attribute", "content_type": 71, "codename": "add_userattribute"}}, {"model": "auth.permission", "pk": 210, "fields": {"name": "Can change user attribute", "content_type": 71, "codename": "change_userattribute"}}, {"model": "auth.permission", "pk": 211, "fields": {"name": "Can delete user attribute", "content_type": 71, "codename": "delete_userattribute"}}, {"model": "auth.permission", "pk": 212, "fields": {"name": "Can add logout view configuration", "content_type": 72, "codename": "add_logoutviewconfiguration"}}, {"model": "auth.permission", "pk": 213, "fields": {"name": "Can change logout view configuration", "content_type": 72, "codename": "change_logoutviewconfiguration"}}, {"model": "auth.permission", "pk": 214, "fields": {"name": "Can delete logout view configuration", "content_type": 72, "codename": "delete_logoutviewconfiguration"}}, {"model": "auth.permission", "pk": 215, "fields": {"name": "Can add tracking log", "content_type": 73, "codename": "add_trackinglog"}}, {"model": "auth.permission", "pk": 216, "fields": {"name": "Can change tracking log", "content_type": 73, "codename": "change_trackinglog"}}, {"model": "auth.permission", "pk": 217, "fields": {"name": "Can delete tracking log", "content_type": 73, "codename": "delete_trackinglog"}}, {"model": "auth.permission", "pk": 218, "fields": {"name": "Can add rate limit configuration", "content_type": 74, "codename": "add_ratelimitconfiguration"}}, {"model": "auth.permission", "pk": 219, "fields": {"name": "Can change rate limit configuration", "content_type": 74, "codename": "change_ratelimitconfiguration"}}, {"model": "auth.permission", "pk": 220, "fields": {"name": "Can delete rate limit configuration", "content_type": 74, "codename": "delete_ratelimitconfiguration"}}, {"model": "auth.permission", "pk": 221, "fields": {"name": "Can add certificate whitelist", "content_type": 75, "codename": "add_certificatewhitelist"}}, {"model": "auth.permission", "pk": 222, "fields": {"name": "Can change certificate whitelist", "content_type": 75, "codename": "change_certificatewhitelist"}}, {"model": "auth.permission", "pk": 223, "fields": {"name": "Can delete certificate whitelist", "content_type": 75, "codename": "delete_certificatewhitelist"}}, {"model": "auth.permission", "pk": 224, "fields": {"name": "Can add generated certificate", "content_type": 76, "codename": "add_generatedcertificate"}}, {"model": "auth.permission", "pk": 225, "fields": {"name": "Can change generated certificate", "content_type": 76, "codename": "change_generatedcertificate"}}, {"model": "auth.permission", "pk": 226, "fields": {"name": "Can delete generated certificate", "content_type": 76, "codename": "delete_generatedcertificate"}}, {"model": "auth.permission", "pk": 227, "fields": {"name": "Can add certificate generation history", "content_type": 77, "codename": "add_certificategenerationhistory"}}, {"model": "auth.permission", "pk": 228, "fields": {"name": "Can change certificate generation history", "content_type": 77, "codename": "change_certificategenerationhistory"}}, {"model": "auth.permission", "pk": 229, "fields": {"name": "Can delete certificate generation history", "content_type": 77, "codename": "delete_certificategenerationhistory"}}, {"model": "auth.permission", "pk": 230, "fields": {"name": "Can add certificate invalidation", "content_type": 78, "codename": "add_certificateinvalidation"}}, {"model": "auth.permission", "pk": 231, "fields": {"name": "Can change certificate invalidation", "content_type": 78, "codename": "change_certificateinvalidation"}}, {"model": "auth.permission", "pk": 232, "fields": {"name": "Can delete certificate invalidation", "content_type": 78, "codename": "delete_certificateinvalidation"}}, {"model": "auth.permission", "pk": 233, "fields": {"name": "Can add example certificate set", "content_type": 79, "codename": "add_examplecertificateset"}}, {"model": "auth.permission", "pk": 234, "fields": {"name": "Can change example certificate set", "content_type": 79, "codename": "change_examplecertificateset"}}, {"model": "auth.permission", "pk": 235, "fields": {"name": "Can delete example certificate set", "content_type": 79, "codename": "delete_examplecertificateset"}}, {"model": "auth.permission", "pk": 236, "fields": {"name": "Can add example certificate", "content_type": 80, "codename": "add_examplecertificate"}}, {"model": "auth.permission", "pk": 237, "fields": {"name": "Can change example certificate", "content_type": 80, "codename": "change_examplecertificate"}}, {"model": "auth.permission", "pk": 238, "fields": {"name": "Can delete example certificate", "content_type": 80, "codename": "delete_examplecertificate"}}, {"model": "auth.permission", "pk": 239, "fields": {"name": "Can add certificate generation course setting", "content_type": 81, "codename": "add_certificategenerationcoursesetting"}}, {"model": "auth.permission", "pk": 240, "fields": {"name": "Can change certificate generation course setting", "content_type": 81, "codename": "change_certificategenerationcoursesetting"}}, {"model": "auth.permission", "pk": 241, "fields": {"name": "Can delete certificate generation course setting", "content_type": 81, "codename": "delete_certificategenerationcoursesetting"}}, {"model": "auth.permission", "pk": 242, "fields": {"name": "Can add certificate generation configuration", "content_type": 82, "codename": "add_certificategenerationconfiguration"}}, {"model": "auth.permission", "pk": 243, "fields": {"name": "Can change certificate generation configuration", "content_type": 82, "codename": "change_certificategenerationconfiguration"}}, {"model": "auth.permission", "pk": 244, "fields": {"name": "Can delete certificate generation configuration", "content_type": 82, "codename": "delete_certificategenerationconfiguration"}}, {"model": "auth.permission", "pk": 245, "fields": {"name": "Can add certificate html view configuration", "content_type": 83, "codename": "add_certificatehtmlviewconfiguration"}}, {"model": "auth.permission", "pk": 246, "fields": {"name": "Can change certificate html view configuration", "content_type": 83, "codename": "change_certificatehtmlviewconfiguration"}}, {"model": "auth.permission", "pk": 247, "fields": {"name": "Can delete certificate html view configuration", "content_type": 83, "codename": "delete_certificatehtmlviewconfiguration"}}, {"model": "auth.permission", "pk": 248, "fields": {"name": "Can add certificate template", "content_type": 84, "codename": "add_certificatetemplate"}}, {"model": "auth.permission", "pk": 249, "fields": {"name": "Can change certificate template", "content_type": 84, "codename": "change_certificatetemplate"}}, {"model": "auth.permission", "pk": 250, "fields": {"name": "Can delete certificate template", "content_type": 84, "codename": "delete_certificatetemplate"}}, {"model": "auth.permission", "pk": 251, "fields": {"name": "Can add certificate template asset", "content_type": 85, "codename": "add_certificatetemplateasset"}}, {"model": "auth.permission", "pk": 252, "fields": {"name": "Can change certificate template asset", "content_type": 85, "codename": "change_certificatetemplateasset"}}, {"model": "auth.permission", "pk": 253, "fields": {"name": "Can delete certificate template asset", "content_type": 85, "codename": "delete_certificatetemplateasset"}}, {"model": "auth.permission", "pk": 254, "fields": {"name": "Can add instructor task", "content_type": 86, "codename": "add_instructortask"}}, {"model": "auth.permission", "pk": 255, "fields": {"name": "Can change instructor task", "content_type": 86, "codename": "change_instructortask"}}, {"model": "auth.permission", "pk": 256, "fields": {"name": "Can delete instructor task", "content_type": 86, "codename": "delete_instructortask"}}, {"model": "auth.permission", "pk": 257, "fields": {"name": "Can add grade report setting", "content_type": 87, "codename": "add_gradereportsetting"}}, {"model": "auth.permission", "pk": 258, "fields": {"name": "Can change grade report setting", "content_type": 87, "codename": "change_gradereportsetting"}}, {"model": "auth.permission", "pk": 259, "fields": {"name": "Can delete grade report setting", "content_type": 87, "codename": "delete_gradereportsetting"}}, {"model": "auth.permission", "pk": 260, "fields": {"name": "Can add course user group", "content_type": 88, "codename": "add_courseusergroup"}}, {"model": "auth.permission", "pk": 261, "fields": {"name": "Can change course user group", "content_type": 88, "codename": "change_courseusergroup"}}, {"model": "auth.permission", "pk": 262, "fields": {"name": "Can delete course user group", "content_type": 88, "codename": "delete_courseusergroup"}}, {"model": "auth.permission", "pk": 263, "fields": {"name": "Can add cohort membership", "content_type": 89, "codename": "add_cohortmembership"}}, {"model": "auth.permission", "pk": 264, "fields": {"name": "Can change cohort membership", "content_type": 89, "codename": "change_cohortmembership"}}, {"model": "auth.permission", "pk": 265, "fields": {"name": "Can delete cohort membership", "content_type": 89, "codename": "delete_cohortmembership"}}, {"model": "auth.permission", "pk": 266, "fields": {"name": "Can add course user group partition group", "content_type": 90, "codename": "add_courseusergrouppartitiongroup"}}, {"model": "auth.permission", "pk": 267, "fields": {"name": "Can change course user group partition group", "content_type": 90, "codename": "change_courseusergrouppartitiongroup"}}, {"model": "auth.permission", "pk": 268, "fields": {"name": "Can delete course user group partition group", "content_type": 90, "codename": "delete_courseusergrouppartitiongroup"}}, {"model": "auth.permission", "pk": 269, "fields": {"name": "Can add course cohorts settings", "content_type": 91, "codename": "add_coursecohortssettings"}}, {"model": "auth.permission", "pk": 270, "fields": {"name": "Can change course cohorts settings", "content_type": 91, "codename": "change_coursecohortssettings"}}, {"model": "auth.permission", "pk": 271, "fields": {"name": "Can delete course cohorts settings", "content_type": 91, "codename": "delete_coursecohortssettings"}}, {"model": "auth.permission", "pk": 272, "fields": {"name": "Can add course cohort", "content_type": 92, "codename": "add_coursecohort"}}, {"model": "auth.permission", "pk": 273, "fields": {"name": "Can change course cohort", "content_type": 92, "codename": "change_coursecohort"}}, {"model": "auth.permission", "pk": 274, "fields": {"name": "Can delete course cohort", "content_type": 92, "codename": "delete_coursecohort"}}, {"model": "auth.permission", "pk": 275, "fields": {"name": "Can add unregistered learner cohort assignments", "content_type": 93, "codename": "add_unregisteredlearnercohortassignments"}}, {"model": "auth.permission", "pk": 276, "fields": {"name": "Can change unregistered learner cohort assignments", "content_type": 93, "codename": "change_unregisteredlearnercohortassignments"}}, {"model": "auth.permission", "pk": 277, "fields": {"name": "Can delete unregistered learner cohort assignments", "content_type": 93, "codename": "delete_unregisteredlearnercohortassignments"}}, {"model": "auth.permission", "pk": 278, "fields": {"name": "Can add target", "content_type": 94, "codename": "add_target"}}, {"model": "auth.permission", "pk": 279, "fields": {"name": "Can change target", "content_type": 94, "codename": "change_target"}}, {"model": "auth.permission", "pk": 280, "fields": {"name": "Can delete target", "content_type": 94, "codename": "delete_target"}}, {"model": "auth.permission", "pk": 281, "fields": {"name": "Can add cohort target", "content_type": 95, "codename": "add_cohorttarget"}}, {"model": "auth.permission", "pk": 282, "fields": {"name": "Can change cohort target", "content_type": 95, "codename": "change_cohorttarget"}}, {"model": "auth.permission", "pk": 283, "fields": {"name": "Can delete cohort target", "content_type": 95, "codename": "delete_cohorttarget"}}, {"model": "auth.permission", "pk": 284, "fields": {"name": "Can add course mode target", "content_type": 96, "codename": "add_coursemodetarget"}}, {"model": "auth.permission", "pk": 285, "fields": {"name": "Can change course mode target", "content_type": 96, "codename": "change_coursemodetarget"}}, {"model": "auth.permission", "pk": 286, "fields": {"name": "Can delete course mode target", "content_type": 96, "codename": "delete_coursemodetarget"}}, {"model": "auth.permission", "pk": 287, "fields": {"name": "Can add course email", "content_type": 97, "codename": "add_courseemail"}}, {"model": "auth.permission", "pk": 288, "fields": {"name": "Can change course email", "content_type": 97, "codename": "change_courseemail"}}, {"model": "auth.permission", "pk": 289, "fields": {"name": "Can delete course email", "content_type": 97, "codename": "delete_courseemail"}}, {"model": "auth.permission", "pk": 290, "fields": {"name": "Can add optout", "content_type": 98, "codename": "add_optout"}}, {"model": "auth.permission", "pk": 291, "fields": {"name": "Can change optout", "content_type": 98, "codename": "change_optout"}}, {"model": "auth.permission", "pk": 292, "fields": {"name": "Can delete optout", "content_type": 98, "codename": "delete_optout"}}, {"model": "auth.permission", "pk": 293, "fields": {"name": "Can add course email template", "content_type": 99, "codename": "add_courseemailtemplate"}}, {"model": "auth.permission", "pk": 294, "fields": {"name": "Can change course email template", "content_type": 99, "codename": "change_courseemailtemplate"}}, {"model": "auth.permission", "pk": 295, "fields": {"name": "Can delete course email template", "content_type": 99, "codename": "delete_courseemailtemplate"}}, {"model": "auth.permission", "pk": 296, "fields": {"name": "Can add course authorization", "content_type": 100, "codename": "add_courseauthorization"}}, {"model": "auth.permission", "pk": 297, "fields": {"name": "Can change course authorization", "content_type": 100, "codename": "change_courseauthorization"}}, {"model": "auth.permission", "pk": 298, "fields": {"name": "Can delete course authorization", "content_type": 100, "codename": "delete_courseauthorization"}}, {"model": "auth.permission", "pk": 299, "fields": {"name": "Can add bulk email flag", "content_type": 101, "codename": "add_bulkemailflag"}}, {"model": "auth.permission", "pk": 300, "fields": {"name": "Can change bulk email flag", "content_type": 101, "codename": "change_bulkemailflag"}}, {"model": "auth.permission", "pk": 301, "fields": {"name": "Can delete bulk email flag", "content_type": 101, "codename": "delete_bulkemailflag"}}, {"model": "auth.permission", "pk": 302, "fields": {"name": "Can add branding info config", "content_type": 102, "codename": "add_brandinginfoconfig"}}, {"model": "auth.permission", "pk": 303, "fields": {"name": "Can change branding info config", "content_type": 102, "codename": "change_brandinginfoconfig"}}, {"model": "auth.permission", "pk": 304, "fields": {"name": "Can delete branding info config", "content_type": 102, "codename": "delete_brandinginfoconfig"}}, {"model": "auth.permission", "pk": 305, "fields": {"name": "Can add branding api config", "content_type": 103, "codename": "add_brandingapiconfig"}}, {"model": "auth.permission", "pk": 306, "fields": {"name": "Can change branding api config", "content_type": 103, "codename": "change_brandingapiconfig"}}, {"model": "auth.permission", "pk": 307, "fields": {"name": "Can delete branding api config", "content_type": 103, "codename": "delete_brandingapiconfig"}}, {"model": "auth.permission", "pk": 308, "fields": {"name": "Can add visible blocks", "content_type": 104, "codename": "add_visibleblocks"}}, {"model": "auth.permission", "pk": 309, "fields": {"name": "Can change visible blocks", "content_type": 104, "codename": "change_visibleblocks"}}, {"model": "auth.permission", "pk": 310, "fields": {"name": "Can delete visible blocks", "content_type": 104, "codename": "delete_visibleblocks"}}, {"model": "auth.permission", "pk": 311, "fields": {"name": "Can add persistent subsection grade", "content_type": 105, "codename": "add_persistentsubsectiongrade"}}, {"model": "auth.permission", "pk": 312, "fields": {"name": "Can change persistent subsection grade", "content_type": 105, "codename": "change_persistentsubsectiongrade"}}, {"model": "auth.permission", "pk": 313, "fields": {"name": "Can delete persistent subsection grade", "content_type": 105, "codename": "delete_persistentsubsectiongrade"}}, {"model": "auth.permission", "pk": 314, "fields": {"name": "Can add persistent course grade", "content_type": 106, "codename": "add_persistentcoursegrade"}}, {"model": "auth.permission", "pk": 315, "fields": {"name": "Can change persistent course grade", "content_type": 106, "codename": "change_persistentcoursegrade"}}, {"model": "auth.permission", "pk": 316, "fields": {"name": "Can delete persistent course grade", "content_type": 106, "codename": "delete_persistentcoursegrade"}}, {"model": "auth.permission", "pk": 317, "fields": {"name": "Can add persistent subsection grade override", "content_type": 107, "codename": "add_persistentsubsectiongradeoverride"}}, {"model": "auth.permission", "pk": 318, "fields": {"name": "Can change persistent subsection grade override", "content_type": 107, "codename": "change_persistentsubsectiongradeoverride"}}, {"model": "auth.permission", "pk": 319, "fields": {"name": "Can delete persistent subsection grade override", "content_type": 107, "codename": "delete_persistentsubsectiongradeoverride"}}, {"model": "auth.permission", "pk": 320, "fields": {"name": "Can add persistent grades enabled flag", "content_type": 108, "codename": "add_persistentgradesenabledflag"}}, {"model": "auth.permission", "pk": 321, "fields": {"name": "Can change persistent grades enabled flag", "content_type": 108, "codename": "change_persistentgradesenabledflag"}}, {"model": "auth.permission", "pk": 322, "fields": {"name": "Can delete persistent grades enabled flag", "content_type": 108, "codename": "delete_persistentgradesenabledflag"}}, {"model": "auth.permission", "pk": 323, "fields": {"name": "Can add course persistent grades flag", "content_type": 109, "codename": "add_coursepersistentgradesflag"}}, {"model": "auth.permission", "pk": 324, "fields": {"name": "Can change course persistent grades flag", "content_type": 109, "codename": "change_coursepersistentgradesflag"}}, {"model": "auth.permission", "pk": 325, "fields": {"name": "Can delete course persistent grades flag", "content_type": 109, "codename": "delete_coursepersistentgradesflag"}}, {"model": "auth.permission", "pk": 326, "fields": {"name": "Can add compute grades setting", "content_type": 110, "codename": "add_computegradessetting"}}, {"model": "auth.permission", "pk": 327, "fields": {"name": "Can change compute grades setting", "content_type": 110, "codename": "change_computegradessetting"}}, {"model": "auth.permission", "pk": 328, "fields": {"name": "Can delete compute grades setting", "content_type": 110, "codename": "delete_computegradessetting"}}, {"model": "auth.permission", "pk": 329, "fields": {"name": "Can add external auth map", "content_type": 111, "codename": "add_externalauthmap"}}, {"model": "auth.permission", "pk": 330, "fields": {"name": "Can change external auth map", "content_type": 111, "codename": "change_externalauthmap"}}, {"model": "auth.permission", "pk": 331, "fields": {"name": "Can delete external auth map", "content_type": 111, "codename": "delete_externalauthmap"}}, {"model": "auth.permission", "pk": 332, "fields": {"name": "Can add nonce", "content_type": 112, "codename": "add_nonce"}}, {"model": "auth.permission", "pk": 333, "fields": {"name": "Can change nonce", "content_type": 112, "codename": "change_nonce"}}, {"model": "auth.permission", "pk": 334, "fields": {"name": "Can delete nonce", "content_type": 112, "codename": "delete_nonce"}}, {"model": "auth.permission", "pk": 335, "fields": {"name": "Can add association", "content_type": 113, "codename": "add_association"}}, {"model": "auth.permission", "pk": 336, "fields": {"name": "Can change association", "content_type": 113, "codename": "change_association"}}, {"model": "auth.permission", "pk": 337, "fields": {"name": "Can delete association", "content_type": 113, "codename": "delete_association"}}, {"model": "auth.permission", "pk": 338, "fields": {"name": "Can add user open id", "content_type": 114, "codename": "add_useropenid"}}, {"model": "auth.permission", "pk": 339, "fields": {"name": "Can change user open id", "content_type": 114, "codename": "change_useropenid"}}, {"model": "auth.permission", "pk": 340, "fields": {"name": "Can delete user open id", "content_type": 114, "codename": "delete_useropenid"}}, {"model": "auth.permission", "pk": 341, "fields": {"name": "The OpenID has been verified", "content_type": 114, "codename": "account_verified"}}, {"model": "auth.permission", "pk": 342, "fields": {"name": "Can add client", "content_type": 115, "codename": "add_client"}}, {"model": "auth.permission", "pk": 343, "fields": {"name": "Can change client", "content_type": 115, "codename": "change_client"}}, {"model": "auth.permission", "pk": 344, "fields": {"name": "Can delete client", "content_type": 115, "codename": "delete_client"}}, {"model": "auth.permission", "pk": 345, "fields": {"name": "Can add grant", "content_type": 116, "codename": "add_grant"}}, {"model": "auth.permission", "pk": 346, "fields": {"name": "Can change grant", "content_type": 116, "codename": "change_grant"}}, {"model": "auth.permission", "pk": 347, "fields": {"name": "Can delete grant", "content_type": 116, "codename": "delete_grant"}}, {"model": "auth.permission", "pk": 348, "fields": {"name": "Can add access token", "content_type": 117, "codename": "add_accesstoken"}}, {"model": "auth.permission", "pk": 349, "fields": {"name": "Can change access token", "content_type": 117, "codename": "change_accesstoken"}}, {"model": "auth.permission", "pk": 350, "fields": {"name": "Can delete access token", "content_type": 117, "codename": "delete_accesstoken"}}, {"model": "auth.permission", "pk": 351, "fields": {"name": "Can add refresh token", "content_type": 118, "codename": "add_refreshtoken"}}, {"model": "auth.permission", "pk": 352, "fields": {"name": "Can change refresh token", "content_type": 118, "codename": "change_refreshtoken"}}, {"model": "auth.permission", "pk": 353, "fields": {"name": "Can delete refresh token", "content_type": 118, "codename": "delete_refreshtoken"}}, {"model": "auth.permission", "pk": 354, "fields": {"name": "Can add trusted client", "content_type": 119, "codename": "add_trustedclient"}}, {"model": "auth.permission", "pk": 355, "fields": {"name": "Can change trusted client", "content_type": 119, "codename": "change_trustedclient"}}, {"model": "auth.permission", "pk": 356, "fields": {"name": "Can delete trusted client", "content_type": 119, "codename": "delete_trustedclient"}}, {"model": "auth.permission", "pk": 357, "fields": {"name": "Can add application", "content_type": 120, "codename": "add_application"}}, {"model": "auth.permission", "pk": 358, "fields": {"name": "Can change application", "content_type": 120, "codename": "change_application"}}, {"model": "auth.permission", "pk": 359, "fields": {"name": "Can delete application", "content_type": 120, "codename": "delete_application"}}, {"model": "auth.permission", "pk": 360, "fields": {"name": "Can add grant", "content_type": 121, "codename": "add_grant"}}, {"model": "auth.permission", "pk": 361, "fields": {"name": "Can change grant", "content_type": 121, "codename": "change_grant"}}, {"model": "auth.permission", "pk": 362, "fields": {"name": "Can delete grant", "content_type": 121, "codename": "delete_grant"}}, {"model": "auth.permission", "pk": 363, "fields": {"name": "Can add access token", "content_type": 122, "codename": "add_accesstoken"}}, {"model": "auth.permission", "pk": 364, "fields": {"name": "Can change access token", "content_type": 122, "codename": "change_accesstoken"}}, {"model": "auth.permission", "pk": 365, "fields": {"name": "Can delete access token", "content_type": 122, "codename": "delete_accesstoken"}}, {"model": "auth.permission", "pk": 366, "fields": {"name": "Can add refresh token", "content_type": 123, "codename": "add_refreshtoken"}}, {"model": "auth.permission", "pk": 367, "fields": {"name": "Can change refresh token", "content_type": 123, "codename": "change_refreshtoken"}}, {"model": "auth.permission", "pk": 368, "fields": {"name": "Can delete refresh token", "content_type": 123, "codename": "delete_refreshtoken"}}, {"model": "auth.permission", "pk": 369, "fields": {"name": "Can add restricted application", "content_type": 124, "codename": "add_restrictedapplication"}}, {"model": "auth.permission", "pk": 370, "fields": {"name": "Can change restricted application", "content_type": 124, "codename": "change_restrictedapplication"}}, {"model": "auth.permission", "pk": 371, "fields": {"name": "Can delete restricted application", "content_type": 124, "codename": "delete_restrictedapplication"}}, {"model": "auth.permission", "pk": 372, "fields": {"name": "Can add Provider Configuration (OAuth)", "content_type": 125, "codename": "add_oauth2providerconfig"}}, {"model": "auth.permission", "pk": 373, "fields": {"name": "Can change Provider Configuration (OAuth)", "content_type": 125, "codename": "change_oauth2providerconfig"}}, {"model": "auth.permission", "pk": 374, "fields": {"name": "Can delete Provider Configuration (OAuth)", "content_type": 125, "codename": "delete_oauth2providerconfig"}}, {"model": "auth.permission", "pk": 375, "fields": {"name": "Can add Provider Configuration (SAML IdP)", "content_type": 126, "codename": "add_samlproviderconfig"}}, {"model": "auth.permission", "pk": 376, "fields": {"name": "Can change Provider Configuration (SAML IdP)", "content_type": 126, "codename": "change_samlproviderconfig"}}, {"model": "auth.permission", "pk": 377, "fields": {"name": "Can delete Provider Configuration (SAML IdP)", "content_type": 126, "codename": "delete_samlproviderconfig"}}, {"model": "auth.permission", "pk": 378, "fields": {"name": "Can add SAML Configuration", "content_type": 127, "codename": "add_samlconfiguration"}}, {"model": "auth.permission", "pk": 379, "fields": {"name": "Can change SAML Configuration", "content_type": 127, "codename": "change_samlconfiguration"}}, {"model": "auth.permission", "pk": 380, "fields": {"name": "Can delete SAML Configuration", "content_type": 127, "codename": "delete_samlconfiguration"}}, {"model": "auth.permission", "pk": 381, "fields": {"name": "Can add SAML Provider Data", "content_type": 128, "codename": "add_samlproviderdata"}}, {"model": "auth.permission", "pk": 382, "fields": {"name": "Can change SAML Provider Data", "content_type": 128, "codename": "change_samlproviderdata"}}, {"model": "auth.permission", "pk": 383, "fields": {"name": "Can delete SAML Provider Data", "content_type": 128, "codename": "delete_samlproviderdata"}}, {"model": "auth.permission", "pk": 384, "fields": {"name": "Can add Provider Configuration (LTI)", "content_type": 129, "codename": "add_ltiproviderconfig"}}, {"model": "auth.permission", "pk": 385, "fields": {"name": "Can change Provider Configuration (LTI)", "content_type": 129, "codename": "change_ltiproviderconfig"}}, {"model": "auth.permission", "pk": 386, "fields": {"name": "Can delete Provider Configuration (LTI)", "content_type": 129, "codename": "delete_ltiproviderconfig"}}, {"model": "auth.permission", "pk": 387, "fields": {"name": "Can add Provider API Permission", "content_type": 130, "codename": "add_providerapipermissions"}}, {"model": "auth.permission", "pk": 388, "fields": {"name": "Can change Provider API Permission", "content_type": 130, "codename": "change_providerapipermissions"}}, {"model": "auth.permission", "pk": 389, "fields": {"name": "Can delete Provider API Permission", "content_type": 130, "codename": "delete_providerapipermissions"}}, {"model": "auth.permission", "pk": 390, "fields": {"name": "Can add nonce", "content_type": 131, "codename": "add_nonce"}}, {"model": "auth.permission", "pk": 391, "fields": {"name": "Can change nonce", "content_type": 131, "codename": "change_nonce"}}, {"model": "auth.permission", "pk": 392, "fields": {"name": "Can delete nonce", "content_type": 131, "codename": "delete_nonce"}}, {"model": "auth.permission", "pk": 393, "fields": {"name": "Can add scope", "content_type": 132, "codename": "add_scope"}}, {"model": "auth.permission", "pk": 394, "fields": {"name": "Can change scope", "content_type": 132, "codename": "change_scope"}}, {"model": "auth.permission", "pk": 395, "fields": {"name": "Can delete scope", "content_type": 132, "codename": "delete_scope"}}, {"model": "auth.permission", "pk": 396, "fields": {"name": "Can add resource", "content_type": 132, "codename": "add_resource"}}, {"model": "auth.permission", "pk": 397, "fields": {"name": "Can change resource", "content_type": 132, "codename": "change_resource"}}, {"model": "auth.permission", "pk": 398, "fields": {"name": "Can delete resource", "content_type": 132, "codename": "delete_resource"}}, {"model": "auth.permission", "pk": 399, "fields": {"name": "Can add consumer", "content_type": 133, "codename": "add_consumer"}}, {"model": "auth.permission", "pk": 400, "fields": {"name": "Can change consumer", "content_type": 133, "codename": "change_consumer"}}, {"model": "auth.permission", "pk": 401, "fields": {"name": "Can delete consumer", "content_type": 133, "codename": "delete_consumer"}}, {"model": "auth.permission", "pk": 402, "fields": {"name": "Can add token", "content_type": 134, "codename": "add_token"}}, {"model": "auth.permission", "pk": 403, "fields": {"name": "Can change token", "content_type": 134, "codename": "change_token"}}, {"model": "auth.permission", "pk": 404, "fields": {"name": "Can delete token", "content_type": 134, "codename": "delete_token"}}, {"model": "auth.permission", "pk": 405, "fields": {"name": "Can add article", "content_type": 136, "codename": "add_article"}}, {"model": "auth.permission", "pk": 406, "fields": {"name": "Can change article", "content_type": 136, "codename": "change_article"}}, {"model": "auth.permission", "pk": 407, "fields": {"name": "Can delete article", "content_type": 136, "codename": "delete_article"}}, {"model": "auth.permission", "pk": 408, "fields": {"name": "Can edit all articles and lock/unlock/restore", "content_type": 136, "codename": "moderate"}}, {"model": "auth.permission", "pk": 409, "fields": {"name": "Can change ownership of any article", "content_type": 136, "codename": "assign"}}, {"model": "auth.permission", "pk": 410, "fields": {"name": "Can assign permissions to other users", "content_type": 136, "codename": "grant"}}, {"model": "auth.permission", "pk": 411, "fields": {"name": "Can add Article for object", "content_type": 137, "codename": "add_articleforobject"}}, {"model": "auth.permission", "pk": 412, "fields": {"name": "Can change Article for object", "content_type": 137, "codename": "change_articleforobject"}}, {"model": "auth.permission", "pk": 413, "fields": {"name": "Can delete Article for object", "content_type": 137, "codename": "delete_articleforobject"}}, {"model": "auth.permission", "pk": 414, "fields": {"name": "Can add article revision", "content_type": 138, "codename": "add_articlerevision"}}, {"model": "auth.permission", "pk": 415, "fields": {"name": "Can change article revision", "content_type": 138, "codename": "change_articlerevision"}}, {"model": "auth.permission", "pk": 416, "fields": {"name": "Can delete article revision", "content_type": 138, "codename": "delete_articlerevision"}}, {"model": "auth.permission", "pk": 417, "fields": {"name": "Can add article plugin", "content_type": 139, "codename": "add_articleplugin"}}, {"model": "auth.permission", "pk": 418, "fields": {"name": "Can change article plugin", "content_type": 139, "codename": "change_articleplugin"}}, {"model": "auth.permission", "pk": 419, "fields": {"name": "Can delete article plugin", "content_type": 139, "codename": "delete_articleplugin"}}, {"model": "auth.permission", "pk": 420, "fields": {"name": "Can add reusable plugin", "content_type": 140, "codename": "add_reusableplugin"}}, {"model": "auth.permission", "pk": 421, "fields": {"name": "Can change reusable plugin", "content_type": 140, "codename": "change_reusableplugin"}}, {"model": "auth.permission", "pk": 422, "fields": {"name": "Can delete reusable plugin", "content_type": 140, "codename": "delete_reusableplugin"}}, {"model": "auth.permission", "pk": 423, "fields": {"name": "Can add simple plugin", "content_type": 141, "codename": "add_simpleplugin"}}, {"model": "auth.permission", "pk": 424, "fields": {"name": "Can change simple plugin", "content_type": 141, "codename": "change_simpleplugin"}}, {"model": "auth.permission", "pk": 425, "fields": {"name": "Can delete simple plugin", "content_type": 141, "codename": "delete_simpleplugin"}}, {"model": "auth.permission", "pk": 426, "fields": {"name": "Can add revision plugin", "content_type": 142, "codename": "add_revisionplugin"}}, {"model": "auth.permission", "pk": 427, "fields": {"name": "Can change revision plugin", "content_type": 142, "codename": "change_revisionplugin"}}, {"model": "auth.permission", "pk": 428, "fields": {"name": "Can delete revision plugin", "content_type": 142, "codename": "delete_revisionplugin"}}, {"model": "auth.permission", "pk": 429, "fields": {"name": "Can add revision plugin revision", "content_type": 143, "codename": "add_revisionpluginrevision"}}, {"model": "auth.permission", "pk": 430, "fields": {"name": "Can change revision plugin revision", "content_type": 143, "codename": "change_revisionpluginrevision"}}, {"model": "auth.permission", "pk": 431, "fields": {"name": "Can delete revision plugin revision", "content_type": 143, "codename": "delete_revisionpluginrevision"}}, {"model": "auth.permission", "pk": 432, "fields": {"name": "Can add URL path", "content_type": 144, "codename": "add_urlpath"}}, {"model": "auth.permission", "pk": 433, "fields": {"name": "Can change URL path", "content_type": 144, "codename": "change_urlpath"}}, {"model": "auth.permission", "pk": 434, "fields": {"name": "Can delete URL path", "content_type": 144, "codename": "delete_urlpath"}}, {"model": "auth.permission", "pk": 435, "fields": {"name": "Can add type", "content_type": 145, "codename": "add_notificationtype"}}, {"model": "auth.permission", "pk": 436, "fields": {"name": "Can change type", "content_type": 145, "codename": "change_notificationtype"}}, {"model": "auth.permission", "pk": 437, "fields": {"name": "Can delete type", "content_type": 145, "codename": "delete_notificationtype"}}, {"model": "auth.permission", "pk": 438, "fields": {"name": "Can add settings", "content_type": 146, "codename": "add_settings"}}, {"model": "auth.permission", "pk": 439, "fields": {"name": "Can change settings", "content_type": 146, "codename": "change_settings"}}, {"model": "auth.permission", "pk": 440, "fields": {"name": "Can delete settings", "content_type": 146, "codename": "delete_settings"}}, {"model": "auth.permission", "pk": 441, "fields": {"name": "Can add subscription", "content_type": 147, "codename": "add_subscription"}}, {"model": "auth.permission", "pk": 442, "fields": {"name": "Can change subscription", "content_type": 147, "codename": "change_subscription"}}, {"model": "auth.permission", "pk": 443, "fields": {"name": "Can delete subscription", "content_type": 147, "codename": "delete_subscription"}}, {"model": "auth.permission", "pk": 444, "fields": {"name": "Can add notification", "content_type": 148, "codename": "add_notification"}}, {"model": "auth.permission", "pk": 445, "fields": {"name": "Can change notification", "content_type": 148, "codename": "change_notification"}}, {"model": "auth.permission", "pk": 446, "fields": {"name": "Can delete notification", "content_type": 148, "codename": "delete_notification"}}, {"model": "auth.permission", "pk": 447, "fields": {"name": "Can add log entry", "content_type": 149, "codename": "add_logentry"}}, {"model": "auth.permission", "pk": 448, "fields": {"name": "Can change log entry", "content_type": 149, "codename": "change_logentry"}}, {"model": "auth.permission", "pk": 449, "fields": {"name": "Can delete log entry", "content_type": 149, "codename": "delete_logentry"}}, {"model": "auth.permission", "pk": 450, "fields": {"name": "Can add role", "content_type": 150, "codename": "add_role"}}, {"model": "auth.permission", "pk": 451, "fields": {"name": "Can change role", "content_type": 150, "codename": "change_role"}}, {"model": "auth.permission", "pk": 452, "fields": {"name": "Can delete role", "content_type": 150, "codename": "delete_role"}}, {"model": "auth.permission", "pk": 453, "fields": {"name": "Can add permission", "content_type": 151, "codename": "add_permission"}}, {"model": "auth.permission", "pk": 454, "fields": {"name": "Can change permission", "content_type": 151, "codename": "change_permission"}}, {"model": "auth.permission", "pk": 455, "fields": {"name": "Can delete permission", "content_type": 151, "codename": "delete_permission"}}, {"model": "auth.permission", "pk": 456, "fields": {"name": "Can add forums config", "content_type": 152, "codename": "add_forumsconfig"}}, {"model": "auth.permission", "pk": 457, "fields": {"name": "Can change forums config", "content_type": 152, "codename": "change_forumsconfig"}}, {"model": "auth.permission", "pk": 458, "fields": {"name": "Can delete forums config", "content_type": 152, "codename": "delete_forumsconfig"}}, {"model": "auth.permission", "pk": 459, "fields": {"name": "Can add course discussion settings", "content_type": 153, "codename": "add_coursediscussionsettings"}}, {"model": "auth.permission", "pk": 460, "fields": {"name": "Can change course discussion settings", "content_type": 153, "codename": "change_coursediscussionsettings"}}, {"model": "auth.permission", "pk": 461, "fields": {"name": "Can delete course discussion settings", "content_type": 153, "codename": "delete_coursediscussionsettings"}}, {"model": "auth.permission", "pk": 462, "fields": {"name": "Can add note", "content_type": 154, "codename": "add_note"}}, {"model": "auth.permission", "pk": 463, "fields": {"name": "Can change note", "content_type": 154, "codename": "change_note"}}, {"model": "auth.permission", "pk": 464, "fields": {"name": "Can delete note", "content_type": 154, "codename": "delete_note"}}, {"model": "auth.permission", "pk": 465, "fields": {"name": "Can add splash config", "content_type": 155, "codename": "add_splashconfig"}}, {"model": "auth.permission", "pk": 466, "fields": {"name": "Can change splash config", "content_type": 155, "codename": "change_splashconfig"}}, {"model": "auth.permission", "pk": 467, "fields": {"name": "Can delete splash config", "content_type": 155, "codename": "delete_splashconfig"}}, {"model": "auth.permission", "pk": 468, "fields": {"name": "Can add user preference", "content_type": 156, "codename": "add_userpreference"}}, {"model": "auth.permission", "pk": 469, "fields": {"name": "Can change user preference", "content_type": 156, "codename": "change_userpreference"}}, {"model": "auth.permission", "pk": 470, "fields": {"name": "Can delete user preference", "content_type": 156, "codename": "delete_userpreference"}}, {"model": "auth.permission", "pk": 471, "fields": {"name": "Can add user course tag", "content_type": 157, "codename": "add_usercoursetag"}}, {"model": "auth.permission", "pk": 472, "fields": {"name": "Can change user course tag", "content_type": 157, "codename": "change_usercoursetag"}}, {"model": "auth.permission", "pk": 473, "fields": {"name": "Can delete user course tag", "content_type": 157, "codename": "delete_usercoursetag"}}, {"model": "auth.permission", "pk": 474, "fields": {"name": "Can add user org tag", "content_type": 158, "codename": "add_userorgtag"}}, {"model": "auth.permission", "pk": 475, "fields": {"name": "Can change user org tag", "content_type": 158, "codename": "change_userorgtag"}}, {"model": "auth.permission", "pk": 476, "fields": {"name": "Can delete user org tag", "content_type": 158, "codename": "delete_userorgtag"}}, {"model": "auth.permission", "pk": 477, "fields": {"name": "Can add order", "content_type": 159, "codename": "add_order"}}, {"model": "auth.permission", "pk": 478, "fields": {"name": "Can change order", "content_type": 159, "codename": "change_order"}}, {"model": "auth.permission", "pk": 479, "fields": {"name": "Can delete order", "content_type": 159, "codename": "delete_order"}}, {"model": "auth.permission", "pk": 480, "fields": {"name": "Can add order item", "content_type": 160, "codename": "add_orderitem"}}, {"model": "auth.permission", "pk": 481, "fields": {"name": "Can change order item", "content_type": 160, "codename": "change_orderitem"}}, {"model": "auth.permission", "pk": 482, "fields": {"name": "Can delete order item", "content_type": 160, "codename": "delete_orderitem"}}, {"model": "auth.permission", "pk": 483, "fields": {"name": "Can add invoice", "content_type": 161, "codename": "add_invoice"}}, {"model": "auth.permission", "pk": 484, "fields": {"name": "Can change invoice", "content_type": 161, "codename": "change_invoice"}}, {"model": "auth.permission", "pk": 485, "fields": {"name": "Can delete invoice", "content_type": 161, "codename": "delete_invoice"}}, {"model": "auth.permission", "pk": 486, "fields": {"name": "Can add invoice transaction", "content_type": 162, "codename": "add_invoicetransaction"}}, {"model": "auth.permission", "pk": 487, "fields": {"name": "Can change invoice transaction", "content_type": 162, "codename": "change_invoicetransaction"}}, {"model": "auth.permission", "pk": 488, "fields": {"name": "Can delete invoice transaction", "content_type": 162, "codename": "delete_invoicetransaction"}}, {"model": "auth.permission", "pk": 489, "fields": {"name": "Can add invoice item", "content_type": 163, "codename": "add_invoiceitem"}}, {"model": "auth.permission", "pk": 490, "fields": {"name": "Can change invoice item", "content_type": 163, "codename": "change_invoiceitem"}}, {"model": "auth.permission", "pk": 491, "fields": {"name": "Can delete invoice item", "content_type": 163, "codename": "delete_invoiceitem"}}, {"model": "auth.permission", "pk": 492, "fields": {"name": "Can add course registration code invoice item", "content_type": 164, "codename": "add_courseregistrationcodeinvoiceitem"}}, {"model": "auth.permission", "pk": 493, "fields": {"name": "Can change course registration code invoice item", "content_type": 164, "codename": "change_courseregistrationcodeinvoiceitem"}}, {"model": "auth.permission", "pk": 494, "fields": {"name": "Can delete course registration code invoice item", "content_type": 164, "codename": "delete_courseregistrationcodeinvoiceitem"}}, {"model": "auth.permission", "pk": 495, "fields": {"name": "Can add invoice history", "content_type": 165, "codename": "add_invoicehistory"}}, {"model": "auth.permission", "pk": 496, "fields": {"name": "Can change invoice history", "content_type": 165, "codename": "change_invoicehistory"}}, {"model": "auth.permission", "pk": 497, "fields": {"name": "Can delete invoice history", "content_type": 165, "codename": "delete_invoicehistory"}}, {"model": "auth.permission", "pk": 498, "fields": {"name": "Can add course registration code", "content_type": 166, "codename": "add_courseregistrationcode"}}, {"model": "auth.permission", "pk": 499, "fields": {"name": "Can change course registration code", "content_type": 166, "codename": "change_courseregistrationcode"}}, {"model": "auth.permission", "pk": 500, "fields": {"name": "Can delete course registration code", "content_type": 166, "codename": "delete_courseregistrationcode"}}, {"model": "auth.permission", "pk": 501, "fields": {"name": "Can add registration code redemption", "content_type": 167, "codename": "add_registrationcoderedemption"}}, {"model": "auth.permission", "pk": 502, "fields": {"name": "Can change registration code redemption", "content_type": 167, "codename": "change_registrationcoderedemption"}}, {"model": "auth.permission", "pk": 503, "fields": {"name": "Can delete registration code redemption", "content_type": 167, "codename": "delete_registrationcoderedemption"}}, {"model": "auth.permission", "pk": 504, "fields": {"name": "Can add coupon", "content_type": 168, "codename": "add_coupon"}}, {"model": "auth.permission", "pk": 505, "fields": {"name": "Can change coupon", "content_type": 168, "codename": "change_coupon"}}, {"model": "auth.permission", "pk": 506, "fields": {"name": "Can delete coupon", "content_type": 168, "codename": "delete_coupon"}}, {"model": "auth.permission", "pk": 507, "fields": {"name": "Can add coupon redemption", "content_type": 169, "codename": "add_couponredemption"}}, {"model": "auth.permission", "pk": 508, "fields": {"name": "Can change coupon redemption", "content_type": 169, "codename": "change_couponredemption"}}, {"model": "auth.permission", "pk": 509, "fields": {"name": "Can delete coupon redemption", "content_type": 169, "codename": "delete_couponredemption"}}, {"model": "auth.permission", "pk": 510, "fields": {"name": "Can add paid course registration", "content_type": 170, "codename": "add_paidcourseregistration"}}, {"model": "auth.permission", "pk": 511, "fields": {"name": "Can change paid course registration", "content_type": 170, "codename": "change_paidcourseregistration"}}, {"model": "auth.permission", "pk": 512, "fields": {"name": "Can delete paid course registration", "content_type": 170, "codename": "delete_paidcourseregistration"}}, {"model": "auth.permission", "pk": 513, "fields": {"name": "Can add course reg code item", "content_type": 171, "codename": "add_courseregcodeitem"}}, {"model": "auth.permission", "pk": 514, "fields": {"name": "Can change course reg code item", "content_type": 171, "codename": "change_courseregcodeitem"}}, {"model": "auth.permission", "pk": 515, "fields": {"name": "Can delete course reg code item", "content_type": 171, "codename": "delete_courseregcodeitem"}}, {"model": "auth.permission", "pk": 516, "fields": {"name": "Can add course reg code item annotation", "content_type": 172, "codename": "add_courseregcodeitemannotation"}}, {"model": "auth.permission", "pk": 517, "fields": {"name": "Can change course reg code item annotation", "content_type": 172, "codename": "change_courseregcodeitemannotation"}}, {"model": "auth.permission", "pk": 518, "fields": {"name": "Can delete course reg code item annotation", "content_type": 172, "codename": "delete_courseregcodeitemannotation"}}, {"model": "auth.permission", "pk": 519, "fields": {"name": "Can add paid course registration annotation", "content_type": 173, "codename": "add_paidcourseregistrationannotation"}}, {"model": "auth.permission", "pk": 520, "fields": {"name": "Can change paid course registration annotation", "content_type": 173, "codename": "change_paidcourseregistrationannotation"}}, {"model": "auth.permission", "pk": 521, "fields": {"name": "Can delete paid course registration annotation", "content_type": 173, "codename": "delete_paidcourseregistrationannotation"}}, {"model": "auth.permission", "pk": 522, "fields": {"name": "Can add certificate item", "content_type": 174, "codename": "add_certificateitem"}}, {"model": "auth.permission", "pk": 523, "fields": {"name": "Can change certificate item", "content_type": 174, "codename": "change_certificateitem"}}, {"model": "auth.permission", "pk": 524, "fields": {"name": "Can delete certificate item", "content_type": 174, "codename": "delete_certificateitem"}}, {"model": "auth.permission", "pk": 525, "fields": {"name": "Can add donation configuration", "content_type": 175, "codename": "add_donationconfiguration"}}, {"model": "auth.permission", "pk": 526, "fields": {"name": "Can change donation configuration", "content_type": 175, "codename": "change_donationconfiguration"}}, {"model": "auth.permission", "pk": 527, "fields": {"name": "Can delete donation configuration", "content_type": 175, "codename": "delete_donationconfiguration"}}, {"model": "auth.permission", "pk": 528, "fields": {"name": "Can add donation", "content_type": 176, "codename": "add_donation"}}, {"model": "auth.permission", "pk": 529, "fields": {"name": "Can change donation", "content_type": 176, "codename": "change_donation"}}, {"model": "auth.permission", "pk": 530, "fields": {"name": "Can delete donation", "content_type": 176, "codename": "delete_donation"}}, {"model": "auth.permission", "pk": 531, "fields": {"name": "Can add course mode", "content_type": 177, "codename": "add_coursemode"}}, {"model": "auth.permission", "pk": 532, "fields": {"name": "Can change course mode", "content_type": 177, "codename": "change_coursemode"}}, {"model": "auth.permission", "pk": 533, "fields": {"name": "Can delete course mode", "content_type": 177, "codename": "delete_coursemode"}}, {"model": "auth.permission", "pk": 534, "fields": {"name": "Can add course modes archive", "content_type": 178, "codename": "add_coursemodesarchive"}}, {"model": "auth.permission", "pk": 535, "fields": {"name": "Can change course modes archive", "content_type": 178, "codename": "change_coursemodesarchive"}}, {"model": "auth.permission", "pk": 536, "fields": {"name": "Can delete course modes archive", "content_type": 178, "codename": "delete_coursemodesarchive"}}, {"model": "auth.permission", "pk": 537, "fields": {"name": "Can add course mode expiration config", "content_type": 179, "codename": "add_coursemodeexpirationconfig"}}, {"model": "auth.permission", "pk": 538, "fields": {"name": "Can change course mode expiration config", "content_type": 179, "codename": "change_coursemodeexpirationconfig"}}, {"model": "auth.permission", "pk": 539, "fields": {"name": "Can delete course mode expiration config", "content_type": 179, "codename": "delete_coursemodeexpirationconfig"}}, {"model": "auth.permission", "pk": 540, "fields": {"name": "Can add course entitlement", "content_type": 180, "codename": "add_courseentitlement"}}, {"model": "auth.permission", "pk": 541, "fields": {"name": "Can change course entitlement", "content_type": 180, "codename": "change_courseentitlement"}}, {"model": "auth.permission", "pk": 542, "fields": {"name": "Can delete course entitlement", "content_type": 180, "codename": "delete_courseentitlement"}}, {"model": "auth.permission", "pk": 543, "fields": {"name": "Can add software secure photo verification", "content_type": 181, "codename": "add_softwaresecurephotoverification"}}, {"model": "auth.permission", "pk": 544, "fields": {"name": "Can change software secure photo verification", "content_type": 181, "codename": "change_softwaresecurephotoverification"}}, {"model": "auth.permission", "pk": 545, "fields": {"name": "Can delete software secure photo verification", "content_type": 181, "codename": "delete_softwaresecurephotoverification"}}, {"model": "auth.permission", "pk": 546, "fields": {"name": "Can add verification deadline", "content_type": 182, "codename": "add_verificationdeadline"}}, {"model": "auth.permission", "pk": 547, "fields": {"name": "Can change verification deadline", "content_type": 182, "codename": "change_verificationdeadline"}}, {"model": "auth.permission", "pk": 548, "fields": {"name": "Can delete verification deadline", "content_type": 182, "codename": "delete_verificationdeadline"}}, {"model": "auth.permission", "pk": 549, "fields": {"name": "Can add verification checkpoint", "content_type": 183, "codename": "add_verificationcheckpoint"}}, {"model": "auth.permission", "pk": 550, "fields": {"name": "Can change verification checkpoint", "content_type": 183, "codename": "change_verificationcheckpoint"}}, {"model": "auth.permission", "pk": 551, "fields": {"name": "Can delete verification checkpoint", "content_type": 183, "codename": "delete_verificationcheckpoint"}}, {"model": "auth.permission", "pk": 552, "fields": {"name": "Can add Verification Status", "content_type": 184, "codename": "add_verificationstatus"}}, {"model": "auth.permission", "pk": 553, "fields": {"name": "Can change Verification Status", "content_type": 184, "codename": "change_verificationstatus"}}, {"model": "auth.permission", "pk": 554, "fields": {"name": "Can delete Verification Status", "content_type": 184, "codename": "delete_verificationstatus"}}, {"model": "auth.permission", "pk": 555, "fields": {"name": "Can add in course reverification configuration", "content_type": 185, "codename": "add_incoursereverificationconfiguration"}}, {"model": "auth.permission", "pk": 556, "fields": {"name": "Can change in course reverification configuration", "content_type": 185, "codename": "change_incoursereverificationconfiguration"}}, {"model": "auth.permission", "pk": 557, "fields": {"name": "Can delete in course reverification configuration", "content_type": 185, "codename": "delete_incoursereverificationconfiguration"}}, {"model": "auth.permission", "pk": 558, "fields": {"name": "Can add icrv status emails configuration", "content_type": 186, "codename": "add_icrvstatusemailsconfiguration"}}, {"model": "auth.permission", "pk": 559, "fields": {"name": "Can change icrv status emails configuration", "content_type": 186, "codename": "change_icrvstatusemailsconfiguration"}}, {"model": "auth.permission", "pk": 560, "fields": {"name": "Can delete icrv status emails configuration", "content_type": 186, "codename": "delete_icrvstatusemailsconfiguration"}}, {"model": "auth.permission", "pk": 561, "fields": {"name": "Can add skipped reverification", "content_type": 187, "codename": "add_skippedreverification"}}, {"model": "auth.permission", "pk": 562, "fields": {"name": "Can change skipped reverification", "content_type": 187, "codename": "change_skippedreverification"}}, {"model": "auth.permission", "pk": 563, "fields": {"name": "Can delete skipped reverification", "content_type": 187, "codename": "delete_skippedreverification"}}, {"model": "auth.permission", "pk": 564, "fields": {"name": "Can add dark lang config", "content_type": 188, "codename": "add_darklangconfig"}}, {"model": "auth.permission", "pk": 565, "fields": {"name": "Can change dark lang config", "content_type": 188, "codename": "change_darklangconfig"}}, {"model": "auth.permission", "pk": 566, "fields": {"name": "Can delete dark lang config", "content_type": 188, "codename": "delete_darklangconfig"}}, {"model": "auth.permission", "pk": 567, "fields": {"name": "Can add microsite", "content_type": 189, "codename": "add_microsite"}}, {"model": "auth.permission", "pk": 568, "fields": {"name": "Can change microsite", "content_type": 189, "codename": "change_microsite"}}, {"model": "auth.permission", "pk": 569, "fields": {"name": "Can delete microsite", "content_type": 189, "codename": "delete_microsite"}}, {"model": "auth.permission", "pk": 570, "fields": {"name": "Can add microsite history", "content_type": 190, "codename": "add_micrositehistory"}}, {"model": "auth.permission", "pk": 571, "fields": {"name": "Can change microsite history", "content_type": 190, "codename": "change_micrositehistory"}}, {"model": "auth.permission", "pk": 572, "fields": {"name": "Can delete microsite history", "content_type": 190, "codename": "delete_micrositehistory"}}, {"model": "auth.permission", "pk": 573, "fields": {"name": "Can add microsite organization mapping", "content_type": 191, "codename": "add_micrositeorganizationmapping"}}, {"model": "auth.permission", "pk": 574, "fields": {"name": "Can change microsite organization mapping", "content_type": 191, "codename": "change_micrositeorganizationmapping"}}, {"model": "auth.permission", "pk": 575, "fields": {"name": "Can delete microsite organization mapping", "content_type": 191, "codename": "delete_micrositeorganizationmapping"}}, {"model": "auth.permission", "pk": 576, "fields": {"name": "Can add microsite template", "content_type": 192, "codename": "add_micrositetemplate"}}, {"model": "auth.permission", "pk": 577, "fields": {"name": "Can change microsite template", "content_type": 192, "codename": "change_micrositetemplate"}}, {"model": "auth.permission", "pk": 578, "fields": {"name": "Can delete microsite template", "content_type": 192, "codename": "delete_micrositetemplate"}}, {"model": "auth.permission", "pk": 579, "fields": {"name": "Can add whitelisted rss url", "content_type": 193, "codename": "add_whitelistedrssurl"}}, {"model": "auth.permission", "pk": 580, "fields": {"name": "Can change whitelisted rss url", "content_type": 193, "codename": "change_whitelistedrssurl"}}, {"model": "auth.permission", "pk": 581, "fields": {"name": "Can delete whitelisted rss url", "content_type": 193, "codename": "delete_whitelistedrssurl"}}, {"model": "auth.permission", "pk": 582, "fields": {"name": "Can add embargoed course", "content_type": 194, "codename": "add_embargoedcourse"}}, {"model": "auth.permission", "pk": 583, "fields": {"name": "Can change embargoed course", "content_type": 194, "codename": "change_embargoedcourse"}}, {"model": "auth.permission", "pk": 584, "fields": {"name": "Can delete embargoed course", "content_type": 194, "codename": "delete_embargoedcourse"}}, {"model": "auth.permission", "pk": 585, "fields": {"name": "Can add embargoed state", "content_type": 195, "codename": "add_embargoedstate"}}, {"model": "auth.permission", "pk": 586, "fields": {"name": "Can change embargoed state", "content_type": 195, "codename": "change_embargoedstate"}}, {"model": "auth.permission", "pk": 587, "fields": {"name": "Can delete embargoed state", "content_type": 195, "codename": "delete_embargoedstate"}}, {"model": "auth.permission", "pk": 588, "fields": {"name": "Can add restricted course", "content_type": 196, "codename": "add_restrictedcourse"}}, {"model": "auth.permission", "pk": 589, "fields": {"name": "Can change restricted course", "content_type": 196, "codename": "change_restrictedcourse"}}, {"model": "auth.permission", "pk": 590, "fields": {"name": "Can delete restricted course", "content_type": 196, "codename": "delete_restrictedcourse"}}, {"model": "auth.permission", "pk": 591, "fields": {"name": "Can add country", "content_type": 197, "codename": "add_country"}}, {"model": "auth.permission", "pk": 592, "fields": {"name": "Can change country", "content_type": 197, "codename": "change_country"}}, {"model": "auth.permission", "pk": 593, "fields": {"name": "Can delete country", "content_type": 197, "codename": "delete_country"}}, {"model": "auth.permission", "pk": 594, "fields": {"name": "Can add country access rule", "content_type": 198, "codename": "add_countryaccessrule"}}, {"model": "auth.permission", "pk": 595, "fields": {"name": "Can change country access rule", "content_type": 198, "codename": "change_countryaccessrule"}}, {"model": "auth.permission", "pk": 596, "fields": {"name": "Can delete country access rule", "content_type": 198, "codename": "delete_countryaccessrule"}}, {"model": "auth.permission", "pk": 597, "fields": {"name": "Can add course access rule history", "content_type": 199, "codename": "add_courseaccessrulehistory"}}, {"model": "auth.permission", "pk": 598, "fields": {"name": "Can change course access rule history", "content_type": 199, "codename": "change_courseaccessrulehistory"}}, {"model": "auth.permission", "pk": 599, "fields": {"name": "Can delete course access rule history", "content_type": 199, "codename": "delete_courseaccessrulehistory"}}, {"model": "auth.permission", "pk": 600, "fields": {"name": "Can add ip filter", "content_type": 200, "codename": "add_ipfilter"}}, {"model": "auth.permission", "pk": 601, "fields": {"name": "Can change ip filter", "content_type": 200, "codename": "change_ipfilter"}}, {"model": "auth.permission", "pk": 602, "fields": {"name": "Can delete ip filter", "content_type": 200, "codename": "delete_ipfilter"}}, {"model": "auth.permission", "pk": 603, "fields": {"name": "Can add course rerun state", "content_type": 201, "codename": "add_coursererunstate"}}, {"model": "auth.permission", "pk": 604, "fields": {"name": "Can change course rerun state", "content_type": 201, "codename": "change_coursererunstate"}}, {"model": "auth.permission", "pk": 605, "fields": {"name": "Can delete course rerun state", "content_type": 201, "codename": "delete_coursererunstate"}}, {"model": "auth.permission", "pk": 606, "fields": {"name": "Can add mobile api config", "content_type": 202, "codename": "add_mobileapiconfig"}}, {"model": "auth.permission", "pk": 607, "fields": {"name": "Can change mobile api config", "content_type": 202, "codename": "change_mobileapiconfig"}}, {"model": "auth.permission", "pk": 608, "fields": {"name": "Can delete mobile api config", "content_type": 202, "codename": "delete_mobileapiconfig"}}, {"model": "auth.permission", "pk": 609, "fields": {"name": "Can add app version config", "content_type": 203, "codename": "add_appversionconfig"}}, {"model": "auth.permission", "pk": 610, "fields": {"name": "Can change app version config", "content_type": 203, "codename": "change_appversionconfig"}}, {"model": "auth.permission", "pk": 611, "fields": {"name": "Can delete app version config", "content_type": 203, "codename": "delete_appversionconfig"}}, {"model": "auth.permission", "pk": 612, "fields": {"name": "Can add ignore mobile available flag config", "content_type": 204, "codename": "add_ignoremobileavailableflagconfig"}}, {"model": "auth.permission", "pk": 613, "fields": {"name": "Can change ignore mobile available flag config", "content_type": 204, "codename": "change_ignoremobileavailableflagconfig"}}, {"model": "auth.permission", "pk": 614, "fields": {"name": "Can delete ignore mobile available flag config", "content_type": 204, "codename": "delete_ignoremobileavailableflagconfig"}}, {"model": "auth.permission", "pk": 615, "fields": {"name": "Can add user social auth", "content_type": 205, "codename": "add_usersocialauth"}}, {"model": "auth.permission", "pk": 616, "fields": {"name": "Can change user social auth", "content_type": 205, "codename": "change_usersocialauth"}}, {"model": "auth.permission", "pk": 617, "fields": {"name": "Can delete user social auth", "content_type": 205, "codename": "delete_usersocialauth"}}, {"model": "auth.permission", "pk": 618, "fields": {"name": "Can add nonce", "content_type": 206, "codename": "add_nonce"}}, {"model": "auth.permission", "pk": 619, "fields": {"name": "Can change nonce", "content_type": 206, "codename": "change_nonce"}}, {"model": "auth.permission", "pk": 620, "fields": {"name": "Can delete nonce", "content_type": 206, "codename": "delete_nonce"}}, {"model": "auth.permission", "pk": 621, "fields": {"name": "Can add association", "content_type": 207, "codename": "add_association"}}, {"model": "auth.permission", "pk": 622, "fields": {"name": "Can change association", "content_type": 207, "codename": "change_association"}}, {"model": "auth.permission", "pk": 623, "fields": {"name": "Can delete association", "content_type": 207, "codename": "delete_association"}}, {"model": "auth.permission", "pk": 624, "fields": {"name": "Can add code", "content_type": 208, "codename": "add_code"}}, {"model": "auth.permission", "pk": 625, "fields": {"name": "Can change code", "content_type": 208, "codename": "change_code"}}, {"model": "auth.permission", "pk": 626, "fields": {"name": "Can delete code", "content_type": 208, "codename": "delete_code"}}, {"model": "auth.permission", "pk": 627, "fields": {"name": "Can add partial", "content_type": 209, "codename": "add_partial"}}, {"model": "auth.permission", "pk": 628, "fields": {"name": "Can change partial", "content_type": 209, "codename": "change_partial"}}, {"model": "auth.permission", "pk": 629, "fields": {"name": "Can delete partial", "content_type": 209, "codename": "delete_partial"}}, {"model": "auth.permission", "pk": 630, "fields": {"name": "Can add survey form", "content_type": 210, "codename": "add_surveyform"}}, {"model": "auth.permission", "pk": 631, "fields": {"name": "Can change survey form", "content_type": 210, "codename": "change_surveyform"}}, {"model": "auth.permission", "pk": 632, "fields": {"name": "Can delete survey form", "content_type": 210, "codename": "delete_surveyform"}}, {"model": "auth.permission", "pk": 633, "fields": {"name": "Can add survey answer", "content_type": 211, "codename": "add_surveyanswer"}}, {"model": "auth.permission", "pk": 634, "fields": {"name": "Can change survey answer", "content_type": 211, "codename": "change_surveyanswer"}}, {"model": "auth.permission", "pk": 635, "fields": {"name": "Can delete survey answer", "content_type": 211, "codename": "delete_surveyanswer"}}, {"model": "auth.permission", "pk": 636, "fields": {"name": "Can add x block asides config", "content_type": 212, "codename": "add_xblockasidesconfig"}}, {"model": "auth.permission", "pk": 637, "fields": {"name": "Can change x block asides config", "content_type": 212, "codename": "change_xblockasidesconfig"}}, {"model": "auth.permission", "pk": 638, "fields": {"name": "Can delete x block asides config", "content_type": 212, "codename": "delete_xblockasidesconfig"}}, {"model": "auth.permission", "pk": 639, "fields": {"name": "Can add answer", "content_type": 213, "codename": "add_answer"}}, {"model": "auth.permission", "pk": 640, "fields": {"name": "Can change answer", "content_type": 213, "codename": "change_answer"}}, {"model": "auth.permission", "pk": 641, "fields": {"name": "Can delete answer", "content_type": 213, "codename": "delete_answer"}}, {"model": "auth.permission", "pk": 642, "fields": {"name": "Can add share", "content_type": 214, "codename": "add_share"}}, {"model": "auth.permission", "pk": 643, "fields": {"name": "Can change share", "content_type": 214, "codename": "change_share"}}, {"model": "auth.permission", "pk": 644, "fields": {"name": "Can delete share", "content_type": 214, "codename": "delete_share"}}, {"model": "auth.permission", "pk": 645, "fields": {"name": "Can add student item", "content_type": 215, "codename": "add_studentitem"}}, {"model": "auth.permission", "pk": 646, "fields": {"name": "Can change student item", "content_type": 215, "codename": "change_studentitem"}}, {"model": "auth.permission", "pk": 647, "fields": {"name": "Can delete student item", "content_type": 215, "codename": "delete_studentitem"}}, {"model": "auth.permission", "pk": 648, "fields": {"name": "Can add submission", "content_type": 216, "codename": "add_submission"}}, {"model": "auth.permission", "pk": 649, "fields": {"name": "Can change submission", "content_type": 216, "codename": "change_submission"}}, {"model": "auth.permission", "pk": 650, "fields": {"name": "Can delete submission", "content_type": 216, "codename": "delete_submission"}}, {"model": "auth.permission", "pk": 651, "fields": {"name": "Can add score", "content_type": 217, "codename": "add_score"}}, {"model": "auth.permission", "pk": 652, "fields": {"name": "Can change score", "content_type": 217, "codename": "change_score"}}, {"model": "auth.permission", "pk": 653, "fields": {"name": "Can delete score", "content_type": 217, "codename": "delete_score"}}, {"model": "auth.permission", "pk": 654, "fields": {"name": "Can add score summary", "content_type": 218, "codename": "add_scoresummary"}}, {"model": "auth.permission", "pk": 655, "fields": {"name": "Can change score summary", "content_type": 218, "codename": "change_scoresummary"}}, {"model": "auth.permission", "pk": 656, "fields": {"name": "Can delete score summary", "content_type": 218, "codename": "delete_scoresummary"}}, {"model": "auth.permission", "pk": 657, "fields": {"name": "Can add score annotation", "content_type": 219, "codename": "add_scoreannotation"}}, {"model": "auth.permission", "pk": 658, "fields": {"name": "Can change score annotation", "content_type": 219, "codename": "change_scoreannotation"}}, {"model": "auth.permission", "pk": 659, "fields": {"name": "Can delete score annotation", "content_type": 219, "codename": "delete_scoreannotation"}}, {"model": "auth.permission", "pk": 660, "fields": {"name": "Can add rubric", "content_type": 220, "codename": "add_rubric"}}, {"model": "auth.permission", "pk": 661, "fields": {"name": "Can change rubric", "content_type": 220, "codename": "change_rubric"}}, {"model": "auth.permission", "pk": 662, "fields": {"name": "Can delete rubric", "content_type": 220, "codename": "delete_rubric"}}, {"model": "auth.permission", "pk": 663, "fields": {"name": "Can add criterion", "content_type": 221, "codename": "add_criterion"}}, {"model": "auth.permission", "pk": 664, "fields": {"name": "Can change criterion", "content_type": 221, "codename": "change_criterion"}}, {"model": "auth.permission", "pk": 665, "fields": {"name": "Can delete criterion", "content_type": 221, "codename": "delete_criterion"}}, {"model": "auth.permission", "pk": 666, "fields": {"name": "Can add criterion option", "content_type": 222, "codename": "add_criterionoption"}}, {"model": "auth.permission", "pk": 667, "fields": {"name": "Can change criterion option", "content_type": 222, "codename": "change_criterionoption"}}, {"model": "auth.permission", "pk": 668, "fields": {"name": "Can delete criterion option", "content_type": 222, "codename": "delete_criterionoption"}}, {"model": "auth.permission", "pk": 669, "fields": {"name": "Can add assessment", "content_type": 223, "codename": "add_assessment"}}, {"model": "auth.permission", "pk": 670, "fields": {"name": "Can change assessment", "content_type": 223, "codename": "change_assessment"}}, {"model": "auth.permission", "pk": 671, "fields": {"name": "Can delete assessment", "content_type": 223, "codename": "delete_assessment"}}, {"model": "auth.permission", "pk": 672, "fields": {"name": "Can add assessment part", "content_type": 224, "codename": "add_assessmentpart"}}, {"model": "auth.permission", "pk": 673, "fields": {"name": "Can change assessment part", "content_type": 224, "codename": "change_assessmentpart"}}, {"model": "auth.permission", "pk": 674, "fields": {"name": "Can delete assessment part", "content_type": 224, "codename": "delete_assessmentpart"}}, {"model": "auth.permission", "pk": 675, "fields": {"name": "Can add assessment feedback option", "content_type": 225, "codename": "add_assessmentfeedbackoption"}}, {"model": "auth.permission", "pk": 676, "fields": {"name": "Can change assessment feedback option", "content_type": 225, "codename": "change_assessmentfeedbackoption"}}, {"model": "auth.permission", "pk": 677, "fields": {"name": "Can delete assessment feedback option", "content_type": 225, "codename": "delete_assessmentfeedbackoption"}}, {"model": "auth.permission", "pk": 678, "fields": {"name": "Can add assessment feedback", "content_type": 226, "codename": "add_assessmentfeedback"}}, {"model": "auth.permission", "pk": 679, "fields": {"name": "Can change assessment feedback", "content_type": 226, "codename": "change_assessmentfeedback"}}, {"model": "auth.permission", "pk": 680, "fields": {"name": "Can delete assessment feedback", "content_type": 226, "codename": "delete_assessmentfeedback"}}, {"model": "auth.permission", "pk": 681, "fields": {"name": "Can add peer workflow", "content_type": 227, "codename": "add_peerworkflow"}}, {"model": "auth.permission", "pk": 682, "fields": {"name": "Can change peer workflow", "content_type": 227, "codename": "change_peerworkflow"}}, {"model": "auth.permission", "pk": 683, "fields": {"name": "Can delete peer workflow", "content_type": 227, "codename": "delete_peerworkflow"}}, {"model": "auth.permission", "pk": 684, "fields": {"name": "Can add peer workflow item", "content_type": 228, "codename": "add_peerworkflowitem"}}, {"model": "auth.permission", "pk": 685, "fields": {"name": "Can change peer workflow item", "content_type": 228, "codename": "change_peerworkflowitem"}}, {"model": "auth.permission", "pk": 686, "fields": {"name": "Can delete peer workflow item", "content_type": 228, "codename": "delete_peerworkflowitem"}}, {"model": "auth.permission", "pk": 687, "fields": {"name": "Can add training example", "content_type": 229, "codename": "add_trainingexample"}}, {"model": "auth.permission", "pk": 688, "fields": {"name": "Can change training example", "content_type": 229, "codename": "change_trainingexample"}}, {"model": "auth.permission", "pk": 689, "fields": {"name": "Can delete training example", "content_type": 229, "codename": "delete_trainingexample"}}, {"model": "auth.permission", "pk": 690, "fields": {"name": "Can add student training workflow", "content_type": 230, "codename": "add_studenttrainingworkflow"}}, {"model": "auth.permission", "pk": 691, "fields": {"name": "Can change student training workflow", "content_type": 230, "codename": "change_studenttrainingworkflow"}}, {"model": "auth.permission", "pk": 692, "fields": {"name": "Can delete student training workflow", "content_type": 230, "codename": "delete_studenttrainingworkflow"}}, {"model": "auth.permission", "pk": 693, "fields": {"name": "Can add student training workflow item", "content_type": 231, "codename": "add_studenttrainingworkflowitem"}}, {"model": "auth.permission", "pk": 694, "fields": {"name": "Can change student training workflow item", "content_type": 231, "codename": "change_studenttrainingworkflowitem"}}, {"model": "auth.permission", "pk": 695, "fields": {"name": "Can delete student training workflow item", "content_type": 231, "codename": "delete_studenttrainingworkflowitem"}}, {"model": "auth.permission", "pk": 696, "fields": {"name": "Can add staff workflow", "content_type": 232, "codename": "add_staffworkflow"}}, {"model": "auth.permission", "pk": 697, "fields": {"name": "Can change staff workflow", "content_type": 232, "codename": "change_staffworkflow"}}, {"model": "auth.permission", "pk": 698, "fields": {"name": "Can delete staff workflow", "content_type": 232, "codename": "delete_staffworkflow"}}, {"model": "auth.permission", "pk": 699, "fields": {"name": "Can add assessment workflow", "content_type": 233, "codename": "add_assessmentworkflow"}}, {"model": "auth.permission", "pk": 700, "fields": {"name": "Can change assessment workflow", "content_type": 233, "codename": "change_assessmentworkflow"}}, {"model": "auth.permission", "pk": 701, "fields": {"name": "Can delete assessment workflow", "content_type": 233, "codename": "delete_assessmentworkflow"}}, {"model": "auth.permission", "pk": 702, "fields": {"name": "Can add assessment workflow step", "content_type": 234, "codename": "add_assessmentworkflowstep"}}, {"model": "auth.permission", "pk": 703, "fields": {"name": "Can change assessment workflow step", "content_type": 234, "codename": "change_assessmentworkflowstep"}}, {"model": "auth.permission", "pk": 704, "fields": {"name": "Can delete assessment workflow step", "content_type": 234, "codename": "delete_assessmentworkflowstep"}}, {"model": "auth.permission", "pk": 705, "fields": {"name": "Can add assessment workflow cancellation", "content_type": 235, "codename": "add_assessmentworkflowcancellation"}}, {"model": "auth.permission", "pk": 706, "fields": {"name": "Can change assessment workflow cancellation", "content_type": 235, "codename": "change_assessmentworkflowcancellation"}}, {"model": "auth.permission", "pk": 707, "fields": {"name": "Can delete assessment workflow cancellation", "content_type": 235, "codename": "delete_assessmentworkflowcancellation"}}, {"model": "auth.permission", "pk": 708, "fields": {"name": "Can add profile", "content_type": 236, "codename": "add_profile"}}, {"model": "auth.permission", "pk": 709, "fields": {"name": "Can change profile", "content_type": 236, "codename": "change_profile"}}, {"model": "auth.permission", "pk": 710, "fields": {"name": "Can delete profile", "content_type": 236, "codename": "delete_profile"}}, {"model": "auth.permission", "pk": 711, "fields": {"name": "Can add video", "content_type": 237, "codename": "add_video"}}, {"model": "auth.permission", "pk": 712, "fields": {"name": "Can change video", "content_type": 237, "codename": "change_video"}}, {"model": "auth.permission", "pk": 713, "fields": {"name": "Can delete video", "content_type": 237, "codename": "delete_video"}}, {"model": "auth.permission", "pk": 714, "fields": {"name": "Can add course video", "content_type": 238, "codename": "add_coursevideo"}}, {"model": "auth.permission", "pk": 715, "fields": {"name": "Can change course video", "content_type": 238, "codename": "change_coursevideo"}}, {"model": "auth.permission", "pk": 716, "fields": {"name": "Can delete course video", "content_type": 238, "codename": "delete_coursevideo"}}, {"model": "auth.permission", "pk": 717, "fields": {"name": "Can add encoded video", "content_type": 239, "codename": "add_encodedvideo"}}, {"model": "auth.permission", "pk": 718, "fields": {"name": "Can change encoded video", "content_type": 239, "codename": "change_encodedvideo"}}, {"model": "auth.permission", "pk": 719, "fields": {"name": "Can delete encoded video", "content_type": 239, "codename": "delete_encodedvideo"}}, {"model": "auth.permission", "pk": 720, "fields": {"name": "Can add video image", "content_type": 240, "codename": "add_videoimage"}}, {"model": "auth.permission", "pk": 721, "fields": {"name": "Can change video image", "content_type": 240, "codename": "change_videoimage"}}, {"model": "auth.permission", "pk": 722, "fields": {"name": "Can delete video image", "content_type": 240, "codename": "delete_videoimage"}}, {"model": "auth.permission", "pk": 723, "fields": {"name": "Can add video transcript", "content_type": 241, "codename": "add_videotranscript"}}, {"model": "auth.permission", "pk": 724, "fields": {"name": "Can change video transcript", "content_type": 241, "codename": "change_videotranscript"}}, {"model": "auth.permission", "pk": 725, "fields": {"name": "Can delete video transcript", "content_type": 241, "codename": "delete_videotranscript"}}, {"model": "auth.permission", "pk": 726, "fields": {"name": "Can add transcript preference", "content_type": 242, "codename": "add_transcriptpreference"}}, {"model": "auth.permission", "pk": 727, "fields": {"name": "Can change transcript preference", "content_type": 242, "codename": "change_transcriptpreference"}}, {"model": "auth.permission", "pk": 728, "fields": {"name": "Can delete transcript preference", "content_type": 242, "codename": "delete_transcriptpreference"}}, {"model": "auth.permission", "pk": 729, "fields": {"name": "Can add third party transcript credentials state", "content_type": 243, "codename": "add_thirdpartytranscriptcredentialsstate"}}, {"model": "auth.permission", "pk": 730, "fields": {"name": "Can change third party transcript credentials state", "content_type": 243, "codename": "change_thirdpartytranscriptcredentialsstate"}}, {"model": "auth.permission", "pk": 731, "fields": {"name": "Can delete third party transcript credentials state", "content_type": 243, "codename": "delete_thirdpartytranscriptcredentialsstate"}}, {"model": "auth.permission", "pk": 732, "fields": {"name": "Can add course overview", "content_type": 244, "codename": "add_courseoverview"}}, {"model": "auth.permission", "pk": 733, "fields": {"name": "Can change course overview", "content_type": 244, "codename": "change_courseoverview"}}, {"model": "auth.permission", "pk": 734, "fields": {"name": "Can delete course overview", "content_type": 244, "codename": "delete_courseoverview"}}, {"model": "auth.permission", "pk": 735, "fields": {"name": "Can add course overview tab", "content_type": 245, "codename": "add_courseoverviewtab"}}, {"model": "auth.permission", "pk": 736, "fields": {"name": "Can change course overview tab", "content_type": 245, "codename": "change_courseoverviewtab"}}, {"model": "auth.permission", "pk": 737, "fields": {"name": "Can delete course overview tab", "content_type": 245, "codename": "delete_courseoverviewtab"}}, {"model": "auth.permission", "pk": 738, "fields": {"name": "Can add course overview image set", "content_type": 246, "codename": "add_courseoverviewimageset"}}, {"model": "auth.permission", "pk": 739, "fields": {"name": "Can change course overview image set", "content_type": 246, "codename": "change_courseoverviewimageset"}}, {"model": "auth.permission", "pk": 740, "fields": {"name": "Can delete course overview image set", "content_type": 246, "codename": "delete_courseoverviewimageset"}}, {"model": "auth.permission", "pk": 741, "fields": {"name": "Can add course overview image config", "content_type": 247, "codename": "add_courseoverviewimageconfig"}}, {"model": "auth.permission", "pk": 742, "fields": {"name": "Can change course overview image config", "content_type": 247, "codename": "change_courseoverviewimageconfig"}}, {"model": "auth.permission", "pk": 743, "fields": {"name": "Can delete course overview image config", "content_type": 247, "codename": "delete_courseoverviewimageconfig"}}, {"model": "auth.permission", "pk": 744, "fields": {"name": "Can add course structure", "content_type": 248, "codename": "add_coursestructure"}}, {"model": "auth.permission", "pk": 745, "fields": {"name": "Can change course structure", "content_type": 248, "codename": "change_coursestructure"}}, {"model": "auth.permission", "pk": 746, "fields": {"name": "Can delete course structure", "content_type": 248, "codename": "delete_coursestructure"}}, {"model": "auth.permission", "pk": 747, "fields": {"name": "Can add block structure configuration", "content_type": 249, "codename": "add_blockstructureconfiguration"}}, {"model": "auth.permission", "pk": 748, "fields": {"name": "Can change block structure configuration", "content_type": 249, "codename": "change_blockstructureconfiguration"}}, {"model": "auth.permission", "pk": 749, "fields": {"name": "Can delete block structure configuration", "content_type": 249, "codename": "delete_blockstructureconfiguration"}}, {"model": "auth.permission", "pk": 750, "fields": {"name": "Can add block structure model", "content_type": 250, "codename": "add_blockstructuremodel"}}, {"model": "auth.permission", "pk": 751, "fields": {"name": "Can change block structure model", "content_type": 250, "codename": "change_blockstructuremodel"}}, {"model": "auth.permission", "pk": 752, "fields": {"name": "Can delete block structure model", "content_type": 250, "codename": "delete_blockstructuremodel"}}, {"model": "auth.permission", "pk": 753, "fields": {"name": "Can add x domain proxy configuration", "content_type": 251, "codename": "add_xdomainproxyconfiguration"}}, {"model": "auth.permission", "pk": 754, "fields": {"name": "Can change x domain proxy configuration", "content_type": 251, "codename": "change_xdomainproxyconfiguration"}}, {"model": "auth.permission", "pk": 755, "fields": {"name": "Can delete x domain proxy configuration", "content_type": 251, "codename": "delete_xdomainproxyconfiguration"}}, {"model": "auth.permission", "pk": 756, "fields": {"name": "Can add commerce configuration", "content_type": 252, "codename": "add_commerceconfiguration"}}, {"model": "auth.permission", "pk": 757, "fields": {"name": "Can change commerce configuration", "content_type": 252, "codename": "change_commerceconfiguration"}}, {"model": "auth.permission", "pk": 758, "fields": {"name": "Can delete commerce configuration", "content_type": 252, "codename": "delete_commerceconfiguration"}}, {"model": "auth.permission", "pk": 759, "fields": {"name": "Can add credit provider", "content_type": 253, "codename": "add_creditprovider"}}, {"model": "auth.permission", "pk": 760, "fields": {"name": "Can change credit provider", "content_type": 253, "codename": "change_creditprovider"}}, {"model": "auth.permission", "pk": 761, "fields": {"name": "Can delete credit provider", "content_type": 253, "codename": "delete_creditprovider"}}, {"model": "auth.permission", "pk": 762, "fields": {"name": "Can add credit course", "content_type": 254, "codename": "add_creditcourse"}}, {"model": "auth.permission", "pk": 763, "fields": {"name": "Can change credit course", "content_type": 254, "codename": "change_creditcourse"}}, {"model": "auth.permission", "pk": 764, "fields": {"name": "Can delete credit course", "content_type": 254, "codename": "delete_creditcourse"}}, {"model": "auth.permission", "pk": 765, "fields": {"name": "Can add credit requirement", "content_type": 255, "codename": "add_creditrequirement"}}, {"model": "auth.permission", "pk": 766, "fields": {"name": "Can change credit requirement", "content_type": 255, "codename": "change_creditrequirement"}}, {"model": "auth.permission", "pk": 767, "fields": {"name": "Can delete credit requirement", "content_type": 255, "codename": "delete_creditrequirement"}}, {"model": "auth.permission", "pk": 768, "fields": {"name": "Can add credit requirement status", "content_type": 256, "codename": "add_creditrequirementstatus"}}, {"model": "auth.permission", "pk": 769, "fields": {"name": "Can change credit requirement status", "content_type": 256, "codename": "change_creditrequirementstatus"}}, {"model": "auth.permission", "pk": 770, "fields": {"name": "Can delete credit requirement status", "content_type": 256, "codename": "delete_creditrequirementstatus"}}, {"model": "auth.permission", "pk": 771, "fields": {"name": "Can add credit eligibility", "content_type": 257, "codename": "add_crediteligibility"}}, {"model": "auth.permission", "pk": 772, "fields": {"name": "Can change credit eligibility", "content_type": 257, "codename": "change_crediteligibility"}}, {"model": "auth.permission", "pk": 773, "fields": {"name": "Can delete credit eligibility", "content_type": 257, "codename": "delete_crediteligibility"}}, {"model": "auth.permission", "pk": 774, "fields": {"name": "Can add credit request", "content_type": 258, "codename": "add_creditrequest"}}, {"model": "auth.permission", "pk": 775, "fields": {"name": "Can change credit request", "content_type": 258, "codename": "change_creditrequest"}}, {"model": "auth.permission", "pk": 776, "fields": {"name": "Can delete credit request", "content_type": 258, "codename": "delete_creditrequest"}}, {"model": "auth.permission", "pk": 777, "fields": {"name": "Can add credit config", "content_type": 259, "codename": "add_creditconfig"}}, {"model": "auth.permission", "pk": 778, "fields": {"name": "Can change credit config", "content_type": 259, "codename": "change_creditconfig"}}, {"model": "auth.permission", "pk": 779, "fields": {"name": "Can delete credit config", "content_type": 259, "codename": "delete_creditconfig"}}, {"model": "auth.permission", "pk": 780, "fields": {"name": "Can add course team", "content_type": 260, "codename": "add_courseteam"}}, {"model": "auth.permission", "pk": 781, "fields": {"name": "Can change course team", "content_type": 260, "codename": "change_courseteam"}}, {"model": "auth.permission", "pk": 782, "fields": {"name": "Can delete course team", "content_type": 260, "codename": "delete_courseteam"}}, {"model": "auth.permission", "pk": 783, "fields": {"name": "Can add course team membership", "content_type": 261, "codename": "add_courseteammembership"}}, {"model": "auth.permission", "pk": 784, "fields": {"name": "Can change course team membership", "content_type": 261, "codename": "change_courseteammembership"}}, {"model": "auth.permission", "pk": 785, "fields": {"name": "Can delete course team membership", "content_type": 261, "codename": "delete_courseteammembership"}}, {"model": "auth.permission", "pk": 786, "fields": {"name": "Can add x block configuration", "content_type": 262, "codename": "add_xblockconfiguration"}}, {"model": "auth.permission", "pk": 787, "fields": {"name": "Can change x block configuration", "content_type": 262, "codename": "change_xblockconfiguration"}}, {"model": "auth.permission", "pk": 788, "fields": {"name": "Can delete x block configuration", "content_type": 262, "codename": "delete_xblockconfiguration"}}, {"model": "auth.permission", "pk": 789, "fields": {"name": "Can add x block studio configuration flag", "content_type": 263, "codename": "add_xblockstudioconfigurationflag"}}, {"model": "auth.permission", "pk": 790, "fields": {"name": "Can change x block studio configuration flag", "content_type": 263, "codename": "change_xblockstudioconfigurationflag"}}, {"model": "auth.permission", "pk": 791, "fields": {"name": "Can delete x block studio configuration flag", "content_type": 263, "codename": "delete_xblockstudioconfigurationflag"}}, {"model": "auth.permission", "pk": 792, "fields": {"name": "Can add x block studio configuration", "content_type": 264, "codename": "add_xblockstudioconfiguration"}}, {"model": "auth.permission", "pk": 793, "fields": {"name": "Can change x block studio configuration", "content_type": 264, "codename": "change_xblockstudioconfiguration"}}, {"model": "auth.permission", "pk": 794, "fields": {"name": "Can delete x block studio configuration", "content_type": 264, "codename": "delete_xblockstudioconfiguration"}}, {"model": "auth.permission", "pk": 795, "fields": {"name": "Can add programs api config", "content_type": 265, "codename": "add_programsapiconfig"}}, {"model": "auth.permission", "pk": 796, "fields": {"name": "Can change programs api config", "content_type": 265, "codename": "change_programsapiconfig"}}, {"model": "auth.permission", "pk": 797, "fields": {"name": "Can delete programs api config", "content_type": 265, "codename": "delete_programsapiconfig"}}, {"model": "auth.permission", "pk": 798, "fields": {"name": "Can add catalog integration", "content_type": 266, "codename": "add_catalogintegration"}}, {"model": "auth.permission", "pk": 799, "fields": {"name": "Can change catalog integration", "content_type": 266, "codename": "change_catalogintegration"}}, {"model": "auth.permission", "pk": 800, "fields": {"name": "Can delete catalog integration", "content_type": 266, "codename": "delete_catalogintegration"}}, {"model": "auth.permission", "pk": 801, "fields": {"name": "Can add self paced configuration", "content_type": 267, "codename": "add_selfpacedconfiguration"}}, {"model": "auth.permission", "pk": 802, "fields": {"name": "Can change self paced configuration", "content_type": 267, "codename": "change_selfpacedconfiguration"}}, {"model": "auth.permission", "pk": 803, "fields": {"name": "Can delete self paced configuration", "content_type": 267, "codename": "delete_selfpacedconfiguration"}}, {"model": "auth.permission", "pk": 804, "fields": {"name": "Can add kv store", "content_type": 268, "codename": "add_kvstore"}}, {"model": "auth.permission", "pk": 805, "fields": {"name": "Can change kv store", "content_type": 268, "codename": "change_kvstore"}}, {"model": "auth.permission", "pk": 806, "fields": {"name": "Can delete kv store", "content_type": 268, "codename": "delete_kvstore"}}, {"model": "auth.permission", "pk": 807, "fields": {"name": "Can add credentials api config", "content_type": 269, "codename": "add_credentialsapiconfig"}}, {"model": "auth.permission", "pk": 808, "fields": {"name": "Can change credentials api config", "content_type": 269, "codename": "change_credentialsapiconfig"}}, {"model": "auth.permission", "pk": 809, "fields": {"name": "Can delete credentials api config", "content_type": 269, "codename": "delete_credentialsapiconfig"}}, {"model": "auth.permission", "pk": 810, "fields": {"name": "Can add milestone", "content_type": 270, "codename": "add_milestone"}}, {"model": "auth.permission", "pk": 811, "fields": {"name": "Can change milestone", "content_type": 270, "codename": "change_milestone"}}, {"model": "auth.permission", "pk": 812, "fields": {"name": "Can delete milestone", "content_type": 270, "codename": "delete_milestone"}}, {"model": "auth.permission", "pk": 813, "fields": {"name": "Can add milestone relationship type", "content_type": 271, "codename": "add_milestonerelationshiptype"}}, {"model": "auth.permission", "pk": 814, "fields": {"name": "Can change milestone relationship type", "content_type": 271, "codename": "change_milestonerelationshiptype"}}, {"model": "auth.permission", "pk": 815, "fields": {"name": "Can delete milestone relationship type", "content_type": 271, "codename": "delete_milestonerelationshiptype"}}, {"model": "auth.permission", "pk": 816, "fields": {"name": "Can add course milestone", "content_type": 272, "codename": "add_coursemilestone"}}, {"model": "auth.permission", "pk": 817, "fields": {"name": "Can change course milestone", "content_type": 272, "codename": "change_coursemilestone"}}, {"model": "auth.permission", "pk": 818, "fields": {"name": "Can delete course milestone", "content_type": 272, "codename": "delete_coursemilestone"}}, {"model": "auth.permission", "pk": 819, "fields": {"name": "Can add course content milestone", "content_type": 273, "codename": "add_coursecontentmilestone"}}, {"model": "auth.permission", "pk": 820, "fields": {"name": "Can change course content milestone", "content_type": 273, "codename": "change_coursecontentmilestone"}}, {"model": "auth.permission", "pk": 821, "fields": {"name": "Can delete course content milestone", "content_type": 273, "codename": "delete_coursecontentmilestone"}}, {"model": "auth.permission", "pk": 822, "fields": {"name": "Can add user milestone", "content_type": 274, "codename": "add_usermilestone"}}, {"model": "auth.permission", "pk": 823, "fields": {"name": "Can change user milestone", "content_type": 274, "codename": "change_usermilestone"}}, {"model": "auth.permission", "pk": 824, "fields": {"name": "Can delete user milestone", "content_type": 274, "codename": "delete_usermilestone"}}, {"model": "auth.permission", "pk": 825, "fields": {"name": "Can add api access request", "content_type": 1, "codename": "add_apiaccessrequest"}}, {"model": "auth.permission", "pk": 826, "fields": {"name": "Can change api access request", "content_type": 1, "codename": "change_apiaccessrequest"}}, {"model": "auth.permission", "pk": 827, "fields": {"name": "Can delete api access request", "content_type": 1, "codename": "delete_apiaccessrequest"}}, {"model": "auth.permission", "pk": 828, "fields": {"name": "Can add api access config", "content_type": 275, "codename": "add_apiaccessconfig"}}, {"model": "auth.permission", "pk": 829, "fields": {"name": "Can change api access config", "content_type": 275, "codename": "change_apiaccessconfig"}}, {"model": "auth.permission", "pk": 830, "fields": {"name": "Can delete api access config", "content_type": 275, "codename": "delete_apiaccessconfig"}}, {"model": "auth.permission", "pk": 831, "fields": {"name": "Can add catalog", "content_type": 276, "codename": "add_catalog"}}, {"model": "auth.permission", "pk": 832, "fields": {"name": "Can change catalog", "content_type": 276, "codename": "change_catalog"}}, {"model": "auth.permission", "pk": 833, "fields": {"name": "Can delete catalog", "content_type": 276, "codename": "delete_catalog"}}, {"model": "auth.permission", "pk": 834, "fields": {"name": "Can add verified track cohorted course", "content_type": 277, "codename": "add_verifiedtrackcohortedcourse"}}, {"model": "auth.permission", "pk": 835, "fields": {"name": "Can change verified track cohorted course", "content_type": 277, "codename": "change_verifiedtrackcohortedcourse"}}, {"model": "auth.permission", "pk": 836, "fields": {"name": "Can delete verified track cohorted course", "content_type": 277, "codename": "delete_verifiedtrackcohortedcourse"}}, {"model": "auth.permission", "pk": 837, "fields": {"name": "Can add migrate verified track cohorts setting", "content_type": 278, "codename": "add_migrateverifiedtrackcohortssetting"}}, {"model": "auth.permission", "pk": 838, "fields": {"name": "Can change migrate verified track cohorts setting", "content_type": 278, "codename": "change_migrateverifiedtrackcohortssetting"}}, {"model": "auth.permission", "pk": 839, "fields": {"name": "Can delete migrate verified track cohorts setting", "content_type": 278, "codename": "delete_migrateverifiedtrackcohortssetting"}}, {"model": "auth.permission", "pk": 840, "fields": {"name": "Can add badge class", "content_type": 279, "codename": "add_badgeclass"}}, {"model": "auth.permission", "pk": 841, "fields": {"name": "Can change badge class", "content_type": 279, "codename": "change_badgeclass"}}, {"model": "auth.permission", "pk": 842, "fields": {"name": "Can delete badge class", "content_type": 279, "codename": "delete_badgeclass"}}, {"model": "auth.permission", "pk": 843, "fields": {"name": "Can add badge assertion", "content_type": 280, "codename": "add_badgeassertion"}}, {"model": "auth.permission", "pk": 844, "fields": {"name": "Can change badge assertion", "content_type": 280, "codename": "change_badgeassertion"}}, {"model": "auth.permission", "pk": 845, "fields": {"name": "Can delete badge assertion", "content_type": 280, "codename": "delete_badgeassertion"}}, {"model": "auth.permission", "pk": 846, "fields": {"name": "Can add course complete image configuration", "content_type": 281, "codename": "add_coursecompleteimageconfiguration"}}, {"model": "auth.permission", "pk": 847, "fields": {"name": "Can change course complete image configuration", "content_type": 281, "codename": "change_coursecompleteimageconfiguration"}}, {"model": "auth.permission", "pk": 848, "fields": {"name": "Can delete course complete image configuration", "content_type": 281, "codename": "delete_coursecompleteimageconfiguration"}}, {"model": "auth.permission", "pk": 849, "fields": {"name": "Can add course event badges configuration", "content_type": 282, "codename": "add_courseeventbadgesconfiguration"}}, {"model": "auth.permission", "pk": 850, "fields": {"name": "Can change course event badges configuration", "content_type": 282, "codename": "change_courseeventbadgesconfiguration"}}, {"model": "auth.permission", "pk": 851, "fields": {"name": "Can delete course event badges configuration", "content_type": 282, "codename": "delete_courseeventbadgesconfiguration"}}, {"model": "auth.permission", "pk": 852, "fields": {"name": "Can add email marketing configuration", "content_type": 283, "codename": "add_emailmarketingconfiguration"}}, {"model": "auth.permission", "pk": 853, "fields": {"name": "Can change email marketing configuration", "content_type": 283, "codename": "change_emailmarketingconfiguration"}}, {"model": "auth.permission", "pk": 854, "fields": {"name": "Can delete email marketing configuration", "content_type": 283, "codename": "delete_emailmarketingconfiguration"}}, {"model": "auth.permission", "pk": 855, "fields": {"name": "Can add failed task", "content_type": 284, "codename": "add_failedtask"}}, {"model": "auth.permission", "pk": 856, "fields": {"name": "Can change failed task", "content_type": 284, "codename": "change_failedtask"}}, {"model": "auth.permission", "pk": 857, "fields": {"name": "Can delete failed task", "content_type": 284, "codename": "delete_failedtask"}}, {"model": "auth.permission", "pk": 858, "fields": {"name": "Can add chord data", "content_type": 285, "codename": "add_chorddata"}}, {"model": "auth.permission", "pk": 859, "fields": {"name": "Can change chord data", "content_type": 285, "codename": "change_chorddata"}}, {"model": "auth.permission", "pk": 860, "fields": {"name": "Can delete chord data", "content_type": 285, "codename": "delete_chorddata"}}, {"model": "auth.permission", "pk": 861, "fields": {"name": "Can add crawlers config", "content_type": 286, "codename": "add_crawlersconfig"}}, {"model": "auth.permission", "pk": 862, "fields": {"name": "Can change crawlers config", "content_type": 286, "codename": "change_crawlersconfig"}}, {"model": "auth.permission", "pk": 863, "fields": {"name": "Can delete crawlers config", "content_type": 286, "codename": "delete_crawlersconfig"}}, {"model": "auth.permission", "pk": 864, "fields": {"name": "Can add Waffle flag course override", "content_type": 287, "codename": "add_waffleflagcourseoverridemodel"}}, {"model": "auth.permission", "pk": 865, "fields": {"name": "Can change Waffle flag course override", "content_type": 287, "codename": "change_waffleflagcourseoverridemodel"}}, {"model": "auth.permission", "pk": 866, "fields": {"name": "Can delete Waffle flag course override", "content_type": 287, "codename": "delete_waffleflagcourseoverridemodel"}}, {"model": "auth.permission", "pk": 867, "fields": {"name": "Can add Schedule", "content_type": 288, "codename": "add_schedule"}}, {"model": "auth.permission", "pk": 868, "fields": {"name": "Can change Schedule", "content_type": 288, "codename": "change_schedule"}}, {"model": "auth.permission", "pk": 869, "fields": {"name": "Can delete Schedule", "content_type": 288, "codename": "delete_schedule"}}, {"model": "auth.permission", "pk": 870, "fields": {"name": "Can add schedule config", "content_type": 289, "codename": "add_scheduleconfig"}}, {"model": "auth.permission", "pk": 871, "fields": {"name": "Can change schedule config", "content_type": 289, "codename": "change_scheduleconfig"}}, {"model": "auth.permission", "pk": 872, "fields": {"name": "Can delete schedule config", "content_type": 289, "codename": "delete_scheduleconfig"}}, {"model": "auth.permission", "pk": 873, "fields": {"name": "Can add schedule experience", "content_type": 290, "codename": "add_scheduleexperience"}}, {"model": "auth.permission", "pk": 874, "fields": {"name": "Can change schedule experience", "content_type": 290, "codename": "change_scheduleexperience"}}, {"model": "auth.permission", "pk": 875, "fields": {"name": "Can delete schedule experience", "content_type": 290, "codename": "delete_scheduleexperience"}}, {"model": "auth.permission", "pk": 876, "fields": {"name": "Can add course goal", "content_type": 291, "codename": "add_coursegoal"}}, {"model": "auth.permission", "pk": 877, "fields": {"name": "Can change course goal", "content_type": 291, "codename": "change_coursegoal"}}, {"model": "auth.permission", "pk": 878, "fields": {"name": "Can delete course goal", "content_type": 291, "codename": "delete_coursegoal"}}, {"model": "auth.permission", "pk": 879, "fields": {"name": "Can add block completion", "content_type": 292, "codename": "add_blockcompletion"}}, {"model": "auth.permission", "pk": 880, "fields": {"name": "Can change block completion", "content_type": 292, "codename": "change_blockcompletion"}}, {"model": "auth.permission", "pk": 881, "fields": {"name": "Can delete block completion", "content_type": 292, "codename": "delete_blockcompletion"}}, {"model": "auth.permission", "pk": 882, "fields": {"name": "Can add Experiment Data", "content_type": 293, "codename": "add_experimentdata"}}, {"model": "auth.permission", "pk": 883, "fields": {"name": "Can change Experiment Data", "content_type": 293, "codename": "change_experimentdata"}}, {"model": "auth.permission", "pk": 884, "fields": {"name": "Can delete Experiment Data", "content_type": 293, "codename": "delete_experimentdata"}}, {"model": "auth.permission", "pk": 885, "fields": {"name": "Can add Experiment Key-Value Pair", "content_type": 294, "codename": "add_experimentkeyvalue"}}, {"model": "auth.permission", "pk": 886, "fields": {"name": "Can change Experiment Key-Value Pair", "content_type": 294, "codename": "change_experimentkeyvalue"}}, {"model": "auth.permission", "pk": 887, "fields": {"name": "Can delete Experiment Key-Value Pair", "content_type": 294, "codename": "delete_experimentkeyvalue"}}, {"model": "auth.permission", "pk": 888, "fields": {"name": "Can add proctored exam", "content_type": 295, "codename": "add_proctoredexam"}}, {"model": "auth.permission", "pk": 889, "fields": {"name": "Can change proctored exam", "content_type": 295, "codename": "change_proctoredexam"}}, {"model": "auth.permission", "pk": 890, "fields": {"name": "Can delete proctored exam", "content_type": 295, "codename": "delete_proctoredexam"}}, {"model": "auth.permission", "pk": 891, "fields": {"name": "Can add Proctored exam review policy", "content_type": 296, "codename": "add_proctoredexamreviewpolicy"}}, {"model": "auth.permission", "pk": 892, "fields": {"name": "Can change Proctored exam review policy", "content_type": 296, "codename": "change_proctoredexamreviewpolicy"}}, {"model": "auth.permission", "pk": 893, "fields": {"name": "Can delete Proctored exam review policy", "content_type": 296, "codename": "delete_proctoredexamreviewpolicy"}}, {"model": "auth.permission", "pk": 894, "fields": {"name": "Can add proctored exam review policy history", "content_type": 297, "codename": "add_proctoredexamreviewpolicyhistory"}}, {"model": "auth.permission", "pk": 895, "fields": {"name": "Can change proctored exam review policy history", "content_type": 297, "codename": "change_proctoredexamreviewpolicyhistory"}}, {"model": "auth.permission", "pk": 896, "fields": {"name": "Can delete proctored exam review policy history", "content_type": 297, "codename": "delete_proctoredexamreviewpolicyhistory"}}, {"model": "auth.permission", "pk": 897, "fields": {"name": "Can add proctored exam attempt", "content_type": 298, "codename": "add_proctoredexamstudentattempt"}}, {"model": "auth.permission", "pk": 898, "fields": {"name": "Can change proctored exam attempt", "content_type": 298, "codename": "change_proctoredexamstudentattempt"}}, {"model": "auth.permission", "pk": 899, "fields": {"name": "Can delete proctored exam attempt", "content_type": 298, "codename": "delete_proctoredexamstudentattempt"}}, {"model": "auth.permission", "pk": 900, "fields": {"name": "Can add proctored exam attempt history", "content_type": 299, "codename": "add_proctoredexamstudentattempthistory"}}, {"model": "auth.permission", "pk": 901, "fields": {"name": "Can change proctored exam attempt history", "content_type": 299, "codename": "change_proctoredexamstudentattempthistory"}}, {"model": "auth.permission", "pk": 902, "fields": {"name": "Can delete proctored exam attempt history", "content_type": 299, "codename": "delete_proctoredexamstudentattempthistory"}}, {"model": "auth.permission", "pk": 903, "fields": {"name": "Can add proctored allowance", "content_type": 300, "codename": "add_proctoredexamstudentallowance"}}, {"model": "auth.permission", "pk": 904, "fields": {"name": "Can change proctored allowance", "content_type": 300, "codename": "change_proctoredexamstudentallowance"}}, {"model": "auth.permission", "pk": 905, "fields": {"name": "Can delete proctored allowance", "content_type": 300, "codename": "delete_proctoredexamstudentallowance"}}, {"model": "auth.permission", "pk": 906, "fields": {"name": "Can add proctored allowance history", "content_type": 301, "codename": "add_proctoredexamstudentallowancehistory"}}, {"model": "auth.permission", "pk": 907, "fields": {"name": "Can change proctored allowance history", "content_type": 301, "codename": "change_proctoredexamstudentallowancehistory"}}, {"model": "auth.permission", "pk": 908, "fields": {"name": "Can delete proctored allowance history", "content_type": 301, "codename": "delete_proctoredexamstudentallowancehistory"}}, {"model": "auth.permission", "pk": 909, "fields": {"name": "Can add Proctored exam software secure review", "content_type": 302, "codename": "add_proctoredexamsoftwaresecurereview"}}, {"model": "auth.permission", "pk": 910, "fields": {"name": "Can change Proctored exam software secure review", "content_type": 302, "codename": "change_proctoredexamsoftwaresecurereview"}}, {"model": "auth.permission", "pk": 911, "fields": {"name": "Can delete Proctored exam software secure review", "content_type": 302, "codename": "delete_proctoredexamsoftwaresecurereview"}}, {"model": "auth.permission", "pk": 912, "fields": {"name": "Can add Proctored exam review archive", "content_type": 303, "codename": "add_proctoredexamsoftwaresecurereviewhistory"}}, {"model": "auth.permission", "pk": 913, "fields": {"name": "Can change Proctored exam review archive", "content_type": 303, "codename": "change_proctoredexamsoftwaresecurereviewhistory"}}, {"model": "auth.permission", "pk": 914, "fields": {"name": "Can delete Proctored exam review archive", "content_type": 303, "codename": "delete_proctoredexamsoftwaresecurereviewhistory"}}, {"model": "auth.permission", "pk": 915, "fields": {"name": "Can add proctored exam software secure comment", "content_type": 304, "codename": "add_proctoredexamsoftwaresecurecomment"}}, {"model": "auth.permission", "pk": 916, "fields": {"name": "Can change proctored exam software secure comment", "content_type": 304, "codename": "change_proctoredexamsoftwaresecurecomment"}}, {"model": "auth.permission", "pk": 917, "fields": {"name": "Can delete proctored exam software secure comment", "content_type": 304, "codename": "delete_proctoredexamsoftwaresecurecomment"}}, {"model": "auth.permission", "pk": 918, "fields": {"name": "Can add organization", "content_type": 305, "codename": "add_organization"}}, {"model": "auth.permission", "pk": 919, "fields": {"name": "Can change organization", "content_type": 305, "codename": "change_organization"}}, {"model": "auth.permission", "pk": 920, "fields": {"name": "Can delete organization", "content_type": 305, "codename": "delete_organization"}}, {"model": "auth.permission", "pk": 921, "fields": {"name": "Can add Link Course", "content_type": 306, "codename": "add_organizationcourse"}}, {"model": "auth.permission", "pk": 922, "fields": {"name": "Can change Link Course", "content_type": 306, "codename": "change_organizationcourse"}}, {"model": "auth.permission", "pk": 923, "fields": {"name": "Can delete Link Course", "content_type": 306, "codename": "delete_organizationcourse"}}, {"model": "auth.permission", "pk": 924, "fields": {"name": "Can add historical Enterprise Customer", "content_type": 307, "codename": "add_historicalenterprisecustomer"}}, {"model": "auth.permission", "pk": 925, "fields": {"name": "Can change historical Enterprise Customer", "content_type": 307, "codename": "change_historicalenterprisecustomer"}}, {"model": "auth.permission", "pk": 926, "fields": {"name": "Can delete historical Enterprise Customer", "content_type": 307, "codename": "delete_historicalenterprisecustomer"}}, {"model": "auth.permission", "pk": 927, "fields": {"name": "Can add Enterprise Customer", "content_type": 308, "codename": "add_enterprisecustomer"}}, {"model": "auth.permission", "pk": 928, "fields": {"name": "Can change Enterprise Customer", "content_type": 308, "codename": "change_enterprisecustomer"}}, {"model": "auth.permission", "pk": 929, "fields": {"name": "Can delete Enterprise Customer", "content_type": 308, "codename": "delete_enterprisecustomer"}}, {"model": "auth.permission", "pk": 930, "fields": {"name": "Can add Enterprise Customer Learner", "content_type": 309, "codename": "add_enterprisecustomeruser"}}, {"model": "auth.permission", "pk": 931, "fields": {"name": "Can change Enterprise Customer Learner", "content_type": 309, "codename": "change_enterprisecustomeruser"}}, {"model": "auth.permission", "pk": 932, "fields": {"name": "Can delete Enterprise Customer Learner", "content_type": 309, "codename": "delete_enterprisecustomeruser"}}, {"model": "auth.permission", "pk": 933, "fields": {"name": "Can add pending enterprise customer user", "content_type": 310, "codename": "add_pendingenterprisecustomeruser"}}, {"model": "auth.permission", "pk": 934, "fields": {"name": "Can change pending enterprise customer user", "content_type": 310, "codename": "change_pendingenterprisecustomeruser"}}, {"model": "auth.permission", "pk": 935, "fields": {"name": "Can delete pending enterprise customer user", "content_type": 310, "codename": "delete_pendingenterprisecustomeruser"}}, {"model": "auth.permission", "pk": 936, "fields": {"name": "Can add pending enrollment", "content_type": 311, "codename": "add_pendingenrollment"}}, {"model": "auth.permission", "pk": 937, "fields": {"name": "Can change pending enrollment", "content_type": 311, "codename": "change_pendingenrollment"}}, {"model": "auth.permission", "pk": 938, "fields": {"name": "Can delete pending enrollment", "content_type": 311, "codename": "delete_pendingenrollment"}}, {"model": "auth.permission", "pk": 939, "fields": {"name": "Can add Branding Configuration", "content_type": 312, "codename": "add_enterprisecustomerbrandingconfiguration"}}, {"model": "auth.permission", "pk": 940, "fields": {"name": "Can change Branding Configuration", "content_type": 312, "codename": "change_enterprisecustomerbrandingconfiguration"}}, {"model": "auth.permission", "pk": 941, "fields": {"name": "Can delete Branding Configuration", "content_type": 312, "codename": "delete_enterprisecustomerbrandingconfiguration"}}, {"model": "auth.permission", "pk": 942, "fields": {"name": "Can add enterprise customer identity provider", "content_type": 313, "codename": "add_enterprisecustomeridentityprovider"}}, {"model": "auth.permission", "pk": 943, "fields": {"name": "Can change enterprise customer identity provider", "content_type": 313, "codename": "change_enterprisecustomeridentityprovider"}}, {"model": "auth.permission", "pk": 944, "fields": {"name": "Can delete enterprise customer identity provider", "content_type": 313, "codename": "delete_enterprisecustomeridentityprovider"}}, {"model": "auth.permission", "pk": 945, "fields": {"name": "Can add historical Enterprise Customer Entitlement", "content_type": 314, "codename": "add_historicalenterprisecustomerentitlement"}}, {"model": "auth.permission", "pk": 946, "fields": {"name": "Can change historical Enterprise Customer Entitlement", "content_type": 314, "codename": "change_historicalenterprisecustomerentitlement"}}, {"model": "auth.permission", "pk": 947, "fields": {"name": "Can delete historical Enterprise Customer Entitlement", "content_type": 314, "codename": "delete_historicalenterprisecustomerentitlement"}}, {"model": "auth.permission", "pk": 948, "fields": {"name": "Can add Enterprise Customer Entitlement", "content_type": 315, "codename": "add_enterprisecustomerentitlement"}}, {"model": "auth.permission", "pk": 949, "fields": {"name": "Can change Enterprise Customer Entitlement", "content_type": 315, "codename": "change_enterprisecustomerentitlement"}}, {"model": "auth.permission", "pk": 950, "fields": {"name": "Can delete Enterprise Customer Entitlement", "content_type": 315, "codename": "delete_enterprisecustomerentitlement"}}, {"model": "auth.permission", "pk": 951, "fields": {"name": "Can add historical enterprise course enrollment", "content_type": 316, "codename": "add_historicalenterprisecourseenrollment"}}, {"model": "auth.permission", "pk": 952, "fields": {"name": "Can change historical enterprise course enrollment", "content_type": 316, "codename": "change_historicalenterprisecourseenrollment"}}, {"model": "auth.permission", "pk": 953, "fields": {"name": "Can delete historical enterprise course enrollment", "content_type": 316, "codename": "delete_historicalenterprisecourseenrollment"}}, {"model": "auth.permission", "pk": 954, "fields": {"name": "Can add enterprise course enrollment", "content_type": 317, "codename": "add_enterprisecourseenrollment"}}, {"model": "auth.permission", "pk": 955, "fields": {"name": "Can change enterprise course enrollment", "content_type": 317, "codename": "change_enterprisecourseenrollment"}}, {"model": "auth.permission", "pk": 956, "fields": {"name": "Can delete enterprise course enrollment", "content_type": 317, "codename": "delete_enterprisecourseenrollment"}}, {"model": "auth.permission", "pk": 957, "fields": {"name": "Can add historical Enterprise Customer Catalog", "content_type": 318, "codename": "add_historicalenterprisecustomercatalog"}}, {"model": "auth.permission", "pk": 958, "fields": {"name": "Can change historical Enterprise Customer Catalog", "content_type": 318, "codename": "change_historicalenterprisecustomercatalog"}}, {"model": "auth.permission", "pk": 959, "fields": {"name": "Can delete historical Enterprise Customer Catalog", "content_type": 318, "codename": "delete_historicalenterprisecustomercatalog"}}, {"model": "auth.permission", "pk": 960, "fields": {"name": "Can add Enterprise Customer Catalog", "content_type": 319, "codename": "add_enterprisecustomercatalog"}}, {"model": "auth.permission", "pk": 961, "fields": {"name": "Can change Enterprise Customer Catalog", "content_type": 319, "codename": "change_enterprisecustomercatalog"}}, {"model": "auth.permission", "pk": 962, "fields": {"name": "Can delete Enterprise Customer Catalog", "content_type": 319, "codename": "delete_enterprisecustomercatalog"}}, {"model": "auth.permission", "pk": 963, "fields": {"name": "Can add historical enrollment notification email template", "content_type": 320, "codename": "add_historicalenrollmentnotificationemailtemplate"}}, {"model": "auth.permission", "pk": 964, "fields": {"name": "Can change historical enrollment notification email template", "content_type": 320, "codename": "change_historicalenrollmentnotificationemailtemplate"}}, {"model": "auth.permission", "pk": 965, "fields": {"name": "Can delete historical enrollment notification email template", "content_type": 320, "codename": "delete_historicalenrollmentnotificationemailtemplate"}}, {"model": "auth.permission", "pk": 966, "fields": {"name": "Can add enrollment notification email template", "content_type": 321, "codename": "add_enrollmentnotificationemailtemplate"}}, {"model": "auth.permission", "pk": 967, "fields": {"name": "Can change enrollment notification email template", "content_type": 321, "codename": "change_enrollmentnotificationemailtemplate"}}, {"model": "auth.permission", "pk": 968, "fields": {"name": "Can delete enrollment notification email template", "content_type": 321, "codename": "delete_enrollmentnotificationemailtemplate"}}, {"model": "auth.permission", "pk": 969, "fields": {"name": "Can add enterprise customer reporting configuration", "content_type": 322, "codename": "add_enterprisecustomerreportingconfiguration"}}, {"model": "auth.permission", "pk": 970, "fields": {"name": "Can change enterprise customer reporting configuration", "content_type": 322, "codename": "change_enterprisecustomerreportingconfiguration"}}, {"model": "auth.permission", "pk": 971, "fields": {"name": "Can delete enterprise customer reporting configuration", "content_type": 322, "codename": "delete_enterprisecustomerreportingconfiguration"}}, {"model": "auth.permission", "pk": 972, "fields": {"name": "Can add historical Data Sharing Consent Record", "content_type": 323, "codename": "add_historicaldatasharingconsent"}}, {"model": "auth.permission", "pk": 973, "fields": {"name": "Can change historical Data Sharing Consent Record", "content_type": 323, "codename": "change_historicaldatasharingconsent"}}, {"model": "auth.permission", "pk": 974, "fields": {"name": "Can delete historical Data Sharing Consent Record", "content_type": 323, "codename": "delete_historicaldatasharingconsent"}}, {"model": "auth.permission", "pk": 975, "fields": {"name": "Can add Data Sharing Consent Record", "content_type": 324, "codename": "add_datasharingconsent"}}, {"model": "auth.permission", "pk": 976, "fields": {"name": "Can change Data Sharing Consent Record", "content_type": 324, "codename": "change_datasharingconsent"}}, {"model": "auth.permission", "pk": 977, "fields": {"name": "Can delete Data Sharing Consent Record", "content_type": 324, "codename": "delete_datasharingconsent"}}, {"model": "auth.permission", "pk": 978, "fields": {"name": "Can add learner data transmission audit", "content_type": 325, "codename": "add_learnerdatatransmissionaudit"}}, {"model": "auth.permission", "pk": 979, "fields": {"name": "Can change learner data transmission audit", "content_type": 325, "codename": "change_learnerdatatransmissionaudit"}}, {"model": "auth.permission", "pk": 980, "fields": {"name": "Can delete learner data transmission audit", "content_type": 325, "codename": "delete_learnerdatatransmissionaudit"}}, {"model": "auth.permission", "pk": 981, "fields": {"name": "Can add catalog transmission audit", "content_type": 326, "codename": "add_catalogtransmissionaudit"}}, {"model": "auth.permission", "pk": 982, "fields": {"name": "Can change catalog transmission audit", "content_type": 326, "codename": "change_catalogtransmissionaudit"}}, {"model": "auth.permission", "pk": 983, "fields": {"name": "Can delete catalog transmission audit", "content_type": 326, "codename": "delete_catalogtransmissionaudit"}}, {"model": "auth.permission", "pk": 984, "fields": {"name": "Can add degreed global configuration", "content_type": 327, "codename": "add_degreedglobalconfiguration"}}, {"model": "auth.permission", "pk": 985, "fields": {"name": "Can change degreed global configuration", "content_type": 327, "codename": "change_degreedglobalconfiguration"}}, {"model": "auth.permission", "pk": 986, "fields": {"name": "Can delete degreed global configuration", "content_type": 327, "codename": "delete_degreedglobalconfiguration"}}, {"model": "auth.permission", "pk": 987, "fields": {"name": "Can add historical degreed enterprise customer configuration", "content_type": 328, "codename": "add_historicaldegreedenterprisecustomerconfiguration"}}, {"model": "auth.permission", "pk": 988, "fields": {"name": "Can change historical degreed enterprise customer configuration", "content_type": 328, "codename": "change_historicaldegreedenterprisecustomerconfiguration"}}, {"model": "auth.permission", "pk": 989, "fields": {"name": "Can delete historical degreed enterprise customer configuration", "content_type": 328, "codename": "delete_historicaldegreedenterprisecustomerconfiguration"}}, {"model": "auth.permission", "pk": 990, "fields": {"name": "Can add degreed enterprise customer configuration", "content_type": 329, "codename": "add_degreedenterprisecustomerconfiguration"}}, {"model": "auth.permission", "pk": 991, "fields": {"name": "Can change degreed enterprise customer configuration", "content_type": 329, "codename": "change_degreedenterprisecustomerconfiguration"}}, {"model": "auth.permission", "pk": 992, "fields": {"name": "Can delete degreed enterprise customer configuration", "content_type": 329, "codename": "delete_degreedenterprisecustomerconfiguration"}}, {"model": "auth.permission", "pk": 993, "fields": {"name": "Can add degreed learner data transmission audit", "content_type": 330, "codename": "add_degreedlearnerdatatransmissionaudit"}}, {"model": "auth.permission", "pk": 994, "fields": {"name": "Can change degreed learner data transmission audit", "content_type": 330, "codename": "change_degreedlearnerdatatransmissionaudit"}}, {"model": "auth.permission", "pk": 995, "fields": {"name": "Can delete degreed learner data transmission audit", "content_type": 330, "codename": "delete_degreedlearnerdatatransmissionaudit"}}, {"model": "auth.permission", "pk": 996, "fields": {"name": "Can add sap success factors global configuration", "content_type": 331, "codename": "add_sapsuccessfactorsglobalconfiguration"}}, {"model": "auth.permission", "pk": 997, "fields": {"name": "Can change sap success factors global configuration", "content_type": 331, "codename": "change_sapsuccessfactorsglobalconfiguration"}}, {"model": "auth.permission", "pk": 998, "fields": {"name": "Can delete sap success factors global configuration", "content_type": 331, "codename": "delete_sapsuccessfactorsglobalconfiguration"}}, {"model": "auth.permission", "pk": 999, "fields": {"name": "Can add historical sap success factors enterprise customer configuration", "content_type": 332, "codename": "add_historicalsapsuccessfactorsenterprisecustomerconfiguration"}}, {"model": "auth.permission", "pk": 1000, "fields": {"name": "Can change historical sap success factors enterprise customer configuration", "content_type": 332, "codename": "change_historicalsapsuccessfactorsenterprisecustomerconfiguration"}}, {"model": "auth.permission", "pk": 1001, "fields": {"name": "Can delete historical sap success factors enterprise customer configuration", "content_type": 332, "codename": "delete_historicalsapsuccessfactorsenterprisecustomerconfiguration"}}, {"model": "auth.permission", "pk": 1002, "fields": {"name": "Can add sap success factors enterprise customer configuration", "content_type": 333, "codename": "add_sapsuccessfactorsenterprisecustomerconfiguration"}}, {"model": "auth.permission", "pk": 1003, "fields": {"name": "Can change sap success factors enterprise customer configuration", "content_type": 333, "codename": "change_sapsuccessfactorsenterprisecustomerconfiguration"}}, {"model": "auth.permission", "pk": 1004, "fields": {"name": "Can delete sap success factors enterprise customer configuration", "content_type": 333, "codename": "delete_sapsuccessfactorsenterprisecustomerconfiguration"}}, {"model": "auth.permission", "pk": 1005, "fields": {"name": "Can add sap success factors learner data transmission audit", "content_type": 334, "codename": "add_sapsuccessfactorslearnerdatatransmissionaudit"}}, {"model": "auth.permission", "pk": 1006, "fields": {"name": "Can change sap success factors learner data transmission audit", "content_type": 334, "codename": "change_sapsuccessfactorslearnerdatatransmissionaudit"}}, {"model": "auth.permission", "pk": 1007, "fields": {"name": "Can delete sap success factors learner data transmission audit", "content_type": 334, "codename": "delete_sapsuccessfactorslearnerdatatransmissionaudit"}}, {"model": "auth.permission", "pk": 1008, "fields": {"name": "Can add custom course for ed x", "content_type": 335, "codename": "add_customcourseforedx"}}, {"model": "auth.permission", "pk": 1009, "fields": {"name": "Can change custom course for ed x", "content_type": 335, "codename": "change_customcourseforedx"}}, {"model": "auth.permission", "pk": 1010, "fields": {"name": "Can delete custom course for ed x", "content_type": 335, "codename": "delete_customcourseforedx"}}, {"model": "auth.permission", "pk": 1011, "fields": {"name": "Can add ccx field override", "content_type": 336, "codename": "add_ccxfieldoverride"}}, {"model": "auth.permission", "pk": 1012, "fields": {"name": "Can change ccx field override", "content_type": 336, "codename": "change_ccxfieldoverride"}}, {"model": "auth.permission", "pk": 1013, "fields": {"name": "Can delete ccx field override", "content_type": 336, "codename": "delete_ccxfieldoverride"}}, {"model": "auth.permission", "pk": 1014, "fields": {"name": "Can add CCX Connector", "content_type": 337, "codename": "add_ccxcon"}}, {"model": "auth.permission", "pk": 1015, "fields": {"name": "Can change CCX Connector", "content_type": 337, "codename": "change_ccxcon"}}, {"model": "auth.permission", "pk": 1016, "fields": {"name": "Can delete CCX Connector", "content_type": 337, "codename": "delete_ccxcon"}}, {"model": "auth.permission", "pk": 1017, "fields": {"name": "Can add student module history extended", "content_type": 338, "codename": "add_studentmodulehistoryextended"}}, {"model": "auth.permission", "pk": 1018, "fields": {"name": "Can change student module history extended", "content_type": 338, "codename": "change_studentmodulehistoryextended"}}, {"model": "auth.permission", "pk": 1019, "fields": {"name": "Can delete student module history extended", "content_type": 338, "codename": "delete_studentmodulehistoryextended"}}, {"model": "auth.permission", "pk": 1020, "fields": {"name": "Can add video upload config", "content_type": 339, "codename": "add_videouploadconfig"}}, {"model": "auth.permission", "pk": 1021, "fields": {"name": "Can change video upload config", "content_type": 339, "codename": "change_videouploadconfig"}}, {"model": "auth.permission", "pk": 1022, "fields": {"name": "Can delete video upload config", "content_type": 339, "codename": "delete_videouploadconfig"}}, {"model": "auth.permission", "pk": 1023, "fields": {"name": "Can add push notification config", "content_type": 340, "codename": "add_pushnotificationconfig"}}, {"model": "auth.permission", "pk": 1024, "fields": {"name": "Can change push notification config", "content_type": 340, "codename": "change_pushnotificationconfig"}}, {"model": "auth.permission", "pk": 1025, "fields": {"name": "Can delete push notification config", "content_type": 340, "codename": "delete_pushnotificationconfig"}}, {"model": "auth.permission", "pk": 1026, "fields": {"name": "Can add new assets page flag", "content_type": 341, "codename": "add_newassetspageflag"}}, {"model": "auth.permission", "pk": 1027, "fields": {"name": "Can change new assets page flag", "content_type": 341, "codename": "change_newassetspageflag"}}, {"model": "auth.permission", "pk": 1028, "fields": {"name": "Can delete new assets page flag", "content_type": 341, "codename": "delete_newassetspageflag"}}, {"model": "auth.permission", "pk": 1029, "fields": {"name": "Can add course new assets page flag", "content_type": 342, "codename": "add_coursenewassetspageflag"}}, {"model": "auth.permission", "pk": 1030, "fields": {"name": "Can change course new assets page flag", "content_type": 342, "codename": "change_coursenewassetspageflag"}}, {"model": "auth.permission", "pk": 1031, "fields": {"name": "Can delete course new assets page flag", "content_type": 342, "codename": "delete_coursenewassetspageflag"}}, {"model": "auth.permission", "pk": 1032, "fields": {"name": "Can add course creator", "content_type": 343, "codename": "add_coursecreator"}}, {"model": "auth.permission", "pk": 1033, "fields": {"name": "Can change course creator", "content_type": 343, "codename": "change_coursecreator"}}, {"model": "auth.permission", "pk": 1034, "fields": {"name": "Can delete course creator", "content_type": 343, "codename": "delete_coursecreator"}}, {"model": "auth.permission", "pk": 1035, "fields": {"name": "Can add studio config", "content_type": 344, "codename": "add_studioconfig"}}, {"model": "auth.permission", "pk": 1036, "fields": {"name": "Can change studio config", "content_type": 344, "codename": "change_studioconfig"}}, {"model": "auth.permission", "pk": 1037, "fields": {"name": "Can delete studio config", "content_type": 344, "codename": "delete_studioconfig"}}, {"model": "auth.permission", "pk": 1038, "fields": {"name": "Can add course edit lti fields enabled flag", "content_type": 345, "codename": "add_courseeditltifieldsenabledflag"}}, {"model": "auth.permission", "pk": 1039, "fields": {"name": "Can change course edit lti fields enabled flag", "content_type": 345, "codename": "change_courseeditltifieldsenabledflag"}}, {"model": "auth.permission", "pk": 1040, "fields": {"name": "Can delete course edit lti fields enabled flag", "content_type": 345, "codename": "delete_courseeditltifieldsenabledflag"}}, {"model": "auth.permission", "pk": 1041, "fields": {"name": "Can add tag category", "content_type": 346, "codename": "add_tagcategories"}}, {"model": "auth.permission", "pk": 1042, "fields": {"name": "Can change tag category", "content_type": 346, "codename": "change_tagcategories"}}, {"model": "auth.permission", "pk": 1043, "fields": {"name": "Can delete tag category", "content_type": 346, "codename": "delete_tagcategories"}}, {"model": "auth.permission", "pk": 1044, "fields": {"name": "Can add available tag value", "content_type": 347, "codename": "add_tagavailablevalues"}}, {"model": "auth.permission", "pk": 1045, "fields": {"name": "Can change available tag value", "content_type": 347, "codename": "change_tagavailablevalues"}}, {"model": "auth.permission", "pk": 1046, "fields": {"name": "Can delete available tag value", "content_type": 347, "codename": "delete_tagavailablevalues"}}, {"model": "auth.permission", "pk": 1047, "fields": {"name": "Can add user task status", "content_type": 348, "codename": "add_usertaskstatus"}}, {"model": "auth.permission", "pk": 1048, "fields": {"name": "Can change user task status", "content_type": 348, "codename": "change_usertaskstatus"}}, {"model": "auth.permission", "pk": 1049, "fields": {"name": "Can delete user task status", "content_type": 348, "codename": "delete_usertaskstatus"}}, {"model": "auth.permission", "pk": 1050, "fields": {"name": "Can add user task artifact", "content_type": 349, "codename": "add_usertaskartifact"}}, {"model": "auth.permission", "pk": 1051, "fields": {"name": "Can change user task artifact", "content_type": 349, "codename": "change_usertaskartifact"}}, {"model": "auth.permission", "pk": 1052, "fields": {"name": "Can delete user task artifact", "content_type": 349, "codename": "delete_usertaskartifact"}}, {"model": "auth.permission", "pk": 1053, "fields": {"name": "Can add course entitlement policy", "content_type": 350, "codename": "add_courseentitlementpolicy"}}, {"model": "auth.permission", "pk": 1054, "fields": {"name": "Can change course entitlement policy", "content_type": 350, "codename": "change_courseentitlementpolicy"}}, {"model": "auth.permission", "pk": 1055, "fields": {"name": "Can delete course entitlement policy", "content_type": 350, "codename": "delete_courseentitlementpolicy"}}, {"model": "auth.permission", "pk": 1056, "fields": {"name": "Can add course entitlement support detail", "content_type": 351, "codename": "add_courseentitlementsupportdetail"}}, {"model": "auth.permission", "pk": 1057, "fields": {"name": "Can change course entitlement support detail", "content_type": 351, "codename": "change_courseentitlementsupportdetail"}}, {"model": "auth.permission", "pk": 1058, "fields": {"name": "Can delete course entitlement support detail", "content_type": 351, "codename": "delete_courseentitlementsupportdetail"}}, {"model": "auth.permission", "pk": 1059, "fields": {"name": "Can add content metadata item transmission", "content_type": 352, "codename": "add_contentmetadataitemtransmission"}}, {"model": "auth.permission", "pk": 1060, "fields": {"name": "Can change content metadata item transmission", "content_type": 352, "codename": "change_contentmetadataitemtransmission"}}, {"model": "auth.permission", "pk": 1061, "fields": {"name": "Can delete content metadata item transmission", "content_type": 352, "codename": "delete_contentmetadataitemtransmission"}}, {"model": "auth.permission", "pk": 1062, "fields": {"name": "Can add transcript migration setting", "content_type": 353, "codename": "add_transcriptmigrationsetting"}}, {"model": "auth.permission", "pk": 1063, "fields": {"name": "Can change transcript migration setting", "content_type": 353, "codename": "change_transcriptmigrationsetting"}}, {"model": "auth.permission", "pk": 1064, "fields": {"name": "Can delete transcript migration setting", "content_type": 353, "codename": "delete_transcriptmigrationsetting"}}, {"model": "auth.permission", "pk": 1065, "fields": {"name": "Can add sso verification", "content_type": 354, "codename": "add_ssoverification"}}, {"model": "auth.permission", "pk": 1066, "fields": {"name": "Can change sso verification", "content_type": 354, "codename": "change_ssoverification"}}, {"model": "auth.permission", "pk": 1067, "fields": {"name": "Can delete sso verification", "content_type": 354, "codename": "delete_ssoverification"}}, {"model": "auth.permission", "pk": 1068, "fields": {"name": "Can add User Retirement Status", "content_type": 355, "codename": "add_userretirementstatus"}}, {"model": "auth.permission", "pk": 1069, "fields": {"name": "Can change User Retirement Status", "content_type": 355, "codename": "change_userretirementstatus"}}, {"model": "auth.permission", "pk": 1070, "fields": {"name": "Can delete User Retirement Status", "content_type": 355, "codename": "delete_userretirementstatus"}}, {"model": "auth.permission", "pk": 1071, "fields": {"name": "Can add retirement state", "content_type": 356, "codename": "add_retirementstate"}}, {"model": "auth.permission", "pk": 1072, "fields": {"name": "Can change retirement state", "content_type": 356, "codename": "change_retirementstate"}}, {"model": "auth.permission", "pk": 1073, "fields": {"name": "Can delete retirement state", "content_type": 356, "codename": "delete_retirementstate"}}, {"model": "auth.permission", "pk": 1074, "fields": {"name": "Can add data sharing consent text overrides", "content_type": 357, "codename": "add_datasharingconsenttextoverrides"}}, {"model": "auth.permission", "pk": 1075, "fields": {"name": "Can change data sharing consent text overrides", "content_type": 357, "codename": "change_datasharingconsenttextoverrides"}}, {"model": "auth.permission", "pk": 1076, "fields": {"name": "Can delete data sharing consent text overrides", "content_type": 357, "codename": "delete_datasharingconsenttextoverrides"}}, {"model": "auth.permission", "pk": 1077, "fields": {"name": "Can add User Retirement Request", "content_type": 358, "codename": "add_userretirementrequest"}}, {"model": "auth.permission", "pk": 1078, "fields": {"name": "Can change User Retirement Request", "content_type": 358, "codename": "change_userretirementrequest"}}, {"model": "auth.permission", "pk": 1079, "fields": {"name": "Can delete User Retirement Request", "content_type": 358, "codename": "delete_userretirementrequest"}}, {"model": "auth.permission", "pk": 1080, "fields": {"name": "Can add discussions id mapping", "content_type": 359, "codename": "add_discussionsidmapping"}}, {"model": "auth.permission", "pk": 1081, "fields": {"name": "Can change discussions id mapping", "content_type": 359, "codename": "change_discussionsidmapping"}}, {"model": "auth.permission", "pk": 1082, "fields": {"name": "Can delete discussions id mapping", "content_type": 359, "codename": "delete_discussionsidmapping"}}, {"model": "auth.permission", "pk": 1083, "fields": {"name": "Can add scoped application", "content_type": 360, "codename": "add_scopedapplication"}}, {"model": "auth.permission", "pk": 1084, "fields": {"name": "Can change scoped application", "content_type": 360, "codename": "change_scopedapplication"}}, {"model": "auth.permission", "pk": 1085, "fields": {"name": "Can delete scoped application", "content_type": 360, "codename": "delete_scopedapplication"}}, {"model": "auth.permission", "pk": 1086, "fields": {"name": "Can add scoped application organization", "content_type": 361, "codename": "add_scopedapplicationorganization"}}, {"model": "auth.permission", "pk": 1087, "fields": {"name": "Can change scoped application organization", "content_type": 361, "codename": "change_scopedapplicationorganization"}}, {"model": "auth.permission", "pk": 1088, "fields": {"name": "Can delete scoped application organization", "content_type": 361, "codename": "delete_scopedapplicationorganization"}}, {"model": "auth.permission", "pk": 1089, "fields": {"name": "Can add User Retirement Reporting Status", "content_type": 362, "codename": "add_userretirementpartnerreportingstatus"}}, {"model": "auth.permission", "pk": 1090, "fields": {"name": "Can change User Retirement Reporting Status", "content_type": 362, "codename": "change_userretirementpartnerreportingstatus"}}, {"model": "auth.permission", "pk": 1091, "fields": {"name": "Can delete User Retirement Reporting Status", "content_type": 362, "codename": "delete_userretirementpartnerreportingstatus"}}, {"model": "auth.permission", "pk": 1092, "fields": {"name": "Can add manual verification", "content_type": 363, "codename": "add_manualverification"}}, {"model": "auth.permission", "pk": 1093, "fields": {"name": "Can change manual verification", "content_type": 363, "codename": "change_manualverification"}}, {"model": "auth.permission", "pk": 1094, "fields": {"name": "Can delete manual verification", "content_type": 363, "codename": "delete_manualverification"}}, {"model": "auth.permission", "pk": 1095, "fields": {"name": "Can add application organization", "content_type": 364, "codename": "add_applicationorganization"}}, {"model": "auth.permission", "pk": 1096, "fields": {"name": "Can change application organization", "content_type": 364, "codename": "change_applicationorganization"}}, {"model": "auth.permission", "pk": 1097, "fields": {"name": "Can delete application organization", "content_type": 364, "codename": "delete_applicationorganization"}}, {"model": "auth.permission", "pk": 1098, "fields": {"name": "Can add application access", "content_type": 365, "codename": "add_applicationaccess"}}, {"model": "auth.permission", "pk": 1099, "fields": {"name": "Can change application access", "content_type": 365, "codename": "change_applicationaccess"}}, {"model": "auth.permission", "pk": 1100, "fields": {"name": "Can delete application access", "content_type": 365, "codename": "delete_applicationaccess"}}, {"model": "auth.permission", "pk": 1101, "fields": {"name": "Can add migration enqueued course", "content_type": 366, "codename": "add_migrationenqueuedcourse"}}, {"model": "auth.permission", "pk": 1102, "fields": {"name": "Can change migration enqueued course", "content_type": 366, "codename": "change_migrationenqueuedcourse"}}, {"model": "auth.permission", "pk": 1103, "fields": {"name": "Can delete migration enqueued course", "content_type": 366, "codename": "delete_migrationenqueuedcourse"}}, {"model": "auth.permission", "pk": 1104, "fields": {"name": "Can add xapilrs configuration", "content_type": 367, "codename": "add_xapilrsconfiguration"}}, {"model": "auth.permission", "pk": 1105, "fields": {"name": "Can change xapilrs configuration", "content_type": 367, "codename": "change_xapilrsconfiguration"}}, {"model": "auth.permission", "pk": 1106, "fields": {"name": "Can delete xapilrs configuration", "content_type": 367, "codename": "delete_xapilrsconfiguration"}}, {"model": "auth.permission", "pk": 1107, "fields": {"name": "Can add notify_credentials argument", "content_type": 368, "codename": "add_notifycredentialsconfig"}}, {"model": "auth.permission", "pk": 1108, "fields": {"name": "Can change notify_credentials argument", "content_type": 368, "codename": "change_notifycredentialsconfig"}}, {"model": "auth.permission", "pk": 1109, "fields": {"name": "Can delete notify_credentials argument", "content_type": 368, "codename": "delete_notifycredentialsconfig"}}, {"model": "auth.permission", "pk": 1110, "fields": {"name": "Can add updated course videos", "content_type": 369, "codename": "add_updatedcoursevideos"}}, {"model": "auth.permission", "pk": 1111, "fields": {"name": "Can change updated course videos", "content_type": 369, "codename": "change_updatedcoursevideos"}}, {"model": "auth.permission", "pk": 1112, "fields": {"name": "Can delete updated course videos", "content_type": 369, "codename": "delete_updatedcoursevideos"}}, {"model": "auth.permission", "pk": 1113, "fields": {"name": "Can add video thumbnail setting", "content_type": 370, "codename": "add_videothumbnailsetting"}}, {"model": "auth.permission", "pk": 1114, "fields": {"name": "Can change video thumbnail setting", "content_type": 370, "codename": "change_videothumbnailsetting"}}, {"model": "auth.permission", "pk": 1115, "fields": {"name": "Can delete video thumbnail setting", "content_type": 370, "codename": "delete_videothumbnailsetting"}}, {"model": "auth.permission", "pk": 1116, "fields": {"name": "Can add course duration limit config", "content_type": 371, "codename": "add_coursedurationlimitconfig"}}, {"model": "auth.permission", "pk": 1117, "fields": {"name": "Can change course duration limit config", "content_type": 371, "codename": "change_coursedurationlimitconfig"}}, {"model": "auth.permission", "pk": 1118, "fields": {"name": "Can delete course duration limit config", "content_type": 371, "codename": "delete_coursedurationlimitconfig"}}, {"model": "auth.permission", "pk": 1119, "fields": {"name": "Can add content type gating config", "content_type": 372, "codename": "add_contenttypegatingconfig"}}, {"model": "auth.permission", "pk": 1120, "fields": {"name": "Can change content type gating config", "content_type": 372, "codename": "change_contenttypegatingconfig"}}, {"model": "auth.permission", "pk": 1121, "fields": {"name": "Can delete content type gating config", "content_type": 372, "codename": "delete_contenttypegatingconfig"}}, {"model": "auth.permission", "pk": 1122, "fields": {"name": "Can add persistent subsection grade override history", "content_type": 373, "codename": "add_persistentsubsectiongradeoverridehistory"}}, {"model": "auth.permission", "pk": 1123, "fields": {"name": "Can change persistent subsection grade override history", "content_type": 373, "codename": "change_persistentsubsectiongradeoverridehistory"}}, {"model": "auth.permission", "pk": 1124, "fields": {"name": "Can delete persistent subsection grade override history", "content_type": 373, "codename": "delete_persistentsubsectiongradeoverridehistory"}}, {"model": "auth.permission", "pk": 1125, "fields": {"name": "Can add account recovery", "content_type": 374, "codename": "add_accountrecovery"}}, {"model": "auth.permission", "pk": 1126, "fields": {"name": "Can change account recovery", "content_type": 374, "codename": "change_accountrecovery"}}, {"model": "auth.permission", "pk": 1127, "fields": {"name": "Can delete account recovery", "content_type": 374, "codename": "delete_accountrecovery"}}, {"model": "auth.permission", "pk": 1128, "fields": {"name": "Can add Enterprise Customer Type", "content_type": 375, "codename": "add_enterprisecustomertype"}}, {"model": "auth.permission", "pk": 1129, "fields": {"name": "Can change Enterprise Customer Type", "content_type": 375, "codename": "change_enterprisecustomertype"}}, {"model": "auth.permission", "pk": 1130, "fields": {"name": "Can delete Enterprise Customer Type", "content_type": 375, "codename": "delete_enterprisecustomertype"}}, {"model": "auth.permission", "pk": 1131, "fields": {"name": "Can add pending secondary email change", "content_type": 376, "codename": "add_pendingsecondaryemailchange"}}, {"model": "auth.permission", "pk": 1132, "fields": {"name": "Can change pending secondary email change", "content_type": 376, "codename": "change_pendingsecondaryemailchange"}}, {"model": "auth.permission", "pk": 1133, "fields": {"name": "Can delete pending secondary email change", "content_type": 376, "codename": "delete_pendingsecondaryemailchange"}}, {"model": "auth.permission", "pk": 1134, "fields": {"name": "Can add lti consumer", "content_type": 377, "codename": "add_lticonsumer"}}, {"model": "auth.permission", "pk": 1135, "fields": {"name": "Can change lti consumer", "content_type": 377, "codename": "change_lticonsumer"}}, {"model": "auth.permission", "pk": 1136, "fields": {"name": "Can delete lti consumer", "content_type": 377, "codename": "delete_lticonsumer"}}, {"model": "auth.permission", "pk": 1137, "fields": {"name": "Can add graded assignment", "content_type": 378, "codename": "add_gradedassignment"}}, {"model": "auth.permission", "pk": 1138, "fields": {"name": "Can change graded assignment", "content_type": 378, "codename": "change_gradedassignment"}}, {"model": "auth.permission", "pk": 1139, "fields": {"name": "Can delete graded assignment", "content_type": 378, "codename": "delete_gradedassignment"}}, {"model": "auth.permission", "pk": 1140, "fields": {"name": "Can add lti user", "content_type": 379, "codename": "add_ltiuser"}}, {"model": "auth.permission", "pk": 1141, "fields": {"name": "Can change lti user", "content_type": 379, "codename": "change_ltiuser"}}, {"model": "auth.permission", "pk": 1142, "fields": {"name": "Can delete lti user", "content_type": 379, "codename": "delete_ltiuser"}}, {"model": "auth.permission", "pk": 1143, "fields": {"name": "Can add outcome service", "content_type": 380, "codename": "add_outcomeservice"}}, {"model": "auth.permission", "pk": 1144, "fields": {"name": "Can change outcome service", "content_type": 380, "codename": "change_outcomeservice"}}, {"model": "auth.permission", "pk": 1145, "fields": {"name": "Can delete outcome service", "content_type": 380, "codename": "delete_outcomeservice"}}, {"model": "auth.permission", "pk": 1146, "fields": {"name": "Can add system wide enterprise role", "content_type": 381, "codename": "add_systemwideenterpriserole"}}, {"model": "auth.permission", "pk": 1147, "fields": {"name": "Can change system wide enterprise role", "content_type": 381, "codename": "change_systemwideenterpriserole"}}, {"model": "auth.permission", "pk": 1148, "fields": {"name": "Can delete system wide enterprise role", "content_type": 381, "codename": "delete_systemwideenterpriserole"}}, {"model": "auth.permission", "pk": 1149, "fields": {"name": "Can add system wide enterprise user role assignment", "content_type": 382, "codename": "add_systemwideenterpriseuserroleassignment"}}, {"model": "auth.permission", "pk": 1150, "fields": {"name": "Can change system wide enterprise user role assignment", "content_type": 382, "codename": "change_systemwideenterpriseuserroleassignment"}}, {"model": "auth.permission", "pk": 1151, "fields": {"name": "Can delete system wide enterprise user role assignment", "content_type": 382, "codename": "delete_systemwideenterpriseuserroleassignment"}}, {"model": "auth.permission", "pk": 1152, "fields": {"name": "Can add announcement", "content_type": 383, "codename": "add_announcement"}}, {"model": "auth.permission", "pk": 1153, "fields": {"name": "Can change announcement", "content_type": 383, "codename": "change_announcement"}}, {"model": "auth.permission", "pk": 1154, "fields": {"name": "Can delete announcement", "content_type": 383, "codename": "delete_announcement"}}, {"model": "auth.permission", "pk": 2267, "fields": {"name": "Can add enterprise feature user role assignment", "content_type": 753, "codename": "add_enterprisefeatureuserroleassignment"}}, {"model": "auth.permission", "pk": 2268, "fields": {"name": "Can change enterprise feature user role assignment", "content_type": 753, "codename": "change_enterprisefeatureuserroleassignment"}}, {"model": "auth.permission", "pk": 2269, "fields": {"name": "Can delete enterprise feature user role assignment", "content_type": 753, "codename": "delete_enterprisefeatureuserroleassignment"}}, {"model": "auth.permission", "pk": 2270, "fields": {"name": "Can add enterprise feature role", "content_type": 754, "codename": "add_enterprisefeaturerole"}}, {"model": "auth.permission", "pk": 2271, "fields": {"name": "Can change enterprise feature role", "content_type": 754, "codename": "change_enterprisefeaturerole"}}, {"model": "auth.permission", "pk": 2272, "fields": {"name": "Can delete enterprise feature role", "content_type": 754, "codename": "delete_enterprisefeaturerole"}}, {"model": "auth.permission", "pk": 2273, "fields": {"name": "Can add program enrollment", "content_type": 755, "codename": "add_programenrollment"}}, {"model": "auth.permission", "pk": 2274, "fields": {"name": "Can change program enrollment", "content_type": 755, "codename": "change_programenrollment"}}, {"model": "auth.permission", "pk": 2275, "fields": {"name": "Can delete program enrollment", "content_type": 755, "codename": "delete_programenrollment"}}, {"model": "auth.permission", "pk": 2276, "fields": {"name": "Can add historical program enrollment", "content_type": 756, "codename": "add_historicalprogramenrollment"}}, {"model": "auth.permission", "pk": 2277, "fields": {"name": "Can change historical program enrollment", "content_type": 756, "codename": "change_historicalprogramenrollment"}}, {"model": "auth.permission", "pk": 2278, "fields": {"name": "Can delete historical program enrollment", "content_type": 756, "codename": "delete_historicalprogramenrollment"}}, {"model": "auth.permission", "pk": 2279, "fields": {"name": "Can add program course enrollment", "content_type": 757, "codename": "add_programcourseenrollment"}}, {"model": "auth.permission", "pk": 2280, "fields": {"name": "Can change program course enrollment", "content_type": 757, "codename": "change_programcourseenrollment"}}, {"model": "auth.permission", "pk": 2281, "fields": {"name": "Can delete program course enrollment", "content_type": 757, "codename": "delete_programcourseenrollment"}}, {"model": "auth.permission", "pk": 2282, "fields": {"name": "Can add historical program course enrollment", "content_type": 758, "codename": "add_historicalprogramcourseenrollment"}}, {"model": "auth.permission", "pk": 2283, "fields": {"name": "Can change historical program course enrollment", "content_type": 758, "codename": "change_historicalprogramcourseenrollment"}}, {"model": "auth.permission", "pk": 2284, "fields": {"name": "Can delete historical program course enrollment", "content_type": 758, "codename": "delete_historicalprogramcourseenrollment"}}, {"model": "auth.permission", "pk": 2285, "fields": {"name": "Can add content date", "content_type": 759, "codename": "add_contentdate"}}, {"model": "auth.permission", "pk": 2286, "fields": {"name": "Can change content date", "content_type": 759, "codename": "change_contentdate"}}, {"model": "auth.permission", "pk": 2287, "fields": {"name": "Can delete content date", "content_type": 759, "codename": "delete_contentdate"}}, {"model": "auth.permission", "pk": 2288, "fields": {"name": "Can add user date", "content_type": 760, "codename": "add_userdate"}}, {"model": "auth.permission", "pk": 2289, "fields": {"name": "Can change user date", "content_type": 760, "codename": "change_userdate"}}, {"model": "auth.permission", "pk": 2290, "fields": {"name": "Can delete user date", "content_type": 760, "codename": "delete_userdate"}}, {"model": "auth.permission", "pk": 2291, "fields": {"name": "Can add date policy", "content_type": 761, "codename": "add_datepolicy"}}, {"model": "auth.permission", "pk": 2292, "fields": {"name": "Can change date policy", "content_type": 761, "codename": "change_datepolicy"}}, {"model": "auth.permission", "pk": 2293, "fields": {"name": "Can delete date policy", "content_type": 761, "codename": "delete_datepolicy"}}, {"model": "auth.permission", "pk": 2294, "fields": {"name": "Can add historical course enrollment", "content_type": 762, "codename": "add_historicalcourseenrollment"}}, {"model": "auth.permission", "pk": 2295, "fields": {"name": "Can change historical course enrollment", "content_type": 762, "codename": "change_historicalcourseenrollment"}}, {"model": "auth.permission", "pk": 2296, "fields": {"name": "Can delete historical course enrollment", "content_type": 762, "codename": "delete_historicalcourseenrollment"}}, {"model": "auth.permission", "pk": 2297, "fields": {"name": "Can add cornerstone global configuration", "content_type": 763, "codename": "add_cornerstoneglobalconfiguration"}}, {"model": "auth.permission", "pk": 2298, "fields": {"name": "Can change cornerstone global configuration", "content_type": 763, "codename": "change_cornerstoneglobalconfiguration"}}, {"model": "auth.permission", "pk": 2299, "fields": {"name": "Can delete cornerstone global configuration", "content_type": 763, "codename": "delete_cornerstoneglobalconfiguration"}}, {"model": "auth.permission", "pk": 2300, "fields": {"name": "Can add historical cornerstone enterprise customer configuration", "content_type": 764, "codename": "add_historicalcornerstoneenterprisecustomerconfiguration"}}, {"model": "auth.permission", "pk": 2301, "fields": {"name": "Can change historical cornerstone enterprise customer configuration", "content_type": 764, "codename": "change_historicalcornerstoneenterprisecustomerconfiguration"}}, {"model": "auth.permission", "pk": 2302, "fields": {"name": "Can delete historical cornerstone enterprise customer configuration", "content_type": 764, "codename": "delete_historicalcornerstoneenterprisecustomerconfiguration"}}, {"model": "auth.permission", "pk": 2303, "fields": {"name": "Can add cornerstone learner data transmission audit", "content_type": 765, "codename": "add_cornerstonelearnerdatatransmissionaudit"}}, {"model": "auth.permission", "pk": 2304, "fields": {"name": "Can change cornerstone learner data transmission audit", "content_type": 765, "codename": "change_cornerstonelearnerdatatransmissionaudit"}}, {"model": "auth.permission", "pk": 2305, "fields": {"name": "Can delete cornerstone learner data transmission audit", "content_type": 765, "codename": "delete_cornerstonelearnerdatatransmissionaudit"}}, {"model": "auth.permission", "pk": 2306, "fields": {"name": "Can add cornerstone enterprise customer configuration", "content_type": 766, "codename": "add_cornerstoneenterprisecustomerconfiguration"}}, {"model": "auth.permission", "pk": 2307, "fields": {"name": "Can change cornerstone enterprise customer configuration", "content_type": 766, "codename": "change_cornerstoneenterprisecustomerconfiguration"}}, {"model": "auth.permission", "pk": 2308, "fields": {"name": "Can delete cornerstone enterprise customer configuration", "content_type": 766, "codename": "delete_cornerstoneenterprisecustomerconfiguration"}}, {"model": "auth.permission", "pk": 2309, "fields": {"name": "Can add discount restriction config", "content_type": 767, "codename": "add_discountrestrictionconfig"}}, {"model": "auth.permission", "pk": 2310, "fields": {"name": "Can change discount restriction config", "content_type": 767, "codename": "change_discountrestrictionconfig"}}, {"model": "auth.permission", "pk": 2311, "fields": {"name": "Can delete discount restriction config", "content_type": 767, "codename": "delete_discountrestrictionconfig"}}, {"model": "auth.permission", "pk": 2312, "fields": {"name": "Can add historical course entitlement", "content_type": 768, "codename": "add_historicalcourseentitlement"}}, {"model": "auth.permission", "pk": 2313, "fields": {"name": "Can change historical course entitlement", "content_type": 768, "codename": "change_historicalcourseentitlement"}}, {"model": "auth.permission", "pk": 2314, "fields": {"name": "Can delete historical course entitlement", "content_type": 768, "codename": "delete_historicalcourseentitlement"}}, {"model": "auth.permission", "pk": 2315, "fields": {"name": "Can add historical organization", "content_type": 769, "codename": "add_historicalorganization"}}, {"model": "auth.permission", "pk": 2316, "fields": {"name": "Can change historical organization", "content_type": 769, "codename": "change_historicalorganization"}}, {"model": "auth.permission", "pk": 2317, "fields": {"name": "Can delete historical organization", "content_type": 769, "codename": "delete_historicalorganization"}}, {"model": "auth.permission", "pk": 2318, "fields": {"name": "Can add historical persistent subsection grade override", "content_type": 770, "codename": "add_historicalpersistentsubsectiongradeoverride"}}, {"model": "auth.permission", "pk": 2319, "fields": {"name": "Can change historical persistent subsection grade override", "content_type": 770, "codename": "change_historicalpersistentsubsectiongradeoverride"}}, {"model": "auth.permission", "pk": 2320, "fields": {"name": "Can delete historical persistent subsection grade override", "content_type": 770, "codename": "delete_historicalpersistentsubsectiongradeoverride"}}, {"model": "auth.permission", "pk": 2321, "fields": {"name": "Can add csv operation", "content_type": 771, "codename": "add_csvoperation"}}, {"model": "auth.permission", "pk": 2322, "fields": {"name": "Can change csv operation", "content_type": 771, "codename": "change_csvoperation"}}, {"model": "auth.permission", "pk": 2323, "fields": {"name": "Can delete csv operation", "content_type": 771, "codename": "delete_csvoperation"}}, {"model": "auth.permission", "pk": 2324, "fields": {"name": "Can add score overrider", "content_type": 772, "codename": "add_scoreoverrider"}}, {"model": "auth.permission", "pk": 2325, "fields": {"name": "Can change score overrider", "content_type": 772, "codename": "change_scoreoverrider"}}, {"model": "auth.permission", "pk": 2326, "fields": {"name": "Can delete score overrider", "content_type": 772, "codename": "delete_scoreoverrider"}}, {"model": "auth.group", "pk": 1, "fields": {"name": "API Access Request Approvers", "permissions": []}}, {"model": "auth.user", "pk": 1, "fields": {"password": "!FXJJHcjbqdW2yNqrkNvJXSnTXxNZVYIj3SsIt7BB", "last_login": null, "is_superuser": false, "username": "ecommerce_worker", "first_name": "", "last_name": "", "email": "ecommerce_worker@fake.email", "is_staff": false, "is_active": true, "date_joined": "2017-12-06T02:20:20.329Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 2, "fields": {"password": "!rUv06Bh8BQoqyhkOEl2BtUKUwOX3NlpCVPBSwqBj", "last_login": null, "is_superuser": false, "username": "login_service_user", "first_name": "", "last_name": "", "email": "login_service_user@fake.email", "is_staff": false, "is_active": true, "date_joined": "2018-10-25T14:53:08.044Z", "groups": [], "user_permissions": []}}, {"model": "util.ratelimitconfiguration", "pk": 1, "fields": {"change_date": "2017-12-06T02:37:46.125Z", "changed_by": null, "enabled": true}}, {"model": "certificates.certificatehtmlviewconfiguration", "pk": 1, "fields": {"change_date": "2017-12-06T02:19:25.679Z", "changed_by": null, "enabled": false, "configuration": "{\"default\": {\"accomplishment_class_append\": \"accomplishment-certificate\", \"platform_name\": \"Your Platform Name Here\", \"logo_src\": \"/static/certificates/images/logo.png\", \"logo_url\": \"http://www.example.com\", \"company_verified_certificate_url\": \"http://www.example.com/verified-certificate\", \"company_privacy_url\": \"http://www.example.com/privacy-policy\", \"company_tos_url\": \"http://www.example.com/terms-service\", \"company_about_url\": \"http://www.example.com/about-us\"}, \"verified\": {\"certificate_type\": \"Verified\", \"certificate_title\": \"Verified Certificate of Achievement\"}, \"honor\": {\"certificate_type\": \"Honor Code\", \"certificate_title\": \"Certificate of Achievement\"}}"}}, {"model": "oauth2_provider.application", "pk": 2, "fields": {"client_id": "login-service-client-id", "user": 2, "redirect_uris": "", "client_type": "public", "authorization_grant_type": "password", "client_secret": "mpAwLT424Wm3HQfjVydNCceq7ZOERB72jVuzLSo0B7KldmPHqCmYQNyCMS2mklqzJN4XyT7VRcqHG7bHC0KDHIqcOAMpMisuCi7jIigmseHKKLjgjsx6DM9Rem2cOvO6", "name": "Login Service for JWT Cookies", "skip_authorization": false, "created": "2018-10-25T14:53:08.054Z", "updated": "2018-10-25T14:53:08.054Z"}}, {"model": "django_comment_common.forumsconfig", "pk": 1, "fields": {"change_date": "2017-12-06T02:23:41.040Z", "changed_by": null, "enabled": true, "connection_timeout": 5.0}}, {"model": "dark_lang.darklangconfig", "pk": 1, "fields": {"change_date": "2017-12-06T02:22:45.120Z", "changed_by": null, "enabled": true, "released_languages": "", "enable_beta_languages": false, "beta_languages": ""}}] \ No newline at end of file diff --git a/common/test/db_cache/bok_choy_migrations.sha1 b/common/test/db_cache/bok_choy_migrations.sha1 index 71ede57b6a9b36973392d2bf733ac798a295d631..8001abf2c7e26990e8be3abc0224455852203687 100644 --- a/common/test/db_cache/bok_choy_migrations.sha1 +++ b/common/test/db_cache/bok_choy_migrations.sha1 @@ -1 +1 @@ -d808f200f0f77beb2f243e204446a48bdb056ee1 \ No newline at end of file +eaf06c0a4b7fef23f00a56d6e7b8e87d37fb03e1 \ No newline at end of file diff --git a/common/test/db_cache/bok_choy_migrations_data_default.sql b/common/test/db_cache/bok_choy_migrations_data_default.sql index e23c41f857ff9f46d9d0326be4bed28ac7c4c4dd..0fcbc0f64a1a58539e9405b91ed4578d181fa460 100644 --- a/common/test/db_cache/bok_choy_migrations_data_default.sql +++ b/common/test/db_cache/bok_choy_migrations_data_default.sql @@ -21,7 +21,7 @@ LOCK TABLES `django_migrations` WRITE; /*!40000 ALTER TABLE `django_migrations` DISABLE KEYS */; -INSERT INTO `django_migrations` VALUES (1,'contenttypes','0001_initial','2019-02-06 07:56:07.314317'),(2,'auth','0001_initial','2019-02-06 07:56:07.832368'),(3,'admin','0001_initial','2019-02-06 07:56:07.961256'),(4,'admin','0002_logentry_remove_auto_add','2019-02-06 07:56:08.013912'),(5,'sites','0001_initial','2019-02-06 07:56:08.072888'),(6,'contenttypes','0002_remove_content_type_name','2019-02-06 07:56:08.230528'),(7,'api_admin','0001_initial','2019-02-06 07:56:08.454101'),(8,'api_admin','0002_auto_20160325_1604','2019-02-06 07:56:08.533622'),(9,'api_admin','0003_auto_20160404_1618','2019-02-06 07:56:08.983603'),(10,'api_admin','0004_auto_20160412_1506','2019-02-06 07:56:09.311723'),(11,'api_admin','0005_auto_20160414_1232','2019-02-06 07:56:09.410291'),(12,'api_admin','0006_catalog','2019-02-06 07:56:09.439372'),(13,'api_admin','0007_delete_historical_api_records','2019-02-06 07:56:09.673117'),(14,'assessment','0001_initial','2019-02-06 07:56:11.477983'),(15,'assessment','0002_staffworkflow','2019-02-06 07:56:11.625937'),(16,'assessment','0003_expand_course_id','2019-02-06 07:56:11.815858'),(17,'auth','0002_alter_permission_name_max_length','2019-02-06 07:56:11.891156'),(18,'auth','0003_alter_user_email_max_length','2019-02-06 07:56:11.975525'),(19,'auth','0004_alter_user_username_opts','2019-02-06 07:56:12.013750'),(20,'auth','0005_alter_user_last_login_null','2019-02-06 07:56:12.096481'),(21,'auth','0006_require_contenttypes_0002','2019-02-06 07:56:12.108286'),(22,'auth','0007_alter_validators_add_error_messages','2019-02-06 07:56:12.164989'),(23,'auth','0008_alter_user_username_max_length','2019-02-06 07:56:12.240860'),(24,'instructor_task','0001_initial','2019-02-06 07:56:12.395820'),(25,'certificates','0001_initial','2019-02-06 07:56:13.480164'),(26,'certificates','0002_data__certificatehtmlviewconfiguration_data','2019-02-06 07:56:13.607503'),(27,'certificates','0003_data__default_modes','2019-02-06 07:56:13.751659'),(28,'certificates','0004_certificategenerationhistory','2019-02-06 07:56:13.904399'),(29,'certificates','0005_auto_20151208_0801','2019-02-06 07:56:13.986383'),(30,'certificates','0006_certificatetemplateasset_asset_slug','2019-02-06 07:56:14.058304'),(31,'certificates','0007_certificateinvalidation','2019-02-06 07:56:14.210453'),(32,'badges','0001_initial','2019-02-06 07:56:14.782804'),(33,'badges','0002_data__migrate_assertions','2019-02-06 07:56:15.175628'),(34,'badges','0003_schema__add_event_configuration','2019-02-06 07:56:15.324266'),(35,'block_structure','0001_config','2019-02-06 07:56:15.455000'),(36,'block_structure','0002_blockstructuremodel','2019-02-06 07:56:15.522120'),(37,'block_structure','0003_blockstructuremodel_storage','2019-02-06 07:56:15.564915'),(38,'block_structure','0004_blockstructuremodel_usagekeywithrun','2019-02-06 07:56:15.616240'),(39,'bookmarks','0001_initial','2019-02-06 07:56:16.017402'),(40,'branding','0001_initial','2019-02-06 07:56:16.267188'),(41,'course_modes','0001_initial','2019-02-06 07:56:16.438443'),(42,'course_modes','0002_coursemode_expiration_datetime_is_explicit','2019-02-06 07:56:16.519337'),(43,'course_modes','0003_auto_20151113_1443','2019-02-06 07:56:16.576659'),(44,'course_modes','0004_auto_20151113_1457','2019-02-06 07:56:16.732369'),(45,'course_modes','0005_auto_20151217_0958','2019-02-06 07:56:16.788036'),(46,'course_modes','0006_auto_20160208_1407','2019-02-06 07:56:16.883873'),(47,'course_modes','0007_coursemode_bulk_sku','2019-02-06 07:56:17.029222'),(48,'course_groups','0001_initial','2019-02-06 07:56:18.181254'),(49,'bulk_email','0001_initial','2019-02-06 07:56:18.660435'),(50,'bulk_email','0002_data__load_course_email_template','2019-02-06 07:56:18.937143'),(51,'bulk_email','0003_config_model_feature_flag','2019-02-06 07:56:19.093038'),(52,'bulk_email','0004_add_email_targets','2019-02-06 07:56:19.788595'),(53,'bulk_email','0005_move_target_data','2019-02-06 07:56:19.959402'),(54,'bulk_email','0006_course_mode_targets','2019-02-06 07:56:20.165336'),(55,'catalog','0001_initial','2019-02-06 07:56:20.308745'),(56,'catalog','0002_catalogintegration_username','2019-02-06 07:56:20.439737'),(57,'catalog','0003_catalogintegration_page_size','2019-02-06 07:56:20.584307'),(58,'catalog','0004_auto_20170616_0618','2019-02-06 07:56:20.692298'),(59,'catalog','0005_catalogintegration_long_term_cache_ttl','2019-02-06 07:56:20.821560'),(60,'django_comment_common','0001_initial','2019-02-06 07:56:21.271577'),(61,'django_comment_common','0002_forumsconfig','2019-02-06 07:56:21.463632'),(62,'verified_track_content','0001_initial','2019-02-06 07:56:21.537783'),(63,'course_overviews','0001_initial','2019-02-06 07:56:21.715657'),(64,'course_overviews','0002_add_course_catalog_fields','2019-02-06 07:56:21.984772'),(65,'course_overviews','0003_courseoverviewgeneratedhistory','2019-02-06 07:56:22.053252'),(66,'course_overviews','0004_courseoverview_org','2019-02-06 07:56:22.134954'),(67,'course_overviews','0005_delete_courseoverviewgeneratedhistory','2019-02-06 07:56:22.184071'),(68,'course_overviews','0006_courseoverviewimageset','2019-02-06 07:56:22.290455'),(69,'course_overviews','0007_courseoverviewimageconfig','2019-02-06 07:56:22.466348'),(70,'course_overviews','0008_remove_courseoverview_facebook_url','2019-02-06 07:56:22.484576'),(71,'course_overviews','0009_readd_facebook_url','2019-02-06 07:56:22.501725'),(72,'course_overviews','0010_auto_20160329_2317','2019-02-06 07:56:22.645825'),(73,'ccx','0001_initial','2019-02-06 07:56:23.183002'),(74,'ccx','0002_customcourseforedx_structure_json','2019-02-06 07:56:23.289052'),(75,'ccx','0003_add_master_course_staff_in_ccx','2019-02-06 07:56:23.840989'),(76,'ccx','0004_seed_forum_roles_in_ccx_courses','2019-02-06 07:56:23.988777'),(77,'ccx','0005_change_ccx_coach_to_staff','2019-02-06 07:56:24.160387'),(78,'ccx','0006_set_display_name_as_override','2019-02-06 07:56:24.337876'),(79,'ccxcon','0001_initial_ccxcon_model','2019-02-06 07:56:24.409092'),(80,'ccxcon','0002_auto_20160325_0407','2019-02-06 07:56:24.470172'),(81,'djcelery','0001_initial','2019-02-06 07:56:25.046777'),(82,'celery_utils','0001_initial','2019-02-06 07:56:25.165469'),(83,'celery_utils','0002_chordable_django_backend','2019-02-06 07:56:25.339734'),(84,'certificates','0008_schema__remove_badges','2019-02-06 07:56:25.535263'),(85,'certificates','0009_certificategenerationcoursesetting_language_self_generation','2019-02-06 07:56:25.851268'),(86,'certificates','0010_certificatetemplate_language','2019-02-06 07:56:25.927039'),(87,'certificates','0011_certificatetemplate_alter_unique','2019-02-06 07:56:26.154544'),(88,'certificates','0012_certificategenerationcoursesetting_include_hours_of_effort','2019-02-06 07:56:26.228554'),(89,'certificates','0013_remove_certificategenerationcoursesetting_enabled','2019-02-06 07:56:26.310926'),(90,'certificates','0014_change_eligible_certs_manager','2019-02-06 07:56:26.373051'),(91,'commerce','0001_data__add_ecommerce_service_user','2019-02-06 07:56:26.595906'),(92,'commerce','0002_commerceconfiguration','2019-02-06 07:56:26.698815'),(93,'commerce','0003_auto_20160329_0709','2019-02-06 07:56:26.761254'),(94,'commerce','0004_auto_20160531_0950','2019-02-06 07:56:27.150989'),(95,'commerce','0005_commerceconfiguration_enable_automatic_refund_approval','2019-02-06 07:56:27.241421'),(96,'commerce','0006_auto_20170424_1734','2019-02-06 07:56:27.316222'),(97,'commerce','0007_auto_20180313_0609','2019-02-06 07:56:27.466841'),(98,'completion','0001_initial','2019-02-06 07:56:27.696977'),(99,'completion','0002_auto_20180125_1510','2019-02-06 07:56:27.757853'),(100,'enterprise','0001_initial','2019-02-06 07:56:28.027244'),(101,'enterprise','0002_enterprisecustomerbrandingconfiguration','2019-02-06 07:56:28.117647'),(102,'enterprise','0003_auto_20161104_0937','2019-02-06 07:56:28.428631'),(103,'enterprise','0004_auto_20161114_0434','2019-02-06 07:56:28.594141'),(104,'enterprise','0005_pendingenterprisecustomeruser','2019-02-06 07:56:28.710577'),(105,'enterprise','0006_auto_20161121_0241','2019-02-06 07:56:28.775663'),(106,'enterprise','0007_auto_20161109_1511','2019-02-06 07:56:28.924039'),(107,'enterprise','0008_auto_20161124_2355','2019-02-06 07:56:29.200628'),(108,'enterprise','0009_auto_20161130_1651','2019-02-06 07:56:29.740933'),(109,'enterprise','0010_auto_20161222_1212','2019-02-06 07:56:29.889801'),(110,'enterprise','0011_enterprisecustomerentitlement_historicalenterprisecustomerentitlement','2019-02-06 07:56:30.134143'),(111,'enterprise','0012_auto_20170125_1033','2019-02-06 07:56:30.264122'),(112,'enterprise','0013_auto_20170125_1157','2019-02-06 07:56:30.893749'),(113,'enterprise','0014_enrollmentnotificationemailtemplate_historicalenrollmentnotificationemailtemplate','2019-02-06 07:56:31.215731'),(114,'enterprise','0015_auto_20170130_0003','2019-02-06 07:56:31.450278'),(115,'enterprise','0016_auto_20170405_0647','2019-02-06 07:56:32.231656'),(116,'enterprise','0017_auto_20170508_1341','2019-02-06 07:56:32.492394'),(117,'enterprise','0018_auto_20170511_1357','2019-02-06 07:56:32.686868'),(118,'enterprise','0019_auto_20170606_1853','2019-02-06 07:56:32.884924'),(119,'enterprise','0020_auto_20170624_2316','2019-02-06 07:56:33.722514'),(120,'enterprise','0021_auto_20170711_0712','2019-02-06 07:56:34.290994'),(121,'enterprise','0022_auto_20170720_1543','2019-02-06 07:56:34.459932'),(122,'enterprise','0023_audit_data_reporting_flag','2019-02-06 07:56:34.693710'),(123,'enterprise','0024_enterprisecustomercatalog_historicalenterprisecustomercatalog','2019-02-06 07:56:34.991211'),(124,'enterprise','0025_auto_20170828_1412','2019-02-06 07:56:35.555899'),(125,'enterprise','0026_make_require_account_level_consent_nullable','2019-02-06 07:56:35.765541'),(126,'enterprise','0027_remove_account_level_consent','2019-02-06 07:56:36.799493'),(127,'enterprise','0028_link_enterprise_to_enrollment_template','2019-02-06 07:56:37.434413'),(128,'enterprise','0029_auto_20170925_1909','2019-02-06 07:56:37.650440'),(129,'enterprise','0030_auto_20171005_1600','2019-02-06 07:56:38.219936'),(130,'enterprise','0031_auto_20171012_1249','2019-02-06 07:56:38.438979'),(131,'enterprise','0032_reporting_model','2019-02-06 07:56:38.594362'),(132,'enterprise','0033_add_history_change_reason_field','2019-02-06 07:56:39.182772'),(133,'enterprise','0034_auto_20171023_0727','2019-02-06 07:56:39.321896'),(134,'enterprise','0035_auto_20171212_1129','2019-02-06 07:56:39.517158'),(135,'enterprise','0036_sftp_reporting_support','2019-02-06 07:56:39.958256'),(136,'enterprise','0037_auto_20180110_0450','2019-02-06 07:56:40.144689'),(137,'enterprise','0038_auto_20180122_1427','2019-02-06 07:56:40.326004'),(138,'enterprise','0039_auto_20180129_1034','2019-02-06 07:56:40.539093'),(139,'enterprise','0040_auto_20180129_1428','2019-02-06 07:56:40.854288'),(140,'enterprise','0041_auto_20180212_1507','2019-02-06 07:56:41.037158'),(141,'consent','0001_initial','2019-02-06 07:56:41.608778'),(142,'consent','0002_migrate_to_new_data_sharing_consent','2019-02-06 07:56:42.267785'),(143,'consent','0003_historicaldatasharingconsent_history_change_reason','2019-02-06 07:56:42.405847'),(144,'consent','0004_datasharingconsenttextoverrides','2019-02-06 07:56:42.584250'),(145,'sites','0002_alter_domain_unique','2019-02-06 07:56:42.663878'),(146,'course_overviews','0011_courseoverview_marketing_url','2019-02-06 07:56:42.745921'),(147,'course_overviews','0012_courseoverview_eligible_for_financial_aid','2019-02-06 07:56:42.834692'),(148,'course_overviews','0013_courseoverview_language','2019-02-06 07:56:42.913480'),(149,'course_overviews','0014_courseoverview_certificate_available_date','2019-02-06 07:56:42.991669'),(150,'content_type_gating','0001_initial','2019-02-06 07:56:43.235932'),(151,'content_type_gating','0002_auto_20181119_0959','2019-02-06 07:56:43.426345'),(152,'content_type_gating','0003_auto_20181128_1407','2019-02-06 07:56:43.580657'),(153,'content_type_gating','0004_auto_20181128_1521','2019-02-06 07:56:43.695613'),(154,'contentserver','0001_initial','2019-02-06 07:56:43.851239'),(155,'contentserver','0002_cdnuseragentsconfig','2019-02-06 07:56:44.018561'),(156,'cors_csrf','0001_initial','2019-02-06 07:56:44.181287'),(157,'course_action_state','0001_initial','2019-02-06 07:56:44.503331'),(158,'course_duration_limits','0001_initial','2019-02-06 07:56:44.746279'),(159,'course_duration_limits','0002_auto_20181119_0959','2019-02-06 07:56:44.877465'),(160,'course_duration_limits','0003_auto_20181128_1407','2019-02-06 07:56:45.039785'),(161,'course_duration_limits','0004_auto_20181128_1521','2019-02-06 07:56:45.182919'),(162,'course_goals','0001_initial','2019-02-06 07:56:45.519690'),(163,'course_goals','0002_auto_20171010_1129','2019-02-06 07:56:45.644315'),(164,'course_groups','0002_change_inline_default_cohort_value','2019-02-06 07:56:45.709570'),(165,'course_groups','0003_auto_20170609_1455','2019-02-06 07:56:45.983496'),(166,'course_modes','0008_course_key_field_to_foreign_key','2019-02-06 07:56:46.593883'),(167,'course_modes','0009_suggested_prices_to_charfield','2019-02-06 07:56:46.661433'),(168,'course_modes','0010_archived_suggested_prices_to_charfield','2019-02-06 07:56:46.723034'),(169,'course_modes','0011_change_regex_for_comma_separated_ints','2019-02-06 07:56:46.829468'),(170,'courseware','0001_initial','2019-02-06 07:56:49.952932'),(171,'courseware','0002_coursedynamicupgradedeadlineconfiguration_dynamicupgradedeadlineconfiguration','2019-02-06 07:56:50.721374'),(172,'courseware','0003_auto_20170825_0935','2019-02-06 07:56:50.903279'),(173,'courseware','0004_auto_20171010_1639','2019-02-06 07:56:51.166884'),(174,'courseware','0005_orgdynamicupgradedeadlineconfiguration','2019-02-06 07:56:51.597870'),(175,'courseware','0006_remove_module_id_index','2019-02-06 07:56:51.781895'),(176,'courseware','0007_remove_done_index','2019-02-06 07:56:51.968472'),(177,'coursewarehistoryextended','0001_initial','2019-02-06 07:56:52.632278'),(178,'coursewarehistoryextended','0002_force_studentmodule_index','2019-02-06 07:56:52.709752'),(179,'crawlers','0001_initial','2019-02-06 07:56:53.074661'),(180,'crawlers','0002_auto_20170419_0018','2019-02-06 07:56:53.203552'),(181,'credentials','0001_initial','2019-02-06 07:56:53.404087'),(182,'credentials','0002_auto_20160325_0631','2019-02-06 07:56:53.531754'),(183,'credentials','0003_auto_20170525_1109','2019-02-06 07:56:53.709376'),(184,'credentials','0004_notifycredentialsconfig','2019-02-06 07:56:53.854337'),(185,'credit','0001_initial','2019-02-06 07:56:55.324738'),(186,'credit','0002_creditconfig','2019-02-06 07:56:55.478476'),(187,'credit','0003_auto_20160511_2227','2019-02-06 07:56:55.552916'),(188,'credit','0004_delete_historical_credit_records','2019-02-06 07:56:56.180340'),(189,'dark_lang','0001_initial','2019-02-06 07:56:56.341474'),(190,'dark_lang','0002_data__enable_on_install','2019-02-06 07:56:56.783194'),(191,'dark_lang','0003_auto_20180425_0359','2019-02-06 07:56:57.055067'),(192,'database_fixups','0001_initial','2019-02-06 07:56:57.627927'),(193,'degreed','0001_initial','2019-02-06 07:56:58.969941'),(194,'degreed','0002_auto_20180104_0103','2019-02-06 07:56:59.471941'),(195,'degreed','0003_auto_20180109_0712','2019-02-06 07:56:59.731040'),(196,'degreed','0004_auto_20180306_1251','2019-02-06 07:56:59.997860'),(197,'degreed','0005_auto_20180807_1302','2019-02-06 07:57:02.069830'),(198,'degreed','0006_upgrade_django_simple_history','2019-02-06 07:57:02.273708'),(199,'django_comment_common','0003_enable_forums','2019-02-06 07:57:02.626514'),(200,'django_comment_common','0004_auto_20161117_1209','2019-02-06 07:57:02.820104'),(201,'django_comment_common','0005_coursediscussionsettings','2019-02-06 07:57:02.896624'),(202,'django_comment_common','0006_coursediscussionsettings_discussions_id_map','2019-02-06 07:57:02.998038'),(203,'django_comment_common','0007_discussionsidmapping','2019-02-06 07:57:03.083783'),(204,'django_comment_common','0008_role_user_index','2019-02-06 07:57:03.168933'),(205,'django_notify','0001_initial','2019-02-06 07:57:04.348365'),(206,'django_openid_auth','0001_initial','2019-02-06 07:57:04.778823'),(207,'oauth2','0001_initial','2019-02-06 07:57:06.639640'),(208,'edx_oauth2_provider','0001_initial','2019-02-06 07:57:06.912829'),(209,'edx_proctoring','0001_initial','2019-02-06 07:57:11.833284'),(210,'edx_proctoring','0002_proctoredexamstudentattempt_is_status_acknowledged','2019-02-06 07:57:12.158509'),(211,'edx_proctoring','0003_auto_20160101_0525','2019-02-06 07:57:12.624375'),(212,'edx_proctoring','0004_auto_20160201_0523','2019-02-06 07:57:13.412490'),(213,'edx_proctoring','0005_proctoredexam_hide_after_due','2019-02-06 07:57:13.542482'),(214,'edx_proctoring','0006_allowed_time_limit_mins','2019-02-06 07:57:13.995842'),(215,'edx_proctoring','0007_proctoredexam_backend','2019-02-06 07:57:14.113562'),(216,'edx_proctoring','0008_auto_20181116_1551','2019-02-06 07:57:14.705891'),(217,'edx_proctoring','0009_proctoredexamreviewpolicy_remove_rules','2019-02-06 07:57:15.116276'),(218,'edxval','0001_initial','2019-02-06 07:57:15.863533'),(219,'edxval','0002_data__default_profiles','2019-02-06 07:57:16.818661'),(220,'edxval','0003_coursevideo_is_hidden','2019-02-06 07:57:16.918246'),(221,'edxval','0004_data__add_hls_profile','2019-02-06 07:57:17.289957'),(222,'edxval','0005_videoimage','2019-02-06 07:57:17.492770'),(223,'edxval','0006_auto_20171009_0725','2019-02-06 07:57:17.716551'),(224,'edxval','0007_transcript_credentials_state','2019-02-06 07:57:17.845730'),(225,'edxval','0008_remove_subtitles','2019-02-06 07:57:17.992131'),(226,'edxval','0009_auto_20171127_0406','2019-02-06 07:57:18.060122'),(227,'edxval','0010_add_video_as_foreign_key','2019-02-06 07:57:18.365704'),(228,'edxval','0011_data__add_audio_mp3_profile','2019-02-06 07:57:18.730704'),(229,'email_marketing','0001_initial','2019-02-06 07:57:19.051984'),(230,'email_marketing','0002_auto_20160623_1656','2019-02-06 07:57:21.789475'),(231,'email_marketing','0003_auto_20160715_1145','2019-02-06 07:57:22.963260'),(232,'email_marketing','0004_emailmarketingconfiguration_welcome_email_send_delay','2019-02-06 07:57:23.293836'),(233,'email_marketing','0005_emailmarketingconfiguration_user_registration_cookie_timeout_delay','2019-02-06 07:57:23.617029'),(234,'email_marketing','0006_auto_20170711_0615','2019-02-06 07:57:24.245380'),(235,'email_marketing','0007_auto_20170809_0653','2019-02-06 07:57:24.897713'),(236,'email_marketing','0008_auto_20170809_0539','2019-02-06 07:57:25.325581'),(237,'email_marketing','0009_remove_emailmarketingconfiguration_sailthru_activation_template','2019-02-06 07:57:25.603626'),(238,'email_marketing','0010_auto_20180425_0800','2019-02-06 07:57:26.312049'),(239,'embargo','0001_initial','2019-02-06 07:57:28.072877'),(240,'embargo','0002_data__add_countries','2019-02-06 07:57:29.877570'),(241,'enterprise','0042_replace_sensitive_sso_username','2019-02-06 07:57:30.224348'),(242,'enterprise','0043_auto_20180507_0138','2019-02-06 07:57:30.838462'),(243,'enterprise','0044_reporting_config_multiple_types','2019-02-06 07:57:31.233674'),(244,'enterprise','0045_report_type_json','2019-02-06 07:57:31.322889'),(245,'enterprise','0046_remove_unique_constraints','2019-02-06 07:57:31.424455'),(246,'enterprise','0047_auto_20180517_0457','2019-02-06 07:57:31.785098'),(247,'enterprise','0048_enterprisecustomeruser_active','2019-02-06 07:57:31.904647'),(248,'enterprise','0049_auto_20180531_0321','2019-02-06 07:57:32.509863'),(249,'enterprise','0050_progress_v2','2019-02-06 07:57:33.253255'),(250,'enterprise','0051_add_enterprise_slug','2019-02-06 07:57:34.073175'),(251,'enterprise','0052_create_unique_slugs','2019-02-06 07:57:34.414601'),(252,'enterprise','0053_pendingenrollment_cohort_name','2019-02-06 07:57:34.520875'),(253,'enterprise','0053_auto_20180911_0811','2019-02-06 07:57:34.914654'),(254,'enterprise','0054_merge_20180914_1511','2019-02-06 07:57:34.944784'),(255,'enterprise','0055_auto_20181015_1112','2019-02-06 07:57:35.409450'),(256,'enterprise','0056_enterprisecustomerreportingconfiguration_pgp_encryption_key','2019-02-06 07:57:35.545845'),(257,'enterprise','0057_enterprisecustomerreportingconfiguration_enterprise_customer_catalogs','2019-02-06 07:57:35.960406'),(258,'enterprise','0058_auto_20181212_0145','2019-02-06 07:57:37.113916'),(259,'enterprise','0059_add_code_management_portal_config','2019-02-06 07:57:37.575928'),(260,'enterprise','0060_upgrade_django_simple_history','2019-02-06 07:57:38.213269'),(261,'student','0001_initial','2019-02-06 07:57:47.588358'),(262,'student','0002_auto_20151208_1034','2019-02-06 07:57:47.836707'),(263,'student','0003_auto_20160516_0938','2019-02-06 07:57:48.149932'),(264,'student','0004_auto_20160531_1422','2019-02-06 07:57:48.286460'),(265,'student','0005_auto_20160531_1653','2019-02-06 07:57:48.431860'),(266,'student','0006_logoutviewconfiguration','2019-02-06 07:57:48.974430'),(267,'student','0007_registrationcookieconfiguration','2019-02-06 07:57:49.147001'),(268,'student','0008_auto_20161117_1209','2019-02-06 07:57:49.263656'),(269,'student','0009_auto_20170111_0422','2019-02-06 07:57:49.377186'),(270,'student','0010_auto_20170207_0458','2019-02-06 07:57:49.407334'),(271,'student','0011_course_key_field_to_foreign_key','2019-02-06 07:57:50.975260'),(272,'student','0012_sociallink','2019-02-06 07:57:51.409953'),(273,'student','0013_delete_historical_enrollment_records','2019-02-06 07:57:52.968613'),(274,'entitlements','0001_initial','2019-02-06 07:57:53.425447'),(275,'entitlements','0002_auto_20171102_0719','2019-02-06 07:57:55.014484'),(276,'entitlements','0003_auto_20171205_1431','2019-02-06 07:57:57.282703'),(277,'entitlements','0004_auto_20171206_1729','2019-02-06 07:57:57.704486'),(278,'entitlements','0005_courseentitlementsupportdetail','2019-02-06 07:57:58.400522'),(279,'entitlements','0006_courseentitlementsupportdetail_action','2019-02-06 07:57:59.000339'),(280,'entitlements','0007_change_expiration_period_default','2019-02-06 07:57:59.217527'),(281,'entitlements','0008_auto_20180328_1107','2019-02-06 07:58:00.023003'),(282,'entitlements','0009_courseentitlement_refund_locked','2019-02-06 07:58:00.552995'),(283,'entitlements','0010_backfill_refund_lock','2019-02-06 07:58:01.471558'),(284,'experiments','0001_initial','2019-02-06 07:58:02.990331'),(285,'experiments','0002_auto_20170627_1402','2019-02-06 07:58:03.207899'),(286,'experiments','0003_auto_20170713_1148','2019-02-06 07:58:03.289623'),(287,'external_auth','0001_initial','2019-02-06 07:58:04.122332'),(288,'grades','0001_initial','2019-02-06 07:58:04.449795'),(289,'grades','0002_rename_last_edited_field','2019-02-06 07:58:04.542638'),(290,'grades','0003_coursepersistentgradesflag_persistentgradesenabledflag','2019-02-06 07:58:05.727274'),(291,'grades','0004_visibleblocks_course_id','2019-02-06 07:58:05.867193'),(292,'grades','0005_multiple_course_flags','2019-02-06 07:58:06.312646'),(293,'grades','0006_persistent_course_grades','2019-02-06 07:58:06.568446'),(294,'grades','0007_add_passed_timestamp_column','2019-02-06 07:58:07.247313'),(295,'grades','0008_persistentsubsectiongrade_first_attempted','2019-02-06 07:58:07.349076'),(296,'grades','0009_auto_20170111_1507','2019-02-06 07:58:07.498641'),(297,'grades','0010_auto_20170112_1156','2019-02-06 07:58:07.583662'),(298,'grades','0011_null_edited_time','2019-02-06 07:58:07.916494'),(299,'grades','0012_computegradessetting','2019-02-06 07:58:08.432066'),(300,'grades','0013_persistentsubsectiongradeoverride','2019-02-06 07:58:08.633723'),(301,'grades','0014_persistentsubsectiongradeoverridehistory','2019-02-06 07:58:09.160210'),(302,'instructor_task','0002_gradereportsetting','2019-02-06 07:58:09.580204'),(303,'waffle','0001_initial','2019-02-06 07:58:10.444295'),(304,'sap_success_factors','0001_initial','2019-02-06 07:58:12.042509'),(305,'sap_success_factors','0002_auto_20170224_1545','2019-02-06 07:58:13.979236'),(306,'sap_success_factors','0003_auto_20170317_1402','2019-02-06 07:58:14.701821'),(307,'sap_success_factors','0004_catalogtransmissionaudit_audit_summary','2019-02-06 07:58:14.797945'),(308,'sap_success_factors','0005_historicalsapsuccessfactorsenterprisecustomerconfiguration_history_change_reason','2019-02-06 07:58:15.137352'),(309,'sap_success_factors','0006_sapsuccessfactors_use_enterprise_enrollment_page_waffle_flag','2019-02-06 07:58:15.692938'),(310,'sap_success_factors','0007_remove_historicalsapsuccessfactorsenterprisecustomerconfiguration_history_change_reason','2019-02-06 07:58:16.090806'),(311,'sap_success_factors','0008_historicalsapsuccessfactorsenterprisecustomerconfiguration_history_change_reason','2019-02-06 07:58:16.886204'),(312,'sap_success_factors','0009_sapsuccessfactors_remove_enterprise_enrollment_page_waffle_flag','2019-02-06 07:58:17.493133'),(313,'sap_success_factors','0010_move_audit_tables_to_base_integrated_channel','2019-02-06 07:58:18.256051'),(314,'integrated_channel','0001_initial','2019-02-06 07:58:18.434760'),(315,'integrated_channel','0002_delete_enterpriseintegratedchannel','2019-02-06 07:58:18.534852'),(316,'integrated_channel','0003_catalogtransmissionaudit_learnerdatatransmissionaudit','2019-02-06 07:58:18.697143'),(317,'integrated_channel','0004_catalogtransmissionaudit_channel','2019-02-06 07:58:18.821246'),(318,'integrated_channel','0005_auto_20180306_1251','2019-02-06 07:58:19.378821'),(319,'integrated_channel','0006_delete_catalogtransmissionaudit','2019-02-06 07:58:19.463872'),(320,'lms_xblock','0001_initial','2019-02-06 07:58:19.938021'),(321,'microsite_configuration','0001_initial','2019-02-06 07:58:24.417944'),(322,'microsite_configuration','0002_auto_20160202_0228','2019-02-06 07:58:24.704162'),(323,'microsite_configuration','0003_delete_historical_records','2019-02-06 07:58:27.217560'),(324,'milestones','0001_initial','2019-02-06 07:58:28.438298'),(325,'milestones','0002_data__seed_relationship_types','2019-02-06 07:58:29.074808'),(326,'milestones','0003_coursecontentmilestone_requirements','2019-02-06 07:58:29.198318'),(327,'milestones','0004_auto_20151221_1445','2019-02-06 07:58:29.608126'),(328,'mobile_api','0001_initial','2019-02-06 07:58:30.546212'),(329,'mobile_api','0002_auto_20160406_0904','2019-02-06 07:58:30.725452'),(330,'mobile_api','0003_ignore_mobile_available_flag','2019-02-06 07:58:31.637551'),(331,'notes','0001_initial','2019-02-06 07:58:32.158209'),(332,'oauth2','0002_auto_20160404_0813','2019-02-06 07:58:33.398358'),(333,'oauth2','0003_client_logout_uri','2019-02-06 07:58:33.785963'),(334,'oauth2','0004_add_index_on_grant_expires','2019-02-06 07:58:34.178788'),(335,'oauth2','0005_grant_nonce','2019-02-06 07:58:35.284863'),(336,'organizations','0001_initial','2019-02-06 07:58:35.646051'),(337,'organizations','0002_auto_20170117_1434','2019-02-06 07:58:35.750682'),(338,'organizations','0003_auto_20170221_1138','2019-02-06 07:58:35.925588'),(339,'organizations','0004_auto_20170413_2315','2019-02-06 07:58:36.060193'),(340,'organizations','0005_auto_20171116_0640','2019-02-06 07:58:36.145008'),(341,'organizations','0006_auto_20171207_0259','2019-02-06 07:58:36.257476'),(342,'oauth2_provider','0001_initial','2019-02-06 07:58:38.097999'),(343,'oauth_dispatch','0001_initial','2019-02-06 07:58:38.563660'),(344,'oauth_dispatch','0002_scopedapplication_scopedapplicationorganization','2019-02-06 07:58:40.054311'),(345,'oauth_dispatch','0003_application_data','2019-02-06 07:58:40.676680'),(346,'oauth_dispatch','0004_auto_20180626_1349','2019-02-06 07:58:43.112430'),(347,'oauth_dispatch','0005_applicationaccess_type','2019-02-06 07:58:43.714100'),(348,'oauth_dispatch','0006_drop_application_id_constraints','2019-02-06 07:58:44.030090'),(349,'oauth2_provider','0002_08_updates','2019-02-06 07:58:44.450850'),(350,'oauth2_provider','0003_auto_20160316_1503','2019-02-06 07:58:44.640899'),(351,'oauth2_provider','0004_auto_20160525_1623','2019-02-06 07:58:44.975564'),(352,'oauth2_provider','0005_auto_20170514_1141','2019-02-06 07:58:47.370031'),(353,'oauth2_provider','0006_auto_20171214_2232','2019-02-06 07:58:48.599294'),(354,'oauth_dispatch','0007_restore_application_id_constraints','2019-02-06 07:58:49.006205'),(355,'oauth_provider','0001_initial','2019-02-06 07:58:49.563238'),(356,'problem_builder','0001_initial','2019-02-06 07:58:49.794124'),(357,'problem_builder','0002_auto_20160121_1525','2019-02-06 07:58:50.200720'),(358,'problem_builder','0003_auto_20161124_0755','2019-02-06 07:58:50.413858'),(359,'problem_builder','0004_copy_course_ids','2019-02-06 07:58:51.128055'),(360,'problem_builder','0005_auto_20170112_1021','2019-02-06 07:58:51.340194'),(361,'problem_builder','0006_remove_deprecated_course_id','2019-02-06 07:58:51.564692'),(362,'programs','0001_initial','2019-02-06 07:58:51.747931'),(363,'programs','0002_programsapiconfig_cache_ttl','2019-02-06 07:58:51.898433'),(364,'programs','0003_auto_20151120_1613','2019-02-06 07:58:53.094465'),(365,'programs','0004_programsapiconfig_enable_certification','2019-02-06 07:58:53.288122'),(366,'programs','0005_programsapiconfig_max_retries','2019-02-06 07:58:53.445000'),(367,'programs','0006_programsapiconfig_xseries_ad_enabled','2019-02-06 07:58:53.602411'),(368,'programs','0007_programsapiconfig_program_listing_enabled','2019-02-06 07:58:53.755138'),(369,'programs','0008_programsapiconfig_program_details_enabled','2019-02-06 07:58:53.875763'),(370,'programs','0009_programsapiconfig_marketing_path','2019-02-06 07:58:54.018436'),(371,'programs','0010_auto_20170204_2332','2019-02-06 07:58:54.237222'),(372,'programs','0011_auto_20170301_1844','2019-02-06 07:58:55.604408'),(373,'programs','0012_auto_20170419_0018','2019-02-06 07:58:55.728622'),(374,'redirects','0001_initial','2019-02-06 07:58:56.618741'),(375,'rss_proxy','0001_initial','2019-02-06 07:58:56.722680'),(376,'sap_success_factors','0011_auto_20180104_0103','2019-02-06 07:59:01.328739'),(377,'sap_success_factors','0012_auto_20180109_0712','2019-02-06 07:59:01.778378'),(378,'sap_success_factors','0013_auto_20180306_1251','2019-02-06 07:59:02.285821'),(379,'sap_success_factors','0014_drop_historical_table','2019-02-06 07:59:02.903520'),(380,'sap_success_factors','0015_auto_20180510_1259','2019-02-06 07:59:03.734759'),(381,'sap_success_factors','0016_sapsuccessfactorsenterprisecustomerconfiguration_additional_locales','2019-02-06 07:59:03.878684'),(382,'sap_success_factors','0017_sapsuccessfactorsglobalconfiguration_search_student_api_path','2019-02-06 07:59:04.766539'),(383,'schedules','0001_initial','2019-02-06 07:59:05.179663'),(384,'schedules','0002_auto_20170816_1532','2019-02-06 07:59:05.397766'),(385,'schedules','0003_scheduleconfig','2019-02-06 07:59:05.977222'),(386,'schedules','0004_auto_20170922_1428','2019-02-06 07:59:06.791066'),(387,'schedules','0005_auto_20171010_1722','2019-02-06 07:59:07.631416'),(388,'schedules','0006_scheduleexperience','2019-02-06 07:59:08.189048'),(389,'schedules','0007_scheduleconfig_hold_back_ratio','2019-02-06 07:59:08.776239'),(390,'self_paced','0001_initial','2019-02-06 07:59:09.799050'),(391,'sessions','0001_initial','2019-02-06 07:59:09.921074'),(392,'shoppingcart','0001_initial','2019-02-06 07:59:21.053818'),(393,'shoppingcart','0002_auto_20151208_1034','2019-02-06 07:59:21.335220'),(394,'shoppingcart','0003_auto_20151217_0958','2019-02-06 07:59:21.599445'),(395,'shoppingcart','0004_change_meta_options','2019-02-06 07:59:21.823322'),(396,'site_configuration','0001_initial','2019-02-06 07:59:22.992881'),(397,'site_configuration','0002_auto_20160720_0231','2019-02-06 07:59:23.853074'),(398,'default','0001_initial','2019-02-06 07:59:25.015201'),(399,'social_auth','0001_initial','2019-02-06 07:59:25.046686'),(400,'default','0002_add_related_name','2019-02-06 07:59:25.500745'),(401,'social_auth','0002_add_related_name','2019-02-06 07:59:25.532177'),(402,'default','0003_alter_email_max_length','2019-02-06 07:59:25.652620'),(403,'social_auth','0003_alter_email_max_length','2019-02-06 07:59:25.690150'),(404,'default','0004_auto_20160423_0400','2019-02-06 07:59:26.074154'),(405,'social_auth','0004_auto_20160423_0400','2019-02-06 07:59:26.105575'),(406,'social_auth','0005_auto_20160727_2333','2019-02-06 07:59:26.241475'),(407,'social_django','0006_partial','2019-02-06 07:59:26.399875'),(408,'social_django','0007_code_timestamp','2019-02-06 07:59:26.566550'),(409,'social_django','0008_partial_timestamp','2019-02-06 07:59:26.712434'),(410,'splash','0001_initial','2019-02-06 07:59:27.288326'),(411,'static_replace','0001_initial','2019-02-06 07:59:27.851106'),(412,'static_replace','0002_assetexcludedextensionsconfig','2019-02-06 07:59:29.178463'),(413,'status','0001_initial','2019-02-06 07:59:30.834233'),(414,'status','0002_update_help_text','2019-02-06 07:59:31.259226'),(415,'student','0014_courseenrollmentallowed_user','2019-02-06 07:59:31.843553'),(416,'student','0015_manualenrollmentaudit_add_role','2019-02-06 07:59:32.339124'),(417,'student','0016_coursenrollment_course_on_delete_do_nothing','2019-02-06 07:59:33.019734'),(418,'student','0017_accountrecovery','2019-02-06 07:59:34.081866'),(419,'student','0018_remove_password_history','2019-02-06 07:59:35.360857'),(420,'student','0019_auto_20181221_0540','2019-02-06 07:59:36.450684'),(421,'submissions','0001_initial','2019-02-06 07:59:37.468217'),(422,'submissions','0002_auto_20151119_0913','2019-02-06 07:59:37.751719'),(423,'submissions','0003_submission_status','2019-02-06 07:59:37.951880'),(424,'submissions','0004_remove_django_extensions','2019-02-06 07:59:38.080449'),(425,'survey','0001_initial','2019-02-06 07:59:38.937112'),(426,'teams','0001_initial','2019-02-06 07:59:42.234272'),(427,'theming','0001_initial','2019-02-06 07:59:42.964122'),(428,'third_party_auth','0001_initial','2019-02-06 07:59:46.893944'),(429,'third_party_auth','0002_schema__provider_icon_image','2019-02-06 07:59:51.814091'),(430,'third_party_auth','0003_samlproviderconfig_debug_mode','2019-02-06 07:59:52.360263'),(431,'third_party_auth','0004_add_visible_field','2019-02-06 07:59:56.187303'),(432,'third_party_auth','0005_add_site_field','2019-02-06 08:00:00.726584'),(433,'third_party_auth','0006_samlproviderconfig_automatic_refresh_enabled','2019-02-06 08:00:01.267932'),(434,'third_party_auth','0007_auto_20170406_0912','2019-02-06 08:00:02.190874'),(435,'third_party_auth','0008_auto_20170413_1455','2019-02-06 08:00:03.658115'),(436,'third_party_auth','0009_auto_20170415_1144','2019-02-06 08:00:05.420674'),(437,'third_party_auth','0010_add_skip_hinted_login_dialog_field','2019-02-06 08:00:07.334260'),(438,'third_party_auth','0011_auto_20170616_0112','2019-02-06 08:00:07.841081'),(439,'third_party_auth','0012_auto_20170626_1135','2019-02-06 08:00:09.649831'),(440,'third_party_auth','0013_sync_learner_profile_data','2019-02-06 08:00:12.254172'),(441,'third_party_auth','0014_auto_20171222_1233','2019-02-06 08:00:13.935686'),(442,'third_party_auth','0015_samlproviderconfig_archived','2019-02-06 08:00:14.559179'),(443,'third_party_auth','0016_auto_20180130_0938','2019-02-06 08:00:15.656894'),(444,'third_party_auth','0017_remove_icon_class_image_secondary_fields','2019-02-06 08:00:17.597823'),(445,'third_party_auth','0018_auto_20180327_1631','2019-02-06 08:00:20.302724'),(446,'third_party_auth','0019_consolidate_slug','2019-02-06 08:00:23.246774'),(447,'third_party_auth','0020_cleanup_slug_fields','2019-02-06 08:00:25.498101'),(448,'third_party_auth','0021_sso_id_verification','2019-02-06 08:00:27.269685'),(449,'third_party_auth','0022_auto_20181012_0307','2019-02-06 08:00:30.475559'),(450,'thumbnail','0001_initial','2019-02-06 08:00:30.680886'),(451,'track','0001_initial','2019-02-06 08:00:30.998373'),(452,'user_api','0001_initial','2019-02-06 08:00:35.324701'),(453,'user_api','0002_retirementstate_userretirementstatus','2019-02-06 08:00:36.082707'),(454,'user_api','0003_userretirementrequest','2019-02-06 08:00:36.665229'),(455,'user_api','0004_userretirementpartnerreportingstatus','2019-02-06 08:00:37.317791'),(456,'user_authn','0001_data__add_login_service','2019-02-06 08:00:39.270679'),(457,'util','0001_initial','2019-02-06 08:00:39.822745'),(458,'util','0002_data__default_rate_limit_config','2019-02-06 08:00:40.606869'),(459,'verified_track_content','0002_verifiedtrackcohortedcourse_verified_cohort_name','2019-02-06 08:00:40.741152'),(460,'verified_track_content','0003_migrateverifiedtrackcohortssetting','2019-02-06 08:00:41.360407'),(461,'verify_student','0001_initial','2019-02-06 08:00:47.236180'),(462,'verify_student','0002_auto_20151124_1024','2019-02-06 08:00:47.481347'),(463,'verify_student','0003_auto_20151113_1443','2019-02-06 08:00:47.697474'),(464,'verify_student','0004_delete_historical_records','2019-02-06 08:00:47.928549'),(465,'verify_student','0005_remove_deprecated_models','2019-02-06 08:00:53.255639'),(466,'verify_student','0006_ssoverification','2019-02-06 08:00:53.608512'),(467,'verify_student','0007_idverificationaggregate','2019-02-06 08:00:54.126314'),(468,'verify_student','0008_populate_idverificationaggregate','2019-02-06 08:00:55.099295'),(469,'verify_student','0009_remove_id_verification_aggregate','2019-02-06 08:00:55.505989'),(470,'verify_student','0010_manualverification','2019-02-06 08:00:55.733258'),(471,'verify_student','0011_add_fields_to_sspv','2019-02-06 08:00:56.760072'),(472,'video_config','0001_initial','2019-02-06 08:00:57.094097'),(473,'video_config','0002_coursevideotranscriptenabledflag_videotranscriptenabledflag','2019-02-06 08:00:57.451972'),(474,'video_config','0003_transcriptmigrationsetting','2019-02-06 08:00:57.665251'),(475,'video_config','0004_transcriptmigrationsetting_command_run','2019-02-06 08:00:57.846477'),(476,'video_config','0005_auto_20180719_0752','2019-02-06 08:00:58.093978'),(477,'video_config','0006_videothumbnailetting_updatedcoursevideos','2019-02-06 08:00:58.479655'),(478,'video_config','0007_videothumbnailsetting_offset','2019-02-06 08:00:58.702464'),(479,'video_pipeline','0001_initial','2019-02-06 08:00:58.930134'),(480,'video_pipeline','0002_auto_20171114_0704','2019-02-06 08:00:59.248554'),(481,'video_pipeline','0003_coursevideouploadsenabledbydefault_videouploadsenabledbydefault','2019-02-06 08:00:59.639240'),(482,'waffle','0002_auto_20161201_0958','2019-02-06 08:00:59.770761'),(483,'waffle_utils','0001_initial','2019-02-06 08:01:00.120690'),(484,'wiki','0001_initial','2019-02-06 08:01:13.521825'),(485,'wiki','0002_remove_article_subscription','2019-02-06 08:01:13.635976'),(486,'wiki','0003_ip_address_conv','2019-02-06 08:01:15.191324'),(487,'wiki','0004_increase_slug_size','2019-02-06 08:01:15.438646'),(488,'wiki','0005_remove_attachments_and_images','2019-02-06 08:01:20.535437'),(489,'workflow','0001_initial','2019-02-06 08:01:20.955248'),(490,'workflow','0002_remove_django_extensions','2019-02-06 08:01:21.089005'),(491,'xapi','0001_initial','2019-02-06 08:01:21.762133'),(492,'xapi','0002_auto_20180726_0142','2019-02-06 08:01:22.140082'),(493,'xblock_django','0001_initial','2019-02-06 08:01:22.817601'),(494,'xblock_django','0002_auto_20160204_0809','2019-02-06 08:01:23.428800'),(495,'xblock_django','0003_add_new_config_models','2019-02-06 08:01:26.720065'),(496,'xblock_django','0004_delete_xblock_disable_config','2019-02-06 08:01:28.046351'),(497,'social_django','0002_add_related_name','2019-02-06 08:01:28.238120'),(498,'social_django','0003_alter_email_max_length','2019-02-06 08:01:28.295485'),(499,'social_django','0004_auto_20160423_0400','2019-02-06 08:01:28.369651'),(500,'social_django','0001_initial','2019-02-06 08:01:28.419547'),(501,'social_django','0005_auto_20160727_2333','2019-02-06 08:01:28.470149'),(502,'contentstore','0001_initial','2019-02-06 08:02:13.717472'),(503,'contentstore','0002_add_assets_page_flag','2019-02-06 08:02:14.894230'),(504,'contentstore','0003_remove_assets_page_flag','2019-02-06 08:02:15.936128'),(505,'course_creators','0001_initial','2019-02-06 08:02:16.677395'),(506,'tagging','0001_initial','2019-02-06 08:02:16.919416'),(507,'tagging','0002_auto_20170116_1541','2019-02-06 08:02:17.057789'),(508,'user_tasks','0001_initial','2019-02-06 08:02:18.095204'),(509,'user_tasks','0002_artifact_file_storage','2019-02-06 08:02:18.200132'),(510,'xblock_config','0001_initial','2019-02-06 08:02:18.497728'),(511,'xblock_config','0002_courseeditltifieldsenabledflag','2019-02-06 08:02:19.039966'),(512,'lti_provider','0001_initial','2019-02-20 13:01:39.285635'),(513,'lti_provider','0002_auto_20160325_0407','2019-02-20 13:01:39.369768'),(514,'lti_provider','0003_auto_20161118_1040','2019-02-20 13:01:39.445830'),(515,'content_type_gating','0005_auto_20190306_1547','2019-03-06 16:00:40.248896'),(516,'course_duration_limits','0005_auto_20190306_1546','2019-03-06 16:00:40.908922'),(517,'enterprise','0061_systemwideenterpriserole_systemwideenterpriseuserroleassignment','2019-03-08 15:47:17.741727'),(518,'enterprise','0062_add_system_wide_enterprise_roles','2019-03-08 15:47:17.809640'),(519,'content_type_gating','0006_auto_20190308_1447','2019-03-11 16:27:21.659554'),(520,'course_duration_limits','0006_auto_20190308_1447','2019-03-11 16:27:22.347994'),(521,'content_type_gating','0007_auto_20190311_1919','2019-03-12 16:11:14.076560'),(522,'course_duration_limits','0007_auto_20190311_1919','2019-03-12 16:11:17.332778'),(523,'announcements','0001_initial','2019-03-18 20:54:59.708245'),(524,'content_type_gating','0008_auto_20190313_1634','2019-03-18 20:55:00.145074'),(525,'course_duration_limits','0008_auto_20190313_1634','2019-03-18 20:55:00.800059'),(526,'enterprise','0063_systemwideenterpriserole_description','2019-03-21 18:40:50.646407'),(527,'enterprise','0064_enterprisefeaturerole_enterprisefeatureuserroleassignment','2019-03-28 19:29:40.049122'),(528,'enterprise','0065_add_enterprise_feature_roles','2019-03-28 19:29:40.122825'),(529,'enterprise','0066_add_system_wide_enterprise_operator_role','2019-03-28 19:29:40.190059'),(530,'student','0020_auto_20190227_2019','2019-04-01 21:47:10.285726'),(531,'certificates','0015_add_masters_choice','2019-04-05 14:56:54.180634'),(532,'enterprise','0067_add_role_based_access_control_switch','2019-04-08 20:44:56.835675'),(533,'program_enrollments','0001_initial','2019-04-10 20:25:28.810529'),(534,'program_enrollments','0002_historicalprogramcourseenrollment_programcourseenrollment','2019-04-18 16:07:31.718124'),(535,'third_party_auth','0023_auto_20190418_2033','2019-04-24 13:53:47.057323'),(536,'program_enrollments','0003_auto_20190424_1622','2019-04-24 16:34:31.400886'),(537,'courseware','0008_move_idde_to_edx_when','2019-04-25 14:14:01.833602'),(538,'edx_when','0001_initial','2019-04-25 14:14:04.077675'),(539,'edx_when','0002_auto_20190318_1736','2019-04-25 14:14:06.472260'),(540,'edx_when','0003_auto_20190402_1501','2019-04-25 14:14:08.565796'),(541,'edx_proctoring','0010_update_backend','2019-05-02 21:47:10.150692'),(542,'program_enrollments','0004_add_programcourseenrollment_relatedname','2019-05-02 21:47:10.839771'),(543,'student','0021_historicalcourseenrollment','2019-05-03 20:29:56.543955'),(544,'cornerstone','0001_initial','2019-05-29 09:32:41.107279'),(545,'cornerstone','0002_cornerstoneglobalconfiguration_subject_mapping','2019-05-29 09:32:41.540384'),(546,'third_party_auth','0024_fix_edit_disallowed','2019-05-29 14:34:07.293693'),(547,'discounts','0001_initial','2019-06-03 19:15:59.106385'),(548,'program_enrollments','0005_canceled_not_withdrawn','2019-06-03 19:15:59.936222'),(549,'entitlements','0011_historicalcourseentitlement','2019-06-04 17:56:15.038112'),(550,'organizations','0007_historicalorganization','2019-06-04 17:56:15.935805'),(551,'user_tasks','0003_url_max_length','2019-06-04 17:56:24.531329'),(552,'user_tasks','0004_url_textfield','2019-06-04 17:56:24.631710'),(553,'enterprise','0068_remove_role_based_access_control_switch','2019-06-05 10:59:25.727686'),(554,'grades','0015_historicalpersistentsubsectiongradeoverride','2019-06-10 16:42:15.294490'); +INSERT INTO `django_migrations` VALUES (1,'contenttypes','0001_initial','2019-02-06 07:56:07.314317'),(2,'auth','0001_initial','2019-02-06 07:56:07.832368'),(3,'admin','0001_initial','2019-02-06 07:56:07.961256'),(4,'admin','0002_logentry_remove_auto_add','2019-02-06 07:56:08.013912'),(5,'sites','0001_initial','2019-02-06 07:56:08.072888'),(6,'contenttypes','0002_remove_content_type_name','2019-02-06 07:56:08.230528'),(7,'api_admin','0001_initial','2019-02-06 07:56:08.454101'),(8,'api_admin','0002_auto_20160325_1604','2019-02-06 07:56:08.533622'),(9,'api_admin','0003_auto_20160404_1618','2019-02-06 07:56:08.983603'),(10,'api_admin','0004_auto_20160412_1506','2019-02-06 07:56:09.311723'),(11,'api_admin','0005_auto_20160414_1232','2019-02-06 07:56:09.410291'),(12,'api_admin','0006_catalog','2019-02-06 07:56:09.439372'),(13,'api_admin','0007_delete_historical_api_records','2019-02-06 07:56:09.673117'),(14,'assessment','0001_initial','2019-02-06 07:56:11.477983'),(15,'assessment','0002_staffworkflow','2019-02-06 07:56:11.625937'),(16,'assessment','0003_expand_course_id','2019-02-06 07:56:11.815858'),(17,'auth','0002_alter_permission_name_max_length','2019-02-06 07:56:11.891156'),(18,'auth','0003_alter_user_email_max_length','2019-02-06 07:56:11.975525'),(19,'auth','0004_alter_user_username_opts','2019-02-06 07:56:12.013750'),(20,'auth','0005_alter_user_last_login_null','2019-02-06 07:56:12.096481'),(21,'auth','0006_require_contenttypes_0002','2019-02-06 07:56:12.108286'),(22,'auth','0007_alter_validators_add_error_messages','2019-02-06 07:56:12.164989'),(23,'auth','0008_alter_user_username_max_length','2019-02-06 07:56:12.240860'),(24,'instructor_task','0001_initial','2019-02-06 07:56:12.395820'),(25,'certificates','0001_initial','2019-02-06 07:56:13.480164'),(26,'certificates','0002_data__certificatehtmlviewconfiguration_data','2019-02-06 07:56:13.607503'),(27,'certificates','0003_data__default_modes','2019-02-06 07:56:13.751659'),(28,'certificates','0004_certificategenerationhistory','2019-02-06 07:56:13.904399'),(29,'certificates','0005_auto_20151208_0801','2019-02-06 07:56:13.986383'),(30,'certificates','0006_certificatetemplateasset_asset_slug','2019-02-06 07:56:14.058304'),(31,'certificates','0007_certificateinvalidation','2019-02-06 07:56:14.210453'),(32,'badges','0001_initial','2019-02-06 07:56:14.782804'),(33,'badges','0002_data__migrate_assertions','2019-02-06 07:56:15.175628'),(34,'badges','0003_schema__add_event_configuration','2019-02-06 07:56:15.324266'),(35,'block_structure','0001_config','2019-02-06 07:56:15.455000'),(36,'block_structure','0002_blockstructuremodel','2019-02-06 07:56:15.522120'),(37,'block_structure','0003_blockstructuremodel_storage','2019-02-06 07:56:15.564915'),(38,'block_structure','0004_blockstructuremodel_usagekeywithrun','2019-02-06 07:56:15.616240'),(39,'bookmarks','0001_initial','2019-02-06 07:56:16.017402'),(40,'branding','0001_initial','2019-02-06 07:56:16.267188'),(41,'course_modes','0001_initial','2019-02-06 07:56:16.438443'),(42,'course_modes','0002_coursemode_expiration_datetime_is_explicit','2019-02-06 07:56:16.519337'),(43,'course_modes','0003_auto_20151113_1443','2019-02-06 07:56:16.576659'),(44,'course_modes','0004_auto_20151113_1457','2019-02-06 07:56:16.732369'),(45,'course_modes','0005_auto_20151217_0958','2019-02-06 07:56:16.788036'),(46,'course_modes','0006_auto_20160208_1407','2019-02-06 07:56:16.883873'),(47,'course_modes','0007_coursemode_bulk_sku','2019-02-06 07:56:17.029222'),(48,'course_groups','0001_initial','2019-02-06 07:56:18.181254'),(49,'bulk_email','0001_initial','2019-02-06 07:56:18.660435'),(50,'bulk_email','0002_data__load_course_email_template','2019-02-06 07:56:18.937143'),(51,'bulk_email','0003_config_model_feature_flag','2019-02-06 07:56:19.093038'),(52,'bulk_email','0004_add_email_targets','2019-02-06 07:56:19.788595'),(53,'bulk_email','0005_move_target_data','2019-02-06 07:56:19.959402'),(54,'bulk_email','0006_course_mode_targets','2019-02-06 07:56:20.165336'),(55,'catalog','0001_initial','2019-02-06 07:56:20.308745'),(56,'catalog','0002_catalogintegration_username','2019-02-06 07:56:20.439737'),(57,'catalog','0003_catalogintegration_page_size','2019-02-06 07:56:20.584307'),(58,'catalog','0004_auto_20170616_0618','2019-02-06 07:56:20.692298'),(59,'catalog','0005_catalogintegration_long_term_cache_ttl','2019-02-06 07:56:20.821560'),(60,'django_comment_common','0001_initial','2019-02-06 07:56:21.271577'),(61,'django_comment_common','0002_forumsconfig','2019-02-06 07:56:21.463632'),(62,'verified_track_content','0001_initial','2019-02-06 07:56:21.537783'),(63,'course_overviews','0001_initial','2019-02-06 07:56:21.715657'),(64,'course_overviews','0002_add_course_catalog_fields','2019-02-06 07:56:21.984772'),(65,'course_overviews','0003_courseoverviewgeneratedhistory','2019-02-06 07:56:22.053252'),(66,'course_overviews','0004_courseoverview_org','2019-02-06 07:56:22.134954'),(67,'course_overviews','0005_delete_courseoverviewgeneratedhistory','2019-02-06 07:56:22.184071'),(68,'course_overviews','0006_courseoverviewimageset','2019-02-06 07:56:22.290455'),(69,'course_overviews','0007_courseoverviewimageconfig','2019-02-06 07:56:22.466348'),(70,'course_overviews','0008_remove_courseoverview_facebook_url','2019-02-06 07:56:22.484576'),(71,'course_overviews','0009_readd_facebook_url','2019-02-06 07:56:22.501725'),(72,'course_overviews','0010_auto_20160329_2317','2019-02-06 07:56:22.645825'),(73,'ccx','0001_initial','2019-02-06 07:56:23.183002'),(74,'ccx','0002_customcourseforedx_structure_json','2019-02-06 07:56:23.289052'),(75,'ccx','0003_add_master_course_staff_in_ccx','2019-02-06 07:56:23.840989'),(76,'ccx','0004_seed_forum_roles_in_ccx_courses','2019-02-06 07:56:23.988777'),(77,'ccx','0005_change_ccx_coach_to_staff','2019-02-06 07:56:24.160387'),(78,'ccx','0006_set_display_name_as_override','2019-02-06 07:56:24.337876'),(79,'ccxcon','0001_initial_ccxcon_model','2019-02-06 07:56:24.409092'),(80,'ccxcon','0002_auto_20160325_0407','2019-02-06 07:56:24.470172'),(81,'djcelery','0001_initial','2019-02-06 07:56:25.046777'),(82,'celery_utils','0001_initial','2019-02-06 07:56:25.165469'),(83,'celery_utils','0002_chordable_django_backend','2019-02-06 07:56:25.339734'),(84,'certificates','0008_schema__remove_badges','2019-02-06 07:56:25.535263'),(85,'certificates','0009_certificategenerationcoursesetting_language_self_generation','2019-02-06 07:56:25.851268'),(86,'certificates','0010_certificatetemplate_language','2019-02-06 07:56:25.927039'),(87,'certificates','0011_certificatetemplate_alter_unique','2019-02-06 07:56:26.154544'),(88,'certificates','0012_certificategenerationcoursesetting_include_hours_of_effort','2019-02-06 07:56:26.228554'),(89,'certificates','0013_remove_certificategenerationcoursesetting_enabled','2019-02-06 07:56:26.310926'),(90,'certificates','0014_change_eligible_certs_manager','2019-02-06 07:56:26.373051'),(91,'commerce','0001_data__add_ecommerce_service_user','2019-02-06 07:56:26.595906'),(92,'commerce','0002_commerceconfiguration','2019-02-06 07:56:26.698815'),(93,'commerce','0003_auto_20160329_0709','2019-02-06 07:56:26.761254'),(94,'commerce','0004_auto_20160531_0950','2019-02-06 07:56:27.150989'),(95,'commerce','0005_commerceconfiguration_enable_automatic_refund_approval','2019-02-06 07:56:27.241421'),(96,'commerce','0006_auto_20170424_1734','2019-02-06 07:56:27.316222'),(97,'commerce','0007_auto_20180313_0609','2019-02-06 07:56:27.466841'),(98,'completion','0001_initial','2019-02-06 07:56:27.696977'),(99,'completion','0002_auto_20180125_1510','2019-02-06 07:56:27.757853'),(100,'enterprise','0001_initial','2019-02-06 07:56:28.027244'),(101,'enterprise','0002_enterprisecustomerbrandingconfiguration','2019-02-06 07:56:28.117647'),(102,'enterprise','0003_auto_20161104_0937','2019-02-06 07:56:28.428631'),(103,'enterprise','0004_auto_20161114_0434','2019-02-06 07:56:28.594141'),(104,'enterprise','0005_pendingenterprisecustomeruser','2019-02-06 07:56:28.710577'),(105,'enterprise','0006_auto_20161121_0241','2019-02-06 07:56:28.775663'),(106,'enterprise','0007_auto_20161109_1511','2019-02-06 07:56:28.924039'),(107,'enterprise','0008_auto_20161124_2355','2019-02-06 07:56:29.200628'),(108,'enterprise','0009_auto_20161130_1651','2019-02-06 07:56:29.740933'),(109,'enterprise','0010_auto_20161222_1212','2019-02-06 07:56:29.889801'),(110,'enterprise','0011_enterprisecustomerentitlement_historicalenterprisecustomerentitlement','2019-02-06 07:56:30.134143'),(111,'enterprise','0012_auto_20170125_1033','2019-02-06 07:56:30.264122'),(112,'enterprise','0013_auto_20170125_1157','2019-02-06 07:56:30.893749'),(113,'enterprise','0014_enrollmentnotificationemailtemplate_historicalenrollmentnotificationemailtemplate','2019-02-06 07:56:31.215731'),(114,'enterprise','0015_auto_20170130_0003','2019-02-06 07:56:31.450278'),(115,'enterprise','0016_auto_20170405_0647','2019-02-06 07:56:32.231656'),(116,'enterprise','0017_auto_20170508_1341','2019-02-06 07:56:32.492394'),(117,'enterprise','0018_auto_20170511_1357','2019-02-06 07:56:32.686868'),(118,'enterprise','0019_auto_20170606_1853','2019-02-06 07:56:32.884924'),(119,'enterprise','0020_auto_20170624_2316','2019-02-06 07:56:33.722514'),(120,'enterprise','0021_auto_20170711_0712','2019-02-06 07:56:34.290994'),(121,'enterprise','0022_auto_20170720_1543','2019-02-06 07:56:34.459932'),(122,'enterprise','0023_audit_data_reporting_flag','2019-02-06 07:56:34.693710'),(123,'enterprise','0024_enterprisecustomercatalog_historicalenterprisecustomercatalog','2019-02-06 07:56:34.991211'),(124,'enterprise','0025_auto_20170828_1412','2019-02-06 07:56:35.555899'),(125,'enterprise','0026_make_require_account_level_consent_nullable','2019-02-06 07:56:35.765541'),(126,'enterprise','0027_remove_account_level_consent','2019-02-06 07:56:36.799493'),(127,'enterprise','0028_link_enterprise_to_enrollment_template','2019-02-06 07:56:37.434413'),(128,'enterprise','0029_auto_20170925_1909','2019-02-06 07:56:37.650440'),(129,'enterprise','0030_auto_20171005_1600','2019-02-06 07:56:38.219936'),(130,'enterprise','0031_auto_20171012_1249','2019-02-06 07:56:38.438979'),(131,'enterprise','0032_reporting_model','2019-02-06 07:56:38.594362'),(132,'enterprise','0033_add_history_change_reason_field','2019-02-06 07:56:39.182772'),(133,'enterprise','0034_auto_20171023_0727','2019-02-06 07:56:39.321896'),(134,'enterprise','0035_auto_20171212_1129','2019-02-06 07:56:39.517158'),(135,'enterprise','0036_sftp_reporting_support','2019-02-06 07:56:39.958256'),(136,'enterprise','0037_auto_20180110_0450','2019-02-06 07:56:40.144689'),(137,'enterprise','0038_auto_20180122_1427','2019-02-06 07:56:40.326004'),(138,'enterprise','0039_auto_20180129_1034','2019-02-06 07:56:40.539093'),(139,'enterprise','0040_auto_20180129_1428','2019-02-06 07:56:40.854288'),(140,'enterprise','0041_auto_20180212_1507','2019-02-06 07:56:41.037158'),(141,'consent','0001_initial','2019-02-06 07:56:41.608778'),(142,'consent','0002_migrate_to_new_data_sharing_consent','2019-02-06 07:56:42.267785'),(143,'consent','0003_historicaldatasharingconsent_history_change_reason','2019-02-06 07:56:42.405847'),(144,'consent','0004_datasharingconsenttextoverrides','2019-02-06 07:56:42.584250'),(145,'sites','0002_alter_domain_unique','2019-02-06 07:56:42.663878'),(146,'course_overviews','0011_courseoverview_marketing_url','2019-02-06 07:56:42.745921'),(147,'course_overviews','0012_courseoverview_eligible_for_financial_aid','2019-02-06 07:56:42.834692'),(148,'course_overviews','0013_courseoverview_language','2019-02-06 07:56:42.913480'),(149,'course_overviews','0014_courseoverview_certificate_available_date','2019-02-06 07:56:42.991669'),(150,'content_type_gating','0001_initial','2019-02-06 07:56:43.235932'),(151,'content_type_gating','0002_auto_20181119_0959','2019-02-06 07:56:43.426345'),(152,'content_type_gating','0003_auto_20181128_1407','2019-02-06 07:56:43.580657'),(153,'content_type_gating','0004_auto_20181128_1521','2019-02-06 07:56:43.695613'),(154,'contentserver','0001_initial','2019-02-06 07:56:43.851239'),(155,'contentserver','0002_cdnuseragentsconfig','2019-02-06 07:56:44.018561'),(156,'cors_csrf','0001_initial','2019-02-06 07:56:44.181287'),(157,'course_action_state','0001_initial','2019-02-06 07:56:44.503331'),(158,'course_duration_limits','0001_initial','2019-02-06 07:56:44.746279'),(159,'course_duration_limits','0002_auto_20181119_0959','2019-02-06 07:56:44.877465'),(160,'course_duration_limits','0003_auto_20181128_1407','2019-02-06 07:56:45.039785'),(161,'course_duration_limits','0004_auto_20181128_1521','2019-02-06 07:56:45.182919'),(162,'course_goals','0001_initial','2019-02-06 07:56:45.519690'),(163,'course_goals','0002_auto_20171010_1129','2019-02-06 07:56:45.644315'),(164,'course_groups','0002_change_inline_default_cohort_value','2019-02-06 07:56:45.709570'),(165,'course_groups','0003_auto_20170609_1455','2019-02-06 07:56:45.983496'),(166,'course_modes','0008_course_key_field_to_foreign_key','2019-02-06 07:56:46.593883'),(167,'course_modes','0009_suggested_prices_to_charfield','2019-02-06 07:56:46.661433'),(168,'course_modes','0010_archived_suggested_prices_to_charfield','2019-02-06 07:56:46.723034'),(169,'course_modes','0011_change_regex_for_comma_separated_ints','2019-02-06 07:56:46.829468'),(170,'courseware','0001_initial','2019-02-06 07:56:49.952932'),(171,'courseware','0002_coursedynamicupgradedeadlineconfiguration_dynamicupgradedeadlineconfiguration','2019-02-06 07:56:50.721374'),(172,'courseware','0003_auto_20170825_0935','2019-02-06 07:56:50.903279'),(173,'courseware','0004_auto_20171010_1639','2019-02-06 07:56:51.166884'),(174,'courseware','0005_orgdynamicupgradedeadlineconfiguration','2019-02-06 07:56:51.597870'),(175,'courseware','0006_remove_module_id_index','2019-02-06 07:56:51.781895'),(176,'courseware','0007_remove_done_index','2019-02-06 07:56:51.968472'),(177,'coursewarehistoryextended','0001_initial','2019-02-06 07:56:52.632278'),(178,'coursewarehistoryextended','0002_force_studentmodule_index','2019-02-06 07:56:52.709752'),(179,'crawlers','0001_initial','2019-02-06 07:56:53.074661'),(180,'crawlers','0002_auto_20170419_0018','2019-02-06 07:56:53.203552'),(181,'credentials','0001_initial','2019-02-06 07:56:53.404087'),(182,'credentials','0002_auto_20160325_0631','2019-02-06 07:56:53.531754'),(183,'credentials','0003_auto_20170525_1109','2019-02-06 07:56:53.709376'),(184,'credentials','0004_notifycredentialsconfig','2019-02-06 07:56:53.854337'),(185,'credit','0001_initial','2019-02-06 07:56:55.324738'),(186,'credit','0002_creditconfig','2019-02-06 07:56:55.478476'),(187,'credit','0003_auto_20160511_2227','2019-02-06 07:56:55.552916'),(188,'credit','0004_delete_historical_credit_records','2019-02-06 07:56:56.180340'),(189,'dark_lang','0001_initial','2019-02-06 07:56:56.341474'),(190,'dark_lang','0002_data__enable_on_install','2019-02-06 07:56:56.783194'),(191,'dark_lang','0003_auto_20180425_0359','2019-02-06 07:56:57.055067'),(192,'database_fixups','0001_initial','2019-02-06 07:56:57.627927'),(193,'degreed','0001_initial','2019-02-06 07:56:58.969941'),(194,'degreed','0002_auto_20180104_0103','2019-02-06 07:56:59.471941'),(195,'degreed','0003_auto_20180109_0712','2019-02-06 07:56:59.731040'),(196,'degreed','0004_auto_20180306_1251','2019-02-06 07:56:59.997860'),(197,'degreed','0005_auto_20180807_1302','2019-02-06 07:57:02.069830'),(198,'degreed','0006_upgrade_django_simple_history','2019-02-06 07:57:02.273708'),(199,'django_comment_common','0003_enable_forums','2019-02-06 07:57:02.626514'),(200,'django_comment_common','0004_auto_20161117_1209','2019-02-06 07:57:02.820104'),(201,'django_comment_common','0005_coursediscussionsettings','2019-02-06 07:57:02.896624'),(202,'django_comment_common','0006_coursediscussionsettings_discussions_id_map','2019-02-06 07:57:02.998038'),(203,'django_comment_common','0007_discussionsidmapping','2019-02-06 07:57:03.083783'),(204,'django_comment_common','0008_role_user_index','2019-02-06 07:57:03.168933'),(205,'django_notify','0001_initial','2019-02-06 07:57:04.348365'),(206,'django_openid_auth','0001_initial','2019-02-06 07:57:04.778823'),(207,'oauth2','0001_initial','2019-02-06 07:57:06.639640'),(208,'edx_oauth2_provider','0001_initial','2019-02-06 07:57:06.912829'),(209,'edx_proctoring','0001_initial','2019-02-06 07:57:11.833284'),(210,'edx_proctoring','0002_proctoredexamstudentattempt_is_status_acknowledged','2019-02-06 07:57:12.158509'),(211,'edx_proctoring','0003_auto_20160101_0525','2019-02-06 07:57:12.624375'),(212,'edx_proctoring','0004_auto_20160201_0523','2019-02-06 07:57:13.412490'),(213,'edx_proctoring','0005_proctoredexam_hide_after_due','2019-02-06 07:57:13.542482'),(214,'edx_proctoring','0006_allowed_time_limit_mins','2019-02-06 07:57:13.995842'),(215,'edx_proctoring','0007_proctoredexam_backend','2019-02-06 07:57:14.113562'),(216,'edx_proctoring','0008_auto_20181116_1551','2019-02-06 07:57:14.705891'),(217,'edx_proctoring','0009_proctoredexamreviewpolicy_remove_rules','2019-02-06 07:57:15.116276'),(218,'edxval','0001_initial','2019-02-06 07:57:15.863533'),(219,'edxval','0002_data__default_profiles','2019-02-06 07:57:16.818661'),(220,'edxval','0003_coursevideo_is_hidden','2019-02-06 07:57:16.918246'),(221,'edxval','0004_data__add_hls_profile','2019-02-06 07:57:17.289957'),(222,'edxval','0005_videoimage','2019-02-06 07:57:17.492770'),(223,'edxval','0006_auto_20171009_0725','2019-02-06 07:57:17.716551'),(224,'edxval','0007_transcript_credentials_state','2019-02-06 07:57:17.845730'),(225,'edxval','0008_remove_subtitles','2019-02-06 07:57:17.992131'),(226,'edxval','0009_auto_20171127_0406','2019-02-06 07:57:18.060122'),(227,'edxval','0010_add_video_as_foreign_key','2019-02-06 07:57:18.365704'),(228,'edxval','0011_data__add_audio_mp3_profile','2019-02-06 07:57:18.730704'),(229,'email_marketing','0001_initial','2019-02-06 07:57:19.051984'),(230,'email_marketing','0002_auto_20160623_1656','2019-02-06 07:57:21.789475'),(231,'email_marketing','0003_auto_20160715_1145','2019-02-06 07:57:22.963260'),(232,'email_marketing','0004_emailmarketingconfiguration_welcome_email_send_delay','2019-02-06 07:57:23.293836'),(233,'email_marketing','0005_emailmarketingconfiguration_user_registration_cookie_timeout_delay','2019-02-06 07:57:23.617029'),(234,'email_marketing','0006_auto_20170711_0615','2019-02-06 07:57:24.245380'),(235,'email_marketing','0007_auto_20170809_0653','2019-02-06 07:57:24.897713'),(236,'email_marketing','0008_auto_20170809_0539','2019-02-06 07:57:25.325581'),(237,'email_marketing','0009_remove_emailmarketingconfiguration_sailthru_activation_template','2019-02-06 07:57:25.603626'),(238,'email_marketing','0010_auto_20180425_0800','2019-02-06 07:57:26.312049'),(239,'embargo','0001_initial','2019-02-06 07:57:28.072877'),(240,'embargo','0002_data__add_countries','2019-02-06 07:57:29.877570'),(241,'enterprise','0042_replace_sensitive_sso_username','2019-02-06 07:57:30.224348'),(242,'enterprise','0043_auto_20180507_0138','2019-02-06 07:57:30.838462'),(243,'enterprise','0044_reporting_config_multiple_types','2019-02-06 07:57:31.233674'),(244,'enterprise','0045_report_type_json','2019-02-06 07:57:31.322889'),(245,'enterprise','0046_remove_unique_constraints','2019-02-06 07:57:31.424455'),(246,'enterprise','0047_auto_20180517_0457','2019-02-06 07:57:31.785098'),(247,'enterprise','0048_enterprisecustomeruser_active','2019-02-06 07:57:31.904647'),(248,'enterprise','0049_auto_20180531_0321','2019-02-06 07:57:32.509863'),(249,'enterprise','0050_progress_v2','2019-02-06 07:57:33.253255'),(250,'enterprise','0051_add_enterprise_slug','2019-02-06 07:57:34.073175'),(251,'enterprise','0052_create_unique_slugs','2019-02-06 07:57:34.414601'),(252,'enterprise','0053_pendingenrollment_cohort_name','2019-02-06 07:57:34.520875'),(253,'enterprise','0053_auto_20180911_0811','2019-02-06 07:57:34.914654'),(254,'enterprise','0054_merge_20180914_1511','2019-02-06 07:57:34.944784'),(255,'enterprise','0055_auto_20181015_1112','2019-02-06 07:57:35.409450'),(256,'enterprise','0056_enterprisecustomerreportingconfiguration_pgp_encryption_key','2019-02-06 07:57:35.545845'),(257,'enterprise','0057_enterprisecustomerreportingconfiguration_enterprise_customer_catalogs','2019-02-06 07:57:35.960406'),(258,'enterprise','0058_auto_20181212_0145','2019-02-06 07:57:37.113916'),(259,'enterprise','0059_add_code_management_portal_config','2019-02-06 07:57:37.575928'),(260,'enterprise','0060_upgrade_django_simple_history','2019-02-06 07:57:38.213269'),(261,'student','0001_initial','2019-02-06 07:57:47.588358'),(262,'student','0002_auto_20151208_1034','2019-02-06 07:57:47.836707'),(263,'student','0003_auto_20160516_0938','2019-02-06 07:57:48.149932'),(264,'student','0004_auto_20160531_1422','2019-02-06 07:57:48.286460'),(265,'student','0005_auto_20160531_1653','2019-02-06 07:57:48.431860'),(266,'student','0006_logoutviewconfiguration','2019-02-06 07:57:48.974430'),(267,'student','0007_registrationcookieconfiguration','2019-02-06 07:57:49.147001'),(268,'student','0008_auto_20161117_1209','2019-02-06 07:57:49.263656'),(269,'student','0009_auto_20170111_0422','2019-02-06 07:57:49.377186'),(270,'student','0010_auto_20170207_0458','2019-02-06 07:57:49.407334'),(271,'student','0011_course_key_field_to_foreign_key','2019-02-06 07:57:50.975260'),(272,'student','0012_sociallink','2019-02-06 07:57:51.409953'),(273,'student','0013_delete_historical_enrollment_records','2019-02-06 07:57:52.968613'),(274,'entitlements','0001_initial','2019-02-06 07:57:53.425447'),(275,'entitlements','0002_auto_20171102_0719','2019-02-06 07:57:55.014484'),(276,'entitlements','0003_auto_20171205_1431','2019-02-06 07:57:57.282703'),(277,'entitlements','0004_auto_20171206_1729','2019-02-06 07:57:57.704486'),(278,'entitlements','0005_courseentitlementsupportdetail','2019-02-06 07:57:58.400522'),(279,'entitlements','0006_courseentitlementsupportdetail_action','2019-02-06 07:57:59.000339'),(280,'entitlements','0007_change_expiration_period_default','2019-02-06 07:57:59.217527'),(281,'entitlements','0008_auto_20180328_1107','2019-02-06 07:58:00.023003'),(282,'entitlements','0009_courseentitlement_refund_locked','2019-02-06 07:58:00.552995'),(283,'entitlements','0010_backfill_refund_lock','2019-02-06 07:58:01.471558'),(284,'experiments','0001_initial','2019-02-06 07:58:02.990331'),(285,'experiments','0002_auto_20170627_1402','2019-02-06 07:58:03.207899'),(286,'experiments','0003_auto_20170713_1148','2019-02-06 07:58:03.289623'),(287,'external_auth','0001_initial','2019-02-06 07:58:04.122332'),(288,'grades','0001_initial','2019-02-06 07:58:04.449795'),(289,'grades','0002_rename_last_edited_field','2019-02-06 07:58:04.542638'),(290,'grades','0003_coursepersistentgradesflag_persistentgradesenabledflag','2019-02-06 07:58:05.727274'),(291,'grades','0004_visibleblocks_course_id','2019-02-06 07:58:05.867193'),(292,'grades','0005_multiple_course_flags','2019-02-06 07:58:06.312646'),(293,'grades','0006_persistent_course_grades','2019-02-06 07:58:06.568446'),(294,'grades','0007_add_passed_timestamp_column','2019-02-06 07:58:07.247313'),(295,'grades','0008_persistentsubsectiongrade_first_attempted','2019-02-06 07:58:07.349076'),(296,'grades','0009_auto_20170111_1507','2019-02-06 07:58:07.498641'),(297,'grades','0010_auto_20170112_1156','2019-02-06 07:58:07.583662'),(298,'grades','0011_null_edited_time','2019-02-06 07:58:07.916494'),(299,'grades','0012_computegradessetting','2019-02-06 07:58:08.432066'),(300,'grades','0013_persistentsubsectiongradeoverride','2019-02-06 07:58:08.633723'),(301,'grades','0014_persistentsubsectiongradeoverridehistory','2019-02-06 07:58:09.160210'),(302,'instructor_task','0002_gradereportsetting','2019-02-06 07:58:09.580204'),(303,'waffle','0001_initial','2019-02-06 07:58:10.444295'),(304,'sap_success_factors','0001_initial','2019-02-06 07:58:12.042509'),(305,'sap_success_factors','0002_auto_20170224_1545','2019-02-06 07:58:13.979236'),(306,'sap_success_factors','0003_auto_20170317_1402','2019-02-06 07:58:14.701821'),(307,'sap_success_factors','0004_catalogtransmissionaudit_audit_summary','2019-02-06 07:58:14.797945'),(308,'sap_success_factors','0005_historicalsapsuccessfactorsenterprisecustomerconfiguration_history_change_reason','2019-02-06 07:58:15.137352'),(309,'sap_success_factors','0006_sapsuccessfactors_use_enterprise_enrollment_page_waffle_flag','2019-02-06 07:58:15.692938'),(310,'sap_success_factors','0007_remove_historicalsapsuccessfactorsenterprisecustomerconfiguration_history_change_reason','2019-02-06 07:58:16.090806'),(311,'sap_success_factors','0008_historicalsapsuccessfactorsenterprisecustomerconfiguration_history_change_reason','2019-02-06 07:58:16.886204'),(312,'sap_success_factors','0009_sapsuccessfactors_remove_enterprise_enrollment_page_waffle_flag','2019-02-06 07:58:17.493133'),(313,'sap_success_factors','0010_move_audit_tables_to_base_integrated_channel','2019-02-06 07:58:18.256051'),(314,'integrated_channel','0001_initial','2019-02-06 07:58:18.434760'),(315,'integrated_channel','0002_delete_enterpriseintegratedchannel','2019-02-06 07:58:18.534852'),(316,'integrated_channel','0003_catalogtransmissionaudit_learnerdatatransmissionaudit','2019-02-06 07:58:18.697143'),(317,'integrated_channel','0004_catalogtransmissionaudit_channel','2019-02-06 07:58:18.821246'),(318,'integrated_channel','0005_auto_20180306_1251','2019-02-06 07:58:19.378821'),(319,'integrated_channel','0006_delete_catalogtransmissionaudit','2019-02-06 07:58:19.463872'),(320,'lms_xblock','0001_initial','2019-02-06 07:58:19.938021'),(321,'microsite_configuration','0001_initial','2019-02-06 07:58:24.417944'),(322,'microsite_configuration','0002_auto_20160202_0228','2019-02-06 07:58:24.704162'),(323,'microsite_configuration','0003_delete_historical_records','2019-02-06 07:58:27.217560'),(324,'milestones','0001_initial','2019-02-06 07:58:28.438298'),(325,'milestones','0002_data__seed_relationship_types','2019-02-06 07:58:29.074808'),(326,'milestones','0003_coursecontentmilestone_requirements','2019-02-06 07:58:29.198318'),(327,'milestones','0004_auto_20151221_1445','2019-02-06 07:58:29.608126'),(328,'mobile_api','0001_initial','2019-02-06 07:58:30.546212'),(329,'mobile_api','0002_auto_20160406_0904','2019-02-06 07:58:30.725452'),(330,'mobile_api','0003_ignore_mobile_available_flag','2019-02-06 07:58:31.637551'),(331,'notes','0001_initial','2019-02-06 07:58:32.158209'),(332,'oauth2','0002_auto_20160404_0813','2019-02-06 07:58:33.398358'),(333,'oauth2','0003_client_logout_uri','2019-02-06 07:58:33.785963'),(334,'oauth2','0004_add_index_on_grant_expires','2019-02-06 07:58:34.178788'),(335,'oauth2','0005_grant_nonce','2019-02-06 07:58:35.284863'),(336,'organizations','0001_initial','2019-02-06 07:58:35.646051'),(337,'organizations','0002_auto_20170117_1434','2019-02-06 07:58:35.750682'),(338,'organizations','0003_auto_20170221_1138','2019-02-06 07:58:35.925588'),(339,'organizations','0004_auto_20170413_2315','2019-02-06 07:58:36.060193'),(340,'organizations','0005_auto_20171116_0640','2019-02-06 07:58:36.145008'),(341,'organizations','0006_auto_20171207_0259','2019-02-06 07:58:36.257476'),(342,'oauth2_provider','0001_initial','2019-02-06 07:58:38.097999'),(343,'oauth_dispatch','0001_initial','2019-02-06 07:58:38.563660'),(344,'oauth_dispatch','0002_scopedapplication_scopedapplicationorganization','2019-02-06 07:58:40.054311'),(345,'oauth_dispatch','0003_application_data','2019-02-06 07:58:40.676680'),(346,'oauth_dispatch','0004_auto_20180626_1349','2019-02-06 07:58:43.112430'),(347,'oauth_dispatch','0005_applicationaccess_type','2019-02-06 07:58:43.714100'),(348,'oauth_dispatch','0006_drop_application_id_constraints','2019-02-06 07:58:44.030090'),(349,'oauth2_provider','0002_08_updates','2019-02-06 07:58:44.450850'),(350,'oauth2_provider','0003_auto_20160316_1503','2019-02-06 07:58:44.640899'),(351,'oauth2_provider','0004_auto_20160525_1623','2019-02-06 07:58:44.975564'),(352,'oauth2_provider','0005_auto_20170514_1141','2019-02-06 07:58:47.370031'),(353,'oauth2_provider','0006_auto_20171214_2232','2019-02-06 07:58:48.599294'),(354,'oauth_dispatch','0007_restore_application_id_constraints','2019-02-06 07:58:49.006205'),(355,'oauth_provider','0001_initial','2019-02-06 07:58:49.563238'),(356,'problem_builder','0001_initial','2019-02-06 07:58:49.794124'),(357,'problem_builder','0002_auto_20160121_1525','2019-02-06 07:58:50.200720'),(358,'problem_builder','0003_auto_20161124_0755','2019-02-06 07:58:50.413858'),(359,'problem_builder','0004_copy_course_ids','2019-02-06 07:58:51.128055'),(360,'problem_builder','0005_auto_20170112_1021','2019-02-06 07:58:51.340194'),(361,'problem_builder','0006_remove_deprecated_course_id','2019-02-06 07:58:51.564692'),(362,'programs','0001_initial','2019-02-06 07:58:51.747931'),(363,'programs','0002_programsapiconfig_cache_ttl','2019-02-06 07:58:51.898433'),(364,'programs','0003_auto_20151120_1613','2019-02-06 07:58:53.094465'),(365,'programs','0004_programsapiconfig_enable_certification','2019-02-06 07:58:53.288122'),(366,'programs','0005_programsapiconfig_max_retries','2019-02-06 07:58:53.445000'),(367,'programs','0006_programsapiconfig_xseries_ad_enabled','2019-02-06 07:58:53.602411'),(368,'programs','0007_programsapiconfig_program_listing_enabled','2019-02-06 07:58:53.755138'),(369,'programs','0008_programsapiconfig_program_details_enabled','2019-02-06 07:58:53.875763'),(370,'programs','0009_programsapiconfig_marketing_path','2019-02-06 07:58:54.018436'),(371,'programs','0010_auto_20170204_2332','2019-02-06 07:58:54.237222'),(372,'programs','0011_auto_20170301_1844','2019-02-06 07:58:55.604408'),(373,'programs','0012_auto_20170419_0018','2019-02-06 07:58:55.728622'),(374,'redirects','0001_initial','2019-02-06 07:58:56.618741'),(375,'rss_proxy','0001_initial','2019-02-06 07:58:56.722680'),(376,'sap_success_factors','0011_auto_20180104_0103','2019-02-06 07:59:01.328739'),(377,'sap_success_factors','0012_auto_20180109_0712','2019-02-06 07:59:01.778378'),(378,'sap_success_factors','0013_auto_20180306_1251','2019-02-06 07:59:02.285821'),(379,'sap_success_factors','0014_drop_historical_table','2019-02-06 07:59:02.903520'),(380,'sap_success_factors','0015_auto_20180510_1259','2019-02-06 07:59:03.734759'),(381,'sap_success_factors','0016_sapsuccessfactorsenterprisecustomerconfiguration_additional_locales','2019-02-06 07:59:03.878684'),(382,'sap_success_factors','0017_sapsuccessfactorsglobalconfiguration_search_student_api_path','2019-02-06 07:59:04.766539'),(383,'schedules','0001_initial','2019-02-06 07:59:05.179663'),(384,'schedules','0002_auto_20170816_1532','2019-02-06 07:59:05.397766'),(385,'schedules','0003_scheduleconfig','2019-02-06 07:59:05.977222'),(386,'schedules','0004_auto_20170922_1428','2019-02-06 07:59:06.791066'),(387,'schedules','0005_auto_20171010_1722','2019-02-06 07:59:07.631416'),(388,'schedules','0006_scheduleexperience','2019-02-06 07:59:08.189048'),(389,'schedules','0007_scheduleconfig_hold_back_ratio','2019-02-06 07:59:08.776239'),(390,'self_paced','0001_initial','2019-02-06 07:59:09.799050'),(391,'sessions','0001_initial','2019-02-06 07:59:09.921074'),(392,'shoppingcart','0001_initial','2019-02-06 07:59:21.053818'),(393,'shoppingcart','0002_auto_20151208_1034','2019-02-06 07:59:21.335220'),(394,'shoppingcart','0003_auto_20151217_0958','2019-02-06 07:59:21.599445'),(395,'shoppingcart','0004_change_meta_options','2019-02-06 07:59:21.823322'),(396,'site_configuration','0001_initial','2019-02-06 07:59:22.992881'),(397,'site_configuration','0002_auto_20160720_0231','2019-02-06 07:59:23.853074'),(398,'default','0001_initial','2019-02-06 07:59:25.015201'),(399,'social_auth','0001_initial','2019-02-06 07:59:25.046686'),(400,'default','0002_add_related_name','2019-02-06 07:59:25.500745'),(401,'social_auth','0002_add_related_name','2019-02-06 07:59:25.532177'),(402,'default','0003_alter_email_max_length','2019-02-06 07:59:25.652620'),(403,'social_auth','0003_alter_email_max_length','2019-02-06 07:59:25.690150'),(404,'default','0004_auto_20160423_0400','2019-02-06 07:59:26.074154'),(405,'social_auth','0004_auto_20160423_0400','2019-02-06 07:59:26.105575'),(406,'social_auth','0005_auto_20160727_2333','2019-02-06 07:59:26.241475'),(407,'social_django','0006_partial','2019-02-06 07:59:26.399875'),(408,'social_django','0007_code_timestamp','2019-02-06 07:59:26.566550'),(409,'social_django','0008_partial_timestamp','2019-02-06 07:59:26.712434'),(410,'splash','0001_initial','2019-02-06 07:59:27.288326'),(411,'static_replace','0001_initial','2019-02-06 07:59:27.851106'),(412,'static_replace','0002_assetexcludedextensionsconfig','2019-02-06 07:59:29.178463'),(413,'status','0001_initial','2019-02-06 07:59:30.834233'),(414,'status','0002_update_help_text','2019-02-06 07:59:31.259226'),(415,'student','0014_courseenrollmentallowed_user','2019-02-06 07:59:31.843553'),(416,'student','0015_manualenrollmentaudit_add_role','2019-02-06 07:59:32.339124'),(417,'student','0016_coursenrollment_course_on_delete_do_nothing','2019-02-06 07:59:33.019734'),(418,'student','0017_accountrecovery','2019-02-06 07:59:34.081866'),(419,'student','0018_remove_password_history','2019-02-06 07:59:35.360857'),(420,'student','0019_auto_20181221_0540','2019-02-06 07:59:36.450684'),(421,'submissions','0001_initial','2019-02-06 07:59:37.468217'),(422,'submissions','0002_auto_20151119_0913','2019-02-06 07:59:37.751719'),(423,'submissions','0003_submission_status','2019-02-06 07:59:37.951880'),(424,'submissions','0004_remove_django_extensions','2019-02-06 07:59:38.080449'),(425,'survey','0001_initial','2019-02-06 07:59:38.937112'),(426,'teams','0001_initial','2019-02-06 07:59:42.234272'),(427,'theming','0001_initial','2019-02-06 07:59:42.964122'),(428,'third_party_auth','0001_initial','2019-02-06 07:59:46.893944'),(429,'third_party_auth','0002_schema__provider_icon_image','2019-02-06 07:59:51.814091'),(430,'third_party_auth','0003_samlproviderconfig_debug_mode','2019-02-06 07:59:52.360263'),(431,'third_party_auth','0004_add_visible_field','2019-02-06 07:59:56.187303'),(432,'third_party_auth','0005_add_site_field','2019-02-06 08:00:00.726584'),(433,'third_party_auth','0006_samlproviderconfig_automatic_refresh_enabled','2019-02-06 08:00:01.267932'),(434,'third_party_auth','0007_auto_20170406_0912','2019-02-06 08:00:02.190874'),(435,'third_party_auth','0008_auto_20170413_1455','2019-02-06 08:00:03.658115'),(436,'third_party_auth','0009_auto_20170415_1144','2019-02-06 08:00:05.420674'),(437,'third_party_auth','0010_add_skip_hinted_login_dialog_field','2019-02-06 08:00:07.334260'),(438,'third_party_auth','0011_auto_20170616_0112','2019-02-06 08:00:07.841081'),(439,'third_party_auth','0012_auto_20170626_1135','2019-02-06 08:00:09.649831'),(440,'third_party_auth','0013_sync_learner_profile_data','2019-02-06 08:00:12.254172'),(441,'third_party_auth','0014_auto_20171222_1233','2019-02-06 08:00:13.935686'),(442,'third_party_auth','0015_samlproviderconfig_archived','2019-02-06 08:00:14.559179'),(443,'third_party_auth','0016_auto_20180130_0938','2019-02-06 08:00:15.656894'),(444,'third_party_auth','0017_remove_icon_class_image_secondary_fields','2019-02-06 08:00:17.597823'),(445,'third_party_auth','0018_auto_20180327_1631','2019-02-06 08:00:20.302724'),(446,'third_party_auth','0019_consolidate_slug','2019-02-06 08:00:23.246774'),(447,'third_party_auth','0020_cleanup_slug_fields','2019-02-06 08:00:25.498101'),(448,'third_party_auth','0021_sso_id_verification','2019-02-06 08:00:27.269685'),(449,'third_party_auth','0022_auto_20181012_0307','2019-02-06 08:00:30.475559'),(450,'thumbnail','0001_initial','2019-02-06 08:00:30.680886'),(451,'track','0001_initial','2019-02-06 08:00:30.998373'),(452,'user_api','0001_initial','2019-02-06 08:00:35.324701'),(453,'user_api','0002_retirementstate_userretirementstatus','2019-02-06 08:00:36.082707'),(454,'user_api','0003_userretirementrequest','2019-02-06 08:00:36.665229'),(455,'user_api','0004_userretirementpartnerreportingstatus','2019-02-06 08:00:37.317791'),(456,'user_authn','0001_data__add_login_service','2019-02-06 08:00:39.270679'),(457,'util','0001_initial','2019-02-06 08:00:39.822745'),(458,'util','0002_data__default_rate_limit_config','2019-02-06 08:00:40.606869'),(459,'verified_track_content','0002_verifiedtrackcohortedcourse_verified_cohort_name','2019-02-06 08:00:40.741152'),(460,'verified_track_content','0003_migrateverifiedtrackcohortssetting','2019-02-06 08:00:41.360407'),(461,'verify_student','0001_initial','2019-02-06 08:00:47.236180'),(462,'verify_student','0002_auto_20151124_1024','2019-02-06 08:00:47.481347'),(463,'verify_student','0003_auto_20151113_1443','2019-02-06 08:00:47.697474'),(464,'verify_student','0004_delete_historical_records','2019-02-06 08:00:47.928549'),(465,'verify_student','0005_remove_deprecated_models','2019-02-06 08:00:53.255639'),(466,'verify_student','0006_ssoverification','2019-02-06 08:00:53.608512'),(467,'verify_student','0007_idverificationaggregate','2019-02-06 08:00:54.126314'),(468,'verify_student','0008_populate_idverificationaggregate','2019-02-06 08:00:55.099295'),(469,'verify_student','0009_remove_id_verification_aggregate','2019-02-06 08:00:55.505989'),(470,'verify_student','0010_manualverification','2019-02-06 08:00:55.733258'),(471,'verify_student','0011_add_fields_to_sspv','2019-02-06 08:00:56.760072'),(472,'video_config','0001_initial','2019-02-06 08:00:57.094097'),(473,'video_config','0002_coursevideotranscriptenabledflag_videotranscriptenabledflag','2019-02-06 08:00:57.451972'),(474,'video_config','0003_transcriptmigrationsetting','2019-02-06 08:00:57.665251'),(475,'video_config','0004_transcriptmigrationsetting_command_run','2019-02-06 08:00:57.846477'),(476,'video_config','0005_auto_20180719_0752','2019-02-06 08:00:58.093978'),(477,'video_config','0006_videothumbnailetting_updatedcoursevideos','2019-02-06 08:00:58.479655'),(478,'video_config','0007_videothumbnailsetting_offset','2019-02-06 08:00:58.702464'),(479,'video_pipeline','0001_initial','2019-02-06 08:00:58.930134'),(480,'video_pipeline','0002_auto_20171114_0704','2019-02-06 08:00:59.248554'),(481,'video_pipeline','0003_coursevideouploadsenabledbydefault_videouploadsenabledbydefault','2019-02-06 08:00:59.639240'),(482,'waffle','0002_auto_20161201_0958','2019-02-06 08:00:59.770761'),(483,'waffle_utils','0001_initial','2019-02-06 08:01:00.120690'),(484,'wiki','0001_initial','2019-02-06 08:01:13.521825'),(485,'wiki','0002_remove_article_subscription','2019-02-06 08:01:13.635976'),(486,'wiki','0003_ip_address_conv','2019-02-06 08:01:15.191324'),(487,'wiki','0004_increase_slug_size','2019-02-06 08:01:15.438646'),(488,'wiki','0005_remove_attachments_and_images','2019-02-06 08:01:20.535437'),(489,'workflow','0001_initial','2019-02-06 08:01:20.955248'),(490,'workflow','0002_remove_django_extensions','2019-02-06 08:01:21.089005'),(491,'xapi','0001_initial','2019-02-06 08:01:21.762133'),(492,'xapi','0002_auto_20180726_0142','2019-02-06 08:01:22.140082'),(493,'xblock_django','0001_initial','2019-02-06 08:01:22.817601'),(494,'xblock_django','0002_auto_20160204_0809','2019-02-06 08:01:23.428800'),(495,'xblock_django','0003_add_new_config_models','2019-02-06 08:01:26.720065'),(496,'xblock_django','0004_delete_xblock_disable_config','2019-02-06 08:01:28.046351'),(497,'social_django','0002_add_related_name','2019-02-06 08:01:28.238120'),(498,'social_django','0003_alter_email_max_length','2019-02-06 08:01:28.295485'),(499,'social_django','0004_auto_20160423_0400','2019-02-06 08:01:28.369651'),(500,'social_django','0001_initial','2019-02-06 08:01:28.419547'),(501,'social_django','0005_auto_20160727_2333','2019-02-06 08:01:28.470149'),(502,'contentstore','0001_initial','2019-02-06 08:02:13.717472'),(503,'contentstore','0002_add_assets_page_flag','2019-02-06 08:02:14.894230'),(504,'contentstore','0003_remove_assets_page_flag','2019-02-06 08:02:15.936128'),(505,'course_creators','0001_initial','2019-02-06 08:02:16.677395'),(506,'tagging','0001_initial','2019-02-06 08:02:16.919416'),(507,'tagging','0002_auto_20170116_1541','2019-02-06 08:02:17.057789'),(508,'user_tasks','0001_initial','2019-02-06 08:02:18.095204'),(509,'user_tasks','0002_artifact_file_storage','2019-02-06 08:02:18.200132'),(510,'xblock_config','0001_initial','2019-02-06 08:02:18.497728'),(511,'xblock_config','0002_courseeditltifieldsenabledflag','2019-02-06 08:02:19.039966'),(512,'lti_provider','0001_initial','2019-02-20 13:01:39.285635'),(513,'lti_provider','0002_auto_20160325_0407','2019-02-20 13:01:39.369768'),(514,'lti_provider','0003_auto_20161118_1040','2019-02-20 13:01:39.445830'),(515,'content_type_gating','0005_auto_20190306_1547','2019-03-06 16:00:40.248896'),(516,'course_duration_limits','0005_auto_20190306_1546','2019-03-06 16:00:40.908922'),(517,'enterprise','0061_systemwideenterpriserole_systemwideenterpriseuserroleassignment','2019-03-08 15:47:17.741727'),(518,'enterprise','0062_add_system_wide_enterprise_roles','2019-03-08 15:47:17.809640'),(519,'content_type_gating','0006_auto_20190308_1447','2019-03-11 16:27:21.659554'),(520,'course_duration_limits','0006_auto_20190308_1447','2019-03-11 16:27:22.347994'),(521,'content_type_gating','0007_auto_20190311_1919','2019-03-12 16:11:14.076560'),(522,'course_duration_limits','0007_auto_20190311_1919','2019-03-12 16:11:17.332778'),(523,'announcements','0001_initial','2019-03-18 20:54:59.708245'),(524,'content_type_gating','0008_auto_20190313_1634','2019-03-18 20:55:00.145074'),(525,'course_duration_limits','0008_auto_20190313_1634','2019-03-18 20:55:00.800059'),(526,'enterprise','0063_systemwideenterpriserole_description','2019-03-21 18:40:50.646407'),(527,'enterprise','0064_enterprisefeaturerole_enterprisefeatureuserroleassignment','2019-03-28 19:29:40.049122'),(528,'enterprise','0065_add_enterprise_feature_roles','2019-03-28 19:29:40.122825'),(529,'enterprise','0066_add_system_wide_enterprise_operator_role','2019-03-28 19:29:40.190059'),(530,'student','0020_auto_20190227_2019','2019-04-01 21:47:10.285726'),(531,'certificates','0015_add_masters_choice','2019-04-05 14:56:54.180634'),(532,'enterprise','0067_add_role_based_access_control_switch','2019-04-08 20:44:56.835675'),(533,'program_enrollments','0001_initial','2019-04-10 20:25:28.810529'),(534,'program_enrollments','0002_historicalprogramcourseenrollment_programcourseenrollment','2019-04-18 16:07:31.718124'),(535,'third_party_auth','0023_auto_20190418_2033','2019-04-24 13:53:47.057323'),(536,'program_enrollments','0003_auto_20190424_1622','2019-04-24 16:34:31.400886'),(537,'courseware','0008_move_idde_to_edx_when','2019-04-25 14:14:01.833602'),(538,'edx_when','0001_initial','2019-04-25 14:14:04.077675'),(539,'edx_when','0002_auto_20190318_1736','2019-04-25 14:14:06.472260'),(540,'edx_when','0003_auto_20190402_1501','2019-04-25 14:14:08.565796'),(541,'edx_proctoring','0010_update_backend','2019-05-02 21:47:10.150692'),(542,'program_enrollments','0004_add_programcourseenrollment_relatedname','2019-05-02 21:47:10.839771'),(543,'student','0021_historicalcourseenrollment','2019-05-03 20:29:56.543955'),(544,'cornerstone','0001_initial','2019-05-29 09:32:41.107279'),(545,'cornerstone','0002_cornerstoneglobalconfiguration_subject_mapping','2019-05-29 09:32:41.540384'),(546,'third_party_auth','0024_fix_edit_disallowed','2019-05-29 14:34:07.293693'),(547,'discounts','0001_initial','2019-06-03 19:15:59.106385'),(548,'program_enrollments','0005_canceled_not_withdrawn','2019-06-03 19:15:59.936222'),(549,'entitlements','0011_historicalcourseentitlement','2019-06-04 17:56:15.038112'),(550,'organizations','0007_historicalorganization','2019-06-04 17:56:15.935805'),(551,'user_tasks','0003_url_max_length','2019-06-04 17:56:24.531329'),(552,'user_tasks','0004_url_textfield','2019-06-04 17:56:24.631710'),(553,'enterprise','0068_remove_role_based_access_control_switch','2019-06-05 10:59:25.727686'),(554,'grades','0015_historicalpersistentsubsectiongradeoverride','2019-06-10 16:42:15.294490'),(555,'bulk_grades','0001_initial','2019-06-12 14:00:05.595345'),(556,'super_csv','0001_initial','2019-06-12 14:00:05.668273'),(557,'super_csv','0002_csvoperation_user','2019-06-12 14:00:06.129086'); /*!40000 ALTER TABLE `django_migrations` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; @@ -34,4 +34,4 @@ UNLOCK TABLES; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; --- Dump completed on 2019-06-10 16:42:29 +-- Dump completed on 2019-06-12 14:00:20 diff --git a/common/test/db_cache/bok_choy_migrations_data_student_module_history.sql b/common/test/db_cache/bok_choy_migrations_data_student_module_history.sql index f561c09921438e6a3ea2d5037c9ff209f74ca8b4..3175a4a299eeef1a3b20c6bed4a951a940712924 100644 --- a/common/test/db_cache/bok_choy_migrations_data_student_module_history.sql +++ b/common/test/db_cache/bok_choy_migrations_data_student_module_history.sql @@ -21,7 +21,7 @@ LOCK TABLES `django_migrations` WRITE; /*!40000 ALTER TABLE `django_migrations` DISABLE KEYS */; -INSERT INTO `django_migrations` VALUES (1,'contenttypes','0001_initial','2019-02-06 08:03:27.973279'),(2,'auth','0001_initial','2019-02-06 08:03:28.047577'),(3,'admin','0001_initial','2019-02-06 08:03:28.084214'),(4,'admin','0002_logentry_remove_auto_add','2019-02-06 08:03:28.117004'),(5,'sites','0001_initial','2019-02-06 08:03:28.138797'),(6,'contenttypes','0002_remove_content_type_name','2019-02-06 08:03:28.216567'),(7,'api_admin','0001_initial','2019-02-06 08:03:28.285457'),(8,'api_admin','0002_auto_20160325_1604','2019-02-06 08:03:28.307547'),(9,'api_admin','0003_auto_20160404_1618','2019-02-06 08:03:28.500622'),(10,'api_admin','0004_auto_20160412_1506','2019-02-06 08:03:28.633954'),(11,'api_admin','0005_auto_20160414_1232','2019-02-06 08:03:28.673633'),(12,'api_admin','0006_catalog','2019-02-06 08:03:28.696279'),(13,'api_admin','0007_delete_historical_api_records','2019-02-06 08:03:28.816693'),(14,'assessment','0001_initial','2019-02-06 08:03:29.290939'),(15,'assessment','0002_staffworkflow','2019-02-06 08:03:29.313966'),(16,'assessment','0003_expand_course_id','2019-02-06 08:03:29.378298'),(17,'auth','0002_alter_permission_name_max_length','2019-02-06 08:03:29.412172'),(18,'auth','0003_alter_user_email_max_length','2019-02-06 08:03:29.449614'),(19,'auth','0004_alter_user_username_opts','2019-02-06 08:03:29.489793'),(20,'auth','0005_alter_user_last_login_null','2019-02-06 08:03:29.529832'),(21,'auth','0006_require_contenttypes_0002','2019-02-06 08:03:29.535701'),(22,'auth','0007_alter_validators_add_error_messages','2019-02-06 08:03:29.572495'),(23,'auth','0008_alter_user_username_max_length','2019-02-06 08:03:29.606716'),(24,'instructor_task','0001_initial','2019-02-06 08:03:29.648070'),(25,'certificates','0001_initial','2019-02-06 08:03:30.038510'),(26,'certificates','0002_data__certificatehtmlviewconfiguration_data','2019-02-06 08:03:30.060258'),(27,'certificates','0003_data__default_modes','2019-02-06 08:03:30.081042'),(28,'certificates','0004_certificategenerationhistory','2019-02-06 08:03:30.138110'),(29,'certificates','0005_auto_20151208_0801','2019-02-06 08:03:30.188489'),(30,'certificates','0006_certificatetemplateasset_asset_slug','2019-02-06 08:03:30.217197'),(31,'certificates','0007_certificateinvalidation','2019-02-06 08:03:30.269518'),(32,'badges','0001_initial','2019-02-06 08:03:30.415373'),(33,'badges','0002_data__migrate_assertions','2019-02-06 08:03:30.438183'),(34,'badges','0003_schema__add_event_configuration','2019-02-06 08:03:30.731342'),(35,'block_structure','0001_config','2019-02-06 08:03:30.788599'),(36,'block_structure','0002_blockstructuremodel','2019-02-06 08:03:30.816557'),(37,'block_structure','0003_blockstructuremodel_storage','2019-02-06 08:03:30.846376'),(38,'block_structure','0004_blockstructuremodel_usagekeywithrun','2019-02-06 08:03:30.880450'),(39,'bookmarks','0001_initial','2019-02-06 08:03:31.054199'),(40,'branding','0001_initial','2019-02-06 08:03:31.166611'),(41,'course_modes','0001_initial','2019-02-06 08:03:31.243105'),(42,'course_modes','0002_coursemode_expiration_datetime_is_explicit','2019-02-06 08:03:31.269180'),(43,'course_modes','0003_auto_20151113_1443','2019-02-06 08:03:31.298423'),(44,'course_modes','0004_auto_20151113_1457','2019-02-06 08:03:31.371839'),(45,'course_modes','0005_auto_20151217_0958','2019-02-06 08:03:31.410727'),(46,'course_modes','0006_auto_20160208_1407','2019-02-06 08:03:31.485161'),(47,'course_modes','0007_coursemode_bulk_sku','2019-02-06 08:03:31.516196'),(48,'course_groups','0001_initial','2019-02-06 08:03:32.021134'),(49,'bulk_email','0001_initial','2019-02-06 08:03:32.263160'),(50,'bulk_email','0002_data__load_course_email_template','2019-02-06 08:03:32.285972'),(51,'bulk_email','0003_config_model_feature_flag','2019-02-06 08:03:32.366594'),(52,'bulk_email','0004_add_email_targets','2019-02-06 08:03:32.873567'),(53,'bulk_email','0005_move_target_data','2019-02-06 08:03:32.900737'),(54,'bulk_email','0006_course_mode_targets','2019-02-06 08:03:33.043008'),(55,'catalog','0001_initial','2019-02-06 08:03:33.155594'),(56,'catalog','0002_catalogintegration_username','2019-02-06 08:03:33.250400'),(57,'catalog','0003_catalogintegration_page_size','2019-02-06 08:03:33.342320'),(58,'catalog','0004_auto_20170616_0618','2019-02-06 08:03:33.440389'),(59,'catalog','0005_catalogintegration_long_term_cache_ttl','2019-02-06 08:03:33.567527'),(60,'django_comment_common','0001_initial','2019-02-06 08:03:33.854539'),(61,'django_comment_common','0002_forumsconfig','2019-02-06 08:03:33.972708'),(62,'verified_track_content','0001_initial','2019-02-06 08:03:33.998702'),(63,'course_overviews','0001_initial','2019-02-06 08:03:34.057460'),(64,'course_overviews','0002_add_course_catalog_fields','2019-02-06 08:03:34.224588'),(65,'course_overviews','0003_courseoverviewgeneratedhistory','2019-02-06 08:03:34.285061'),(66,'course_overviews','0004_courseoverview_org','2019-02-06 08:03:34.361105'),(67,'course_overviews','0005_delete_courseoverviewgeneratedhistory','2019-02-06 08:03:34.421372'),(68,'course_overviews','0006_courseoverviewimageset','2019-02-06 08:03:34.487776'),(69,'course_overviews','0007_courseoverviewimageconfig','2019-02-06 08:03:34.633259'),(70,'course_overviews','0008_remove_courseoverview_facebook_url','2019-02-06 08:03:34.646695'),(71,'course_overviews','0009_readd_facebook_url','2019-02-06 08:03:34.725856'),(72,'course_overviews','0010_auto_20160329_2317','2019-02-06 08:03:34.825796'),(73,'ccx','0001_initial','2019-02-06 08:03:35.149281'),(74,'ccx','0002_customcourseforedx_structure_json','2019-02-06 08:03:35.213941'),(75,'ccx','0003_add_master_course_staff_in_ccx','2019-02-06 08:03:35.275108'),(76,'ccx','0004_seed_forum_roles_in_ccx_courses','2019-02-06 08:03:35.320321'),(77,'ccx','0005_change_ccx_coach_to_staff','2019-02-06 08:03:35.350700'),(78,'ccx','0006_set_display_name_as_override','2019-02-06 08:03:35.391529'),(79,'ccxcon','0001_initial_ccxcon_model','2019-02-06 08:03:35.425585'),(80,'ccxcon','0002_auto_20160325_0407','2019-02-06 08:03:35.481080'),(81,'djcelery','0001_initial','2019-02-06 08:03:36.180254'),(82,'celery_utils','0001_initial','2019-02-06 08:03:36.284503'),(83,'celery_utils','0002_chordable_django_backend','2019-02-06 08:03:36.366801'),(84,'certificates','0008_schema__remove_badges','2019-02-06 08:03:36.556119'),(85,'certificates','0009_certificategenerationcoursesetting_language_self_generation','2019-02-06 08:03:36.773167'),(86,'certificates','0010_certificatetemplate_language','2019-02-06 08:03:36.815500'),(87,'certificates','0011_certificatetemplate_alter_unique','2019-02-06 08:03:36.919819'),(88,'certificates','0012_certificategenerationcoursesetting_include_hours_of_effort','2019-02-06 08:03:36.957024'),(89,'certificates','0013_remove_certificategenerationcoursesetting_enabled','2019-02-06 08:03:37.024718'),(90,'certificates','0014_change_eligible_certs_manager','2019-02-06 08:03:37.104973'),(91,'commerce','0001_data__add_ecommerce_service_user','2019-02-06 08:03:37.147354'),(92,'commerce','0002_commerceconfiguration','2019-02-06 08:03:37.232132'),(93,'commerce','0003_auto_20160329_0709','2019-02-06 08:03:37.297795'),(94,'commerce','0004_auto_20160531_0950','2019-02-06 08:03:37.417586'),(95,'commerce','0005_commerceconfiguration_enable_automatic_refund_approval','2019-02-06 08:03:37.504233'),(96,'commerce','0006_auto_20170424_1734','2019-02-06 08:03:37.578243'),(97,'commerce','0007_auto_20180313_0609','2019-02-06 08:03:37.688751'),(98,'completion','0001_initial','2019-02-06 08:03:37.847750'),(99,'completion','0002_auto_20180125_1510','2019-02-06 08:03:37.917588'),(100,'enterprise','0001_initial','2019-02-06 08:03:38.090862'),(101,'enterprise','0002_enterprisecustomerbrandingconfiguration','2019-02-06 08:03:38.142785'),(102,'enterprise','0003_auto_20161104_0937','2019-02-06 08:03:38.362358'),(103,'enterprise','0004_auto_20161114_0434','2019-02-06 08:03:38.484589'),(104,'enterprise','0005_pendingenterprisecustomeruser','2019-02-06 08:03:38.565074'),(105,'enterprise','0006_auto_20161121_0241','2019-02-06 08:03:38.604288'),(106,'enterprise','0007_auto_20161109_1511','2019-02-06 08:03:38.706534'),(107,'enterprise','0008_auto_20161124_2355','2019-02-06 08:03:38.935742'),(108,'enterprise','0009_auto_20161130_1651','2019-02-06 08:03:39.582739'),(109,'enterprise','0010_auto_20161222_1212','2019-02-06 08:03:39.710110'),(110,'enterprise','0011_enterprisecustomerentitlement_historicalenterprisecustomerentitlement','2019-02-06 08:03:39.820222'),(111,'enterprise','0012_auto_20170125_1033','2019-02-06 08:03:39.921636'),(112,'enterprise','0013_auto_20170125_1157','2019-02-06 08:03:40.091299'),(113,'enterprise','0014_enrollmentnotificationemailtemplate_historicalenrollmentnotificationemailtemplate','2019-02-06 08:03:40.226864'),(114,'enterprise','0015_auto_20170130_0003','2019-02-06 08:03:40.375822'),(115,'enterprise','0016_auto_20170405_0647','2019-02-06 08:03:41.108702'),(116,'enterprise','0017_auto_20170508_1341','2019-02-06 08:03:41.558782'),(117,'enterprise','0018_auto_20170511_1357','2019-02-06 08:03:41.671248'),(118,'enterprise','0019_auto_20170606_1853','2019-02-06 08:03:41.795407'),(119,'enterprise','0020_auto_20170624_2316','2019-02-06 08:03:42.114378'),(120,'enterprise','0021_auto_20170711_0712','2019-02-06 08:03:42.443741'),(121,'enterprise','0022_auto_20170720_1543','2019-02-06 08:03:42.555544'),(122,'enterprise','0023_audit_data_reporting_flag','2019-02-06 08:03:42.667708'),(123,'enterprise','0024_enterprisecustomercatalog_historicalenterprisecustomercatalog','2019-02-06 08:03:42.823862'),(124,'enterprise','0025_auto_20170828_1412','2019-02-06 08:03:43.148897'),(125,'enterprise','0026_make_require_account_level_consent_nullable','2019-02-06 08:03:43.564302'),(126,'enterprise','0027_remove_account_level_consent','2019-02-06 08:03:44.095360'),(127,'enterprise','0028_link_enterprise_to_enrollment_template','2019-02-06 08:03:44.318418'),(128,'enterprise','0029_auto_20170925_1909','2019-02-06 08:03:44.398129'),(129,'enterprise','0030_auto_20171005_1600','2019-02-06 08:03:44.553947'),(130,'enterprise','0031_auto_20171012_1249','2019-02-06 08:03:44.725906'),(131,'enterprise','0032_reporting_model','2019-02-06 08:03:44.840167'),(132,'enterprise','0033_add_history_change_reason_field','2019-02-06 08:03:45.245971'),(133,'enterprise','0034_auto_20171023_0727','2019-02-06 08:03:45.385659'),(134,'enterprise','0035_auto_20171212_1129','2019-02-06 08:03:45.513332'),(135,'enterprise','0036_sftp_reporting_support','2019-02-06 08:03:46.086601'),(136,'enterprise','0037_auto_20180110_0450','2019-02-06 08:03:46.208354'),(137,'enterprise','0038_auto_20180122_1427','2019-02-06 08:03:46.303546'),(138,'enterprise','0039_auto_20180129_1034','2019-02-06 08:03:46.415988'),(139,'enterprise','0040_auto_20180129_1428','2019-02-06 08:03:46.564661'),(140,'enterprise','0041_auto_20180212_1507','2019-02-06 08:03:46.626003'),(141,'consent','0001_initial','2019-02-06 08:03:46.846549'),(142,'consent','0002_migrate_to_new_data_sharing_consent','2019-02-06 08:03:46.875083'),(143,'consent','0003_historicaldatasharingconsent_history_change_reason','2019-02-06 08:03:46.965702'),(144,'consent','0004_datasharingconsenttextoverrides','2019-02-06 08:03:47.065885'),(145,'sites','0002_alter_domain_unique','2019-02-06 08:03:47.113519'),(146,'course_overviews','0011_courseoverview_marketing_url','2019-02-06 08:03:47.173117'),(147,'course_overviews','0012_courseoverview_eligible_for_financial_aid','2019-02-06 08:03:47.251335'),(148,'course_overviews','0013_courseoverview_language','2019-02-06 08:03:47.323251'),(149,'course_overviews','0014_courseoverview_certificate_available_date','2019-02-06 08:03:47.375112'),(150,'content_type_gating','0001_initial','2019-02-06 08:03:47.504223'),(151,'content_type_gating','0002_auto_20181119_0959','2019-02-06 08:03:47.696167'),(152,'content_type_gating','0003_auto_20181128_1407','2019-02-06 08:03:47.802689'),(153,'content_type_gating','0004_auto_20181128_1521','2019-02-06 08:03:47.899743'),(154,'contentserver','0001_initial','2019-02-06 08:03:48.012402'),(155,'contentserver','0002_cdnuseragentsconfig','2019-02-06 08:03:48.115897'),(156,'cors_csrf','0001_initial','2019-02-06 08:03:48.228961'),(157,'course_action_state','0001_initial','2019-02-06 08:03:48.432637'),(158,'course_duration_limits','0001_initial','2019-02-06 08:03:48.561335'),(159,'course_duration_limits','0002_auto_20181119_0959','2019-02-06 08:03:49.033726'),(160,'course_duration_limits','0003_auto_20181128_1407','2019-02-06 08:03:49.154788'),(161,'course_duration_limits','0004_auto_20181128_1521','2019-02-06 08:03:49.286782'),(162,'course_goals','0001_initial','2019-02-06 08:03:49.504320'),(163,'course_goals','0002_auto_20171010_1129','2019-02-06 08:03:49.596345'),(164,'course_groups','0002_change_inline_default_cohort_value','2019-02-06 08:03:49.642049'),(165,'course_groups','0003_auto_20170609_1455','2019-02-06 08:03:50.080016'),(166,'course_modes','0008_course_key_field_to_foreign_key','2019-02-06 08:03:50.526973'),(167,'course_modes','0009_suggested_prices_to_charfield','2019-02-06 08:03:50.584282'),(168,'course_modes','0010_archived_suggested_prices_to_charfield','2019-02-06 08:03:50.629980'),(169,'course_modes','0011_change_regex_for_comma_separated_ints','2019-02-06 08:03:50.727914'),(170,'courseware','0001_initial','2019-02-06 08:03:53.237177'),(171,'courseware','0002_coursedynamicupgradedeadlineconfiguration_dynamicupgradedeadlineconfiguration','2019-02-06 08:03:53.619502'),(172,'courseware','0003_auto_20170825_0935','2019-02-06 08:03:53.747454'),(173,'courseware','0004_auto_20171010_1639','2019-02-06 08:03:53.895768'),(174,'courseware','0005_orgdynamicupgradedeadlineconfiguration','2019-02-06 08:03:54.230018'),(175,'courseware','0006_remove_module_id_index','2019-02-06 08:03:54.435353'),(176,'courseware','0007_remove_done_index','2019-02-06 08:03:55.012607'),(177,'coursewarehistoryextended','0001_initial','2019-02-06 08:03:55.303411'),(178,'coursewarehistoryextended','0002_force_studentmodule_index','2019-02-06 08:03:55.370079'),(179,'crawlers','0001_initial','2019-02-06 08:03:55.442696'),(180,'crawlers','0002_auto_20170419_0018','2019-02-06 08:03:55.510303'),(181,'credentials','0001_initial','2019-02-06 08:03:55.578783'),(182,'credentials','0002_auto_20160325_0631','2019-02-06 08:03:55.640533'),(183,'credentials','0003_auto_20170525_1109','2019-02-06 08:03:55.760811'),(184,'credentials','0004_notifycredentialsconfig','2019-02-06 08:03:55.827343'),(185,'credit','0001_initial','2019-02-06 08:03:56.379666'),(186,'credit','0002_creditconfig','2019-02-06 08:03:56.456288'),(187,'credit','0003_auto_20160511_2227','2019-02-06 08:03:56.510076'),(188,'credit','0004_delete_historical_credit_records','2019-02-06 08:03:56.908755'),(189,'dark_lang','0001_initial','2019-02-06 08:03:56.974435'),(190,'dark_lang','0002_data__enable_on_install','2019-02-06 08:03:57.008178'),(191,'dark_lang','0003_auto_20180425_0359','2019-02-06 08:03:57.123998'),(192,'database_fixups','0001_initial','2019-02-06 08:03:57.156768'),(193,'degreed','0001_initial','2019-02-06 08:03:58.035952'),(194,'degreed','0002_auto_20180104_0103','2019-02-06 08:03:58.408761'),(195,'degreed','0003_auto_20180109_0712','2019-02-06 08:03:58.616044'),(196,'degreed','0004_auto_20180306_1251','2019-02-06 08:03:58.814623'),(197,'degreed','0005_auto_20180807_1302','2019-02-06 08:04:00.635482'),(198,'degreed','0006_upgrade_django_simple_history','2019-02-06 08:04:00.815237'),(199,'django_comment_common','0003_enable_forums','2019-02-06 08:04:00.851878'),(200,'django_comment_common','0004_auto_20161117_1209','2019-02-06 08:04:01.011618'),(201,'django_comment_common','0005_coursediscussionsettings','2019-02-06 08:04:01.048387'),(202,'django_comment_common','0006_coursediscussionsettings_discussions_id_map','2019-02-06 08:04:01.092669'),(203,'django_comment_common','0007_discussionsidmapping','2019-02-06 08:04:01.135336'),(204,'django_comment_common','0008_role_user_index','2019-02-06 08:04:01.166345'),(205,'django_notify','0001_initial','2019-02-06 08:04:01.899046'),(206,'django_openid_auth','0001_initial','2019-02-06 08:04:02.148673'),(207,'oauth2','0001_initial','2019-02-06 08:04:03.447522'),(208,'edx_oauth2_provider','0001_initial','2019-02-06 08:04:03.637123'),(209,'edx_proctoring','0001_initial','2019-02-06 08:04:06.249264'),(210,'edx_proctoring','0002_proctoredexamstudentattempt_is_status_acknowledged','2019-02-06 08:04:06.453204'),(211,'edx_proctoring','0003_auto_20160101_0525','2019-02-06 08:04:06.849450'),(212,'edx_proctoring','0004_auto_20160201_0523','2019-02-06 08:04:07.035676'),(213,'edx_proctoring','0005_proctoredexam_hide_after_due','2019-02-06 08:04:07.119540'),(214,'edx_proctoring','0006_allowed_time_limit_mins','2019-02-06 08:04:07.870116'),(215,'edx_proctoring','0007_proctoredexam_backend','2019-02-06 08:04:07.931188'),(216,'edx_proctoring','0008_auto_20181116_1551','2019-02-06 08:04:08.424205'),(217,'edx_proctoring','0009_proctoredexamreviewpolicy_remove_rules','2019-02-06 08:04:08.762512'),(218,'edxval','0001_initial','2019-02-06 08:04:09.122448'),(219,'edxval','0002_data__default_profiles','2019-02-06 08:04:09.157306'),(220,'edxval','0003_coursevideo_is_hidden','2019-02-06 08:04:09.208230'),(221,'edxval','0004_data__add_hls_profile','2019-02-06 08:04:09.249124'),(222,'edxval','0005_videoimage','2019-02-06 08:04:09.314101'),(223,'edxval','0006_auto_20171009_0725','2019-02-06 08:04:09.422431'),(224,'edxval','0007_transcript_credentials_state','2019-02-06 08:04:09.502957'),(225,'edxval','0008_remove_subtitles','2019-02-06 08:04:09.597483'),(226,'edxval','0009_auto_20171127_0406','2019-02-06 08:04:09.650707'),(227,'edxval','0010_add_video_as_foreign_key','2019-02-06 08:04:09.853179'),(228,'edxval','0011_data__add_audio_mp3_profile','2019-02-06 08:04:09.888952'),(229,'email_marketing','0001_initial','2019-02-06 08:04:10.490362'),(230,'email_marketing','0002_auto_20160623_1656','2019-02-06 08:04:12.322113'),(231,'email_marketing','0003_auto_20160715_1145','2019-02-06 08:04:13.625016'),(232,'email_marketing','0004_emailmarketingconfiguration_welcome_email_send_delay','2019-02-06 08:04:13.804721'),(233,'email_marketing','0005_emailmarketingconfiguration_user_registration_cookie_timeout_delay','2019-02-06 08:04:13.987226'),(234,'email_marketing','0006_auto_20170711_0615','2019-02-06 08:04:14.175392'),(235,'email_marketing','0007_auto_20170809_0653','2019-02-06 08:04:14.743333'),(236,'email_marketing','0008_auto_20170809_0539','2019-02-06 08:04:14.781400'),(237,'email_marketing','0009_remove_emailmarketingconfiguration_sailthru_activation_template','2019-02-06 08:04:15.000262'),(238,'email_marketing','0010_auto_20180425_0800','2019-02-06 08:04:15.577846'),(239,'embargo','0001_initial','2019-02-06 08:04:16.853715'),(240,'embargo','0002_data__add_countries','2019-02-06 08:04:16.895352'),(241,'enterprise','0042_replace_sensitive_sso_username','2019-02-06 08:04:17.169747'),(242,'enterprise','0043_auto_20180507_0138','2019-02-06 08:04:17.765765'),(243,'enterprise','0044_reporting_config_multiple_types','2019-02-06 08:04:18.048084'),(244,'enterprise','0045_report_type_json','2019-02-06 08:04:18.121655'),(245,'enterprise','0046_remove_unique_constraints','2019-02-06 08:04:18.194060'),(246,'enterprise','0047_auto_20180517_0457','2019-02-06 08:04:18.519446'),(247,'enterprise','0048_enterprisecustomeruser_active','2019-02-06 08:04:18.962011'),(248,'enterprise','0049_auto_20180531_0321','2019-02-06 08:04:20.082033'),(249,'enterprise','0050_progress_v2','2019-02-06 08:04:20.186103'),(250,'enterprise','0051_add_enterprise_slug','2019-02-06 08:04:20.652158'),(251,'enterprise','0052_create_unique_slugs','2019-02-06 08:04:21.259457'),(252,'enterprise','0053_pendingenrollment_cohort_name','2019-02-06 08:04:21.457833'),(253,'enterprise','0053_auto_20180911_0811','2019-02-06 08:04:22.130573'),(254,'enterprise','0054_merge_20180914_1511','2019-02-06 08:04:22.143011'),(255,'enterprise','0055_auto_20181015_1112','2019-02-06 08:04:22.603605'),(256,'enterprise','0056_enterprisecustomerreportingconfiguration_pgp_encryption_key','2019-02-06 08:04:22.718871'),(257,'enterprise','0057_enterprisecustomerreportingconfiguration_enterprise_customer_catalogs','2019-02-06 08:04:23.004578'),(258,'enterprise','0058_auto_20181212_0145','2019-02-06 08:04:23.860134'),(259,'enterprise','0059_add_code_management_portal_config','2019-02-06 08:04:24.184355'),(260,'enterprise','0060_upgrade_django_simple_history','2019-02-06 08:04:24.698860'),(261,'student','0001_initial','2019-02-06 08:04:31.285410'),(262,'student','0002_auto_20151208_1034','2019-02-06 08:04:31.449034'),(263,'student','0003_auto_20160516_0938','2019-02-06 08:04:31.626628'),(264,'student','0004_auto_20160531_1422','2019-02-06 08:04:31.724604'),(265,'student','0005_auto_20160531_1653','2019-02-06 08:04:32.170241'),(266,'student','0006_logoutviewconfiguration','2019-02-06 08:04:32.266892'),(267,'student','0007_registrationcookieconfiguration','2019-02-06 08:04:32.366689'),(268,'student','0008_auto_20161117_1209','2019-02-06 08:04:32.463972'),(269,'student','0009_auto_20170111_0422','2019-02-06 08:04:32.558706'),(270,'student','0010_auto_20170207_0458','2019-02-06 08:04:32.564759'),(271,'student','0011_course_key_field_to_foreign_key','2019-02-06 08:04:34.027590'),(272,'student','0012_sociallink','2019-02-06 08:04:34.353842'),(273,'student','0013_delete_historical_enrollment_records','2019-02-06 08:04:35.810292'),(274,'entitlements','0001_initial','2019-02-06 08:04:36.165929'),(275,'entitlements','0002_auto_20171102_0719','2019-02-06 08:04:38.257565'),(276,'entitlements','0003_auto_20171205_1431','2019-02-06 08:04:40.470342'),(277,'entitlements','0004_auto_20171206_1729','2019-02-06 08:04:40.982538'),(278,'entitlements','0005_courseentitlementsupportdetail','2019-02-06 08:04:41.539847'),(279,'entitlements','0006_courseentitlementsupportdetail_action','2019-02-06 08:04:41.979223'),(280,'entitlements','0007_change_expiration_period_default','2019-02-06 08:04:42.159096'),(281,'entitlements','0008_auto_20180328_1107','2019-02-06 08:04:42.683695'),(282,'entitlements','0009_courseentitlement_refund_locked','2019-02-06 08:04:43.025841'),(283,'entitlements','0010_backfill_refund_lock','2019-02-06 08:04:43.067438'),(284,'experiments','0001_initial','2019-02-06 08:04:44.694218'),(285,'experiments','0002_auto_20170627_1402','2019-02-06 08:04:44.793494'),(286,'experiments','0003_auto_20170713_1148','2019-02-06 08:04:44.853420'),(287,'external_auth','0001_initial','2019-02-06 08:04:45.445694'),(288,'grades','0001_initial','2019-02-06 08:04:45.632121'),(289,'grades','0002_rename_last_edited_field','2019-02-06 08:04:45.699684'),(290,'grades','0003_coursepersistentgradesflag_persistentgradesenabledflag','2019-02-06 08:04:46.457202'),(291,'grades','0004_visibleblocks_course_id','2019-02-06 08:04:46.531908'),(292,'grades','0005_multiple_course_flags','2019-02-06 08:04:46.849592'),(293,'grades','0006_persistent_course_grades','2019-02-06 08:04:46.952796'),(294,'grades','0007_add_passed_timestamp_column','2019-02-06 08:04:47.066573'),(295,'grades','0008_persistentsubsectiongrade_first_attempted','2019-02-06 08:04:47.138816'),(296,'grades','0009_auto_20170111_1507','2019-02-06 08:04:47.259581'),(297,'grades','0010_auto_20170112_1156','2019-02-06 08:04:47.344906'),(298,'grades','0011_null_edited_time','2019-02-06 08:04:47.527358'),(299,'grades','0012_computegradessetting','2019-02-06 08:04:48.367572'),(300,'grades','0013_persistentsubsectiongradeoverride','2019-02-06 08:04:48.436380'),(301,'grades','0014_persistentsubsectiongradeoverridehistory','2019-02-06 08:04:48.767621'),(302,'instructor_task','0002_gradereportsetting','2019-02-06 08:04:49.116174'),(303,'waffle','0001_initial','2019-02-06 08:04:49.522307'),(304,'sap_success_factors','0001_initial','2019-02-06 08:04:50.784688'),(305,'sap_success_factors','0002_auto_20170224_1545','2019-02-06 08:04:52.503372'),(306,'sap_success_factors','0003_auto_20170317_1402','2019-02-06 08:04:53.057896'),(307,'sap_success_factors','0004_catalogtransmissionaudit_audit_summary','2019-02-06 08:04:53.112654'),(308,'sap_success_factors','0005_historicalsapsuccessfactorsenterprisecustomerconfiguration_history_change_reason','2019-02-06 08:04:53.414309'),(309,'sap_success_factors','0006_sapsuccessfactors_use_enterprise_enrollment_page_waffle_flag','2019-02-06 08:04:53.467401'),(310,'sap_success_factors','0007_remove_historicalsapsuccessfactorsenterprisecustomerconfiguration_history_change_reason','2019-02-06 08:04:53.753419'),(311,'sap_success_factors','0008_historicalsapsuccessfactorsenterprisecustomerconfiguration_history_change_reason','2019-02-06 08:04:54.072310'),(312,'sap_success_factors','0009_sapsuccessfactors_remove_enterprise_enrollment_page_waffle_flag','2019-02-06 08:04:54.115078'),(313,'sap_success_factors','0010_move_audit_tables_to_base_integrated_channel','2019-02-06 08:04:54.280162'),(314,'integrated_channel','0001_initial','2019-02-06 08:04:54.374204'),(315,'integrated_channel','0002_delete_enterpriseintegratedchannel','2019-02-06 08:04:54.413351'),(316,'integrated_channel','0003_catalogtransmissionaudit_learnerdatatransmissionaudit','2019-02-06 08:04:54.514947'),(317,'integrated_channel','0004_catalogtransmissionaudit_channel','2019-02-06 08:04:54.566483'),(318,'integrated_channel','0005_auto_20180306_1251','2019-02-06 08:04:55.508336'),(319,'integrated_channel','0006_delete_catalogtransmissionaudit','2019-02-06 08:04:55.564564'),(320,'lms_xblock','0001_initial','2019-02-06 08:04:55.920260'),(321,'microsite_configuration','0001_initial','2019-02-06 08:04:59.149839'),(322,'microsite_configuration','0002_auto_20160202_0228','2019-02-06 08:04:59.263415'),(323,'microsite_configuration','0003_delete_historical_records','2019-02-06 08:05:00.613558'),(324,'milestones','0001_initial','2019-02-06 08:05:01.624456'),(325,'milestones','0002_data__seed_relationship_types','2019-02-06 08:05:01.663935'),(326,'milestones','0003_coursecontentmilestone_requirements','2019-02-06 08:05:01.731497'),(327,'milestones','0004_auto_20151221_1445','2019-02-06 08:05:01.953395'),(328,'mobile_api','0001_initial','2019-02-06 08:05:02.276280'),(329,'mobile_api','0002_auto_20160406_0904','2019-02-06 08:05:02.375950'),(330,'mobile_api','0003_ignore_mobile_available_flag','2019-02-06 08:05:02.955623'),(331,'notes','0001_initial','2019-02-06 08:05:03.284134'),(332,'oauth2','0002_auto_20160404_0813','2019-02-06 08:05:04.320559'),(333,'oauth2','0003_client_logout_uri','2019-02-06 08:05:05.028463'),(334,'oauth2','0004_add_index_on_grant_expires','2019-02-06 08:05:05.320810'),(335,'oauth2','0005_grant_nonce','2019-02-06 08:05:05.628866'),(336,'organizations','0001_initial','2019-02-06 08:05:05.786592'),(337,'organizations','0002_auto_20170117_1434','2019-02-06 08:05:05.850615'),(338,'organizations','0003_auto_20170221_1138','2019-02-06 08:05:05.970702'),(339,'organizations','0004_auto_20170413_2315','2019-02-06 08:05:06.085590'),(340,'organizations','0005_auto_20171116_0640','2019-02-06 08:05:06.148448'),(341,'organizations','0006_auto_20171207_0259','2019-02-06 08:05:06.215454'),(342,'oauth2_provider','0001_initial','2019-02-06 08:05:07.961621'),(343,'oauth_dispatch','0001_initial','2019-02-06 08:05:08.350586'),(344,'oauth_dispatch','0002_scopedapplication_scopedapplicationorganization','2019-02-06 08:05:09.132604'),(345,'oauth_dispatch','0003_application_data','2019-02-06 08:05:09.196710'),(346,'oauth_dispatch','0004_auto_20180626_1349','2019-02-06 08:05:11.499019'),(347,'oauth_dispatch','0005_applicationaccess_type','2019-02-06 08:05:11.606808'),(348,'oauth_dispatch','0006_drop_application_id_constraints','2019-02-06 08:05:11.875498'),(349,'oauth2_provider','0002_08_updates','2019-02-06 08:05:12.127180'),(350,'oauth2_provider','0003_auto_20160316_1503','2019-02-06 08:05:12.219934'),(351,'oauth2_provider','0004_auto_20160525_1623','2019-02-06 08:05:12.448186'),(352,'oauth2_provider','0005_auto_20170514_1141','2019-02-06 08:05:13.676168'),(353,'oauth2_provider','0006_auto_20171214_2232','2019-02-06 08:05:14.539094'),(354,'oauth_dispatch','0007_restore_application_id_constraints','2019-02-06 08:05:14.834346'),(355,'oauth_provider','0001_initial','2019-02-06 08:05:15.171734'),(356,'problem_builder','0001_initial','2019-02-06 08:05:15.299615'),(357,'problem_builder','0002_auto_20160121_1525','2019-02-06 08:05:15.503283'),(358,'problem_builder','0003_auto_20161124_0755','2019-02-06 08:05:15.621050'),(359,'problem_builder','0004_copy_course_ids','2019-02-06 08:05:15.672698'),(360,'problem_builder','0005_auto_20170112_1021','2019-02-06 08:05:15.822489'),(361,'problem_builder','0006_remove_deprecated_course_id','2019-02-06 08:05:15.937076'),(362,'programs','0001_initial','2019-02-06 08:05:16.056792'),(363,'programs','0002_programsapiconfig_cache_ttl','2019-02-06 08:05:16.160203'),(364,'programs','0003_auto_20151120_1613','2019-02-06 08:05:16.532675'),(365,'programs','0004_programsapiconfig_enable_certification','2019-02-06 08:05:17.329411'),(366,'programs','0005_programsapiconfig_max_retries','2019-02-06 08:05:17.560011'),(367,'programs','0006_programsapiconfig_xseries_ad_enabled','2019-02-06 08:05:17.710363'),(368,'programs','0007_programsapiconfig_program_listing_enabled','2019-02-06 08:05:17.830224'),(369,'programs','0008_programsapiconfig_program_details_enabled','2019-02-06 08:05:17.950796'),(370,'programs','0009_programsapiconfig_marketing_path','2019-02-06 08:05:18.079013'),(371,'programs','0010_auto_20170204_2332','2019-02-06 08:05:18.382249'),(372,'programs','0011_auto_20170301_1844','2019-02-06 08:05:19.698119'),(373,'programs','0012_auto_20170419_0018','2019-02-06 08:05:19.800404'),(374,'redirects','0001_initial','2019-02-06 08:05:20.155019'),(375,'rss_proxy','0001_initial','2019-02-06 08:05:20.204027'),(376,'sap_success_factors','0011_auto_20180104_0103','2019-02-06 08:05:24.276543'),(377,'sap_success_factors','0012_auto_20180109_0712','2019-02-06 08:05:24.679152'),(378,'sap_success_factors','0013_auto_20180306_1251','2019-02-06 08:05:25.083064'),(379,'sap_success_factors','0014_drop_historical_table','2019-02-06 08:05:25.129347'),(380,'sap_success_factors','0015_auto_20180510_1259','2019-02-06 08:05:25.860155'),(381,'sap_success_factors','0016_sapsuccessfactorsenterprisecustomerconfiguration_additional_locales','2019-02-06 08:05:25.960191'),(382,'sap_success_factors','0017_sapsuccessfactorsglobalconfiguration_search_student_api_path','2019-02-06 08:05:26.285693'),(383,'schedules','0001_initial','2019-02-06 08:05:26.690791'),(384,'schedules','0002_auto_20170816_1532','2019-02-06 08:05:27.302276'),(385,'schedules','0003_scheduleconfig','2019-02-06 08:05:27.646134'),(386,'schedules','0004_auto_20170922_1428','2019-02-06 08:05:28.252876'),(387,'schedules','0005_auto_20171010_1722','2019-02-06 08:05:28.881956'),(388,'schedules','0006_scheduleexperience','2019-02-06 08:05:29.251797'),(389,'schedules','0007_scheduleconfig_hold_back_ratio','2019-02-06 08:05:29.617048'),(390,'self_paced','0001_initial','2019-02-06 08:05:30.027241'),(391,'sessions','0001_initial','2019-02-06 08:05:30.078048'),(392,'shoppingcart','0001_initial','2019-02-06 08:05:38.998266'),(393,'shoppingcart','0002_auto_20151208_1034','2019-02-06 08:05:39.154428'),(394,'shoppingcart','0003_auto_20151217_0958','2019-02-06 08:05:39.312762'),(395,'shoppingcart','0004_change_meta_options','2019-02-06 08:05:39.468307'),(396,'site_configuration','0001_initial','2019-02-06 08:05:40.221457'),(397,'site_configuration','0002_auto_20160720_0231','2019-02-06 08:05:40.436234'),(398,'default','0001_initial','2019-02-06 08:05:41.857778'),(399,'social_auth','0001_initial','2019-02-06 08:05:41.863663'),(400,'default','0002_add_related_name','2019-02-06 08:05:42.234168'),(401,'social_auth','0002_add_related_name','2019-02-06 08:05:42.241171'),(402,'default','0003_alter_email_max_length','2019-02-06 08:05:42.308536'),(403,'social_auth','0003_alter_email_max_length','2019-02-06 08:05:42.316793'),(404,'default','0004_auto_20160423_0400','2019-02-06 08:05:42.679083'),(405,'social_auth','0004_auto_20160423_0400','2019-02-06 08:05:42.685800'),(406,'social_auth','0005_auto_20160727_2333','2019-02-06 08:05:42.757758'),(407,'social_django','0006_partial','2019-02-06 08:05:42.816147'),(408,'social_django','0007_code_timestamp','2019-02-06 08:05:42.883285'),(409,'social_django','0008_partial_timestamp','2019-02-06 08:05:42.957758'),(410,'splash','0001_initial','2019-02-06 08:05:43.433414'),(411,'static_replace','0001_initial','2019-02-06 08:05:44.140144'),(412,'static_replace','0002_assetexcludedextensionsconfig','2019-02-06 08:05:46.566804'),(413,'status','0001_initial','2019-02-06 08:05:47.436513'),(414,'status','0002_update_help_text','2019-02-06 08:05:47.800113'),(415,'student','0014_courseenrollmentallowed_user','2019-02-06 08:05:48.264692'),(416,'student','0015_manualenrollmentaudit_add_role','2019-02-06 08:05:48.712619'),(417,'student','0016_coursenrollment_course_on_delete_do_nothing','2019-02-06 08:05:49.240041'),(418,'student','0017_accountrecovery','2019-02-06 08:05:49.748236'),(419,'student','0018_remove_password_history','2019-02-06 08:05:50.694342'),(420,'student','0019_auto_20181221_0540','2019-02-06 08:05:51.482317'),(421,'submissions','0001_initial','2019-02-06 08:05:51.980676'),(422,'submissions','0002_auto_20151119_0913','2019-02-06 08:05:52.129788'),(423,'submissions','0003_submission_status','2019-02-06 08:05:52.207556'),(424,'submissions','0004_remove_django_extensions','2019-02-06 08:05:52.285295'),(425,'survey','0001_initial','2019-02-06 08:05:53.028225'),(426,'teams','0001_initial','2019-02-06 08:05:56.392431'),(427,'theming','0001_initial','2019-02-06 08:05:57.128347'),(428,'third_party_auth','0001_initial','2019-02-06 08:06:00.383669'),(429,'third_party_auth','0002_schema__provider_icon_image','2019-02-06 08:06:04.313456'),(430,'third_party_auth','0003_samlproviderconfig_debug_mode','2019-02-06 08:06:04.721469'),(431,'third_party_auth','0004_add_visible_field','2019-02-06 08:06:08.188893'),(432,'third_party_auth','0005_add_site_field','2019-02-06 08:06:11.231121'),(433,'third_party_auth','0006_samlproviderconfig_automatic_refresh_enabled','2019-02-06 08:06:11.638402'),(434,'third_party_auth','0007_auto_20170406_0912','2019-02-06 08:06:12.463541'),(435,'third_party_auth','0008_auto_20170413_1455','2019-02-06 08:06:13.699789'),(436,'third_party_auth','0009_auto_20170415_1144','2019-02-06 08:06:15.877426'),(437,'third_party_auth','0010_add_skip_hinted_login_dialog_field','2019-02-06 08:06:17.252327'),(438,'third_party_auth','0011_auto_20170616_0112','2019-02-06 08:06:17.697662'),(439,'third_party_auth','0012_auto_20170626_1135','2019-02-06 08:06:19.014914'),(440,'third_party_auth','0013_sync_learner_profile_data','2019-02-06 08:06:21.184194'),(441,'third_party_auth','0014_auto_20171222_1233','2019-02-06 08:06:22.500576'),(442,'third_party_auth','0015_samlproviderconfig_archived','2019-02-06 08:06:22.910782'),(443,'third_party_auth','0016_auto_20180130_0938','2019-02-06 08:06:23.768574'),(444,'third_party_auth','0017_remove_icon_class_image_secondary_fields','2019-02-06 08:06:25.677996'),(445,'third_party_auth','0018_auto_20180327_1631','2019-02-06 08:06:26.945645'),(446,'third_party_auth','0019_consolidate_slug','2019-02-06 08:06:28.225165'),(447,'third_party_auth','0020_cleanup_slug_fields','2019-02-06 08:06:29.071340'),(448,'third_party_auth','0021_sso_id_verification','2019-02-06 08:06:30.920266'),(449,'third_party_auth','0022_auto_20181012_0307','2019-02-06 08:06:33.001900'),(450,'thumbnail','0001_initial','2019-02-06 08:06:33.058625'),(451,'track','0001_initial','2019-02-06 08:06:33.135878'),(452,'user_api','0001_initial','2019-02-06 08:06:36.568433'),(453,'user_api','0002_retirementstate_userretirementstatus','2019-02-06 08:06:37.067536'),(454,'user_api','0003_userretirementrequest','2019-02-06 08:06:37.538805'),(455,'user_api','0004_userretirementpartnerreportingstatus','2019-02-06 08:06:38.846620'),(456,'user_authn','0001_data__add_login_service','2019-02-06 08:06:38.924862'),(457,'util','0001_initial','2019-02-06 08:06:39.401783'),(458,'util','0002_data__default_rate_limit_config','2019-02-06 08:06:39.459887'),(459,'verified_track_content','0002_verifiedtrackcohortedcourse_verified_cohort_name','2019-02-06 08:06:39.538104'),(460,'verified_track_content','0003_migrateverifiedtrackcohortssetting','2019-02-06 08:06:40.048232'),(461,'verify_student','0001_initial','2019-02-06 08:06:45.357816'),(462,'verify_student','0002_auto_20151124_1024','2019-02-06 08:06:45.516943'),(463,'verify_student','0003_auto_20151113_1443','2019-02-06 08:06:45.673513'),(464,'verify_student','0004_delete_historical_records','2019-02-06 08:06:45.835049'),(465,'verify_student','0005_remove_deprecated_models','2019-02-06 08:06:49.679210'),(466,'verify_student','0006_ssoverification','2019-02-06 08:06:49.790644'),(467,'verify_student','0007_idverificationaggregate','2019-02-06 08:06:49.891841'),(468,'verify_student','0008_populate_idverificationaggregate','2019-02-06 08:06:49.947020'),(469,'verify_student','0009_remove_id_verification_aggregate','2019-02-06 08:06:50.183257'),(470,'verify_student','0010_manualverification','2019-02-06 08:06:50.284386'),(471,'verify_student','0011_add_fields_to_sspv','2019-02-06 08:06:50.459982'),(472,'video_config','0001_initial','2019-02-06 08:06:50.654393'),(473,'video_config','0002_coursevideotranscriptenabledflag_videotranscriptenabledflag','2019-02-06 08:06:50.846809'),(474,'video_config','0003_transcriptmigrationsetting','2019-02-06 08:06:50.952242'),(475,'video_config','0004_transcriptmigrationsetting_command_run','2019-02-06 08:06:51.053615'),(476,'video_config','0005_auto_20180719_0752','2019-02-06 08:06:51.770192'),(477,'video_config','0006_videothumbnailetting_updatedcoursevideos','2019-02-06 08:06:51.998431'),(478,'video_config','0007_videothumbnailsetting_offset','2019-02-06 08:06:52.104225'),(479,'video_pipeline','0001_initial','2019-02-06 08:06:52.217246'),(480,'video_pipeline','0002_auto_20171114_0704','2019-02-06 08:06:52.423437'),(481,'video_pipeline','0003_coursevideouploadsenabledbydefault_videouploadsenabledbydefault','2019-02-06 08:06:52.652384'),(482,'waffle','0002_auto_20161201_0958','2019-02-06 08:06:52.731546'),(483,'waffle_utils','0001_initial','2019-02-06 08:06:52.859204'),(484,'wiki','0001_initial','2019-02-06 08:07:04.002394'),(485,'wiki','0002_remove_article_subscription','2019-02-06 08:07:04.852782'),(486,'wiki','0003_ip_address_conv','2019-02-06 08:07:06.546138'),(487,'wiki','0004_increase_slug_size','2019-02-06 08:07:06.749915'),(488,'wiki','0005_remove_attachments_and_images','2019-02-06 08:07:10.711449'),(489,'workflow','0001_initial','2019-02-06 08:07:10.929774'),(490,'workflow','0002_remove_django_extensions','2019-02-06 08:07:11.016177'),(491,'xapi','0001_initial','2019-02-06 08:07:11.530173'),(492,'xapi','0002_auto_20180726_0142','2019-02-06 08:07:11.853838'),(493,'xblock_django','0001_initial','2019-02-06 08:07:12.421573'),(494,'xblock_django','0002_auto_20160204_0809','2019-02-06 08:07:12.884088'),(495,'xblock_django','0003_add_new_config_models','2019-02-06 08:07:15.322827'),(496,'xblock_django','0004_delete_xblock_disable_config','2019-02-06 08:07:15.939861'),(497,'social_django','0002_add_related_name','2019-02-06 08:07:15.955501'),(498,'social_django','0003_alter_email_max_length','2019-02-06 08:07:15.960905'),(499,'social_django','0004_auto_20160423_0400','2019-02-06 08:07:15.967703'),(500,'social_django','0001_initial','2019-02-06 08:07:15.972077'),(501,'social_django','0005_auto_20160727_2333','2019-02-06 08:07:15.978019'),(502,'contentstore','0001_initial','2019-02-06 08:07:47.027361'),(503,'contentstore','0002_add_assets_page_flag','2019-02-06 08:07:48.064450'),(504,'contentstore','0003_remove_assets_page_flag','2019-02-06 08:07:48.989553'),(505,'course_creators','0001_initial','2019-02-06 08:07:49.658930'),(506,'tagging','0001_initial','2019-02-06 08:07:49.791763'),(507,'tagging','0002_auto_20170116_1541','2019-02-06 08:07:49.890533'),(508,'user_tasks','0001_initial','2019-02-06 08:07:50.803460'),(509,'user_tasks','0002_artifact_file_storage','2019-02-06 08:07:50.865286'),(510,'xblock_config','0001_initial','2019-02-06 08:07:51.079346'),(511,'xblock_config','0002_courseeditltifieldsenabledflag','2019-02-06 08:07:51.540299'),(512,'lti_provider','0001_initial','2019-02-20 13:02:12.609875'),(513,'lti_provider','0002_auto_20160325_0407','2019-02-20 13:02:12.673092'),(514,'lti_provider','0003_auto_20161118_1040','2019-02-20 13:02:12.735420'),(515,'content_type_gating','0005_auto_20190306_1547','2019-03-06 16:01:10.563542'),(516,'course_duration_limits','0005_auto_20190306_1546','2019-03-06 16:01:11.211966'),(517,'enterprise','0061_systemwideenterpriserole_systemwideenterpriseuserroleassignment','2019-03-08 15:47:46.856657'),(518,'enterprise','0062_add_system_wide_enterprise_roles','2019-03-08 15:47:46.906778'),(519,'content_type_gating','0006_auto_20190308_1447','2019-03-11 16:27:52.135257'),(520,'course_duration_limits','0006_auto_20190308_1447','2019-03-11 16:27:52.779284'),(521,'content_type_gating','0007_auto_20190311_1919','2019-03-12 16:11:54.043782'),(522,'course_duration_limits','0007_auto_20190311_1919','2019-03-12 16:11:56.790492'),(523,'announcements','0001_initial','2019-03-18 20:55:30.988286'),(524,'content_type_gating','0008_auto_20190313_1634','2019-03-18 20:55:31.415131'),(525,'course_duration_limits','0008_auto_20190313_1634','2019-03-18 20:55:32.064734'),(526,'enterprise','0063_systemwideenterpriserole_description','2019-03-21 18:42:16.699719'),(527,'enterprise','0064_enterprisefeaturerole_enterprisefeatureuserroleassignment','2019-03-28 19:30:12.392842'),(528,'enterprise','0065_add_enterprise_feature_roles','2019-03-28 19:30:12.443188'),(529,'enterprise','0066_add_system_wide_enterprise_operator_role','2019-03-28 19:30:12.488801'),(530,'student','0020_auto_20190227_2019','2019-04-01 21:47:42.163913'),(531,'certificates','0015_add_masters_choice','2019-04-05 14:57:27.206603'),(532,'enterprise','0067_add_role_based_access_control_switch','2019-04-08 20:45:27.538157'),(533,'program_enrollments','0001_initial','2019-04-10 20:26:00.692153'),(534,'program_enrollments','0002_historicalprogramcourseenrollment_programcourseenrollment','2019-04-18 16:08:03.137722'),(535,'third_party_auth','0023_auto_20190418_2033','2019-04-24 13:54:18.834044'),(536,'program_enrollments','0003_auto_20190424_1622','2019-04-24 16:35:05.844296'),(537,'courseware','0008_move_idde_to_edx_when','2019-04-25 14:14:41.176920'),(538,'edx_when','0001_initial','2019-04-25 14:14:42.645389'),(539,'edx_when','0002_auto_20190318_1736','2019-04-25 14:14:44.336320'),(540,'edx_when','0003_auto_20190402_1501','2019-04-25 14:14:46.294533'),(541,'edx_proctoring','0010_update_backend','2019-05-02 21:47:41.213808'),(542,'program_enrollments','0004_add_programcourseenrollment_relatedname','2019-05-02 21:47:41.764379'),(543,'student','0021_historicalcourseenrollment','2019-05-03 20:30:26.687544'),(544,'cornerstone','0001_initial','2019-05-29 09:33:13.719793'),(545,'cornerstone','0002_cornerstoneglobalconfiguration_subject_mapping','2019-05-29 09:33:14.111664'),(546,'third_party_auth','0024_fix_edit_disallowed','2019-05-29 14:34:39.226961'),(547,'discounts','0001_initial','2019-06-03 19:16:30.854700'),(548,'program_enrollments','0005_canceled_not_withdrawn','2019-06-03 19:16:31.705259'),(549,'entitlements','0011_historicalcourseentitlement','2019-06-04 17:56:44.090401'),(550,'organizations','0007_historicalorganization','2019-06-04 17:56:44.882744'),(551,'user_tasks','0003_url_max_length','2019-06-04 17:56:52.649984'),(552,'user_tasks','0004_url_textfield','2019-06-04 17:56:52.708857'),(553,'enterprise','0068_remove_role_based_access_control_switch','2019-06-05 10:59:54.361142'),(554,'grades','0015_historicalpersistentsubsectiongradeoverride','2019-06-10 16:42:35.419978'); +INSERT INTO `django_migrations` VALUES (1,'contenttypes','0001_initial','2019-02-06 08:03:27.973279'),(2,'auth','0001_initial','2019-02-06 08:03:28.047577'),(3,'admin','0001_initial','2019-02-06 08:03:28.084214'),(4,'admin','0002_logentry_remove_auto_add','2019-02-06 08:03:28.117004'),(5,'sites','0001_initial','2019-02-06 08:03:28.138797'),(6,'contenttypes','0002_remove_content_type_name','2019-02-06 08:03:28.216567'),(7,'api_admin','0001_initial','2019-02-06 08:03:28.285457'),(8,'api_admin','0002_auto_20160325_1604','2019-02-06 08:03:28.307547'),(9,'api_admin','0003_auto_20160404_1618','2019-02-06 08:03:28.500622'),(10,'api_admin','0004_auto_20160412_1506','2019-02-06 08:03:28.633954'),(11,'api_admin','0005_auto_20160414_1232','2019-02-06 08:03:28.673633'),(12,'api_admin','0006_catalog','2019-02-06 08:03:28.696279'),(13,'api_admin','0007_delete_historical_api_records','2019-02-06 08:03:28.816693'),(14,'assessment','0001_initial','2019-02-06 08:03:29.290939'),(15,'assessment','0002_staffworkflow','2019-02-06 08:03:29.313966'),(16,'assessment','0003_expand_course_id','2019-02-06 08:03:29.378298'),(17,'auth','0002_alter_permission_name_max_length','2019-02-06 08:03:29.412172'),(18,'auth','0003_alter_user_email_max_length','2019-02-06 08:03:29.449614'),(19,'auth','0004_alter_user_username_opts','2019-02-06 08:03:29.489793'),(20,'auth','0005_alter_user_last_login_null','2019-02-06 08:03:29.529832'),(21,'auth','0006_require_contenttypes_0002','2019-02-06 08:03:29.535701'),(22,'auth','0007_alter_validators_add_error_messages','2019-02-06 08:03:29.572495'),(23,'auth','0008_alter_user_username_max_length','2019-02-06 08:03:29.606716'),(24,'instructor_task','0001_initial','2019-02-06 08:03:29.648070'),(25,'certificates','0001_initial','2019-02-06 08:03:30.038510'),(26,'certificates','0002_data__certificatehtmlviewconfiguration_data','2019-02-06 08:03:30.060258'),(27,'certificates','0003_data__default_modes','2019-02-06 08:03:30.081042'),(28,'certificates','0004_certificategenerationhistory','2019-02-06 08:03:30.138110'),(29,'certificates','0005_auto_20151208_0801','2019-02-06 08:03:30.188489'),(30,'certificates','0006_certificatetemplateasset_asset_slug','2019-02-06 08:03:30.217197'),(31,'certificates','0007_certificateinvalidation','2019-02-06 08:03:30.269518'),(32,'badges','0001_initial','2019-02-06 08:03:30.415373'),(33,'badges','0002_data__migrate_assertions','2019-02-06 08:03:30.438183'),(34,'badges','0003_schema__add_event_configuration','2019-02-06 08:03:30.731342'),(35,'block_structure','0001_config','2019-02-06 08:03:30.788599'),(36,'block_structure','0002_blockstructuremodel','2019-02-06 08:03:30.816557'),(37,'block_structure','0003_blockstructuremodel_storage','2019-02-06 08:03:30.846376'),(38,'block_structure','0004_blockstructuremodel_usagekeywithrun','2019-02-06 08:03:30.880450'),(39,'bookmarks','0001_initial','2019-02-06 08:03:31.054199'),(40,'branding','0001_initial','2019-02-06 08:03:31.166611'),(41,'course_modes','0001_initial','2019-02-06 08:03:31.243105'),(42,'course_modes','0002_coursemode_expiration_datetime_is_explicit','2019-02-06 08:03:31.269180'),(43,'course_modes','0003_auto_20151113_1443','2019-02-06 08:03:31.298423'),(44,'course_modes','0004_auto_20151113_1457','2019-02-06 08:03:31.371839'),(45,'course_modes','0005_auto_20151217_0958','2019-02-06 08:03:31.410727'),(46,'course_modes','0006_auto_20160208_1407','2019-02-06 08:03:31.485161'),(47,'course_modes','0007_coursemode_bulk_sku','2019-02-06 08:03:31.516196'),(48,'course_groups','0001_initial','2019-02-06 08:03:32.021134'),(49,'bulk_email','0001_initial','2019-02-06 08:03:32.263160'),(50,'bulk_email','0002_data__load_course_email_template','2019-02-06 08:03:32.285972'),(51,'bulk_email','0003_config_model_feature_flag','2019-02-06 08:03:32.366594'),(52,'bulk_email','0004_add_email_targets','2019-02-06 08:03:32.873567'),(53,'bulk_email','0005_move_target_data','2019-02-06 08:03:32.900737'),(54,'bulk_email','0006_course_mode_targets','2019-02-06 08:03:33.043008'),(55,'catalog','0001_initial','2019-02-06 08:03:33.155594'),(56,'catalog','0002_catalogintegration_username','2019-02-06 08:03:33.250400'),(57,'catalog','0003_catalogintegration_page_size','2019-02-06 08:03:33.342320'),(58,'catalog','0004_auto_20170616_0618','2019-02-06 08:03:33.440389'),(59,'catalog','0005_catalogintegration_long_term_cache_ttl','2019-02-06 08:03:33.567527'),(60,'django_comment_common','0001_initial','2019-02-06 08:03:33.854539'),(61,'django_comment_common','0002_forumsconfig','2019-02-06 08:03:33.972708'),(62,'verified_track_content','0001_initial','2019-02-06 08:03:33.998702'),(63,'course_overviews','0001_initial','2019-02-06 08:03:34.057460'),(64,'course_overviews','0002_add_course_catalog_fields','2019-02-06 08:03:34.224588'),(65,'course_overviews','0003_courseoverviewgeneratedhistory','2019-02-06 08:03:34.285061'),(66,'course_overviews','0004_courseoverview_org','2019-02-06 08:03:34.361105'),(67,'course_overviews','0005_delete_courseoverviewgeneratedhistory','2019-02-06 08:03:34.421372'),(68,'course_overviews','0006_courseoverviewimageset','2019-02-06 08:03:34.487776'),(69,'course_overviews','0007_courseoverviewimageconfig','2019-02-06 08:03:34.633259'),(70,'course_overviews','0008_remove_courseoverview_facebook_url','2019-02-06 08:03:34.646695'),(71,'course_overviews','0009_readd_facebook_url','2019-02-06 08:03:34.725856'),(72,'course_overviews','0010_auto_20160329_2317','2019-02-06 08:03:34.825796'),(73,'ccx','0001_initial','2019-02-06 08:03:35.149281'),(74,'ccx','0002_customcourseforedx_structure_json','2019-02-06 08:03:35.213941'),(75,'ccx','0003_add_master_course_staff_in_ccx','2019-02-06 08:03:35.275108'),(76,'ccx','0004_seed_forum_roles_in_ccx_courses','2019-02-06 08:03:35.320321'),(77,'ccx','0005_change_ccx_coach_to_staff','2019-02-06 08:03:35.350700'),(78,'ccx','0006_set_display_name_as_override','2019-02-06 08:03:35.391529'),(79,'ccxcon','0001_initial_ccxcon_model','2019-02-06 08:03:35.425585'),(80,'ccxcon','0002_auto_20160325_0407','2019-02-06 08:03:35.481080'),(81,'djcelery','0001_initial','2019-02-06 08:03:36.180254'),(82,'celery_utils','0001_initial','2019-02-06 08:03:36.284503'),(83,'celery_utils','0002_chordable_django_backend','2019-02-06 08:03:36.366801'),(84,'certificates','0008_schema__remove_badges','2019-02-06 08:03:36.556119'),(85,'certificates','0009_certificategenerationcoursesetting_language_self_generation','2019-02-06 08:03:36.773167'),(86,'certificates','0010_certificatetemplate_language','2019-02-06 08:03:36.815500'),(87,'certificates','0011_certificatetemplate_alter_unique','2019-02-06 08:03:36.919819'),(88,'certificates','0012_certificategenerationcoursesetting_include_hours_of_effort','2019-02-06 08:03:36.957024'),(89,'certificates','0013_remove_certificategenerationcoursesetting_enabled','2019-02-06 08:03:37.024718'),(90,'certificates','0014_change_eligible_certs_manager','2019-02-06 08:03:37.104973'),(91,'commerce','0001_data__add_ecommerce_service_user','2019-02-06 08:03:37.147354'),(92,'commerce','0002_commerceconfiguration','2019-02-06 08:03:37.232132'),(93,'commerce','0003_auto_20160329_0709','2019-02-06 08:03:37.297795'),(94,'commerce','0004_auto_20160531_0950','2019-02-06 08:03:37.417586'),(95,'commerce','0005_commerceconfiguration_enable_automatic_refund_approval','2019-02-06 08:03:37.504233'),(96,'commerce','0006_auto_20170424_1734','2019-02-06 08:03:37.578243'),(97,'commerce','0007_auto_20180313_0609','2019-02-06 08:03:37.688751'),(98,'completion','0001_initial','2019-02-06 08:03:37.847750'),(99,'completion','0002_auto_20180125_1510','2019-02-06 08:03:37.917588'),(100,'enterprise','0001_initial','2019-02-06 08:03:38.090862'),(101,'enterprise','0002_enterprisecustomerbrandingconfiguration','2019-02-06 08:03:38.142785'),(102,'enterprise','0003_auto_20161104_0937','2019-02-06 08:03:38.362358'),(103,'enterprise','0004_auto_20161114_0434','2019-02-06 08:03:38.484589'),(104,'enterprise','0005_pendingenterprisecustomeruser','2019-02-06 08:03:38.565074'),(105,'enterprise','0006_auto_20161121_0241','2019-02-06 08:03:38.604288'),(106,'enterprise','0007_auto_20161109_1511','2019-02-06 08:03:38.706534'),(107,'enterprise','0008_auto_20161124_2355','2019-02-06 08:03:38.935742'),(108,'enterprise','0009_auto_20161130_1651','2019-02-06 08:03:39.582739'),(109,'enterprise','0010_auto_20161222_1212','2019-02-06 08:03:39.710110'),(110,'enterprise','0011_enterprisecustomerentitlement_historicalenterprisecustomerentitlement','2019-02-06 08:03:39.820222'),(111,'enterprise','0012_auto_20170125_1033','2019-02-06 08:03:39.921636'),(112,'enterprise','0013_auto_20170125_1157','2019-02-06 08:03:40.091299'),(113,'enterprise','0014_enrollmentnotificationemailtemplate_historicalenrollmentnotificationemailtemplate','2019-02-06 08:03:40.226864'),(114,'enterprise','0015_auto_20170130_0003','2019-02-06 08:03:40.375822'),(115,'enterprise','0016_auto_20170405_0647','2019-02-06 08:03:41.108702'),(116,'enterprise','0017_auto_20170508_1341','2019-02-06 08:03:41.558782'),(117,'enterprise','0018_auto_20170511_1357','2019-02-06 08:03:41.671248'),(118,'enterprise','0019_auto_20170606_1853','2019-02-06 08:03:41.795407'),(119,'enterprise','0020_auto_20170624_2316','2019-02-06 08:03:42.114378'),(120,'enterprise','0021_auto_20170711_0712','2019-02-06 08:03:42.443741'),(121,'enterprise','0022_auto_20170720_1543','2019-02-06 08:03:42.555544'),(122,'enterprise','0023_audit_data_reporting_flag','2019-02-06 08:03:42.667708'),(123,'enterprise','0024_enterprisecustomercatalog_historicalenterprisecustomercatalog','2019-02-06 08:03:42.823862'),(124,'enterprise','0025_auto_20170828_1412','2019-02-06 08:03:43.148897'),(125,'enterprise','0026_make_require_account_level_consent_nullable','2019-02-06 08:03:43.564302'),(126,'enterprise','0027_remove_account_level_consent','2019-02-06 08:03:44.095360'),(127,'enterprise','0028_link_enterprise_to_enrollment_template','2019-02-06 08:03:44.318418'),(128,'enterprise','0029_auto_20170925_1909','2019-02-06 08:03:44.398129'),(129,'enterprise','0030_auto_20171005_1600','2019-02-06 08:03:44.553947'),(130,'enterprise','0031_auto_20171012_1249','2019-02-06 08:03:44.725906'),(131,'enterprise','0032_reporting_model','2019-02-06 08:03:44.840167'),(132,'enterprise','0033_add_history_change_reason_field','2019-02-06 08:03:45.245971'),(133,'enterprise','0034_auto_20171023_0727','2019-02-06 08:03:45.385659'),(134,'enterprise','0035_auto_20171212_1129','2019-02-06 08:03:45.513332'),(135,'enterprise','0036_sftp_reporting_support','2019-02-06 08:03:46.086601'),(136,'enterprise','0037_auto_20180110_0450','2019-02-06 08:03:46.208354'),(137,'enterprise','0038_auto_20180122_1427','2019-02-06 08:03:46.303546'),(138,'enterprise','0039_auto_20180129_1034','2019-02-06 08:03:46.415988'),(139,'enterprise','0040_auto_20180129_1428','2019-02-06 08:03:46.564661'),(140,'enterprise','0041_auto_20180212_1507','2019-02-06 08:03:46.626003'),(141,'consent','0001_initial','2019-02-06 08:03:46.846549'),(142,'consent','0002_migrate_to_new_data_sharing_consent','2019-02-06 08:03:46.875083'),(143,'consent','0003_historicaldatasharingconsent_history_change_reason','2019-02-06 08:03:46.965702'),(144,'consent','0004_datasharingconsenttextoverrides','2019-02-06 08:03:47.065885'),(145,'sites','0002_alter_domain_unique','2019-02-06 08:03:47.113519'),(146,'course_overviews','0011_courseoverview_marketing_url','2019-02-06 08:03:47.173117'),(147,'course_overviews','0012_courseoverview_eligible_for_financial_aid','2019-02-06 08:03:47.251335'),(148,'course_overviews','0013_courseoverview_language','2019-02-06 08:03:47.323251'),(149,'course_overviews','0014_courseoverview_certificate_available_date','2019-02-06 08:03:47.375112'),(150,'content_type_gating','0001_initial','2019-02-06 08:03:47.504223'),(151,'content_type_gating','0002_auto_20181119_0959','2019-02-06 08:03:47.696167'),(152,'content_type_gating','0003_auto_20181128_1407','2019-02-06 08:03:47.802689'),(153,'content_type_gating','0004_auto_20181128_1521','2019-02-06 08:03:47.899743'),(154,'contentserver','0001_initial','2019-02-06 08:03:48.012402'),(155,'contentserver','0002_cdnuseragentsconfig','2019-02-06 08:03:48.115897'),(156,'cors_csrf','0001_initial','2019-02-06 08:03:48.228961'),(157,'course_action_state','0001_initial','2019-02-06 08:03:48.432637'),(158,'course_duration_limits','0001_initial','2019-02-06 08:03:48.561335'),(159,'course_duration_limits','0002_auto_20181119_0959','2019-02-06 08:03:49.033726'),(160,'course_duration_limits','0003_auto_20181128_1407','2019-02-06 08:03:49.154788'),(161,'course_duration_limits','0004_auto_20181128_1521','2019-02-06 08:03:49.286782'),(162,'course_goals','0001_initial','2019-02-06 08:03:49.504320'),(163,'course_goals','0002_auto_20171010_1129','2019-02-06 08:03:49.596345'),(164,'course_groups','0002_change_inline_default_cohort_value','2019-02-06 08:03:49.642049'),(165,'course_groups','0003_auto_20170609_1455','2019-02-06 08:03:50.080016'),(166,'course_modes','0008_course_key_field_to_foreign_key','2019-02-06 08:03:50.526973'),(167,'course_modes','0009_suggested_prices_to_charfield','2019-02-06 08:03:50.584282'),(168,'course_modes','0010_archived_suggested_prices_to_charfield','2019-02-06 08:03:50.629980'),(169,'course_modes','0011_change_regex_for_comma_separated_ints','2019-02-06 08:03:50.727914'),(170,'courseware','0001_initial','2019-02-06 08:03:53.237177'),(171,'courseware','0002_coursedynamicupgradedeadlineconfiguration_dynamicupgradedeadlineconfiguration','2019-02-06 08:03:53.619502'),(172,'courseware','0003_auto_20170825_0935','2019-02-06 08:03:53.747454'),(173,'courseware','0004_auto_20171010_1639','2019-02-06 08:03:53.895768'),(174,'courseware','0005_orgdynamicupgradedeadlineconfiguration','2019-02-06 08:03:54.230018'),(175,'courseware','0006_remove_module_id_index','2019-02-06 08:03:54.435353'),(176,'courseware','0007_remove_done_index','2019-02-06 08:03:55.012607'),(177,'coursewarehistoryextended','0001_initial','2019-02-06 08:03:55.303411'),(178,'coursewarehistoryextended','0002_force_studentmodule_index','2019-02-06 08:03:55.370079'),(179,'crawlers','0001_initial','2019-02-06 08:03:55.442696'),(180,'crawlers','0002_auto_20170419_0018','2019-02-06 08:03:55.510303'),(181,'credentials','0001_initial','2019-02-06 08:03:55.578783'),(182,'credentials','0002_auto_20160325_0631','2019-02-06 08:03:55.640533'),(183,'credentials','0003_auto_20170525_1109','2019-02-06 08:03:55.760811'),(184,'credentials','0004_notifycredentialsconfig','2019-02-06 08:03:55.827343'),(185,'credit','0001_initial','2019-02-06 08:03:56.379666'),(186,'credit','0002_creditconfig','2019-02-06 08:03:56.456288'),(187,'credit','0003_auto_20160511_2227','2019-02-06 08:03:56.510076'),(188,'credit','0004_delete_historical_credit_records','2019-02-06 08:03:56.908755'),(189,'dark_lang','0001_initial','2019-02-06 08:03:56.974435'),(190,'dark_lang','0002_data__enable_on_install','2019-02-06 08:03:57.008178'),(191,'dark_lang','0003_auto_20180425_0359','2019-02-06 08:03:57.123998'),(192,'database_fixups','0001_initial','2019-02-06 08:03:57.156768'),(193,'degreed','0001_initial','2019-02-06 08:03:58.035952'),(194,'degreed','0002_auto_20180104_0103','2019-02-06 08:03:58.408761'),(195,'degreed','0003_auto_20180109_0712','2019-02-06 08:03:58.616044'),(196,'degreed','0004_auto_20180306_1251','2019-02-06 08:03:58.814623'),(197,'degreed','0005_auto_20180807_1302','2019-02-06 08:04:00.635482'),(198,'degreed','0006_upgrade_django_simple_history','2019-02-06 08:04:00.815237'),(199,'django_comment_common','0003_enable_forums','2019-02-06 08:04:00.851878'),(200,'django_comment_common','0004_auto_20161117_1209','2019-02-06 08:04:01.011618'),(201,'django_comment_common','0005_coursediscussionsettings','2019-02-06 08:04:01.048387'),(202,'django_comment_common','0006_coursediscussionsettings_discussions_id_map','2019-02-06 08:04:01.092669'),(203,'django_comment_common','0007_discussionsidmapping','2019-02-06 08:04:01.135336'),(204,'django_comment_common','0008_role_user_index','2019-02-06 08:04:01.166345'),(205,'django_notify','0001_initial','2019-02-06 08:04:01.899046'),(206,'django_openid_auth','0001_initial','2019-02-06 08:04:02.148673'),(207,'oauth2','0001_initial','2019-02-06 08:04:03.447522'),(208,'edx_oauth2_provider','0001_initial','2019-02-06 08:04:03.637123'),(209,'edx_proctoring','0001_initial','2019-02-06 08:04:06.249264'),(210,'edx_proctoring','0002_proctoredexamstudentattempt_is_status_acknowledged','2019-02-06 08:04:06.453204'),(211,'edx_proctoring','0003_auto_20160101_0525','2019-02-06 08:04:06.849450'),(212,'edx_proctoring','0004_auto_20160201_0523','2019-02-06 08:04:07.035676'),(213,'edx_proctoring','0005_proctoredexam_hide_after_due','2019-02-06 08:04:07.119540'),(214,'edx_proctoring','0006_allowed_time_limit_mins','2019-02-06 08:04:07.870116'),(215,'edx_proctoring','0007_proctoredexam_backend','2019-02-06 08:04:07.931188'),(216,'edx_proctoring','0008_auto_20181116_1551','2019-02-06 08:04:08.424205'),(217,'edx_proctoring','0009_proctoredexamreviewpolicy_remove_rules','2019-02-06 08:04:08.762512'),(218,'edxval','0001_initial','2019-02-06 08:04:09.122448'),(219,'edxval','0002_data__default_profiles','2019-02-06 08:04:09.157306'),(220,'edxval','0003_coursevideo_is_hidden','2019-02-06 08:04:09.208230'),(221,'edxval','0004_data__add_hls_profile','2019-02-06 08:04:09.249124'),(222,'edxval','0005_videoimage','2019-02-06 08:04:09.314101'),(223,'edxval','0006_auto_20171009_0725','2019-02-06 08:04:09.422431'),(224,'edxval','0007_transcript_credentials_state','2019-02-06 08:04:09.502957'),(225,'edxval','0008_remove_subtitles','2019-02-06 08:04:09.597483'),(226,'edxval','0009_auto_20171127_0406','2019-02-06 08:04:09.650707'),(227,'edxval','0010_add_video_as_foreign_key','2019-02-06 08:04:09.853179'),(228,'edxval','0011_data__add_audio_mp3_profile','2019-02-06 08:04:09.888952'),(229,'email_marketing','0001_initial','2019-02-06 08:04:10.490362'),(230,'email_marketing','0002_auto_20160623_1656','2019-02-06 08:04:12.322113'),(231,'email_marketing','0003_auto_20160715_1145','2019-02-06 08:04:13.625016'),(232,'email_marketing','0004_emailmarketingconfiguration_welcome_email_send_delay','2019-02-06 08:04:13.804721'),(233,'email_marketing','0005_emailmarketingconfiguration_user_registration_cookie_timeout_delay','2019-02-06 08:04:13.987226'),(234,'email_marketing','0006_auto_20170711_0615','2019-02-06 08:04:14.175392'),(235,'email_marketing','0007_auto_20170809_0653','2019-02-06 08:04:14.743333'),(236,'email_marketing','0008_auto_20170809_0539','2019-02-06 08:04:14.781400'),(237,'email_marketing','0009_remove_emailmarketingconfiguration_sailthru_activation_template','2019-02-06 08:04:15.000262'),(238,'email_marketing','0010_auto_20180425_0800','2019-02-06 08:04:15.577846'),(239,'embargo','0001_initial','2019-02-06 08:04:16.853715'),(240,'embargo','0002_data__add_countries','2019-02-06 08:04:16.895352'),(241,'enterprise','0042_replace_sensitive_sso_username','2019-02-06 08:04:17.169747'),(242,'enterprise','0043_auto_20180507_0138','2019-02-06 08:04:17.765765'),(243,'enterprise','0044_reporting_config_multiple_types','2019-02-06 08:04:18.048084'),(244,'enterprise','0045_report_type_json','2019-02-06 08:04:18.121655'),(245,'enterprise','0046_remove_unique_constraints','2019-02-06 08:04:18.194060'),(246,'enterprise','0047_auto_20180517_0457','2019-02-06 08:04:18.519446'),(247,'enterprise','0048_enterprisecustomeruser_active','2019-02-06 08:04:18.962011'),(248,'enterprise','0049_auto_20180531_0321','2019-02-06 08:04:20.082033'),(249,'enterprise','0050_progress_v2','2019-02-06 08:04:20.186103'),(250,'enterprise','0051_add_enterprise_slug','2019-02-06 08:04:20.652158'),(251,'enterprise','0052_create_unique_slugs','2019-02-06 08:04:21.259457'),(252,'enterprise','0053_pendingenrollment_cohort_name','2019-02-06 08:04:21.457833'),(253,'enterprise','0053_auto_20180911_0811','2019-02-06 08:04:22.130573'),(254,'enterprise','0054_merge_20180914_1511','2019-02-06 08:04:22.143011'),(255,'enterprise','0055_auto_20181015_1112','2019-02-06 08:04:22.603605'),(256,'enterprise','0056_enterprisecustomerreportingconfiguration_pgp_encryption_key','2019-02-06 08:04:22.718871'),(257,'enterprise','0057_enterprisecustomerreportingconfiguration_enterprise_customer_catalogs','2019-02-06 08:04:23.004578'),(258,'enterprise','0058_auto_20181212_0145','2019-02-06 08:04:23.860134'),(259,'enterprise','0059_add_code_management_portal_config','2019-02-06 08:04:24.184355'),(260,'enterprise','0060_upgrade_django_simple_history','2019-02-06 08:04:24.698860'),(261,'student','0001_initial','2019-02-06 08:04:31.285410'),(262,'student','0002_auto_20151208_1034','2019-02-06 08:04:31.449034'),(263,'student','0003_auto_20160516_0938','2019-02-06 08:04:31.626628'),(264,'student','0004_auto_20160531_1422','2019-02-06 08:04:31.724604'),(265,'student','0005_auto_20160531_1653','2019-02-06 08:04:32.170241'),(266,'student','0006_logoutviewconfiguration','2019-02-06 08:04:32.266892'),(267,'student','0007_registrationcookieconfiguration','2019-02-06 08:04:32.366689'),(268,'student','0008_auto_20161117_1209','2019-02-06 08:04:32.463972'),(269,'student','0009_auto_20170111_0422','2019-02-06 08:04:32.558706'),(270,'student','0010_auto_20170207_0458','2019-02-06 08:04:32.564759'),(271,'student','0011_course_key_field_to_foreign_key','2019-02-06 08:04:34.027590'),(272,'student','0012_sociallink','2019-02-06 08:04:34.353842'),(273,'student','0013_delete_historical_enrollment_records','2019-02-06 08:04:35.810292'),(274,'entitlements','0001_initial','2019-02-06 08:04:36.165929'),(275,'entitlements','0002_auto_20171102_0719','2019-02-06 08:04:38.257565'),(276,'entitlements','0003_auto_20171205_1431','2019-02-06 08:04:40.470342'),(277,'entitlements','0004_auto_20171206_1729','2019-02-06 08:04:40.982538'),(278,'entitlements','0005_courseentitlementsupportdetail','2019-02-06 08:04:41.539847'),(279,'entitlements','0006_courseentitlementsupportdetail_action','2019-02-06 08:04:41.979223'),(280,'entitlements','0007_change_expiration_period_default','2019-02-06 08:04:42.159096'),(281,'entitlements','0008_auto_20180328_1107','2019-02-06 08:04:42.683695'),(282,'entitlements','0009_courseentitlement_refund_locked','2019-02-06 08:04:43.025841'),(283,'entitlements','0010_backfill_refund_lock','2019-02-06 08:04:43.067438'),(284,'experiments','0001_initial','2019-02-06 08:04:44.694218'),(285,'experiments','0002_auto_20170627_1402','2019-02-06 08:04:44.793494'),(286,'experiments','0003_auto_20170713_1148','2019-02-06 08:04:44.853420'),(287,'external_auth','0001_initial','2019-02-06 08:04:45.445694'),(288,'grades','0001_initial','2019-02-06 08:04:45.632121'),(289,'grades','0002_rename_last_edited_field','2019-02-06 08:04:45.699684'),(290,'grades','0003_coursepersistentgradesflag_persistentgradesenabledflag','2019-02-06 08:04:46.457202'),(291,'grades','0004_visibleblocks_course_id','2019-02-06 08:04:46.531908'),(292,'grades','0005_multiple_course_flags','2019-02-06 08:04:46.849592'),(293,'grades','0006_persistent_course_grades','2019-02-06 08:04:46.952796'),(294,'grades','0007_add_passed_timestamp_column','2019-02-06 08:04:47.066573'),(295,'grades','0008_persistentsubsectiongrade_first_attempted','2019-02-06 08:04:47.138816'),(296,'grades','0009_auto_20170111_1507','2019-02-06 08:04:47.259581'),(297,'grades','0010_auto_20170112_1156','2019-02-06 08:04:47.344906'),(298,'grades','0011_null_edited_time','2019-02-06 08:04:47.527358'),(299,'grades','0012_computegradessetting','2019-02-06 08:04:48.367572'),(300,'grades','0013_persistentsubsectiongradeoverride','2019-02-06 08:04:48.436380'),(301,'grades','0014_persistentsubsectiongradeoverridehistory','2019-02-06 08:04:48.767621'),(302,'instructor_task','0002_gradereportsetting','2019-02-06 08:04:49.116174'),(303,'waffle','0001_initial','2019-02-06 08:04:49.522307'),(304,'sap_success_factors','0001_initial','2019-02-06 08:04:50.784688'),(305,'sap_success_factors','0002_auto_20170224_1545','2019-02-06 08:04:52.503372'),(306,'sap_success_factors','0003_auto_20170317_1402','2019-02-06 08:04:53.057896'),(307,'sap_success_factors','0004_catalogtransmissionaudit_audit_summary','2019-02-06 08:04:53.112654'),(308,'sap_success_factors','0005_historicalsapsuccessfactorsenterprisecustomerconfiguration_history_change_reason','2019-02-06 08:04:53.414309'),(309,'sap_success_factors','0006_sapsuccessfactors_use_enterprise_enrollment_page_waffle_flag','2019-02-06 08:04:53.467401'),(310,'sap_success_factors','0007_remove_historicalsapsuccessfactorsenterprisecustomerconfiguration_history_change_reason','2019-02-06 08:04:53.753419'),(311,'sap_success_factors','0008_historicalsapsuccessfactorsenterprisecustomerconfiguration_history_change_reason','2019-02-06 08:04:54.072310'),(312,'sap_success_factors','0009_sapsuccessfactors_remove_enterprise_enrollment_page_waffle_flag','2019-02-06 08:04:54.115078'),(313,'sap_success_factors','0010_move_audit_tables_to_base_integrated_channel','2019-02-06 08:04:54.280162'),(314,'integrated_channel','0001_initial','2019-02-06 08:04:54.374204'),(315,'integrated_channel','0002_delete_enterpriseintegratedchannel','2019-02-06 08:04:54.413351'),(316,'integrated_channel','0003_catalogtransmissionaudit_learnerdatatransmissionaudit','2019-02-06 08:04:54.514947'),(317,'integrated_channel','0004_catalogtransmissionaudit_channel','2019-02-06 08:04:54.566483'),(318,'integrated_channel','0005_auto_20180306_1251','2019-02-06 08:04:55.508336'),(319,'integrated_channel','0006_delete_catalogtransmissionaudit','2019-02-06 08:04:55.564564'),(320,'lms_xblock','0001_initial','2019-02-06 08:04:55.920260'),(321,'microsite_configuration','0001_initial','2019-02-06 08:04:59.149839'),(322,'microsite_configuration','0002_auto_20160202_0228','2019-02-06 08:04:59.263415'),(323,'microsite_configuration','0003_delete_historical_records','2019-02-06 08:05:00.613558'),(324,'milestones','0001_initial','2019-02-06 08:05:01.624456'),(325,'milestones','0002_data__seed_relationship_types','2019-02-06 08:05:01.663935'),(326,'milestones','0003_coursecontentmilestone_requirements','2019-02-06 08:05:01.731497'),(327,'milestones','0004_auto_20151221_1445','2019-02-06 08:05:01.953395'),(328,'mobile_api','0001_initial','2019-02-06 08:05:02.276280'),(329,'mobile_api','0002_auto_20160406_0904','2019-02-06 08:05:02.375950'),(330,'mobile_api','0003_ignore_mobile_available_flag','2019-02-06 08:05:02.955623'),(331,'notes','0001_initial','2019-02-06 08:05:03.284134'),(332,'oauth2','0002_auto_20160404_0813','2019-02-06 08:05:04.320559'),(333,'oauth2','0003_client_logout_uri','2019-02-06 08:05:05.028463'),(334,'oauth2','0004_add_index_on_grant_expires','2019-02-06 08:05:05.320810'),(335,'oauth2','0005_grant_nonce','2019-02-06 08:05:05.628866'),(336,'organizations','0001_initial','2019-02-06 08:05:05.786592'),(337,'organizations','0002_auto_20170117_1434','2019-02-06 08:05:05.850615'),(338,'organizations','0003_auto_20170221_1138','2019-02-06 08:05:05.970702'),(339,'organizations','0004_auto_20170413_2315','2019-02-06 08:05:06.085590'),(340,'organizations','0005_auto_20171116_0640','2019-02-06 08:05:06.148448'),(341,'organizations','0006_auto_20171207_0259','2019-02-06 08:05:06.215454'),(342,'oauth2_provider','0001_initial','2019-02-06 08:05:07.961621'),(343,'oauth_dispatch','0001_initial','2019-02-06 08:05:08.350586'),(344,'oauth_dispatch','0002_scopedapplication_scopedapplicationorganization','2019-02-06 08:05:09.132604'),(345,'oauth_dispatch','0003_application_data','2019-02-06 08:05:09.196710'),(346,'oauth_dispatch','0004_auto_20180626_1349','2019-02-06 08:05:11.499019'),(347,'oauth_dispatch','0005_applicationaccess_type','2019-02-06 08:05:11.606808'),(348,'oauth_dispatch','0006_drop_application_id_constraints','2019-02-06 08:05:11.875498'),(349,'oauth2_provider','0002_08_updates','2019-02-06 08:05:12.127180'),(350,'oauth2_provider','0003_auto_20160316_1503','2019-02-06 08:05:12.219934'),(351,'oauth2_provider','0004_auto_20160525_1623','2019-02-06 08:05:12.448186'),(352,'oauth2_provider','0005_auto_20170514_1141','2019-02-06 08:05:13.676168'),(353,'oauth2_provider','0006_auto_20171214_2232','2019-02-06 08:05:14.539094'),(354,'oauth_dispatch','0007_restore_application_id_constraints','2019-02-06 08:05:14.834346'),(355,'oauth_provider','0001_initial','2019-02-06 08:05:15.171734'),(356,'problem_builder','0001_initial','2019-02-06 08:05:15.299615'),(357,'problem_builder','0002_auto_20160121_1525','2019-02-06 08:05:15.503283'),(358,'problem_builder','0003_auto_20161124_0755','2019-02-06 08:05:15.621050'),(359,'problem_builder','0004_copy_course_ids','2019-02-06 08:05:15.672698'),(360,'problem_builder','0005_auto_20170112_1021','2019-02-06 08:05:15.822489'),(361,'problem_builder','0006_remove_deprecated_course_id','2019-02-06 08:05:15.937076'),(362,'programs','0001_initial','2019-02-06 08:05:16.056792'),(363,'programs','0002_programsapiconfig_cache_ttl','2019-02-06 08:05:16.160203'),(364,'programs','0003_auto_20151120_1613','2019-02-06 08:05:16.532675'),(365,'programs','0004_programsapiconfig_enable_certification','2019-02-06 08:05:17.329411'),(366,'programs','0005_programsapiconfig_max_retries','2019-02-06 08:05:17.560011'),(367,'programs','0006_programsapiconfig_xseries_ad_enabled','2019-02-06 08:05:17.710363'),(368,'programs','0007_programsapiconfig_program_listing_enabled','2019-02-06 08:05:17.830224'),(369,'programs','0008_programsapiconfig_program_details_enabled','2019-02-06 08:05:17.950796'),(370,'programs','0009_programsapiconfig_marketing_path','2019-02-06 08:05:18.079013'),(371,'programs','0010_auto_20170204_2332','2019-02-06 08:05:18.382249'),(372,'programs','0011_auto_20170301_1844','2019-02-06 08:05:19.698119'),(373,'programs','0012_auto_20170419_0018','2019-02-06 08:05:19.800404'),(374,'redirects','0001_initial','2019-02-06 08:05:20.155019'),(375,'rss_proxy','0001_initial','2019-02-06 08:05:20.204027'),(376,'sap_success_factors','0011_auto_20180104_0103','2019-02-06 08:05:24.276543'),(377,'sap_success_factors','0012_auto_20180109_0712','2019-02-06 08:05:24.679152'),(378,'sap_success_factors','0013_auto_20180306_1251','2019-02-06 08:05:25.083064'),(379,'sap_success_factors','0014_drop_historical_table','2019-02-06 08:05:25.129347'),(380,'sap_success_factors','0015_auto_20180510_1259','2019-02-06 08:05:25.860155'),(381,'sap_success_factors','0016_sapsuccessfactorsenterprisecustomerconfiguration_additional_locales','2019-02-06 08:05:25.960191'),(382,'sap_success_factors','0017_sapsuccessfactorsglobalconfiguration_search_student_api_path','2019-02-06 08:05:26.285693'),(383,'schedules','0001_initial','2019-02-06 08:05:26.690791'),(384,'schedules','0002_auto_20170816_1532','2019-02-06 08:05:27.302276'),(385,'schedules','0003_scheduleconfig','2019-02-06 08:05:27.646134'),(386,'schedules','0004_auto_20170922_1428','2019-02-06 08:05:28.252876'),(387,'schedules','0005_auto_20171010_1722','2019-02-06 08:05:28.881956'),(388,'schedules','0006_scheduleexperience','2019-02-06 08:05:29.251797'),(389,'schedules','0007_scheduleconfig_hold_back_ratio','2019-02-06 08:05:29.617048'),(390,'self_paced','0001_initial','2019-02-06 08:05:30.027241'),(391,'sessions','0001_initial','2019-02-06 08:05:30.078048'),(392,'shoppingcart','0001_initial','2019-02-06 08:05:38.998266'),(393,'shoppingcart','0002_auto_20151208_1034','2019-02-06 08:05:39.154428'),(394,'shoppingcart','0003_auto_20151217_0958','2019-02-06 08:05:39.312762'),(395,'shoppingcart','0004_change_meta_options','2019-02-06 08:05:39.468307'),(396,'site_configuration','0001_initial','2019-02-06 08:05:40.221457'),(397,'site_configuration','0002_auto_20160720_0231','2019-02-06 08:05:40.436234'),(398,'default','0001_initial','2019-02-06 08:05:41.857778'),(399,'social_auth','0001_initial','2019-02-06 08:05:41.863663'),(400,'default','0002_add_related_name','2019-02-06 08:05:42.234168'),(401,'social_auth','0002_add_related_name','2019-02-06 08:05:42.241171'),(402,'default','0003_alter_email_max_length','2019-02-06 08:05:42.308536'),(403,'social_auth','0003_alter_email_max_length','2019-02-06 08:05:42.316793'),(404,'default','0004_auto_20160423_0400','2019-02-06 08:05:42.679083'),(405,'social_auth','0004_auto_20160423_0400','2019-02-06 08:05:42.685800'),(406,'social_auth','0005_auto_20160727_2333','2019-02-06 08:05:42.757758'),(407,'social_django','0006_partial','2019-02-06 08:05:42.816147'),(408,'social_django','0007_code_timestamp','2019-02-06 08:05:42.883285'),(409,'social_django','0008_partial_timestamp','2019-02-06 08:05:42.957758'),(410,'splash','0001_initial','2019-02-06 08:05:43.433414'),(411,'static_replace','0001_initial','2019-02-06 08:05:44.140144'),(412,'static_replace','0002_assetexcludedextensionsconfig','2019-02-06 08:05:46.566804'),(413,'status','0001_initial','2019-02-06 08:05:47.436513'),(414,'status','0002_update_help_text','2019-02-06 08:05:47.800113'),(415,'student','0014_courseenrollmentallowed_user','2019-02-06 08:05:48.264692'),(416,'student','0015_manualenrollmentaudit_add_role','2019-02-06 08:05:48.712619'),(417,'student','0016_coursenrollment_course_on_delete_do_nothing','2019-02-06 08:05:49.240041'),(418,'student','0017_accountrecovery','2019-02-06 08:05:49.748236'),(419,'student','0018_remove_password_history','2019-02-06 08:05:50.694342'),(420,'student','0019_auto_20181221_0540','2019-02-06 08:05:51.482317'),(421,'submissions','0001_initial','2019-02-06 08:05:51.980676'),(422,'submissions','0002_auto_20151119_0913','2019-02-06 08:05:52.129788'),(423,'submissions','0003_submission_status','2019-02-06 08:05:52.207556'),(424,'submissions','0004_remove_django_extensions','2019-02-06 08:05:52.285295'),(425,'survey','0001_initial','2019-02-06 08:05:53.028225'),(426,'teams','0001_initial','2019-02-06 08:05:56.392431'),(427,'theming','0001_initial','2019-02-06 08:05:57.128347'),(428,'third_party_auth','0001_initial','2019-02-06 08:06:00.383669'),(429,'third_party_auth','0002_schema__provider_icon_image','2019-02-06 08:06:04.313456'),(430,'third_party_auth','0003_samlproviderconfig_debug_mode','2019-02-06 08:06:04.721469'),(431,'third_party_auth','0004_add_visible_field','2019-02-06 08:06:08.188893'),(432,'third_party_auth','0005_add_site_field','2019-02-06 08:06:11.231121'),(433,'third_party_auth','0006_samlproviderconfig_automatic_refresh_enabled','2019-02-06 08:06:11.638402'),(434,'third_party_auth','0007_auto_20170406_0912','2019-02-06 08:06:12.463541'),(435,'third_party_auth','0008_auto_20170413_1455','2019-02-06 08:06:13.699789'),(436,'third_party_auth','0009_auto_20170415_1144','2019-02-06 08:06:15.877426'),(437,'third_party_auth','0010_add_skip_hinted_login_dialog_field','2019-02-06 08:06:17.252327'),(438,'third_party_auth','0011_auto_20170616_0112','2019-02-06 08:06:17.697662'),(439,'third_party_auth','0012_auto_20170626_1135','2019-02-06 08:06:19.014914'),(440,'third_party_auth','0013_sync_learner_profile_data','2019-02-06 08:06:21.184194'),(441,'third_party_auth','0014_auto_20171222_1233','2019-02-06 08:06:22.500576'),(442,'third_party_auth','0015_samlproviderconfig_archived','2019-02-06 08:06:22.910782'),(443,'third_party_auth','0016_auto_20180130_0938','2019-02-06 08:06:23.768574'),(444,'third_party_auth','0017_remove_icon_class_image_secondary_fields','2019-02-06 08:06:25.677996'),(445,'third_party_auth','0018_auto_20180327_1631','2019-02-06 08:06:26.945645'),(446,'third_party_auth','0019_consolidate_slug','2019-02-06 08:06:28.225165'),(447,'third_party_auth','0020_cleanup_slug_fields','2019-02-06 08:06:29.071340'),(448,'third_party_auth','0021_sso_id_verification','2019-02-06 08:06:30.920266'),(449,'third_party_auth','0022_auto_20181012_0307','2019-02-06 08:06:33.001900'),(450,'thumbnail','0001_initial','2019-02-06 08:06:33.058625'),(451,'track','0001_initial','2019-02-06 08:06:33.135878'),(452,'user_api','0001_initial','2019-02-06 08:06:36.568433'),(453,'user_api','0002_retirementstate_userretirementstatus','2019-02-06 08:06:37.067536'),(454,'user_api','0003_userretirementrequest','2019-02-06 08:06:37.538805'),(455,'user_api','0004_userretirementpartnerreportingstatus','2019-02-06 08:06:38.846620'),(456,'user_authn','0001_data__add_login_service','2019-02-06 08:06:38.924862'),(457,'util','0001_initial','2019-02-06 08:06:39.401783'),(458,'util','0002_data__default_rate_limit_config','2019-02-06 08:06:39.459887'),(459,'verified_track_content','0002_verifiedtrackcohortedcourse_verified_cohort_name','2019-02-06 08:06:39.538104'),(460,'verified_track_content','0003_migrateverifiedtrackcohortssetting','2019-02-06 08:06:40.048232'),(461,'verify_student','0001_initial','2019-02-06 08:06:45.357816'),(462,'verify_student','0002_auto_20151124_1024','2019-02-06 08:06:45.516943'),(463,'verify_student','0003_auto_20151113_1443','2019-02-06 08:06:45.673513'),(464,'verify_student','0004_delete_historical_records','2019-02-06 08:06:45.835049'),(465,'verify_student','0005_remove_deprecated_models','2019-02-06 08:06:49.679210'),(466,'verify_student','0006_ssoverification','2019-02-06 08:06:49.790644'),(467,'verify_student','0007_idverificationaggregate','2019-02-06 08:06:49.891841'),(468,'verify_student','0008_populate_idverificationaggregate','2019-02-06 08:06:49.947020'),(469,'verify_student','0009_remove_id_verification_aggregate','2019-02-06 08:06:50.183257'),(470,'verify_student','0010_manualverification','2019-02-06 08:06:50.284386'),(471,'verify_student','0011_add_fields_to_sspv','2019-02-06 08:06:50.459982'),(472,'video_config','0001_initial','2019-02-06 08:06:50.654393'),(473,'video_config','0002_coursevideotranscriptenabledflag_videotranscriptenabledflag','2019-02-06 08:06:50.846809'),(474,'video_config','0003_transcriptmigrationsetting','2019-02-06 08:06:50.952242'),(475,'video_config','0004_transcriptmigrationsetting_command_run','2019-02-06 08:06:51.053615'),(476,'video_config','0005_auto_20180719_0752','2019-02-06 08:06:51.770192'),(477,'video_config','0006_videothumbnailetting_updatedcoursevideos','2019-02-06 08:06:51.998431'),(478,'video_config','0007_videothumbnailsetting_offset','2019-02-06 08:06:52.104225'),(479,'video_pipeline','0001_initial','2019-02-06 08:06:52.217246'),(480,'video_pipeline','0002_auto_20171114_0704','2019-02-06 08:06:52.423437'),(481,'video_pipeline','0003_coursevideouploadsenabledbydefault_videouploadsenabledbydefault','2019-02-06 08:06:52.652384'),(482,'waffle','0002_auto_20161201_0958','2019-02-06 08:06:52.731546'),(483,'waffle_utils','0001_initial','2019-02-06 08:06:52.859204'),(484,'wiki','0001_initial','2019-02-06 08:07:04.002394'),(485,'wiki','0002_remove_article_subscription','2019-02-06 08:07:04.852782'),(486,'wiki','0003_ip_address_conv','2019-02-06 08:07:06.546138'),(487,'wiki','0004_increase_slug_size','2019-02-06 08:07:06.749915'),(488,'wiki','0005_remove_attachments_and_images','2019-02-06 08:07:10.711449'),(489,'workflow','0001_initial','2019-02-06 08:07:10.929774'),(490,'workflow','0002_remove_django_extensions','2019-02-06 08:07:11.016177'),(491,'xapi','0001_initial','2019-02-06 08:07:11.530173'),(492,'xapi','0002_auto_20180726_0142','2019-02-06 08:07:11.853838'),(493,'xblock_django','0001_initial','2019-02-06 08:07:12.421573'),(494,'xblock_django','0002_auto_20160204_0809','2019-02-06 08:07:12.884088'),(495,'xblock_django','0003_add_new_config_models','2019-02-06 08:07:15.322827'),(496,'xblock_django','0004_delete_xblock_disable_config','2019-02-06 08:07:15.939861'),(497,'social_django','0002_add_related_name','2019-02-06 08:07:15.955501'),(498,'social_django','0003_alter_email_max_length','2019-02-06 08:07:15.960905'),(499,'social_django','0004_auto_20160423_0400','2019-02-06 08:07:15.967703'),(500,'social_django','0001_initial','2019-02-06 08:07:15.972077'),(501,'social_django','0005_auto_20160727_2333','2019-02-06 08:07:15.978019'),(502,'contentstore','0001_initial','2019-02-06 08:07:47.027361'),(503,'contentstore','0002_add_assets_page_flag','2019-02-06 08:07:48.064450'),(504,'contentstore','0003_remove_assets_page_flag','2019-02-06 08:07:48.989553'),(505,'course_creators','0001_initial','2019-02-06 08:07:49.658930'),(506,'tagging','0001_initial','2019-02-06 08:07:49.791763'),(507,'tagging','0002_auto_20170116_1541','2019-02-06 08:07:49.890533'),(508,'user_tasks','0001_initial','2019-02-06 08:07:50.803460'),(509,'user_tasks','0002_artifact_file_storage','2019-02-06 08:07:50.865286'),(510,'xblock_config','0001_initial','2019-02-06 08:07:51.079346'),(511,'xblock_config','0002_courseeditltifieldsenabledflag','2019-02-06 08:07:51.540299'),(512,'lti_provider','0001_initial','2019-02-20 13:02:12.609875'),(513,'lti_provider','0002_auto_20160325_0407','2019-02-20 13:02:12.673092'),(514,'lti_provider','0003_auto_20161118_1040','2019-02-20 13:02:12.735420'),(515,'content_type_gating','0005_auto_20190306_1547','2019-03-06 16:01:10.563542'),(516,'course_duration_limits','0005_auto_20190306_1546','2019-03-06 16:01:11.211966'),(517,'enterprise','0061_systemwideenterpriserole_systemwideenterpriseuserroleassignment','2019-03-08 15:47:46.856657'),(518,'enterprise','0062_add_system_wide_enterprise_roles','2019-03-08 15:47:46.906778'),(519,'content_type_gating','0006_auto_20190308_1447','2019-03-11 16:27:52.135257'),(520,'course_duration_limits','0006_auto_20190308_1447','2019-03-11 16:27:52.779284'),(521,'content_type_gating','0007_auto_20190311_1919','2019-03-12 16:11:54.043782'),(522,'course_duration_limits','0007_auto_20190311_1919','2019-03-12 16:11:56.790492'),(523,'announcements','0001_initial','2019-03-18 20:55:30.988286'),(524,'content_type_gating','0008_auto_20190313_1634','2019-03-18 20:55:31.415131'),(525,'course_duration_limits','0008_auto_20190313_1634','2019-03-18 20:55:32.064734'),(526,'enterprise','0063_systemwideenterpriserole_description','2019-03-21 18:42:16.699719'),(527,'enterprise','0064_enterprisefeaturerole_enterprisefeatureuserroleassignment','2019-03-28 19:30:12.392842'),(528,'enterprise','0065_add_enterprise_feature_roles','2019-03-28 19:30:12.443188'),(529,'enterprise','0066_add_system_wide_enterprise_operator_role','2019-03-28 19:30:12.488801'),(530,'student','0020_auto_20190227_2019','2019-04-01 21:47:42.163913'),(531,'certificates','0015_add_masters_choice','2019-04-05 14:57:27.206603'),(532,'enterprise','0067_add_role_based_access_control_switch','2019-04-08 20:45:27.538157'),(533,'program_enrollments','0001_initial','2019-04-10 20:26:00.692153'),(534,'program_enrollments','0002_historicalprogramcourseenrollment_programcourseenrollment','2019-04-18 16:08:03.137722'),(535,'third_party_auth','0023_auto_20190418_2033','2019-04-24 13:54:18.834044'),(536,'program_enrollments','0003_auto_20190424_1622','2019-04-24 16:35:05.844296'),(537,'courseware','0008_move_idde_to_edx_when','2019-04-25 14:14:41.176920'),(538,'edx_when','0001_initial','2019-04-25 14:14:42.645389'),(539,'edx_when','0002_auto_20190318_1736','2019-04-25 14:14:44.336320'),(540,'edx_when','0003_auto_20190402_1501','2019-04-25 14:14:46.294533'),(541,'edx_proctoring','0010_update_backend','2019-05-02 21:47:41.213808'),(542,'program_enrollments','0004_add_programcourseenrollment_relatedname','2019-05-02 21:47:41.764379'),(543,'student','0021_historicalcourseenrollment','2019-05-03 20:30:26.687544'),(544,'cornerstone','0001_initial','2019-05-29 09:33:13.719793'),(545,'cornerstone','0002_cornerstoneglobalconfiguration_subject_mapping','2019-05-29 09:33:14.111664'),(546,'third_party_auth','0024_fix_edit_disallowed','2019-05-29 14:34:39.226961'),(547,'discounts','0001_initial','2019-06-03 19:16:30.854700'),(548,'program_enrollments','0005_canceled_not_withdrawn','2019-06-03 19:16:31.705259'),(549,'entitlements','0011_historicalcourseentitlement','2019-06-04 17:56:44.090401'),(550,'organizations','0007_historicalorganization','2019-06-04 17:56:44.882744'),(551,'user_tasks','0003_url_max_length','2019-06-04 17:56:52.649984'),(552,'user_tasks','0004_url_textfield','2019-06-04 17:56:52.708857'),(553,'enterprise','0068_remove_role_based_access_control_switch','2019-06-05 10:59:54.361142'),(554,'grades','0015_historicalpersistentsubsectiongradeoverride','2019-06-10 16:42:35.419978'),(555,'bulk_grades','0001_initial','2019-06-12 14:00:26.847460'),(556,'super_csv','0001_initial','2019-06-12 14:00:26.879762'),(557,'super_csv','0002_csvoperation_user','2019-06-12 14:00:27.257652'); /*!40000 ALTER TABLE `django_migrations` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; @@ -34,4 +34,4 @@ UNLOCK TABLES; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; --- Dump completed on 2019-06-10 16:42:46 +-- Dump completed on 2019-06-12 14:00:38 diff --git a/common/test/db_cache/bok_choy_schema_default.sql b/common/test/db_cache/bok_choy_schema_default.sql index 48afe60994f16b01b23b655cdc11005e11f3ce52..deeb838e5ecdeb1519d0ff2dba5382c78af7d587 100644 --- a/common/test/db_cache/bok_choy_schema_default.sql +++ b/common/test/db_cache/bok_choy_schema_default.sql @@ -366,7 +366,7 @@ CREATE TABLE `auth_permission` ( PRIMARY KEY (`id`), UNIQUE KEY `auth_permission_content_type_id_codename_01ab375a_uniq` (`content_type_id`,`codename`), CONSTRAINT `auth_permission_content_type_id_2f476e4b_fk_django_co` FOREIGN KEY (`content_type_id`) REFERENCES `django_content_type` (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=2321 DEFAULT CHARSET=utf8; +) ENGINE=InnoDB AUTO_INCREMENT=2327 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; DROP TABLE IF EXISTS `auth_registration`; /*!40101 SET @saved_cs_client = @@character_set_client */; @@ -745,6 +745,23 @@ CREATE TABLE `bulk_email_target` ( PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; +DROP TABLE IF EXISTS `bulk_grades_scoreoverrider`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `bulk_grades_scoreoverrider` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `modified` datetime(6) NOT NULL, + `created` datetime(6) NOT NULL, + `module_id` int(11) NOT NULL, + `user_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + KEY `bulk_grades_scoreove_module_id_33617068_fk_coursewar` (`module_id`), + KEY `bulk_grades_scoreoverrider_user_id_9768d9f6_fk_auth_user_id` (`user_id`), + KEY `bulk_grades_scoreoverrider_created_2d9c74a5` (`created`), + CONSTRAINT `bulk_grades_scoreove_module_id_33617068_fk_coursewar` FOREIGN KEY (`module_id`) REFERENCES `courseware_studentmodule` (`id`), + CONSTRAINT `bulk_grades_scoreoverrider_user_id_9768d9f6_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; DROP TABLE IF EXISTS `catalog_catalogintegration`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; @@ -2277,7 +2294,7 @@ CREATE TABLE `django_content_type` ( `model` varchar(100) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `django_content_type_app_label_model_76bd3d3b_uniq` (`app_label`,`model`) -) ENGINE=InnoDB AUTO_INCREMENT=771 DEFAULT CHARSET=utf8; +) ENGINE=InnoDB AUTO_INCREMENT=773 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; DROP TABLE IF EXISTS `django_migrations`; /*!40101 SET @saved_cs_client = @@character_set_client */; @@ -2288,7 +2305,7 @@ CREATE TABLE `django_migrations` ( `name` varchar(255) NOT NULL, `applied` datetime(6) NOT NULL, PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=555 DEFAULT CHARSET=utf8; +) ENGINE=InnoDB AUTO_INCREMENT=558 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; DROP TABLE IF EXISTS `django_openid_auth_association`; /*!40101 SET @saved_cs_client = @@character_set_client */; @@ -5732,6 +5749,25 @@ CREATE TABLE `submissions_submission` ( CONSTRAINT `submissions_submissi_student_item_id_9d087470_fk_submissio` FOREIGN KEY (`student_item_id`) REFERENCES `submissions_studentitem` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; +DROP TABLE IF EXISTS `super_csv_csvoperation`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `super_csv_csvoperation` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `class_name` varchar(255) NOT NULL, + `unique_id` varchar(255) NOT NULL, + `operation` varchar(255) NOT NULL, + `data` varchar(255) NOT NULL, + `user_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `super_csv_csvoperation_class_name_c8b5b4e2` (`class_name`), + KEY `super_csv_csvoperation_unique_id_08aa974e` (`unique_id`), + KEY `super_csv_csvoperation_user_id_f87de59a_fk_auth_user_id` (`user_id`), + CONSTRAINT `super_csv_csvoperation_user_id_f87de59a_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; DROP TABLE IF EXISTS `survey_surveyanswer`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; diff --git a/common/test/db_cache/bok_choy_schema_student_module_history.sql b/common/test/db_cache/bok_choy_schema_student_module_history.sql index 66726a6c804462f8bed0a918189b4278aa05f6ec..b082070c1bc7025f3f1353667702d462d8df9af3 100644 --- a/common/test/db_cache/bok_choy_schema_student_module_history.sql +++ b/common/test/db_cache/bok_choy_schema_student_module_history.sql @@ -36,7 +36,7 @@ CREATE TABLE `django_migrations` ( `name` varchar(255) NOT NULL, `applied` datetime(6) NOT NULL, PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=555 DEFAULT CHARSET=utf8; +) ENGINE=InnoDB AUTO_INCREMENT=558 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; diff --git a/conf/locale/ar/LC_MESSAGES/django.mo b/conf/locale/ar/LC_MESSAGES/django.mo index 3480a18d5d97ca10b4058653e1f40ee36f2b7eba..f807f7edc97d33f8b86062bbfa7353a425d42884 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/djangojs.mo b/conf/locale/ar/LC_MESSAGES/djangojs.mo index 7a2ef40a802aabeb990673a94d1ef7ed363a6b98..2815e2cd4d75e8d134d5f66211d38edd8a03d239 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/ca/LC_MESSAGES/django.mo b/conf/locale/ca/LC_MESSAGES/django.mo index 942a25739527a3ec6504bab5dc3a881cd236faed..fe35f279591d23155dbb3b0504d676ca46dc1e7f 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/djangojs.mo b/conf/locale/ca/LC_MESSAGES/djangojs.mo index cdf38ef5ae9fee276343577095c7d23f9fe37075..571055c95a719d5e8bd2d9690d005c08324b8e4c 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/de_DE/LC_MESSAGES/django.mo b/conf/locale/de_DE/LC_MESSAGES/django.mo index f43340b8a2c281778962bd85341b90e1c766e654..fb8f943b133d859ee3428e6266495c471b76f672 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 a4fe8a49fa0a4af7a94e6c5bc2c76d213748d034..62c021e97a0158d1aaf77e4e976392d8c9001a28 100644 --- a/conf/locale/de_DE/LC_MESSAGES/django.po +++ b/conf/locale/de_DE/LC_MESSAGES/django.po @@ -158,7 +158,7 @@ msgid "" msgstr "" "Project-Id-Version: 0.1a\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2019-04-22 10:50+0000\n" +"POT-Creation-Date: 2019-06-09 20:42+0000\n" "PO-Revision-Date: 2019-01-20 20:43+0000\n" "Last-Translator: Stefania Trabucchi <stefania.trabucchi@abstract-technology.de>, 2019\n" "Language-Team: German (Germany) (https://www.transifex.com/open-edx/teams/6205/de_DE/)\n" @@ -486,28 +486,6 @@ msgid "No selected price or selected price is too low." msgstr "" "Es wurde kein Preis ausgewählt oder der ausgewählte Preis ist zu niedrig." -#: common/djangoapps/django_comment_common/models.py -msgid "Administrator" -msgstr "Administrator" - -#: common/djangoapps/django_comment_common/models.py -msgid "Moderator" -msgstr "Moderator" - -#: common/djangoapps/django_comment_common/models.py -msgid "Group Moderator" -msgstr "Gruppenmoderator" - -#: common/djangoapps/django_comment_common/models.py -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Community TA" -msgstr "Gemeinschaftslehrkraft" - -#: common/djangoapps/django_comment_common/models.py -#: lms/djangoapps/instructor/paidcourse_enrollment_report.py -msgid "Student" -msgstr "Teilnehmer" - #: common/djangoapps/student/admin.py msgid "User profile" msgstr "Benutzerprofil" @@ -571,8 +549,8 @@ msgid "A properly formatted e-mail is required" msgstr "Eine korrekt formatierte E-Mail-Adresse ist nötig." #: common/djangoapps/student/forms.py -msgid "Your legal name must be a minimum of two characters long" -msgstr "Ihr Name muss mindestens zwei Zeichen lang sein." +msgid "Your legal name must be a minimum of one character long" +msgstr "" #: common/djangoapps/student/forms.py #, python-format @@ -965,11 +943,11 @@ msgstr "Der Kurs, den Sie suchen, ist bereits seit {date} geschlossen." #: common/djangoapps/student/views/management.py msgid "No inactive user with this e-mail exists" -msgstr "Es existiert kein inaktiver Benutzer mit dieser E-Mail-Adresse" +msgstr "" #: common/djangoapps/student/views/management.py msgid "Unable to send reactivation email" -msgstr "Senden der Reaktivierungsnachricht nicht möglich" +msgstr "" #: common/djangoapps/student/views/management.py msgid "Course id not specified" @@ -1131,6 +1109,12 @@ msgstr "" "Zweitanbieter werden weniger prominent angezeigt und in einer separaten " "Liste der \"Institutionen\"." +#: common/djangoapps/third_party_auth/models.py +msgid "" +"optional. If this provider is an Organization, this attribute can be used " +"reference users in that Organization" +msgstr "" + #: common/djangoapps/third_party_auth/models.py msgid "The Site that this provider configuration belongs to." msgstr "" @@ -2975,13 +2959,13 @@ msgstr "Themenkarte der Diskussion" msgid "" "Enter discussion categories in the following format: \"CategoryName\": " "{\"id\": \"i4x-InstitutionName-CourseNumber-course-CourseRun\"}. For " -"example, one discussion category may be \"Lydian Mode\": {\"id\": \"i4x-" -"UniversityX-MUS101-course-2015_T1\"}. The \"id\" value for each category " -"must be unique. In \"id\" values, the only special characters that are " -"supported are underscore, hyphen, and period. You can also specify a " +"example, one discussion category may be \"Lydian Mode\": {\"id\": " +"\"i4x-UniversityX-MUS101-course-2015_T1\"}. The \"id\" value for each " +"category must be unique. In \"id\" values, the only special characters that " +"are supported are underscore, hyphen, and period. You can also specify a " "category as the default for new posts in the Discussion page by setting its " -"\"default\" attribute to true. For example, \"Lydian Mode\": {\"id\": \"i4x-" -"UniversityX-MUS101-course-2015_T1\", \"default\": true}." +"\"default\" attribute to true. For example, \"Lydian Mode\": {\"id\": " +"\"i4x-UniversityX-MUS101-course-2015_T1\", \"default\": true}." msgstr "" #: common/lib/xmodule/xmodule/course_module.py @@ -5054,8 +5038,8 @@ msgid "" msgstr "" "Wir haben ein Anfrage erhalten, dass Sie Ihre E-Mail-Adresse für Ihren " "Account bei der %(platform_name)s von %(old_email)s zu %(new_email)s " -"wechseln möchten. Wenn dies korrekt ist, bestätigen Sie bitte Ihre neue E" -"-Mail-Adresse über den folgenden Link: " +"wechseln möchten. Wenn dies korrekt ist, bestätigen Sie bitte Ihre neue " +"E-Mail-Adresse über den folgenden Link: " #: common/templates/student/edx_ace/emailchange/email/body.html msgid "Confirm Email Change" @@ -5259,20 +5243,17 @@ msgstr "Bitte kontrollieren Sie die Syntax Ihres Eintrages." msgid "Take free online courses at edX.org" msgstr "Belegen Sie kostenlose online Kurse auf edX.org" -#. Translators: 'EdX', 'edX', and 'Open edX' are trademarks of 'edX Inc.'. +#. Translators: 'edX' and 'Open edX' are trademarks of 'edX Inc.'. #. Please do not translate any of these trademarks and company names. #: lms/djangoapps/branding/api.py #, python-brace-format msgid "" -"© {org_name}. All rights reserved except where noted. EdX, Open edX and " -"their respective logos are trademarks or registered trademarks of edX Inc." +"© {org_name}. All rights reserved except where noted. edX, Open edX and " +"their respective logos are registered trademarks of edX Inc." msgstr "" -"© {org_name}. Alle Rechte vorbehalten sofern nicht anders vermerkt. edX, " -"Open edX sowie die zugehörigen edX und Open edX Logos sind eingetragene " -"Marken oder Marken der edX inc." #. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# -#. Translators: 'Open edX' is a brand, please keep this untranslated. +#. Translators: 'Open edX' is a trademark, please keep this untranslated. #. See http://openedx.org for more information. #. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# #. Translators: 'Open edX' is a brand, please keep this untranslated. See @@ -6378,6 +6359,20 @@ msgstr "" "Um den Inhalt des Kurses sehen zu können, müssen Sie sich erst " "{sign_in_link} oder {register_link}." +#: lms/djangoapps/courseware/views/views.py +#: openedx/features/course_experience/views/course_home_messages.py +#, python-brace-format +msgid "{sign_in_link} or {register_link}." +msgstr "" + +#: lms/djangoapps/courseware/views/views.py +#: openedx/features/course_experience/views/course_home_messages.py +#: lms/templates/header/navbar-not-authenticated.html +#: lms/templates/navigation/navbar-not-authenticated.html +#: themes/edx.org/lms/templates/header/navbar-not-authenticated.html +msgid "Sign in" +msgstr "Anmelden" + #: lms/djangoapps/courseware/views/views.py #, python-brace-format msgid "" @@ -6489,10 +6484,8 @@ msgstr "" #: lms/djangoapps/dashboard/git_import.py msgid "" "Non usable git url provided. Expecting something like: " -"git@github.com:mitocw/edx4edx_lite.git" +"git@github.com:edx/edx4edx_lite.git" msgstr "" -"Keine nutzbare git-URL angegeben. Erwartet wird etwas wie: " -"git@github.com:mitocw/edx4edx_lite.git" #: lms/djangoapps/dashboard/git_import.py msgid "Unable to get git log" @@ -6678,49 +6671,49 @@ msgstr "Rolle" msgid "full_name" msgstr "kompletter Name" -#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.html -#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.txt -#, python-format -msgid "%(comment_username)s replied to <b>%(thread_title)s</b>:" -msgstr "%(comment_username)s hat geantwortet auf <b>%(thread_title)s</b>:" - -#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.html -#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.txt -msgid "View discussion" -msgstr "Diskussion betrachten" - -#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/subject.txt -#, python-format -msgid "Response to %(thread_title)s" -msgstr "Antworten auf %(thread_title)s" - -#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/discussion/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/discussion/django_comment_client/base/views.py msgid "Body can't be empty" msgstr "Der Text darf nicht leer sein" -#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/discussion/django_comment_client/base/views.py msgid "Topic doesn't exist" msgstr "Thema existiert nicht" -#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/discussion/django_comment_client/base/views.py msgid "Comment level too deep" msgstr "Zu viele Kommentarebenen" -#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/discussion/django_comment_client/base/views.py msgid "" "Error uploading file. Please contact the site administrator. Thank you." msgstr "" "Fehler beim Hochladen der Datei. Bitte kontaktiere den Website-" "Administrator. Vielen Dank." -#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/discussion/django_comment_client/base/views.py msgid "Good" msgstr "Gut" +#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.html +#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.txt +#, python-format +msgid "%(comment_username)s replied to <b>%(thread_title)s</b>:" +msgstr "%(comment_username)s hat geantwortet auf <b>%(thread_title)s</b>:" + +#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.html +#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.txt +msgid "View discussion" +msgstr "Diskussion betrachten" + +#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/subject.txt +#, python-format +msgid "Response to %(thread_title)s" +msgstr "Antworten auf %(thread_title)s" + #: lms/djangoapps/edxnotes/helpers.py msgid "EdxNotes Service is unavailable. Please try again in a few minutes." msgstr "" @@ -6833,6 +6826,11 @@ msgstr "{platform_name} Mitarbeiter" msgid "Course Staff" msgstr "Mitarbeiter des Kurs" +#: lms/djangoapps/instructor/paidcourse_enrollment_report.py +#: openedx/core/djangoapps/django_comment_common/models.py +msgid "Student" +msgstr "Teilnehmer" + #: lms/djangoapps/instructor/paidcourse_enrollment_report.py #: lms/templates/preview_menu.html #: lms/templates/instructor/instructor_dashboard_2/membership.html @@ -7643,12 +7641,6 @@ msgstr "" "Ein verlängertes Fälligkeitsdatum muss später gelegen sein als das " "ursprüngliche Fälligkeitsdatum." -#: lms/djangoapps/instructor/views/tools.py -msgid "No due date extension is set for that student and unit." -msgstr "" -"Keine Fälligkeitsdatumsverlängerung für diesen Teilnehmer und diese " -"Lerneinheit festgelegt." - #. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# #. Translators: This label appears above a field on the registration form #. meant to hold the user's full name. @@ -8106,6 +8098,10 @@ msgstr "" msgid "My Notes" msgstr "Meine Notizen" +#: lms/djangoapps/program_enrollments/models.py +msgid "One of user or external_user_key must not be null." +msgstr "" + #: lms/djangoapps/shoppingcart/models.py msgid "Order Payment Confirmation" msgstr "Zahlungsbestätigung für Bestellung" @@ -9130,8 +9126,8 @@ msgstr "Kein Profil für Benutzer gefunden" #: lms/djangoapps/verify_student/views.py #, python-brace-format -msgid "Name must be at least {min_length} characters long." -msgstr "Name muss mindestens {min_length} Zeichen enthalten." +msgid "Name must be at least {min_length} character long." +msgstr "" #: lms/djangoapps/verify_student/views.py msgid "Image data is not valid." @@ -9570,8 +9566,9 @@ msgid "Hello %(full_name)s," msgstr "" #: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt #, python-format -msgid "Your %(platform_name)s ID verification has expired.\" " +msgid "Your %(platform_name)s ID verification has expired. " msgstr "" #: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html @@ -9622,11 +9619,6 @@ msgstr "" msgid "Hello %(full_name)s, " msgstr "" -#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt -#, python-format -msgid "Your %(platform_name)s ID verification has expired. " -msgstr "" - #: lms/templates/verify_student/edx_ace/verificationexpiry/email/subject.txt #, python-format msgid "Your %(platform_name)s Verification has Expired" @@ -10253,15 +10245,6 @@ msgstr "" msgid "The reason this user wants to access the API." msgstr "Der Grund, weshalb dieser Benutzer Zugang zur API fordert" -#: openedx/core/djangoapps/api_admin/models.py -#, python-brace-format -msgid "API access request from {company}" -msgstr "" - -#: openedx/core/djangoapps/api_admin/models.py -msgid "API access request" -msgstr "API Zugangsanfrage " - #: openedx/core/djangoapps/api_admin/widgets.py #, python-brace-format msgid "" @@ -10591,6 +10574,23 @@ msgstr "Das ist eine Testwarnung" msgid "This is a test error" msgstr "Das ist ein Testfehler" +#: openedx/core/djangoapps/django_comment_common/models.py +msgid "Administrator" +msgstr "Administrator" + +#: openedx/core/djangoapps/django_comment_common/models.py +msgid "Moderator" +msgstr "Moderator" + +#: openedx/core/djangoapps/django_comment_common/models.py +msgid "Group Moderator" +msgstr "Gruppenmoderator" + +#: openedx/core/djangoapps/django_comment_common/models.py +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Community TA" +msgstr "Gemeinschaftslehrkraft" + #: openedx/core/djangoapps/embargo/forms.py #: openedx/core/djangoapps/verified_track_content/forms.py msgid "COURSE NOT FOUND. Please check that the course ID is valid." @@ -11161,8 +11161,11 @@ msgid "Specialty" msgstr "" #: openedx/core/djangoapps/user_api/accounts/utils.py +#, python-brace-format msgid "" -" Make sure that you are providing a valid username or a URL that contains \"" +"Make sure that you are providing a valid username or a URL that contains " +"\"{url_stub}\". To remove the link from your edX profile, leave this field " +"blank." msgstr "" #: openedx/core/djangoapps/user_api/accounts/views.py @@ -11312,18 +11315,12 @@ msgstr "Bitte bestätigen Sie die {platform_name} {terms_of_service}" #: openedx/core/djangoapps/user_api/api.py #, python-brace-format msgid "" -"By creating an account with {platform_name}, you agree to " -"abide by our {platform_name} " +"By creating an account, you agree to the " "{terms_of_service_link_start}{terms_of_service}{terms_of_service_link_end}" -" and agree to our {privacy_policy_link_start}Privacy " -"Policy{privacy_policy_link_end}." +" and you acknowledge that {platform_name} and each Member " +"process your personal data in accordance with the " +"{privacy_policy_link_start}Privacy Policy{privacy_policy_link_end}." msgstr "" -"Mit der Erstellung eines Benutzerkontos auf der {platform_name}, stimmen Sie" -" automatisch den {platform_name} " -"{terms_of_service_link_start}{terms_of_service}{terms_of_service_link_end} " -"und unseren " -"{privacy_policy_link_start}Datenschutzbestimmungen{privacy_policy_link_end} " -"zu." #. Translators: "Terms of service" is a legal document users must agree to #. in order to register a new account. @@ -11765,19 +11762,19 @@ msgstr "Aktuelles" msgid "Reviews" msgstr "Bewertungen" +#: openedx/features/course_experience/utils.py +#, no-python-format, python-brace-format +msgid "" +"{banner_open}{percentage}% off your first upgrade.{span_close} Discount " +"automatically applied.{div_close}" +msgstr "" + #: openedx/features/course_experience/views/course_home_messages.py #, python-brace-format msgid "{sign_in_link} or {register_link} and then enroll in this course." msgstr "" "{sign_in_link} oder {register_link} und danach in diesen Kurs einschreiben." -#: openedx/features/course_experience/views/course_home_messages.py -#: lms/templates/header/navbar-not-authenticated.html -#: lms/templates/navigation/navbar-not-authenticated.html -#: themes/edx.org/lms/templates/header/navbar-not-authenticated.html -msgid "Sign in" -msgstr "Anmelden" - #: openedx/features/course_experience/views/course_home_messages.py #, python-brace-format msgid "Welcome to {course_display_name}" @@ -11817,6 +11814,29 @@ msgstr "" msgid "Set goal to: {goal_text}" msgstr "" +#: openedx/features/discounts/admin.py +msgid "" +"These define the context to disable lms-controlled discounts on. If no " +"values are set, then the configuration applies globally. If a single value " +"is set, then the configuration applies to all courses within that context. " +"At most one value can be set at a time.<br>If multiple contexts apply to a " +"course (for example, if configuration is specified for the course " +"specifically, and for the org that the course is in, then the more specific " +"context overrides the more general context." +msgstr "" + +#: openedx/features/discounts/admin.py +msgid "" +"If any of these values is left empty or \"Unknown\", then their value at " +"runtime will be retrieved from the next most specific context that applies. " +"For example, if \"Disabled\" is left as \"Unknown\" in the course context, " +"then that course will be Disabled only if the org that it is in is Disabled." +msgstr "" + +#: openedx/features/discounts/models.py +msgid "Disabled" +msgstr "" + #: openedx/features/enterprise_support/api.py #, python-brace-format msgid "Enrollment in {course_title} was not complete." @@ -11930,10 +11950,8 @@ msgstr "" #: cms/djangoapps/contentstore/git_export_utils.py msgid "" "Non writable git url provided. Expecting something like: " -"git@github.com:mitocw/edx4edx_lite.git" +"git@github.com:edx/edx4edx_lite.git" msgstr "" -"Keine git-URL mit schreibzugriff angegeben. Erwarte etwas wie: " -"git@github.com:mitocw/edx4edx_lite.git" #: cms/djangoapps/contentstore/git_export_utils.py msgid "" @@ -12810,6 +12828,15 @@ msgstr "Zurücksetzen" msgid "Legal" msgstr "Rechtliches" +#. Translators: 'edX' and 'Open edX' are trademarks of 'edX Inc.'. Please do +#. not translate any of these trademarks and company names. +#: cms/templates/widgets/footer.html +#: themes/red-theme/lms/templates/footer.html +msgid "" +"edX, Open edX, and the edX and Open edX logos are registered trademarks of " +"{link_start}edX Inc.{link_end}" +msgstr "" + #: cms/templates/widgets/header.html lms/templates/header/header.html #: lms/templates/navigation/navigation.html #: lms/templates/widgets/footer-language-selector.html @@ -13200,6 +13227,10 @@ msgstr "Debug:" msgid "External Authentication failed" msgstr "Externe Authentifizierung fehlgeschlagen" +#: lms/templates/footer.html +msgid "organization logo" +msgstr "" + #: lms/templates/forgot_password_modal.html msgid "" "Please enter your e-mail address below, and we will e-mail instructions for " @@ -13410,17 +13441,15 @@ msgstr "" msgid "Search for a course" msgstr "Suche nach einem Kurs" -#. Translators: 'Open edX' is a registered trademark, please keep this -#. untranslated. See http://open.edx.org for more information. -#: lms/templates/index_overlay.html -msgid "Welcome to the Open edX{registered_trademark} platform!" -msgstr "Willkommen bei der Open edX{registered_trademark} Plattform!" +#: lms/templates/index_overlay.html lms/templates/register-sidebar.html +msgid "Welcome to {platform_name}" +msgstr "Willkommen bei {platform_name}" #. Translators: 'Open edX' is a registered trademark, please keep this #. untranslated. See http://open.edx.org for more information. #: lms/templates/index_overlay.html -msgid "It works! This is the default homepage for this Open edX instance." -msgstr "Dies ist die Standardhomepage für diese Open edX instance." +msgid "It works! Powered by Open edX{registered_trademark}" +msgstr "" #: lms/templates/invalid_email_key.html msgid "Invalid email change key" @@ -13724,6 +13753,10 @@ msgstr "Eigene Antwort speichern" msgid "Reset your answer" msgstr "Antwort zurücksetzen" +#: lms/templates/problem.html +msgid "Answers are displayed within the problem" +msgstr "" + #: lms/templates/problem_notifications.html msgid "Next Hint" msgstr "Nächster Hinweis" @@ -13935,10 +13968,6 @@ msgstr "Bereits registriert?" msgid "Log in" msgstr "Anmelden" -#: lms/templates/register-sidebar.html -msgid "Welcome to {platform_name}" -msgstr "Willkommen bei {platform_name}" - #: lms/templates/register-sidebar.html msgid "" "Registering with {platform_name} gives you access to all of our current and " @@ -14308,11 +14337,6 @@ msgstr "Kurs-ID oder Directory" msgid "Delete course from site" msgstr "Entfernen Sie den Kurs von der Seite" -#. Translators: A version number appears after this string -#: lms/templates/sysadmin_dashboard.html -msgid "Platform Version" -msgstr "Plattformversion" - #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Page {current_page} of {total_pages}" msgstr "Seite {current_page} von {total_pages}" @@ -15601,6 +15625,20 @@ msgstr "Bestelldaten werden geladen..." msgid "Please wait while we retrieve your order details." msgstr "Bitte warten Sie. Bestellungsinformationen werden abgerufen." +#: lms/templates/course_modes/_upgrade_button.html +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/_upgrade_button.html +#: themes/edx.org/lms/templates/course_modes/choose.html +msgid "Pursue the Verified Track" +msgstr "" + +#: lms/templates/course_modes/_upgrade_button.html +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/_upgrade_button.html +#: themes/edx.org/lms/templates/course_modes/choose.html +msgid "Pursue a Verified Certificate" +msgstr "Verfolge Ziel des verifizierten Zertifikats" + #: lms/templates/course_modes/choose.html #: themes/edx.org/lms/templates/course_modes/choose.html msgid "Enroll In {course_name} | Choose Your Track" @@ -15690,16 +15728,6 @@ msgstr "" "{b_start}Einfach teilbar: {b_end} Füge das Zertifikat an deinen Lebenslauf " "oder dein Bewerbungsschreiben an oder poste es direkt auf LinkedIn" -#: lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -msgid "Pursue a Verified Certificate" -msgstr "Verfolge Ziel des verifizierten Zertifikats" - -#: lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -msgid "Pursue the Verified Track" -msgstr "" - #: lms/templates/course_modes/choose.html #: themes/edx.org/lms/templates/course_modes/choose.html msgid "" @@ -15822,6 +15850,10 @@ msgid "An error occurred. Please try again later." msgstr "" "Ein Fehler ist aufgetreten. Bitte versuchen Sie es später noch einmal." +#: lms/templates/courseware/course_about.html +msgid "An error has occurred. Please ensure that you are logged in to enroll." +msgstr "" + #: lms/templates/courseware/course_about.html msgid "You are enrolled in this course" msgstr "Sie sind in diesem Kurs eingeschrieben" @@ -15971,7 +16003,6 @@ msgstr "Suche filtern" #: lms/templates/courseware/courseware-chromeless.html #: lms/templates/courseware/courseware.html #: openedx/features/course_bookmarks/templates/course_bookmarks/course-bookmarks.html -#: openedx/features/learner_analytics/templates/learner_analytics/dashboard.html msgid "{course_number} Courseware" msgstr "{course_number} Kursinhalte" @@ -16203,8 +16234,8 @@ msgid "View Grading in studio" msgstr "Benotung im Studio betrachten" #: lms/templates/courseware/progress.html -msgid "Course Progress for Student '{username}' ({email})" -msgstr "Kursfortschritt für Kursteilnehmer '{username}' ({email})" +msgid "Course Progress for '{username}' ({email})" +msgstr "" #: lms/templates/courseware/progress.html msgid "View Certificate" @@ -17124,34 +17155,26 @@ msgid "" "engaging, high-quality {platform_name} courses. Note that you will not be " "able to log back into your account until you have activated it." msgstr "" -"Fast geschafft! Bitte nutzen Sie den folgenden Link, um Ihr Konto bei " -"{platform_name} zu aktivieren. Ohne Kontoaktivierung können Sie sich nicht " -"über den Log-In-Bereich der Plattform anmelden." #: lms/templates/emails/activation_email.txt msgid "Enjoy learning with {platform_name}." -msgstr "Viel Spaß beim Lernen mit {platform_name}." +msgstr "" #: lms/templates/emails/activation_email.txt msgid "" "If you need help, please use our web form at {support_url} or email " "{support_email}." msgstr "" -"Wenn Sie Hilfe benötigen, wenden Sie sich bitte an {support_email} oder " -"nutzen Sie unser Web-Formular auf {support_url}. Bei allgemeinen Fragen " -"besuchen Sie unsere Kontaktseite." #: lms/templates/emails/activation_email.txt msgid "" "This email message was automatically sent by {lms_url} because someone " "attempted to create an account on {platform_name} using this email address." msgstr "" -"Diese E-Mail wird automatisch gesendet von {lms_url}, da jemand versucht hat" -" sich mit dieser E-Mail Adresse bei der {platform_name} zu registrieren." #: lms/templates/emails/activation_email_subject.txt msgid "Action Required: Activate your {platform_name} account" -msgstr "Bitte aktivieren Sie Ihr Konto für {platform_name}" +msgstr "" #: lms/templates/emails/business_order_confirmation_email.txt msgid "Thank you for your purchase of " @@ -18206,15 +18229,9 @@ msgstr "Verfügbare Reports" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The reports listed below are available for download. A link to every report " -"remains available on this page, identified by the UTC date and time of " -"generation. Reports are not deleted, so you will always be able to access " -"previously generated reports from this page." +"The reports listed below are available for download, identified by UTC date " +"and time of generation." msgstr "" -"Die unten aufgeführten Reports stehen zum Download bereit. Der Link für " -"jeden Report - inkl. Datum und Uhrzeit - bleibt auf dieser Seite stehen. " -"Reports werden nicht gelöscht, so dass Sie jederzeit alle bisher erzeugten " -"Reports von dieser Seite aus aufrufen können. " #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" @@ -18231,13 +18248,13 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"{strong_start}Note{strong_end}: To keep student data secure, you cannot save" -" or email these links for direct access. Copies of links expire within 5 " -"minutes." +"{strong_start}Note{strong_end}: {ul_start}{li_start}To keep student data " +"secure, you cannot save or email these links for direct access. Copies of " +"links expire within 5 minutes.{li_end}{li_start}Report files are deleted 90 " +"days after generation. If you will need access to old reports, download and " +"store the files, in accordance with your institution's data security " +"policies.{li_end}{ul_end}" msgstr "" -"{strong_start}Hinweis{strong_end}: Um die Daten Ihrer Teilnehmer zu sichern," -" können Sie diese Links nicht direkt per E-Mail versenden. Die Links " -"verfallen dann innerhalb von 5 Minuten." #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Enrollment Codes" @@ -18624,16 +18641,11 @@ msgstr "Individuelle Verlängerung des Abgabedatums" #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "" -"In this section, you have the ability to grant extensions on specific units " -"to individual students. Please note that the latest date is always taken; " -"you cannot use this tool to make an assignment due earlier for a particular " -"student." +"In this section, you have the ability to grant extensions on specific " +"subsections to individual students. Please note that the latest date is " +"always taken; you cannot use this tool to make an assignment due earlier for" +" a particular student." msgstr "" -"In diesem Abschnitt haben Sie die Möglichkeit einzelnen Teilnehmern " -"Verlängerungsfristen für ausgewählte Lerneinheiten zu gewähren. Bitte " -"beachten Sie, dass immer das späteste Datum wirksam ist. Sie können dieses " -"Werkzeug nicht benutzen, um die Frist für eine Aufgabe für einen bestimmten " -"Teilnehmer zu verkürzen." #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "" @@ -18647,8 +18659,8 @@ msgid "Student Email or Username" msgstr "Teilnehmer E-Mail oder Benutzername" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -msgid "Choose the graded unit:" -msgstr "Wählen Sie die benotete Lerneinheit aus:" +msgid "Choose the graded subsection:" +msgstr "" #. Translators: "format_string" is the string MM/DD/YYYY HH:MM, as that is the #. format the system requires. @@ -18660,6 +18672,10 @@ msgstr "" "Lege die erweiterte Fälligkeit in Datum und Uhrzeit fest (in UTC; bitte " "{format_string} angeben)." +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Reason for extension" +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Change due date for student" msgstr "Ändere das Abgabedatum für Teilnehmer" @@ -18670,20 +18686,15 @@ msgstr "Anzeige der gewährten Verlängerungen" #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "" -"Here you can see what extensions have been granted on particular units or " -"for a particular student." +"Here you can see what extensions have been granted on particular subsection " +"or for a particular student." msgstr "" -"Hier können Sie sehen, welche Verlängerungen in bestimmten Lerneinheiten für" -" einzelne Teilnehmer gewährt worden sind." #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "" -"Choose a graded unit and click the button to obtain a list of all students " -"who have extensions for the given unit." +"Choose a graded subsection and click the button to obtain a list of all " +"students who have extensions for the given subsection." msgstr "" -"Wählen Sie eine benotete Lerneinheit aus und drücken Sie den Knopf um eine " -"Liste aller Teilnehmer, die eine Verlängerung für die gegebene Lerneinheit " -"erhalten haben, anzuzeigen." #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "List all students with due date extensions" @@ -18704,13 +18715,13 @@ msgstr "Verschiebungen zurücksetzen" #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "" "Resetting a problem's due date rescinds a due date extension for a student " -"on a particular unit. This will revert the due date for the student back to " -"the problem's original due date." +"on a particular subsection. This will revert the due date for the student " +"back to the problem's original due date." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Reason for reset" msgstr "" -"Das Zurücksetzen des Fälligkeitsdatums einer Fragestellung hebt eine " -"Verschiebung der Fälligkeit für einen Teilnehmer für eine bestimmte " -"Lerneinheit auf. Es setzt das Fälligkeitsdatum für den Teilnehmer zurück auf" -" das ursprüngliche Fälligkeitsdatum der Fragestellung." #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Reset due date for student" @@ -20826,10 +20837,6 @@ msgstr "" msgid "Explore journals and courses" msgstr "" -#: openedx/features/learner_analytics/templates/learner_analytics/dashboard.html -msgid "My Stats (Beta)" -msgstr "" - #. Translators: this section lists all the third-party authentication #. providers #. (for example, Google and LinkedIn) the user can link with or unlink from @@ -20929,7 +20936,7 @@ msgid "© 2012–{year} edX Inc. " msgstr "" #: themes/edx.org/lms/templates/footer.html -msgid "EdX, Open edX, and MicroMasters are registered trademarks of edX Inc. " +msgid "edX, Open edX, and MicroMasters are registered trademarks of edX Inc. " msgstr "" #: themes/edx.org/lms/templates/certificates/_about-accomplishments.html @@ -21001,11 +21008,8 @@ msgstr "" #: themes/edx.org/lms/templates/certificates/_accomplishment-footer.html msgid "" "All rights reserved except where noted. edX, Open edX and the edX and Open " -"edX logos are registered trademarks or trademarks of edX Inc." +"edX logos are registered trademarks of edX Inc." msgstr "" -"Alle Rechte vorbehalten sofern nicht anders vermerkt. edX, Open edX sowie " -"die zugehörigen edX und Open edX Logos sind eingetragene Marken oder Marken " -"der edX inc." #: themes/edx.org/lms/templates/course_modes/choose.html msgid "" @@ -21030,16 +21034,6 @@ msgstr "Alle Kurse" msgid "Schools & Partners" msgstr "Schulen & Partner" -#. Translators: 'EdX', 'edX', and 'Open edX' are trademarks of 'edX Inc.'. -#. Please do not translate any of these trademarks and company names. -#: themes/red-theme/lms/templates/footer.html -msgid "" -"EdX, Open edX, and the edX and Open edX logos are registered trademarks or " -"trademarks of {link_start}edX Inc.{link_end}" -msgstr "" -"EdX, Open edX und die edX und Open edX Logos sind eingetragene Warenzeichen " -"oder Warenzeichen von {link_start} edX Inc. {link_end}" - #: themes/red-theme/lms/templates/footer.html msgid "" "{tos_link_start}Terms of Service{tos_link_end} and {honor_link_start}Honor " @@ -21133,8 +21127,8 @@ msgid "" msgstr "" "Wir haben eine Änderungsanfrage erhalten, die mit Ihrem " "{platform_name}-Konto verbundene E-Mail-Adresse von {old_email} auf " -"{new_email} zu ändern. Falls dies richtig ist, bestätigen Sie die neue E" -"-Mail-Adresse, in dem Sie folgenden Link besuchen:" +"{new_email} zu ändern. Falls dies richtig ist, bestätigen Sie die neue " +"E-Mail-Adresse, in dem Sie folgenden Link besuchen:" #: themes/stanford-style/lms/templates/emails/reject_name_change.txt msgid "" @@ -24268,14 +24262,10 @@ msgid "" " any more email from us. Please do not reply to this e-mail; if you require " "assistance, check the help section of the {studio_name} web site." msgstr "" -"Falls Sie dies nicht angefordert haben, müssen Sie nichts unternehmen; Sie " -"werden keine weiteren E-Mails von uns erhalten. Bitte antworten Sie nicht " -"auf diese E-Mail. Wenn Sie Hilfe benötigen, verwenden Sie and den " -"Hilfebereich auf {studio_name}. " #: cms/templates/emails/activation_email_subject.txt msgid "Your account for {studio_name}" -msgstr "Ihr Konto für {studio_name}" +msgstr "" #: cms/templates/emails/course_creator_admin_subject.txt msgid "{email} has requested {studio_name} course creator privileges on edge" @@ -24424,16 +24414,6 @@ msgstr "" msgid "LMS" msgstr "" -#. Translators: 'EdX', 'edX', 'Studio', and 'Open edX' are trademarks of 'edX -#. Inc.'. Please do not translate any of these trademarks and company names. -#: cms/templates/widgets/footer.html -msgid "" -"EdX, Open edX, Studio, and the edX and Open edX logos are registered " -"trademarks or trademarks of {link_start}edX Inc.{link_end}" -msgstr "" -"EdX, Open edX, Studio, edX und Open edX sind registrierte Handelsmarken oder" -" Marken von {link_start}edX Inc.{link_end}" - #: cms/templates/widgets/header.html msgid "Current Course:" msgstr "Aktueller Kurs:" diff --git a/conf/locale/de_DE/LC_MESSAGES/djangojs.mo b/conf/locale/de_DE/LC_MESSAGES/djangojs.mo index 06af9b7666386b43adb2c3b8d6b608f8af43611e..8d299cf7c181e62370010ed60f75e69329279bba 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 89b6e88e19dc9909fdfc317349d6853aff431dfb..ee73fe5800cc7c05383f8059ca9cc90b0cada28b 100644 --- a/conf/locale/de_DE/LC_MESSAGES/djangojs.po +++ b/conf/locale/de_DE/LC_MESSAGES/djangojs.po @@ -118,7 +118,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2019-04-22 10:49+0000\n" +"POT-Creation-Date: 2019-06-09 20:42+0000\n" "PO-Revision-Date: 2019-04-18 15:18+0000\n" "Last-Translator: Stefania Trabucchi <stefania.trabucchi@abstract-technology.de>\n" "Language-Team: German (Germany) (http://www.transifex.com/open-edx/edx-platform/language/de_DE/)\n" @@ -7711,6 +7711,10 @@ msgstr "Verifiziere Jetzt" msgid "Mark Exam As Completed" msgstr "Markiere Prüfung als vollständig" +#: lms/templates/courseware/proctored-exam-status.underscore +msgid "You are taking \"{exam_link}\" as {exam_type}. " +msgstr "" + #: lms/templates/courseware/proctored-exam-status.underscore msgid "a timed exam" msgstr "" @@ -8492,8 +8496,9 @@ msgid "Register with Institution/Campus Credentials" msgstr "" #: lms/templates/student_account/institution_register.underscore -msgid "Register through edX" -msgstr "Registrier dich über edX" +#: lms/templates/student_account/register.underscore +msgid "Create an Account" +msgstr "Einen Account erstellen" #: lms/templates/student_account/login.underscore msgid "First time here?" @@ -8606,10 +8611,6 @@ msgstr "Erstelle ein Konto mit %(providerName)s." msgid "or create a new one here" msgstr "oder erstelle ein neues hier." -#: lms/templates/student_account/register.underscore -msgid "Create an Account" -msgstr "Einen Account erstellen" - #: lms/templates/student_account/register.underscore msgid "Support education research by providing additional information" msgstr "" diff --git a/conf/locale/el/LC_MESSAGES/django.mo b/conf/locale/el/LC_MESSAGES/django.mo index 26d0ffee38807765ba715311db5b8a8697aeb45b..80b8082ca467dce880c5834758cc9adcfd210db6 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/djangojs.mo b/conf/locale/el/LC_MESSAGES/djangojs.mo index 63ed8a9fe76764089579e3c21e88f143b0843c66..43a52d6c1fd5392c935dbe041750254138212cc8 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/en/LC_MESSAGES/django.po b/conf/locale/en/LC_MESSAGES/django.po index a943f3b4ff3cbb5cb3acb3a8512ea57730577d77..fdc89a277ab1c0b8c0e9b25594f6748620f1fc5e 100644 --- a/conf/locale/en/LC_MESSAGES/django.po +++ b/conf/locale/en/LC_MESSAGES/django.po @@ -38,8 +38,8 @@ msgid "" msgstr "" "Project-Id-Version: 0.1a\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2019-05-16 10:12+0000\n" -"PO-Revision-Date: 2019-05-16 10:12:24.699998\n" +"POT-Creation-Date: 2019-06-13 08:13+0000\n" +"PO-Revision-Date: 2019-06-13 08:13:47.931648\n" "Last-Translator: \n" "Language-Team: openedx-translation <openedx-translation@googlegroups.com>\n" "Language: en\n" @@ -406,7 +406,7 @@ msgid "A properly formatted e-mail is required" msgstr "" #: common/djangoapps/student/forms.py -msgid "Your legal name must be a minimum of two characters long" +msgid "Your legal name must be a minimum of one character long" msgstr "" #: common/djangoapps/student/forms.py @@ -863,6 +863,11 @@ msgid "" "enrolled in. Sign In to continue." msgstr "" +#: common/djangoapps/student/views/management.py +msgid "" +"Your previous request is in progress, please try again in a few moments." +msgstr "" + #: common/djangoapps/student/views/management.py msgid "Some error occured during password change. Please try again" msgstr "" @@ -2662,13 +2667,13 @@ msgstr "" msgid "" "Enter discussion categories in the following format: \"CategoryName\": " "{\"id\": \"i4x-InstitutionName-CourseNumber-course-CourseRun\"}. For " -"example, one discussion category may be \"Lydian Mode\": {\"id\": \"i4x-" -"UniversityX-MUS101-course-2015_T1\"}. The \"id\" value for each category " -"must be unique. In \"id\" values, the only special characters that are " -"supported are underscore, hyphen, and period. You can also specify a " +"example, one discussion category may be \"Lydian Mode\": {\"id\": " +"\"i4x-UniversityX-MUS101-course-2015_T1\"}. The \"id\" value for each " +"category must be unique. In \"id\" values, the only special characters that " +"are supported are underscore, hyphen, and period. You can also specify a " "category as the default for new posts in the Discussion page by setting its " -"\"default\" attribute to true. For example, \"Lydian Mode\": {\"id\": \"i4x-" -"UniversityX-MUS101-course-2015_T1\", \"default\": true}." +"\"default\" attribute to true. For example, \"Lydian Mode\": {\"id\": " +"\"i4x-UniversityX-MUS101-course-2015_T1\", \"default\": true}." msgstr "" #: common/lib/xmodule/xmodule/course_module.py @@ -5949,7 +5954,7 @@ msgstr "" #: lms/djangoapps/dashboard/git_import.py msgid "" "Non usable git url provided. Expecting something like: " -"git@github.com:mitocw/edx4edx_lite.git" +"git@github.com:edx/edx4edx_lite.git" msgstr "" #: lms/djangoapps/dashboard/git_import.py @@ -8507,7 +8512,7 @@ msgstr "" #: lms/djangoapps/verify_student/views.py #, python-brace-format -msgid "Name must be at least {min_length} characters long." +msgid "Name must be at least {min_length} character long." msgstr "" #: lms/djangoapps/verify_student/views.py @@ -9592,15 +9597,6 @@ msgstr "" msgid "The reason this user wants to access the API." msgstr "" -#: openedx/core/djangoapps/api_admin/models.py -#, python-brace-format -msgid "API access request from {company}" -msgstr "" - -#: openedx/core/djangoapps/api_admin/models.py -msgid "API access request" -msgstr "" - #: openedx/core/djangoapps/api_admin/widgets.py #, python-brace-format msgid "" @@ -10637,11 +10633,11 @@ msgstr "" #: openedx/core/djangoapps/user_api/api.py #, python-brace-format msgid "" -"By creating an account with {platform_name}, you agree to " -"abide by our {platform_name} " +"By creating an account, you agree to the " "{terms_of_service_link_start}{terms_of_service}{terms_of_service_link_end}" -" and agree to our {privacy_policy_link_start}Privacy " -"Policy{privacy_policy_link_end}." +" and you acknowledge that {platform_name} and each Member " +"process your personal data in accordance with the " +"{privacy_policy_link_start}Privacy Policy{privacy_policy_link_end}." msgstr "" #. Translators: "Terms of service" is a legal document users must agree to @@ -11074,8 +11070,8 @@ msgstr "" #: openedx/features/course_experience/utils.py #, no-python-format, python-brace-format msgid "" -"{banner_open}15% off your first upgrade.{span_close} Discount automatically " -"applied.{div_close}" +"{banner_open}{percentage}% off your first upgrade.{span_close} Discount " +"automatically applied.{div_close}" msgstr "" #: openedx/features/course_experience/views/course_home_messages.py @@ -11122,6 +11118,29 @@ msgstr "" msgid "Set goal to: {goal_text}" msgstr "" +#: openedx/features/discounts/admin.py +msgid "" +"These define the context to disable lms-controlled discounts on. If no " +"values are set, then the configuration applies globally. If a single value " +"is set, then the configuration applies to all courses within that context. " +"At most one value can be set at a time.<br>If multiple contexts apply to a " +"course (for example, if configuration is specified for the course " +"specifically, and for the org that the course is in, then the more specific " +"context overrides the more general context." +msgstr "" + +#: openedx/features/discounts/admin.py +msgid "" +"If any of these values is left empty or \"Unknown\", then their value at " +"runtime will be retrieved from the next most specific context that applies. " +"For example, if \"Disabled\" is left as \"Unknown\" in the course context, " +"then that course will be Disabled only if the org that it is in is Disabled." +msgstr "" + +#: openedx/features/discounts/models.py +msgid "Disabled" +msgstr "" + #: openedx/features/enterprise_support/api.py #, python-brace-format msgid "Enrollment in {course_title} was not complete." @@ -11231,7 +11250,7 @@ msgstr "" #: cms/djangoapps/contentstore/git_export_utils.py msgid "" "Non writable git url provided. Expecting something like: " -"git@github.com:mitocw/edx4edx_lite.git" +"git@github.com:edx/edx4edx_lite.git" msgstr "" #: cms/djangoapps/contentstore/git_export_utils.py @@ -12450,6 +12469,10 @@ msgstr "" msgid "External Authentication failed" msgstr "" +#: lms/templates/footer.html +msgid "organization logo" +msgstr "" + #: lms/templates/forgot_password_modal.html msgid "" "Please enter your e-mail address below, and we will e-mail instructions for " @@ -12637,16 +12660,14 @@ msgstr "" msgid "Search for a course" msgstr "" -#. Translators: 'Open edX' is a registered trademark, please keep this -#. untranslated. See http://open.edx.org for more information. -#: lms/templates/index_overlay.html -msgid "Welcome to the Open edX{registered_trademark} platform!" +#: lms/templates/index_overlay.html lms/templates/register-sidebar.html +msgid "Welcome to {platform_name}" msgstr "" #. Translators: 'Open edX' is a registered trademark, please keep this #. untranslated. See http://open.edx.org for more information. #: lms/templates/index_overlay.html -msgid "It works! This is the default homepage for this Open edX instance." +msgid "It works! Powered by Open edX{registered_trademark}" msgstr "" #: lms/templates/invalid_email_key.html @@ -12930,6 +12951,10 @@ msgstr "" msgid "Reset your answer" msgstr "" +#: lms/templates/problem.html +msgid "Answers are displayed within the problem" +msgstr "" + #: lms/templates/problem_notifications.html msgid "Next Hint" msgstr "" @@ -13124,10 +13149,6 @@ msgstr "" msgid "Log in" msgstr "" -#: lms/templates/register-sidebar.html -msgid "Welcome to {platform_name}" -msgstr "" - #: lms/templates/register-sidebar.html msgid "" "Registering with {platform_name} gives you access to all of our current and " @@ -14728,6 +14749,20 @@ msgstr "" msgid "Please wait while we retrieve your order details." msgstr "" +#: lms/templates/course_modes/_upgrade_button.html +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/_upgrade_button.html +#: themes/edx.org/lms/templates/course_modes/choose.html +msgid "Pursue the Verified Track" +msgstr "" + +#: lms/templates/course_modes/_upgrade_button.html +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/_upgrade_button.html +#: themes/edx.org/lms/templates/course_modes/choose.html +msgid "Pursue a Verified Certificate" +msgstr "" + #: lms/templates/course_modes/choose.html #: themes/edx.org/lms/templates/course_modes/choose.html msgid "Enroll In {course_name} | Choose Your Track" @@ -14809,16 +14844,6 @@ msgid "" "or post it directly on LinkedIn" msgstr "" -#: lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -msgid "Pursue a Verified Certificate" -msgstr "" - -#: lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -msgid "Pursue the Verified Track" -msgstr "" - #: lms/templates/course_modes/choose.html #: themes/edx.org/lms/templates/course_modes/choose.html msgid "" @@ -14925,6 +14950,10 @@ msgstr "" msgid "An error occurred. Please try again later." msgstr "" +#: lms/templates/courseware/course_about.html +msgid "An error has occurred. Please ensure that you are logged in to enroll." +msgstr "" + #: lms/templates/courseware/course_about.html msgid "You are enrolled in this course" msgstr "" @@ -14957,7 +14986,7 @@ msgid "Add {course_name} to Cart {start_span}({price} USD){end_span}" msgstr "" #: lms/templates/courseware/course_about.html -msgid "Enroll in {course_name}" +msgid "Enroll Now" msgstr "" #: lms/templates/courseware/course_about.html @@ -15293,7 +15322,7 @@ msgid "View Grading in studio" msgstr "" #: lms/templates/courseware/progress.html -msgid "Course Progress for Student '{username}' ({email})" +msgid "Course Progress for '{username}' ({email})" msgstr "" #: lms/templates/courseware/progress.html diff --git a/conf/locale/en/LC_MESSAGES/djangojs.po b/conf/locale/en/LC_MESSAGES/djangojs.po index 32f4ba380438cd3e76d049aaf528f9513b69d2d1..bb899529fdfcb72299e1ed2b8faf738acdee0f5c 100644 --- a/conf/locale/en/LC_MESSAGES/djangojs.po +++ b/conf/locale/en/LC_MESSAGES/djangojs.po @@ -32,8 +32,8 @@ msgid "" msgstr "" "Project-Id-Version: 0.1a\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2019-05-16 10:10+0000\n" -"PO-Revision-Date: 2019-05-16 10:12:24.543843\n" +"POT-Creation-Date: 2019-06-13 08:13+0000\n" +"PO-Revision-Date: 2019-06-13 08:13:47.491238\n" "Last-Translator: \n" "Language-Team: openedx-translation <openedx-translation@googlegroups.com>\n" "Language: en\n" @@ -43,21 +43,6 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "Generated-By: Babel 1.3\n" -#: cms/static/cms/js/main.js cms/static/js/views/active_video_upload_list.js -#: cms/static/js/views/video_transcripts.js common/static/bundles/commons.js -msgid "" -"This may be happening because of an error with our server or your internet " -"connection. Try refreshing the page or making sure you are online." -msgstr "" - -#: cms/static/cms/js/main.js common/static/bundles/commons.js -msgid "Studio's having trouble saving your work" -msgstr "" - -#: cms/static/cms/js/xblock/cms.runtime.v1.js common/static/bundles/commons.js -msgid "OpenAssessment Save Error" -msgstr "" - #: cms/static/cms/js/xblock/cms.runtime.v1.js #: cms/static/js/certificates/views/signatory_details.js #: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js @@ -67,28 +52,15 @@ msgstr "" #: cms/static/js/views/edit_textbook.js #: cms/static/js/views/list_item_editor.js #: cms/static/js/views/modals/edit_xblock.js cms/static/js/views/tabs.js -#: cms/static/js/views/utils/xblock_utils.js common/static/bundles/commons.js -#: common/static/bundles/js/factories/container.js -#: common/static/bundles/js/factories/edit_tabs.js -#: common/static/bundles/js/factories/library.js -#: common/static/bundles/js/factories/textbooks.js -#: lms/static/js/ccx/schedule.js lms/static/js/views/fields.js +#: cms/static/js/views/utils/xblock_utils.js lms/static/js/ccx/schedule.js +#: lms/static/js/views/fields.js msgid "Saving" msgstr "" -#: cms/static/js/base.js common/static/bundles/commons.js -msgid "This link will open in a new browser window/tab" -msgstr "" - -#: cms/static/js/base.js common/static/bundles/commons.js -msgid "This link will open in a modal window" -msgstr "" - #: cms/static/js/certificates/views/signatory_editor.js #: cms/static/js/views/asset.js cms/static/js/views/list_item.js #: cms/static/js/views/manage_users_and_roles.js #: cms/static/js/views/show_textbook.js -#: common/static/bundles/js/factories/textbooks.js #: lms/djangoapps/teams/static/teams/js/views/instructor_tools.js #: cms/templates/js/certificate-details.underscore #: cms/templates/js/certificate-editor.underscore @@ -109,15 +81,6 @@ msgstr "" msgid "Delete" msgstr "" -#: cms/static/js/certificates/views/signatory_editor.js -#: cms/static/js/views/course_info_update.js cms/static/js/views/list_item.js -#: cms/static/js/views/show_textbook.js cms/static/js/views/tabs.js -#: cms/static/js/views/utils/xblock_utils.js common/static/bundles/commons.js -#: common/static/bundles/js/factories/edit_tabs.js -#: common/static/bundles/js/factories/textbooks.js -msgid "Deleting" -msgstr "" - #. #-#-#-#-# djangojs-partial.po (0.1a) #-#-#-#-# #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML @@ -129,11 +92,6 @@ msgstr "" #: cms/static/js/views/show_textbook.js cms/static/js/views/tabs.js #: cms/static/js/views/validation.js #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/StudentAccountDeletion.js -#: common/static/bundles/StudentAccountDeletionInitializer.js -#: common/static/bundles/commons.js -#: common/static/bundles/js/factories/edit_tabs.js -#: common/static/bundles/js/factories/textbooks.js #: common/static/common/js/components/utils/view_utils.js #: lms/static/js/Markdown.Editor.js #: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx @@ -159,158 +117,12 @@ msgstr "" msgid "Cancel" msgstr "" -#: cms/static/js/features/import/factories/import.js -#: common/static/bundles/Import.js -msgid "There was an error during the upload process." -msgstr "" - -#: cms/static/js/features/import/factories/import.js -#: common/static/bundles/Import.js -msgid "There was an error while unpacking the file." -msgstr "" - -#: cms/static/js/features/import/factories/import.js -#: common/static/bundles/Import.js -msgid "There was an error while verifying the file you submitted." -msgstr "" - -#: cms/static/js/features/import/factories/import.js -#: common/static/bundles/Import.js -msgid "Choose new file" -msgstr "" - -#: cms/static/js/features/import/factories/import.js -#: common/static/bundles/Import.js -msgid "" -"File format not supported. Please upload a file with a {ext} extension." -msgstr "" - -#: cms/static/js/features/import/factories/import.js -#: common/static/bundles/Import.js -msgid "There was an error while importing the new library to our database." -msgstr "" - -#: cms/static/js/features/import/factories/import.js -#: common/static/bundles/Import.js -msgid "There was an error while importing the new course to our database." -msgstr "" - -#: cms/static/js/features/import/factories/import.js -#: common/static/bundles/Import.js -msgid "Your import has failed." -msgstr "" - -#: cms/static/js/features/import/views/import.js -#: common/static/bundles/Import.js -msgid "Your import is in progress; navigating away will abort it." -msgstr "" - -#: cms/static/js/features/import/views/import.js -#: common/static/bundles/Import.js -msgid "Error importing course" -msgstr "" - -#: cms/static/js/features/import/views/import.js -#: common/static/bundles/Import.js -msgid "There was an error with the upload" -msgstr "" - -#: cms/static/js/features_jsx/studio/CourseOrLibraryListing.jsx -#: common/static/bundles/CourseOrLibraryListing.js -msgid "Organization:" -msgstr "" - -#: cms/static/js/features_jsx/studio/CourseOrLibraryListing.jsx -#: common/static/bundles/CourseOrLibraryListing.js -msgid "Course Number:" -msgstr "" - -#: cms/static/js/features_jsx/studio/CourseOrLibraryListing.jsx -#: common/static/bundles/CourseOrLibraryListing.js -msgid "Course Run:" -msgstr "" - -#: cms/static/js/features_jsx/studio/CourseOrLibraryListing.jsx -#: common/static/bundles/CourseOrLibraryListing.js -msgid "(Read-only)" -msgstr "" - -#: cms/static/js/features_jsx/studio/CourseOrLibraryListing.jsx -#: common/static/bundles/CourseOrLibraryListing.js -msgid "Re-run Course" -msgstr "" - -#: cms/static/js/features_jsx/studio/CourseOrLibraryListing.jsx -#: common/static/bundles/CourseOrLibraryListing.js -#: cms/templates/js/show-textbook.underscore -msgid "View Live" -msgstr "" - #. Translators: This is the status of an active video upload #: cms/static/js/models/active_video_upload.js cms/static/js/views/assets.js #: cms/static/js/views/video_thumbnail.js lms/static/js/views/image_field.js msgid "Uploading" msgstr "" -#: cms/static/js/models/chapter.js -#: common/static/bundles/js/factories/textbooks.js -msgid "Chapter name and asset_path are both required" -msgstr "" - -#: cms/static/js/models/chapter.js -#: common/static/bundles/js/factories/textbooks.js -msgid "Chapter name is required" -msgstr "" - -#: cms/static/js/models/chapter.js -#: common/static/bundles/js/factories/textbooks.js -msgid "asset_path is required" -msgstr "" - -#: cms/static/js/models/course.js cms/static/js/models/section.js -#: common/static/bundles/commons.js -#: common/static/bundles/js/factories/textbooks.js -msgid "You must specify a name" -msgstr "" - -#: cms/static/js/models/textbook.js -#: common/static/bundles/js/factories/textbooks.js -msgid "Textbook name is required" -msgstr "" - -#: cms/static/js/models/textbook.js -#: common/static/bundles/js/factories/textbooks.js -msgid "Please add at least one chapter" -msgstr "" - -#: cms/static/js/models/textbook.js -#: common/static/bundles/js/factories/textbooks.js -msgid "All chapters must have a name and asset" -msgstr "" - -#: cms/static/js/models/uploads.js common/static/bundles/commons.js -msgid "" -"Only <%= fileTypes %> files can be uploaded. Please select a file ending in " -"<%= fileExtensions %> to upload." -msgstr "" - -#: cms/static/js/models/uploads.js common/static/bundles/commons.js -#: lms/templates/student_account/hinted_login.underscore -#: lms/templates/student_account/institution_login.underscore -#: lms/templates/student_account/institution_register.underscore -msgid "or" -msgstr "" - -#: cms/static/js/models/xblock_validation.js -#: common/static/bundles/js/factories/xblock_validation.js -msgid "This unit has validation issues." -msgstr "" - -#: cms/static/js/models/xblock_validation.js -#: common/static/bundles/js/factories/xblock_validation.js -msgid "This component has validation issues." -msgstr "" - #. #-#-#-#-# djangojs-partial.po (0.1a) #-#-#-#-# #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML @@ -318,7 +130,7 @@ msgstr "" #: cms/static/js/views/modals/edit_xblock.js #: cms/static/js/views/video_transcripts.js #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js lms/static/js/student_account/tos_modal.js +#: lms/static/js/student_account/tos_modal.js #: cms/templates/js/course-video-settings.underscore #: common/static/common/templates/image-modal.underscore #: common/static/common/templates/discussion/alert-popup.underscore @@ -333,7 +145,7 @@ msgstr "" #. browser when a user needs to edit HTML #: cms/static/js/views/assets.js #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js cms/templates/js/asset-library.underscore +#: cms/templates/js/asset-library.underscore #: cms/templates/js/course-instructor-details.underscore #: cms/templates/js/previous-video-upload-list.underscore #: cms/templates/js/signatory-details.underscore @@ -346,20 +158,11 @@ msgstr "" msgid "Choose File" msgstr "" -#: cms/static/js/views/components/add_xblock.js -#: cms/static/js/views/utils/xblock_utils.js common/static/bundles/commons.js -#: common/static/bundles/js/factories/container.js -#: common/static/bundles/js/factories/library.js -msgid "Adding" -msgstr "" - #. #-#-#-#-# djangojs-partial.po (0.1a) #-#-#-#-# #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: cms/static/js/views/course_info_update.js cms/static/js/views/tabs.js #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -#: common/static/bundles/js/factories/edit_tabs.js #: lms/static/js/Markdown.Editor.js #: common/static/common/templates/discussion/alert-popup.underscore #: lms/templates/learner_dashboard/verification_popover.underscore @@ -371,7 +174,6 @@ msgstr "" #. browser when a user needs to edit HTML #: cms/static/js/views/course_video_settings.js #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js #: cms/templates/js/timed-examination-preference-editor.underscore msgid "None" msgstr "" @@ -379,7 +181,7 @@ msgstr "" #: cms/static/js/views/course_video_settings.js #: cms/static/js/views/metadata.js #: cms/static/js/views/previous_video_upload.js -#: cms/static/js/views/video_transcripts.js common/static/bundles/commons.js +#: cms/static/js/views/video_transcripts.js #: lms/djangoapps/teams/static/teams/js/views/edit_team_members.js #: lms/static/js/views/image_field.js #: cms/templates/js/video/metadata-translations-item.underscore @@ -387,85 +189,10 @@ msgstr "" msgid "Remove" msgstr "" -#: cms/static/js/views/edit_chapter.js -#: common/static/bundles/js/factories/textbooks.js -msgid "Upload a new PDF to “<%= name %>â€" -msgstr "" - -#: cms/static/js/views/edit_chapter.js -#: common/static/bundles/js/factories/textbooks.js -msgid "Please select a PDF file to upload." -msgstr "" - -#: cms/static/js/views/license.js common/static/bundles/commons.js -#: cms/templates/js/license-selector.underscore -msgid "All Rights Reserved" -msgstr "" - -#: cms/static/js/views/license.js common/static/bundles/commons.js -msgid "You reserve all rights for your work" -msgstr "" - -#: cms/static/js/views/license.js common/static/bundles/commons.js -msgid "Creative Commons" -msgstr "" - -#: cms/static/js/views/license.js common/static/bundles/commons.js -msgid "You waive some rights for your work, such that others can use it too" -msgstr "" - -#: cms/static/js/views/license.js common/static/bundles/commons.js -msgid "Version" -msgstr "" - -#: cms/static/js/views/license.js common/static/bundles/commons.js -msgid "Attribution" -msgstr "" - -#: cms/static/js/views/license.js common/static/bundles/commons.js -msgid "" -"Allow others to copy, distribute, display and perform your copyrighted work " -"but only if they give credit the way you request. Currently, this option is " -"required." -msgstr "" - -#: cms/static/js/views/license.js common/static/bundles/commons.js -msgid "Noncommercial" -msgstr "" - -#: cms/static/js/views/license.js common/static/bundles/commons.js -msgid "" -"Allow others to copy, distribute, display and perform your work - and " -"derivative works based upon it - but for noncommercial purposes only." -msgstr "" - -#: cms/static/js/views/license.js common/static/bundles/commons.js -msgid "No Derivatives" -msgstr "" - -#: cms/static/js/views/license.js common/static/bundles/commons.js -msgid "" -"Allow others to copy, distribute, display and perform only verbatim copies " -"of your work, not derivative works based upon it. This option is " -"incompatible with \"Share Alike\"." -msgstr "" - -#: cms/static/js/views/license.js common/static/bundles/commons.js -msgid "Share Alike" -msgstr "" - -#: cms/static/js/views/license.js common/static/bundles/commons.js -msgid "" -"Allow others to distribute derivative works only under a license identical " -"to the license that governs your work. This option is incompatible with \"No" -" Derivatives\"." -msgstr "" - #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: cms/static/js/views/manage_users_and_roles.js #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js msgid "Ok" msgstr "" @@ -475,14 +202,11 @@ msgid "Unknown" msgstr "" #: cms/static/js/views/manage_users_and_roles.js -#: common/static/bundles/StudentAccountDeletion.js -#: common/static/bundles/StudentAccountDeletionInitializer.js #: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx msgid "Are you sure?" msgstr "" -#: cms/static/js/views/metadata.js common/static/bundles/commons.js -#: lms/static/js/views/file_uploader.js +#: cms/static/js/views/metadata.js lms/static/js/views/file_uploader.js msgid "Upload File" msgstr "" @@ -492,7 +216,6 @@ msgstr "" #: cms/static/js/views/modals/base_modal.js #: cms/static/js/views/modals/course_outline_modals.js #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js #: cms/templates/js/certificate-editor.underscore #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/course_info_handouts.underscore @@ -513,2956 +236,1719 @@ msgstr "" #. browser when a user needs to edit HTML #: cms/static/js/views/modals/course_outline_modals.js #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js #: cms/templates/js/add-xblock-component-menu-problem.underscore msgid "Advanced" msgstr "" -#. Translators: "title" is the name of the current component being edited. -#: cms/static/js/views/modals/edit_xblock.js common/static/bundles/commons.js -msgid "Editing: {title}" +#: cms/static/js/views/previous_video_upload.js +#: cms/static/js/views/video/translations_editor.js +#: cms/static/js/views/video_transcripts.js lms/static/js/views/image_field.js +msgid "Removing" msgstr "" -#: cms/static/js/views/modals/edit_xblock.js common/static/bundles/commons.js -msgid "Plugins" +#: cms/static/js/views/validation.js +#: lms/static/js/discussions_management/views/divided_discussions_course_wide.js +#: lms/static/js/discussions_management/views/divided_discussions_inline.js +#: lms/static/js/views/fields.js +msgid "Your changes have been saved." msgstr "" -#: cms/static/js/views/modals/edit_xblock.js common/static/bundles/commons.js -#: lms/templates/ccx/schedule.underscore -msgid "Unit" +#. Translators: This message will be added to the front of messages of type +#. error, +#. e.g. "Error: required field is missing". +#: cms/static/js/views/xblock_validation.js +#: common/static/common/js/discussion/utils.js +#: common/static/common/js/discussion/views/discussion_inline_view.js +#: common/static/common/js/discussion/views/discussion_thread_list_view.js +#: common/static/common/js/discussion/views/discussion_thread_view.js +#: common/static/common/js/discussion/views/response_comment_view.js +#: lms/static/js/student_account/views/FinishAuthView.js +#: lms/static/js/verify_student/views/payment_confirmation_step_view.js +#: lms/static/js/verify_student/views/step_view.js +#: lms/static/js/views/fields.js +msgid "Error" msgstr "" -#: cms/static/js/views/modals/edit_xblock.js common/static/bundles/commons.js -msgid "Component" +#: common/lib/xmodule/xmodule/assets/library_content/public/js/library_content_edit.js +#: common/lib/xmodule/xmodule/js/public/js/library_content_edit.js +msgid "Updating with latest library content" msgstr "" -#: cms/static/js/views/modals/move_xblock_modal.js -#: common/static/bundles/js/factories/container.js -#: common/static/bundles/js/factories/library.js -msgid "Move" +#: common/lib/xmodule/xmodule/assets/split_test/public/js/split_test_author_view.js +#: common/lib/xmodule/xmodule/js/public/js/split_test_author_view.js +msgid "Creating missing groups" msgstr "" -#: cms/static/js/views/modals/move_xblock_modal.js -#: common/static/bundles/js/factories/container.js -#: common/static/bundles/js/factories/library.js -msgid "Choose a location to move your component to" +#: common/lib/xmodule/xmodule/assets/word_cloud/src/js/word_cloud_main.js +msgid "{start_strong}{total}{end_strong} words submitted in total." msgstr "" -#: cms/static/js/views/modals/move_xblock_modal.js -#: common/static/bundles/js/factories/container.js -#: common/static/bundles/js/factories/library.js -msgid "Move: {displayName}" +#: common/lib/xmodule/xmodule/assets/word_cloud/src/js/word_cloud_main.js +msgid "text_word_{uniqueId} title_word_{uniqueId}" msgstr "" -#: cms/static/js/views/move_xblock_list.js -#: common/static/bundles/js/factories/container.js -#: common/static/bundles/js/factories/library.js -msgid "Sections" -msgstr "" - -#: cms/static/js/views/move_xblock_list.js -#: common/static/bundles/js/factories/container.js -#: common/static/bundles/js/factories/library.js -msgid "Subsections" -msgstr "" - -#: cms/static/js/views/move_xblock_list.js -#: common/static/bundles/js/factories/container.js -#: common/static/bundles/js/factories/library.js -msgid "Units" -msgstr "" - -#: cms/static/js/views/move_xblock_list.js -#: common/static/bundles/js/factories/container.js -#: common/static/bundles/js/factories/library.js -msgid "Components" -msgstr "" - -#: cms/static/js/views/move_xblock_list.js -#: common/static/bundles/js/factories/container.js -#: common/static/bundles/js/factories/library.js -#: cms/templates/js/group-configuration-editor.underscore -msgid "Groups" -msgstr "" - -#: cms/static/js/views/move_xblock_list.js -#: common/static/bundles/js/factories/container.js -#: common/static/bundles/js/factories/library.js -msgid "This {parentCategory} has no {childCategory}" -msgstr "" - -#: cms/static/js/views/move_xblock_list.js -#: common/static/bundles/js/factories/container.js -#: common/static/bundles/js/factories/library.js -#: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/partition-group-details.underscore -msgid "Course Outline" -msgstr "" - -#: cms/static/js/views/paged_container.js -#: common/static/bundles/js/factories/library.js -msgid "Date added" -msgstr "" - -#. Translators: "title" is the name of the current component or unit being -#. edited. -#: cms/static/js/views/pages/container.js -#: common/static/bundles/js/factories/container.js -#: common/static/bundles/js/factories/library.js -msgid "Editing access for: %(title)s" -msgstr "" - -#: cms/static/js/views/pages/container_subviews.js -#: common/static/bundles/js/factories/container.js -#: common/static/bundles/js/factories/library.js -msgid "Publishing" -msgstr "" - -#: cms/static/js/views/pages/container_subviews.js -#: common/static/bundles/js/factories/container.js -#: common/static/bundles/js/factories/library.js -#: cms/templates/js/course-video-settings-update-org-credentials-footer.underscore -#: cms/templates/js/course-video-settings-update-settings-footer.underscore -#: cms/templates/js/publish-xblock.underscore -msgid "Discard Changes" -msgstr "" - -#: cms/static/js/views/pages/container_subviews.js -#: common/static/bundles/js/factories/container.js -#: common/static/bundles/js/factories/library.js -msgid "" -"Are you sure you want to revert to the last published version of the unit? " -"You cannot undo this action." -msgstr "" - -#: cms/static/js/views/pages/container_subviews.js -#: common/static/bundles/js/factories/container.js -#: common/static/bundles/js/factories/library.js -msgid "Discarding Changes" -msgstr "" - -#: cms/static/js/views/pages/container_subviews.js -#: common/static/bundles/js/factories/container.js -#: common/static/bundles/js/factories/library.js -msgid "Hiding from Students" -msgstr "" - -#: cms/static/js/views/pages/container_subviews.js -#: common/static/bundles/js/factories/container.js -#: common/static/bundles/js/factories/library.js -msgid "Explicitly Hiding from Students" -msgstr "" - -#: cms/static/js/views/pages/container_subviews.js -#: common/static/bundles/js/factories/container.js -#: common/static/bundles/js/factories/library.js -msgid "Inheriting Student Visibility" -msgstr "" - -#: cms/static/js/views/pages/container_subviews.js -#: common/static/bundles/js/factories/container.js -#: common/static/bundles/js/factories/library.js -msgid "Make Visible to Students" -msgstr "" - -#: cms/static/js/views/pages/container_subviews.js -#: common/static/bundles/js/factories/container.js -#: common/static/bundles/js/factories/library.js -msgid "" -"If the unit was previously published and released to students, any changes " -"you made to the unit when it was hidden will now be visible to students. Do " -"you want to proceed?" -msgstr "" - -#: cms/static/js/views/pages/container_subviews.js -#: common/static/bundles/js/factories/container.js -#: common/static/bundles/js/factories/library.js -msgid "Making Visible to Students" -msgstr "" - -#: cms/static/js/views/pages/paged_container.js -#: common/static/bundles/js/factories/library.js -msgid "Hide Previews" -msgstr "" - -#: cms/static/js/views/pages/paged_container.js -#: common/static/bundles/js/factories/library.js -msgid "Show Previews" -msgstr "" - -#. Translators: sample result: -#. "Showing 0-9 out of 25 total, filtered by Images, sorted by Date Added -#. ascending" -#: cms/static/js/views/paging_header.js -#: common/static/bundles/js/factories/library.js -msgid "" -"Showing {currentItemRange} out of {totalItemsCount}, filtered by " -"{assetType}, sorted by {sortName} ascending" -msgstr "" - -#. Translators: sample result: -#. "Showing 0-9 out of 25 total, filtered by Images, sorted by Date Added -#. descending" -#: cms/static/js/views/paging_header.js -#: common/static/bundles/js/factories/library.js -msgid "" -"Showing {currentItemRange} out of {totalItemsCount}, filtered by " -"{assetType}, sorted by {sortName} descending" -msgstr "" - -#. Translators: sample result: -#. "Showing 0-9 out of 25 total, sorted by Date Added ascending" -#: cms/static/js/views/paging_header.js -#: common/static/bundles/js/factories/library.js -msgid "" -"Showing {currentItemRange} out of {totalItemsCount}, sorted by {sortName} " -"ascending" -msgstr "" - -#. Translators: sample result: -#. "Showing 0-9 out of 25 total, sorted by Date Added descending" -#: cms/static/js/views/paging_header.js -#: common/static/bundles/js/factories/library.js -msgid "" -"Showing {currentItemRange} out of {totalItemsCount}, sorted by {sortName} " -"descending" -msgstr "" - -#. Translators: turns into "25 total" to be used in other sentences, e.g. -#. "Showing 0-9 out of 25 total". -#: cms/static/js/views/paging_header.js -#: common/static/bundles/js/factories/library.js -msgid "{totalItems} total" -msgstr "" - -#: cms/static/js/views/previous_video_upload.js -#: cms/static/js/views/video/translations_editor.js -#: cms/static/js/views/video_transcripts.js common/static/bundles/commons.js -#: lms/static/js/views/image_field.js -msgid "Removing" -msgstr "" - -#: cms/static/js/views/show_textbook.js -#: common/static/bundles/js/factories/textbooks.js -msgid "Delete “<%= name %>â€?" -msgstr "" - -#: cms/static/js/views/show_textbook.js -#: common/static/bundles/js/factories/textbooks.js -msgid "" -"Deleting a textbook cannot be undone and once deleted any reference to it in" -" your courseware's navigation will also be removed." -msgstr "" - -#: cms/static/js/views/tabs.js common/static/bundles/js/factories/edit_tabs.js -msgid "Delete Page Confirmation" -msgstr "" - -#: cms/static/js/views/tabs.js common/static/bundles/js/factories/edit_tabs.js -msgid "" -"Are you sure you want to delete this page? This action cannot be undone." -msgstr "" - -#: cms/static/js/views/uploads.js common/static/bundles/commons.js -#: cms/templates/js/metadata-file-uploader-item.underscore -#: cms/templates/js/video/metadata-translations-item.underscore -msgid "Upload" -msgstr "" - -#: cms/static/js/views/uploads.js common/static/bundles/commons.js -msgid "We're sorry, there was an error" -msgstr "" - -#: cms/static/js/views/utils/move_xblock_utils.js -#: common/static/bundles/js/factories/container.js -#: common/static/bundles/js/factories/library.js -msgid "Success! \"{displayName}\" has been moved." -msgstr "" - -#: cms/static/js/views/utils/move_xblock_utils.js -#: common/static/bundles/js/factories/container.js -#: common/static/bundles/js/factories/library.js -msgid "" -"Move cancelled. \"{sourceDisplayName}\" has been moved back to its original " -"location." -msgstr "" - -#: cms/static/js/views/utils/move_xblock_utils.js -#: common/static/bundles/js/factories/container.js -#: common/static/bundles/js/factories/library.js -msgid "Undo move" -msgstr "" - -#: cms/static/js/views/utils/move_xblock_utils.js -#: common/static/bundles/js/factories/container.js -#: common/static/bundles/js/factories/library.js -msgid "Take me to the new location" -msgstr "" - -#: cms/static/js/views/utils/xblock_utils.js common/static/bundles/commons.js -msgid "Duplicating" -msgstr "" - -#: cms/static/js/views/utils/xblock_utils.js common/static/bundles/commons.js -msgid "Undo moving" -msgstr "" - -#: cms/static/js/views/utils/xblock_utils.js common/static/bundles/commons.js -msgid "Moving" -msgstr "" - -#: cms/static/js/views/utils/xblock_utils.js common/static/bundles/commons.js -msgid "Deleting this {xblock_type} is permanent and cannot be undone." -msgstr "" - -#: cms/static/js/views/utils/xblock_utils.js common/static/bundles/commons.js -msgid "" -"Any content that has listed this content as a prerequisite will also have " -"access limitations removed." -msgstr "" - -#: cms/static/js/views/utils/xblock_utils.js common/static/bundles/commons.js -msgid "Delete this {xblock_type} (and prerequisite)?" -msgstr "" - -#: cms/static/js/views/utils/xblock_utils.js common/static/bundles/commons.js -msgid "Yes, delete this {xblock_type}" -msgstr "" - -#: cms/static/js/views/utils/xblock_utils.js common/static/bundles/commons.js -msgid "Delete this {xblock_type}?" -msgstr "" - -#: cms/static/js/views/utils/xblock_utils.js common/static/bundles/commons.js -msgid "section" -msgstr "" - -#: cms/static/js/views/utils/xblock_utils.js common/static/bundles/commons.js -msgid "subsection" -msgstr "" - -#: cms/static/js/views/utils/xblock_utils.js common/static/bundles/commons.js -#: cms/templates/js/container-access.underscore -msgid "unit" -msgstr "" - -#: cms/static/js/views/validation.js -#: lms/static/js/discussions_management/views/divided_discussions_course_wide.js -#: lms/static/js/discussions_management/views/divided_discussions_inline.js -#: lms/static/js/views/fields.js -msgid "Your changes have been saved." -msgstr "" - -#: cms/static/js/views/video/transcripts/file_uploader.js -#: common/static/bundles/commons.js -msgid "Please select a file in .srt format." -msgstr "" - -#: cms/static/js/views/video/transcripts/file_uploader.js -#: common/static/bundles/commons.js -msgid "Error: Uploading failed." -msgstr "" - -#: cms/static/js/views/video/transcripts/message_manager.js -#: common/static/bundles/commons.js -msgid "Error: Import failed." -msgstr "" - -#: cms/static/js/views/video/transcripts/message_manager.js -#: common/static/bundles/commons.js -msgid "Error: Replacing failed." -msgstr "" - -#: cms/static/js/views/video/transcripts/message_manager.js -#: common/static/bundles/commons.js -msgid "Error: Choosing failed." -msgstr "" - -#: cms/static/js/views/video/transcripts/metadata_videolist.js -#: common/static/bundles/commons.js -msgid "Error: Connection with server failed." -msgstr "" - -#: cms/static/js/views/video/transcripts/metadata_videolist.js -#: common/static/bundles/commons.js -msgid "Link types should be unique." -msgstr "" - -#: cms/static/js/views/video/transcripts/metadata_videolist.js -#: common/static/bundles/commons.js -msgid "Links should be unique." -msgstr "" - -#: cms/static/js/views/video/transcripts/metadata_videolist.js -#: common/static/bundles/commons.js -msgid "Incorrect url format." -msgstr "" - -#: cms/static/js/views/video/translations_editor.js -#: common/static/bundles/commons.js -msgid "" -"Sorry, there was an error parsing the subtitles that you uploaded. Please " -"check the format and try again." -msgstr "" - -#: cms/static/js/views/video/translations_editor.js -#: cms/static/js/views/video_transcripts.js common/static/bundles/commons.js -msgid "Are you sure you want to remove this transcript?" -msgstr "" - -#: cms/static/js/views/video/translations_editor.js -#: common/static/bundles/commons.js -msgid "" -"If you remove this transcript, the transcript will not be available for this" -" component." -msgstr "" - -#: cms/static/js/views/video/translations_editor.js -#: common/static/bundles/commons.js -msgid "Remove Transcript" -msgstr "" - -#: cms/static/js/views/video/translations_editor.js -#: common/static/bundles/commons.js -msgid "Upload translation" -msgstr "" - -#: cms/static/js/views/xblock_editor.js common/static/bundles/commons.js -msgid "Editor" -msgstr "" - -#: cms/static/js/views/xblock_editor.js common/static/bundles/commons.js -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore -msgid "Settings" -msgstr "" - -#: cms/static/js/views/xblock_outline.js -#: common/static/bundles/js/factories/container.js -#: common/static/bundles/js/factories/library.js -msgid "New {component_type}" -msgstr "" - -#. Translators: This message will be added to the front of messages of type -#. warning, -#. e.g. "Warning: this component has not been configured yet". -#: cms/static/js/views/xblock_validation.js -#: common/static/bundles/js/factories/xblock_validation.js -msgid "Warning" -msgstr "" - -#. Translators: This message will be added to the front of messages of type -#. error, -#. e.g. "Error: required field is missing". -#: cms/static/js/views/xblock_validation.js -#: common/static/bundles/js/factories/xblock_validation.js -#: common/static/common/js/discussion/utils.js -#: common/static/common/js/discussion/views/discussion_inline_view.js -#: common/static/common/js/discussion/views/discussion_thread_list_view.js -#: common/static/common/js/discussion/views/discussion_thread_view.js -#: common/static/common/js/discussion/views/response_comment_view.js -#: lms/static/js/student_account/views/FinishAuthView.js -#: lms/static/js/verify_student/views/payment_confirmation_step_view.js -#: lms/static/js/verify_student/views/step_view.js -#: lms/static/js/views/fields.js -msgid "Error" -msgstr "" - -#: common/lib/xmodule/xmodule/assets/library_content/public/js/library_content_edit.js -#: common/lib/xmodule/xmodule/js/public/js/library_content_edit.js -msgid "Updating with latest library content" -msgstr "" - -#: common/lib/xmodule/xmodule/assets/split_test/public/js/split_test_author_view.js -#: common/lib/xmodule/xmodule/js/public/js/split_test_author_view.js -msgid "Creating missing groups" -msgstr "" - -#: common/lib/xmodule/xmodule/assets/word_cloud/src/js/word_cloud_main.js -msgid "{start_strong}{total}{end_strong} words submitted in total." -msgstr "" - -#: common/lib/xmodule/xmodule/assets/word_cloud/src/js/word_cloud_main.js -msgid "text_word_{uniqueId} title_word_{uniqueId}" -msgstr "" - -#: common/lib/xmodule/xmodule/assets/word_cloud/src/js/word_cloud_main.js -msgid "title_word_{uniqueId}" -msgstr "" - -#: common/lib/xmodule/xmodule/assets/word_cloud/src/js/word_cloud_main.js -msgid "text_word_{uniqueId}" -msgstr "" - -#: common/lib/xmodule/xmodule/js/src/annotatable/display.js -#: common/static/bundles/AnnotatableModule.js -msgid "Show Annotations" -msgstr "" - -#: common/lib/xmodule/xmodule/js/src/annotatable/display.js -#: common/static/bundles/AnnotatableModule.js -msgid "Hide Annotations" -msgstr "" - -#: common/lib/xmodule/xmodule/js/src/annotatable/display.js -#: common/static/bundles/AnnotatableModule.js -msgid "Expand Instructions" -msgstr "" - -#: common/lib/xmodule/xmodule/js/src/annotatable/display.js -#: common/static/bundles/AnnotatableModule.js -msgid "Collapse Instructions" -msgstr "" - -#: common/lib/xmodule/xmodule/js/src/annotatable/display.js -#: common/static/bundles/AnnotatableModule.js -msgid "Commentary" -msgstr "" - -#: common/lib/xmodule/xmodule/js/src/annotatable/display.js -#: common/static/bundles/AnnotatableModule.js -msgid "Reply to Annotation" -msgstr "" - -#. Translators: %(num_points)s is the number of points possible (examples: 1, -#. 3, 10).; -#: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/static/bundles/CapaModule.js -msgid "%(num_points)s point possible (graded, results hidden)" -msgid_plural "%(num_points)s points possible (graded, results hidden)" -msgstr[0] "" -msgstr[1] "" - -#. Translators: %(num_points)s is the number of points possible (examples: 1, -#. 3, 10).; -#: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/static/bundles/CapaModule.js -msgid "%(num_points)s point possible (ungraded, results hidden)" -msgid_plural "%(num_points)s points possible (ungraded, results hidden)" -msgstr[0] "" -msgstr[1] "" - -#. Translators: %(num_points)s is the number of points possible (examples: 1, -#. 3, 10).; -#: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/static/bundles/CapaModule.js -msgid "%(num_points)s point possible (graded)" -msgid_plural "%(num_points)s points possible (graded)" -msgstr[0] "" -msgstr[1] "" - -#. Translators: %(num_points)s is the number of points possible (examples: 1, -#. 3, 10).; -#: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/static/bundles/CapaModule.js -msgid "%(num_points)s point possible (ungraded)" -msgid_plural "%(num_points)s points possible (ungraded)" -msgstr[0] "" -msgstr[1] "" - -#. Translators: %(earned)s is the number of points earned. %(possible)s is the -#. total number of points (examples: 0/1, 1/1, 2/3, 5/10). The total number of -#. points will always be at least 1. We pluralize based on the total number of -#. points (example: 0/1 point; 1/2 points); -#: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/static/bundles/CapaModule.js -msgid "%(earned)s/%(possible)s point (graded)" -msgid_plural "%(earned)s/%(possible)s points (graded)" -msgstr[0] "" -msgstr[1] "" - -#. Translators: %(earned)s is the number of points earned. %(possible)s is the -#. total number of points (examples: 0/1, 1/1, 2/3, 5/10). The total number of -#. points will always be at least 1. We pluralize based on the total number of -#. points (example: 0/1 point; 1/2 points); -#: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/static/bundles/CapaModule.js -msgid "%(earned)s/%(possible)s point (ungraded)" -msgid_plural "%(earned)s/%(possible)s points (ungraded)" -msgstr[0] "" -msgstr[1] "" - -#: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/static/bundles/CapaModule.js -msgid "The grading process is still running. Refresh the page to see updates." -msgstr "" - -#: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/static/bundles/CapaModule.js -msgid "Could not grade your answer. The submission was aborted." -msgstr "" - -#: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/static/bundles/CapaModule.js -msgid "" -"Submission aborted! Sorry, your browser does not support file uploads. If " -"you can, please use Chrome or Safari which have been verified to support " -"file uploads." -msgstr "" - -#: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/static/bundles/CapaModule.js -msgid "You submitted {filename}; only {allowedFiles} are allowed." -msgstr "" - -#: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/static/bundles/CapaModule.js -msgid "Your file {filename} is too large (max size: {maxSize}MB)." -msgstr "" - -#: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/static/bundles/CapaModule.js -msgid "You did not submit the required files: {requiredFiles}." -msgstr "" - -#: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/static/bundles/CapaModule.js -msgid "You did not select any files to submit." -msgstr "" - -#. Translators: This is only translated to allow for reordering of label and -#. associated status.; -#: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/static/bundles/CapaModule.js -msgid "{label}: {status}" -msgstr "" - -#: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/static/bundles/CapaModule.js -msgid "This problem has been reset." -msgstr "" - -#: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/static/bundles/CapaModule.js -msgid "unsubmitted" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Paragraph" -msgstr "" - -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Preformatted" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Heading 3" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Heading 4" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Heading 5" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Heading 6" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Add to Dictionary" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Align center" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Align left" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Align right" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Alignment" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Alternative source" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Anchor" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Anchors" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Author" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Background color" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js lms/static/js/Markdown.Editor.js -msgid "Blockquote" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Blocks" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Body" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Bold" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Border color" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Border" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Bottom" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Bullet list" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Caption" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Cell padding" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Cell properties" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Cell spacing" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Cell type" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Cell" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Center" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Circle" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Clear formatting" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#. Translators: this is a toolbar button tooltip from the raw HTML editor -#. displayed in the browser when a user needs to edit HTML -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#. Translators: this is a toolbar button tooltip from the raw HTML editor -#. displayed in the browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Code block" -msgstr "" - -#. #-#-#-#-# djangojs-partial.po (0.1a) #-#-#-#-# -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -#: lms/templates/instructor/instructor_dashboard_2/enrollment-code-lookup-links.underscore -msgid "Code" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Color" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Cols" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Column group" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Column" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Constrain proportions" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Copy row" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Copy" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Could not find the specified string." -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Custom color" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Custom..." -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Cut row" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Cut" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Decrease indent" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Default" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Delete column" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Delete row" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Delete table" -msgstr "" - -#. #-#-#-#-# djangojs-partial.po (0.1a) #-#-#-#-# -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -#: cms/templates/js/certificate-editor.underscore -#: cms/templates/js/group-configuration-editor.underscore -#: lms/templates/commerce/receipt.underscore -#: lms/templates/verify_student/payment_confirmation_step.underscore -msgid "Description" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Dimensions" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Disc" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Div" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Document properties" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Edit HTML" -msgstr "" - -#. #-#-#-#-# djangojs-partial.po (0.1a) #-#-#-#-# -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -#: cms/templates/js/certificate-details.underscore -#: cms/templates/js/course_info_handouts.underscore -#: cms/templates/js/course_info_update.underscore -#: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/partition-group-details.underscore -#: cms/templates/js/show-textbook.underscore -#: cms/templates/js/signatory-details.underscore -#: cms/templates/js/xblock-string-field-editor.underscore -#: common/static/common/templates/discussion/forum-action-edit.underscore -msgid "Edit" +#: common/lib/xmodule/xmodule/assets/word_cloud/src/js/word_cloud_main.js +msgid "title_word_{uniqueId}" msgstr "" -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Embed" +#: common/lib/xmodule/xmodule/assets/word_cloud/src/js/word_cloud_main.js +msgid "text_word_{uniqueId}" msgstr "" -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Emoticons" +#: common/lib/xmodule/xmodule/js/src/annotatable/display.js +msgid "Show Annotations" msgstr "" -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Encoding" +#: common/lib/xmodule/xmodule/js/src/annotatable/display.js +msgid "Hide Annotations" msgstr "" -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "File" +#: common/lib/xmodule/xmodule/js/src/annotatable/display.js +msgid "Expand Instructions" msgstr "" -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Find and replace" +#: common/lib/xmodule/xmodule/js/src/annotatable/display.js +msgid "Collapse Instructions" msgstr "" -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Find next" +#: common/lib/xmodule/xmodule/js/src/annotatable/display.js +msgid "Commentary" msgstr "" -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Find previous" +#: common/lib/xmodule/xmodule/js/src/annotatable/display.js +msgid "Reply to Annotation" msgstr "" -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Find" -msgstr "" +#. Translators: %(num_points)s is the number of points possible (examples: 1, +#. 3, 10).; +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "%(num_points)s point possible (graded, results hidden)" +msgid_plural "%(num_points)s points possible (graded, results hidden)" +msgstr[0] "" +msgstr[1] "" -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Finish" -msgstr "" +#. Translators: %(num_points)s is the number of points possible (examples: 1, +#. 3, 10).; +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "%(num_points)s point possible (ungraded, results hidden)" +msgid_plural "%(num_points)s points possible (ungraded, results hidden)" +msgstr[0] "" +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/static/bundles/commons.js -msgid "Font Family" -msgstr "" +#. Translators: %(num_points)s is the number of points possible (examples: 1, +#. 3, 10).; +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "%(num_points)s point possible (graded)" +msgid_plural "%(num_points)s points possible (graded)" +msgstr[0] "" +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/static/bundles/commons.js -msgid "Font Sizes" -msgstr "" +#. Translators: %(num_points)s is the number of points possible (examples: 1, +#. 3, 10).; +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "%(num_points)s point possible (ungraded)" +msgid_plural "%(num_points)s points possible (ungraded)" +msgstr[0] "" +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/static/bundles/commons.js -msgid "Footer" +#. Translators: %(earned)s is the number of points earned. %(possible)s is the +#. total number of points (examples: 0/1, 1/1, 2/3, 5/10). The total number of +#. points will always be at least 1. We pluralize based on the total number of +#. points (example: 0/1 point; 1/2 points); +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "%(earned)s/%(possible)s point (graded)" +msgid_plural "%(earned)s/%(possible)s points (graded)" +msgstr[0] "" +msgstr[1] "" + +#. Translators: %(earned)s is the number of points earned. %(possible)s is the +#. total number of points (examples: 0/1, 1/1, 2/3, 5/10). The total number of +#. points will always be at least 1. We pluralize based on the total number of +#. points (example: 0/1 point; 1/2 points); +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "%(earned)s/%(possible)s point (ungraded)" +msgid_plural "%(earned)s/%(possible)s points (ungraded)" +msgstr[0] "" +msgstr[1] "" + +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "The grading process is still running. Refresh the page to see updates." msgstr "" -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Format" +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "Could not grade your answer. The submission was aborted." msgstr "" -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Formats" +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "" +"Submission aborted! Sorry, your browser does not support file uploads. If " +"you can, please use Chrome or Safari which have been verified to support " +"file uploads." msgstr "" -#. #-#-#-#-# djangojs-partial.po (0.1a) #-#-#-#-# -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -#: common/static/common/templates/image-modal.underscore -msgid "Fullscreen" +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "You submitted {filename}; only {allowedFiles} are allowed." msgstr "" -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "General" +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "Your file {filename} is too large (max size: {maxSize}MB)." msgstr "" -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "H Align" +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "You did not submit the required files: {requiredFiles}." msgstr "" -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Header 1" +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "You did not select any files to submit." msgstr "" -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Header 2" +#. Translators: This is only translated to allow for reordering of label and +#. associated status.; +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "{label}: {status}" msgstr "" -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Header 3" +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "This problem has been reset." msgstr "" -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Header 4" +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "unsubmitted" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Header 5" +msgid "Paragraph" msgstr "" -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Header 6" +msgid "Preformatted" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Header cell" +msgid "Heading 3" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/static/bundles/CapaDescriptor.js common/static/bundles/commons.js -msgid "Header" +msgid "Heading 4" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Headers" +msgid "Heading 5" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Heading 1" +msgid "Heading 6" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Heading 2" +msgid "Add to Dictionary" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Headings" +msgid "Align center" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Height" +msgid "Align left" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Horizontal line" +msgid "Align right" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Horizontal space" +msgid "Alignment" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "HTML source code" +msgid "Alternative source" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Ignore all" +msgid "Anchor" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Ignore" +msgid "Anchors" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Image description" +msgid "Author" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Increase indent" +msgid "Background color" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Inline" +#: lms/static/js/Markdown.Editor.js +msgid "Blockquote" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Insert column after" +msgid "Blocks" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Insert column before" +msgid "Body" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Insert date/time" +msgid "Bold" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Insert image" +msgid "Border color" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Insert link" +msgid "Border" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Insert row after" +msgid "Bottom" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Insert row before" +msgid "Bullet list" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Insert table" +msgid "Caption" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Insert template" +msgid "Cell padding" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Insert video" +msgid "Cell properties" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Insert" +msgid "Cell spacing" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Insert/edit image" +msgid "Cell type" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Insert/edit link" +msgid "Cell" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Insert/edit video" +msgid "Center" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Italic" +msgid "Circle" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Justify" +msgid "Clear formatting" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML +#. Translators: this is a toolbar button tooltip from the raw HTML editor +#. displayed in the browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Keywords" +msgid "Code block" msgstr "" +#. #-#-#-#-# djangojs-partial.po (0.1a) #-#-#-#-# #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Left to right" +#: lms/templates/instructor/instructor_dashboard_2/enrollment-code-lookup-links.underscore +msgid "Code" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Left" +msgid "Color" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Lower Alpha" +msgid "Cols" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Lower Greek" +msgid "Column group" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Lower Roman" +msgid "Column" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Match case" +msgid "Constrain proportions" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Merge cells" +msgid "Copy row" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Middle" +msgid "Copy" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "New document" +msgid "Could not find the specified string." msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "New window" +msgid "Custom color" msgstr "" -#. #-#-#-#-# djangojs-partial.po (0.1a) #-#-#-#-# #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js cms/templates/js/paging-header.underscore -#: common/static/common/templates/components/paging-footer.underscore -#: common/static/common/templates/discussion/pagination.underscore -msgid "Next" +msgid "Custom..." msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "No color" +msgid "Cut row" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Nonbreaking space" +msgid "Cut" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Numbered list" +msgid "Decrease indent" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Page break" +msgid "Default" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Paste as text" +msgid "Delete column" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "" -"Paste is now in plain text mode. Contents will now be pasted as plain text " -"until you toggle this option off." +msgid "Delete row" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Paste row after" +msgid "Delete table" msgstr "" +#. #-#-#-#-# djangojs-partial.po (0.1a) #-#-#-#-# #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Paste row before" +#: cms/templates/js/certificate-editor.underscore +#: cms/templates/js/group-configuration-editor.underscore +#: lms/templates/commerce/receipt.underscore +#: lms/templates/verify_student/payment_confirmation_step.underscore +msgid "Description" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Paste your embed code below:" +msgid "Dimensions" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Paste" +msgid "Disc" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Poster" +msgid "Div" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Pre" +msgid "Document properties" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Prev" +msgid "Edit HTML" msgstr "" #. #-#-#-#-# djangojs-partial.po (0.1a) #-#-#-#-# #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js lms/static/js/customwmd.js -#: cms/templates/js/asset-library.underscore -msgid "Preview" +#: cms/templates/js/certificate-details.underscore +#: cms/templates/js/course_info_handouts.underscore +#: cms/templates/js/course_info_update.underscore +#: cms/templates/js/group-configuration-details.underscore +#: cms/templates/js/partition-group-details.underscore +#: cms/templates/js/show-textbook.underscore +#: cms/templates/js/signatory-details.underscore +#: cms/templates/js/xblock-string-field-editor.underscore +#: common/static/common/templates/discussion/forum-action-edit.underscore +msgid "Edit" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Print" +msgid "Embed" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Redo" +msgid "Emoticons" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Remove link" +msgid "Encoding" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Replace all" +msgid "File" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Replace with" +msgid "Find and replace" msgstr "" -#. #-#-#-#-# djangojs-partial.po (0.1a) #-#-#-#-# #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -#: cms/templates/js/metadata-file-uploader-item.underscore -#: cms/templates/js/video-transcripts.underscore -#: cms/templates/js/video/metadata-translations-item.underscore -msgid "Replace" +msgid "Find next" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Restore last draft" +msgid "Find previous" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "" -"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press " -"ALT-0 for help" +msgid "Find" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Right to left" +msgid "Finish" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Right" +msgid "Font Family" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Robots" +msgid "Font Sizes" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Row group" +msgid "Footer" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Row properties" +msgid "Format" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Row type" +msgid "Formats" msgstr "" +#. #-#-#-#-# djangojs-partial.po (0.1a) #-#-#-#-# #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Row" +#: common/static/common/templates/image-modal.underscore +msgid "Fullscreen" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Rows" +msgid "General" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Scope" +msgid "H Align" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Select all" +msgid "Header 1" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Show blocks" +msgid "Header 2" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Show invisible characters" +msgid "Header 3" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Source code" +msgid "Header 4" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Source" +msgid "Header 5" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Special character" +msgid "Header 6" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Spellcheck" +msgid "Header cell" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Split cell" +#: common/lib/xmodule/xmodule/js/src/problem/edit.js +msgid "Header" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Square" +msgid "Headers" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Start search" +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/static/bundles/commons.js -msgid "Strikethrough" +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/static/bundles/commons.js -msgid "Style" +msgid "Headings" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Subscript" +msgid "Height" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Superscript" +msgid "Horizontal line" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Table properties" +msgid "Horizontal space" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Table" +msgid "HTML source code" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Target" +msgid "Ignore all" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Templates" +msgid "Ignore" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Text color" +msgid "Image description" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Text to display" +msgid "Increase indent" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "" -"The URL you entered seems to be an email address. Do you want to add the " -"required mailto: prefix?" +msgid "Inline" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "" -"The URL you entered seems to be an external link. Do you want to add the " -"required http:// prefix?" +msgid "Insert column after" msgstr "" -#. #-#-#-#-# djangojs-partial.po (0.1a) #-#-#-#-# #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -#: cms/templates/js/course-instructor-details.underscore -#: cms/templates/js/signatory-details.underscore -#: common/static/common/templates/discussion/new-post.underscore -#: common/static/common/templates/discussion/thread-edit.underscore -msgid "Title" +msgid "Insert column before" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Tools" +msgid "Insert date/time" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Top" +msgid "Insert image" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Underline" +msgid "Insert link" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Undo" +msgid "Insert row after" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Upper Alpha" +msgid "Insert row before" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Upper Roman" +msgid "Insert table" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Url" +msgid "Insert template" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "V Align" +msgid "Insert video" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Vertical space" +msgid "Insert" msgstr "" -#. #-#-#-#-# djangojs-partial.po (0.1a) #-#-#-#-# #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -#: openedx/features/course_bookmarks/static/course_bookmarks/templates/bookmarks-list.underscore -#: openedx/features/course_search/static/course_search/templates/course_search_item.underscore -#: openedx/features/course_search/static/course_search/templates/dashboard_search_item.underscore -msgid "View" +msgid "Insert/edit image" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Visual aids" +msgid "Insert/edit link" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Whole words" +msgid "Insert/edit video" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Width" +msgid "Italic" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Words: {0}" +msgid "Justify" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "You have unsaved changes are you sure you want to navigate away?" +msgid "Keywords" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "" -"Your browser doesn't support direct access to the clipboard. Please use the " -"Ctrl+X/C/V keyboard shortcuts instead." +msgid "Left to right" msgstr "" -#. Translators: this is a toolbar button tooltip from the raw HTML editor -#. displayed in the browser when a user needs to edit HTML +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Insert/Edit Image" -msgstr "" - -#: common/lib/xmodule/xmodule/js/src/lti/lti.js -#: common/static/bundles/LTIModule.js -msgid "" -"Click OK to have your username and e-mail address sent to a 3rd party application.\n" -"\n" -"Click Cancel to return to this page without sending your information." -msgstr "" - -#: common/lib/xmodule/xmodule/js/src/lti/lti.js -#: common/static/bundles/LTIModule.js -msgid "" -"Click OK to have your username sent to a 3rd party application.\n" -"\n" -"Click Cancel to return to this page without sending your information." -msgstr "" - -#: common/lib/xmodule/xmodule/js/src/lti/lti.js -#: common/static/bundles/LTIModule.js -msgid "" -"Click OK to have your e-mail address sent to a 3rd party application.\n" -"\n" -"Click Cancel to return to this page without sending your information." -msgstr "" - -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/static/bundles/CapaDescriptor.js -msgid "incorrect" -msgstr "" - -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/static/bundles/CapaDescriptor.js -msgid "correct" -msgstr "" - -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/static/bundles/CapaDescriptor.js -msgid "answer" -msgstr "" - -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/static/bundles/CapaDescriptor.js -msgid "Short explanation" -msgstr "" - -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/static/bundles/CapaDescriptor.js -msgid "" -"If you use the Advanced Editor, this problem will be converted to XML and you will not be able to return to the Simple Editor Interface.\n" -"\n" -"Proceed to the Advanced Editor and convert this problem to XML?" +msgid "Left" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/static/bundles/CapaDescriptor.js -msgid "Explanation" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Lower Alpha" msgstr "" -#: common/lib/xmodule/xmodule/js/src/sequence/display.js -#: common/static/bundles/commons.js -msgid "" -"Sequence error! Cannot navigate to %(tab_name)s in the current " -"SequenceModule. Please contact the course staff." +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Lower Greek" msgstr "" -#: common/lib/xmodule/xmodule/js/src/sequence/display.js -#: common/static/bundles/VerticalStudentView.js -#: common/static/bundles/commons.js -#: openedx/features/course_bookmarks/static/course_bookmarks/js/views/bookmark_button.js -msgid "Bookmarked" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Lower Roman" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js -#: common/lib/xmodule/xmodule/js/src/video/09_play_pause_control.js -#: common/lib/xmodule/xmodule/js/src/video/09_play_skip_control.js -#: common/static/bundles/VideoModule.js -msgid "Play" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Match case" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js -#: common/lib/xmodule/xmodule/js/src/video/09_play_pause_control.js -#: common/static/bundles/VideoModule.js -msgid "Pause" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Merge cells" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js -#: common/static/bundles/VideoModule.js -msgid "Mute" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Middle" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js -#: common/static/bundles/VideoModule.js -msgid "Unmute" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "New document" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js -#: common/lib/xmodule/xmodule/js/src/video/04_video_full_screen.js -#: common/static/bundles/VideoModule.js -msgid "Exit full browser" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "New window" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js -#: common/lib/xmodule/xmodule/js/src/video/04_video_full_screen.js -#: common/static/bundles/VideoModule.js -msgid "Fill browser" +#. #-#-#-#-# djangojs-partial.po (0.1a) #-#-#-#-# +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +#: cms/templates/js/paging-header.underscore +#: common/static/common/templates/components/paging-footer.underscore +#: common/static/common/templates/discussion/pagination.underscore +msgid "Next" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js -#: common/lib/xmodule/xmodule/js/src/video/08_video_speed_control.js -#: common/static/bundles/VideoModule.js -msgid "Speed" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "No color" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js -#: common/lib/xmodule/xmodule/js/src/video/08_video_auto_advance_control.js -#: common/static/bundles/VideoModule.js -msgid "Auto-advance" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Nonbreaking space" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js -#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js -#: common/static/bundles/VideoModule.js -msgid "Volume" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Numbered list" msgstr "" -#. Translators: Volume level equals 0%. -#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js -#: common/static/bundles/VideoModule.js -msgid "Muted" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Page break" msgstr "" -#. Translators: Volume level in range ]0,20]% -#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js -#: common/static/bundles/VideoModule.js -msgid "Very low" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Paste as text" msgstr "" -#. Translators: Volume level in range ]20,40]% -#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js -#: common/static/bundles/VideoModule.js -msgid "Low" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "" +"Paste is now in plain text mode. Contents will now be pasted as plain text " +"until you toggle this option off." msgstr "" -#. Translators: Volume level in range ]40,60]% -#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js -#: common/static/bundles/VideoModule.js -msgid "Average" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Paste row after" msgstr "" -#. Translators: Volume level in range ]60,80]% -#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js -#: common/static/bundles/VideoModule.js -msgid "Loud" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Paste row before" msgstr "" -#. Translators: Volume level in range ]80,99]% -#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js -#: common/static/bundles/VideoModule.js -msgid "Very loud" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Paste your embed code below:" msgstr "" -#. Translators: Volume level equals 100%. -#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js -#: common/static/bundles/VideoModule.js -msgid "Maximum" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Paste" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/02_html5_video.js -#: common/static/bundles/VideoModule.js -msgid "This browser cannot play .mp4, .ogg, or .webm files." +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Poster" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/02_html5_video.js -#: common/static/bundles/VideoModule.js -msgid "Try using a different browser, such as Google Chrome." +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Pre" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/05_video_quality_control.js -#: common/static/bundles/VideoModule.js -msgid "High Definition" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Prev" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/05_video_quality_control.js -#: common/static/bundles/VideoModule.js -msgid "off" +#. #-#-#-#-# djangojs-partial.po (0.1a) #-#-#-#-# +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js lms/static/js/customwmd.js +#: cms/templates/js/asset-library.underscore +msgid "Preview" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/05_video_quality_control.js -#: common/static/bundles/VideoModule.js -msgid "on" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Print" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js -#: common/static/bundles/VideoModule.js -msgid "Video position. Press space to toggle playback" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Redo" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js -#: common/static/bundles/VideoModule.js -msgid "Video ended" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Remove link" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js -#: common/static/bundles/VideoModule.js -msgid "Video position" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Replace all" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js -#: common/static/bundles/VideoModule.js -msgid "%(value)s hour" -msgid_plural "%(value)s hours" -msgstr[0] "" -msgstr[1] "" - -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js -#: common/static/bundles/VideoModule.js -msgid "%(value)s minute" -msgid_plural "%(value)s minutes" -msgstr[0] "" -msgstr[1] "" - -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js -#: common/static/bundles/VideoModule.js -msgid "%(value)s second" -msgid_plural "%(value)s seconds" -msgstr[0] "" -msgstr[1] "" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Replace with" +msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js -#: common/static/bundles/VideoModule.js -msgid "" -"Click on this button to mute or unmute this video or press UP or DOWN " -"buttons to increase or decrease volume level." +#. #-#-#-#-# djangojs-partial.po (0.1a) #-#-#-#-# +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +#: cms/templates/js/metadata-file-uploader-item.underscore +#: cms/templates/js/video-transcripts.underscore +#: cms/templates/js/video/metadata-translations-item.underscore +msgid "Replace" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js -#: common/static/bundles/VideoModule.js -msgid "Adjust video volume" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Restore last draft" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/08_video_speed_control.js -#: common/static/bundles/VideoModule.js +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "" -"Press UP to enter the speed menu then use the UP and DOWN arrow keys to " -"navigate the different speeds, then press ENTER to change to the selected " -"speed." +"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press " +"ALT-0 for help" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/08_video_speed_control.js -#: common/static/bundles/VideoModule.js -msgid "Adjust video speed" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Right to left" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/08_video_speed_control.js -#: common/static/bundles/VideoModule.js -msgid "Video speed: " +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Right" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/09_play_skip_control.js -#: common/static/bundles/VideoModule.js -msgid "Skip" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Robots" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/09_poster.js -#: common/static/bundles/VideoModule.js -msgid "Play video" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Row group" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/09_skip_control.js -#: common/static/bundles/VideoModule.js -msgid "Do not show again" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Row properties" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js -#: common/static/bundles/VideoModule.js -msgid "Open language menu" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Row type" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js -#: common/static/bundles/VideoModule.js -msgid "Transcript will be displayed when you start playing the video." +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Row" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js -#: common/static/bundles/VideoModule.js -msgid "" -"Activating a link in this group will skip to the corresponding point in the " -"video." +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Rows" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js -#: common/static/bundles/VideoModule.js -msgid "Video transcript" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Scope" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js -#: common/static/bundles/VideoModule.js -msgid "Start of transcript. Skip to the end." +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Select all" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js -#: common/static/bundles/VideoModule.js -msgid "End of transcript. Skip to the start." +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Show blocks" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js -#: common/static/bundles/VideoModule.js -msgid "" -"Press the UP arrow key to enter the language menu then use UP and DOWN arrow" -" keys to navigate language options. Press ENTER to change to the selected " -"language." +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Show invisible characters" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js -#: common/static/bundles/VideoModule.js -msgid "Hide closed captions" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Source code" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js -#: common/static/bundles/VideoModule.js -msgid "(Caption will be displayed when you start playing the video.)" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Source" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js -#: common/static/bundles/VideoModule.js -msgid "Turn on closed captioning" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Special character" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js -#: common/static/bundles/VideoModule.js -msgid "Turn on transcripts" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Spellcheck" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js -#: common/static/bundles/VideoModule.js -msgid "Turn off transcripts" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Split cell" msgstr "" -#: common/static/bundles/CourseGoals.js -#: openedx/features/course_experience/static/course_experience/js/CourseGoals.js -msgid "Thank you for setting your course goal to {goal}!" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Square" msgstr "" -#: common/static/bundles/CourseGoals.js -msgid "" -"There was an error in setting your goal, please reload the page and try " -"again." +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Start search" msgstr "" -#: common/static/bundles/CourseHome.js -#: openedx/features/course_experience/static/course_experience/js/CourseHome.js -msgid "You have successfully updated your goal." +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Strikethrough" msgstr "" -#: common/static/bundles/CourseHome.js -#: openedx/features/course_experience/static/course_experience/js/CourseHome.js -msgid "There was an error updating your goal." +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Style" msgstr "" -#: common/static/bundles/CourseOutline.js -#: openedx/features/course_experience/static/course_experience/js/CourseOutline.js -#: lms/templates/ccx/schedule.underscore -msgid "Expand All" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Subscript" msgstr "" -#: common/static/bundles/CourseOutline.js -#: openedx/features/course_experience/static/course_experience/js/CourseOutline.js -#: lms/templates/ccx/schedule.underscore -msgid "Collapse All" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Superscript" msgstr "" -#: common/static/bundles/EntitlementFactory.js -#: common/static/bundles/ProgramDetailsFactory.js -#: lms/static/js/learner_dashboard/models/course_card_model.js -msgid "(Self-paced) Starts {start}" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Table properties" msgstr "" -#: common/static/bundles/EntitlementFactory.js -#: common/static/bundles/ProgramDetailsFactory.js -#: lms/static/js/learner_dashboard/models/course_card_model.js -msgid "(Self-paced) Started {start}" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Table" msgstr "" -#: common/static/bundles/EntitlementFactory.js -#: common/static/bundles/ProgramDetailsFactory.js -#: lms/static/js/learner_dashboard/models/course_card_model.js -msgid "(Self-paced) Ends {end}" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Target" msgstr "" -#: common/static/bundles/EntitlementFactory.js -#: common/static/bundles/ProgramDetailsFactory.js -#: lms/static/js/learner_dashboard/models/course_card_model.js -msgid "(Self-paced) Ended {end}" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Templates" msgstr "" -#: common/static/bundles/EntitlementFactory.js -#: common/static/bundles/ProgramDetailsFactory.js -#: lms/static/js/learner_dashboard/models/course_card_model.js -msgid "Starts {start}" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Text color" msgstr "" -#: common/static/bundles/EntitlementFactory.js -#: common/static/bundles/ProgramDetailsFactory.js -#: lms/static/js/learner_dashboard/models/course_card_model.js -msgid "Started {start}" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Text to display" msgstr "" -#: common/static/bundles/EntitlementFactory.js -#: common/static/bundles/ProgramDetailsFactory.js -#: lms/static/js/learner_dashboard/models/course_card_model.js -msgid "Ends {end}" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "" +"The URL you entered seems to be an email address. Do you want to add the " +"required mailto: prefix?" msgstr "" -#: common/static/bundles/EntitlementFactory.js -#: common/static/bundles/ProgramDetailsFactory.js -#: lms/static/js/learner_dashboard/views/course_entitlement_view.js -msgid "You must select a session to access the course." +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "" +"The URL you entered seems to be an external link. Do you want to add the " +"required http:// prefix?" msgstr "" -#: common/static/bundles/EntitlementFactory.js -#: common/static/bundles/ProgramDetailsFactory.js -#: lms/static/js/learner_dashboard/views/course_entitlement_view.js -msgid "There was an error. Please reload the page and try again." +#. #-#-#-#-# djangojs-partial.po (0.1a) #-#-#-#-# +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +#: cms/templates/js/course-instructor-details.underscore +#: cms/templates/js/signatory-details.underscore +#: common/static/common/templates/discussion/new-post.underscore +#: common/static/common/templates/discussion/thread-edit.underscore +msgid "Title" msgstr "" -#: common/static/bundles/EntitlementFactory.js -#: common/static/bundles/ProgramDetailsFactory.js -#: lms/static/js/learner_dashboard/views/course_entitlement_view.js -#: lms/templates/learner_dashboard/course_entitlement.underscore -msgid "Change Session" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Tools" msgstr "" -#: common/static/bundles/EntitlementFactory.js -#: common/static/bundles/ProgramDetailsFactory.js -#: lms/static/js/learner_dashboard/views/course_entitlement_view.js -#: lms/templates/learner_dashboard/course_entitlement.underscore -msgid "Select Session" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Top" msgstr "" -#: common/static/bundles/EntitlementFactory.js -#: common/static/bundles/ProgramDetailsFactory.js -#: lms/static/js/learner_dashboard/views/course_entitlement_view.js -msgid "Leave Current Session" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Underline" msgstr "" -#: common/static/bundles/EntitlementFactory.js -#: common/static/bundles/ProgramDetailsFactory.js -#: lms/static/js/learner_dashboard/views/course_entitlement_view.js -msgid "Are you sure you want to select this session?" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Undo" msgstr "" -#: common/static/bundles/EntitlementFactory.js -#: common/static/bundles/ProgramDetailsFactory.js -#: lms/static/js/learner_dashboard/views/course_entitlement_view.js -msgid "Are you sure you want to change to a different session?" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Upper Alpha" msgstr "" -#: common/static/bundles/EntitlementFactory.js -#: common/static/bundles/ProgramDetailsFactory.js -#: lms/static/js/learner_dashboard/views/course_entitlement_view.js -msgid "Any course progress or grades from your current session will be lost." +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Upper Roman" msgstr "" -#: common/static/bundles/EntitlementFactory.js -#: common/static/bundles/ProgramDetailsFactory.js -#: lms/static/js/learner_dashboard/views/course_entitlement_view.js -msgid "Are you sure that you want to leave this session?" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Url" msgstr "" -#: common/static/bundles/EntitlementUnenrollmentFactory.js -#: lms/static/js/learner_dashboard/views/entitlement_unenrollment_view.js -msgid "" -"Your unenrollment request could not be processed. Please try again later." +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "V Align" msgstr "" -#: common/static/bundles/EntitlementUnenrollmentFactory.js -#: lms/static/js/learner_dashboard/views/entitlement_unenrollment_view.js -msgid "" -"Are you sure you want to unenroll from {courseName} ({courseNumber})? You " -"will be refunded the amount you paid." +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Vertical space" msgstr "" -#: common/static/bundles/PasswordResetConfirmation.js -#: lms/static/js/student_account/components/PasswordResetConfirmation.jsx -msgid "Enter and confirm your new password." +#. #-#-#-#-# djangojs-partial.po (0.1a) #-#-#-#-# +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +#: openedx/features/course_bookmarks/static/course_bookmarks/templates/bookmarks-list.underscore +#: openedx/features/course_search/static/course_search/templates/course_search_item.underscore +#: openedx/features/course_search/static/course_search/templates/dashboard_search_item.underscore +msgid "View" msgstr "" -#: common/static/bundles/PasswordResetConfirmation.js -#: lms/static/js/student_account/components/PasswordResetConfirmation.jsx -msgid "New Password" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Visual aids" msgstr "" -#: common/static/bundles/PasswordResetConfirmation.js -#: lms/static/js/student_account/components/PasswordResetConfirmation.jsx -msgid "Confirm Password" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Whole words" msgstr "" -#: common/static/bundles/PasswordResetConfirmation.js -#: lms/static/js/student_account/components/PasswordResetConfirmation.jsx -msgid "Passwords do not match." +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Width" msgstr "" -#: common/static/bundles/PasswordResetConfirmation.js -#: lms/static/js/student_account/components/PasswordResetConfirmation.jsx -msgid "Reset My Password" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Words: {0}" msgstr "" -#: common/static/bundles/PasswordResetConfirmation.js -#: lms/static/js/student_account/components/PasswordResetConfirmation.jsx -#: lms/static/js/student_account/views/account_settings_factory.js -msgid "Reset Your Password" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "You have unsaved changes are you sure you want to navigate away?" msgstr "" -#: common/static/bundles/PasswordResetConfirmation.js -#: lms/static/js/student_account/components/PasswordResetInput.jsx -msgid "Error: " +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "" +"Your browser doesn't support direct access to the clipboard. Please use the " +"Ctrl+X/C/V keyboard shortcuts instead." msgstr "" -#: common/static/bundles/ProblemBrowser.js -#: common/static/common/js/components/BlockBrowser/components/BlockBrowser/BlockBrowser.jsx -#: cms/templates/js/move-xblock-list.underscore -msgid "View child items" +#. Translators: this is a toolbar button tooltip from the raw HTML editor +#. displayed in the browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Insert/Edit Image" msgstr "" -#: common/static/bundles/ProblemBrowser.js -#: common/static/common/js/components/BlockBrowser/components/BlockBrowser/BlockBrowser.jsx -msgid "Navigate up" +#: common/lib/xmodule/xmodule/js/src/lti/lti.js +msgid "" +"Click OK to have your username and e-mail address sent to a 3rd party application.\n" +"\n" +"Click Cancel to return to this page without sending your information." msgstr "" -#: common/static/bundles/ProblemBrowser.js -#: common/static/common/js/components/BlockBrowser/components/BlockBrowser/BlockBrowser.jsx -msgid "Browsing" +#: common/lib/xmodule/xmodule/js/src/lti/lti.js +msgid "" +"Click OK to have your username sent to a 3rd party application.\n" +"\n" +"Click Cancel to return to this page without sending your information." msgstr "" -#: common/static/bundles/ProblemBrowser.js -#: common/static/common/js/components/BlockBrowser/components/BlockBrowser/BlockBrowser.jsx -msgid "Select" +#: common/lib/xmodule/xmodule/js/src/lti/lti.js +msgid "" +"Click OK to have your e-mail address sent to a 3rd party application.\n" +"\n" +"Click Cancel to return to this page without sending your information." msgstr "" -#: common/static/bundles/ProblemBrowser.js -#: lms/djangoapps/instructor/static/instructor/ProblemBrowser/components/Main/Main.jsx -msgid "Select a section or problem" +#: common/lib/xmodule/xmodule/js/src/problem/edit.js +msgid "incorrect" msgstr "" -#: common/static/bundles/ProgramDetailsFactory.js -#: lms/static/js/learner_dashboard/views/program_details_sidebar_view.js -msgid "{type} Progress" +#: common/lib/xmodule/xmodule/js/src/problem/edit.js +msgid "correct" msgstr "" -#: common/static/bundles/ProgramDetailsFactory.js -#: lms/static/js/learner_dashboard/views/program_details_sidebar_view.js -msgid "Earned Certificates" +#: common/lib/xmodule/xmodule/js/src/problem/edit.js +msgid "answer" msgstr "" -#: common/static/bundles/ProgramDetailsFactory.js -#: lms/static/js/learner_dashboard/views/program_details_view.js -msgid "Enrolled" +#: common/lib/xmodule/xmodule/js/src/problem/edit.js +msgid "Short explanation" msgstr "" -#: common/static/bundles/SingleSupportForm.js -#: lms/djangoapps/support/static/support/jsx/errors_list.jsx -msgid "Please fix the following errors:" +#: common/lib/xmodule/xmodule/js/src/problem/edit.js +msgid "" +"If you use the Advanced Editor, this problem will be converted to XML and you will not be able to return to the Simple Editor Interface.\n" +"\n" +"Proceed to the Advanced Editor and convert this problem to XML?" msgstr "" -#: common/static/bundles/SingleSupportForm.js -#: lms/djangoapps/support/static/support/jsx/file_upload.jsx -msgid "Files that you upload must be smaller than 5MB in size." +#: common/lib/xmodule/xmodule/js/src/problem/edit.js +msgid "Explanation" msgstr "" -#: common/static/bundles/SingleSupportForm.js -#: lms/djangoapps/support/static/support/jsx/file_upload.jsx +#: common/lib/xmodule/xmodule/js/src/sequence/display.js msgid "" -"Files that you upload must be PDFs or image files in .gif, .jpg, .jpeg, or " -".png format." +"Sequence error! Cannot navigate to %(tab_name)s in the current " +"SequenceModule. Please contact the course staff." msgstr "" -#: common/static/bundles/SingleSupportForm.js -#: lms/djangoapps/support/static/support/jsx/file_upload.jsx -#: lms/djangoapps/support/static/support/jsx/single_support_form.jsx -msgid "Something went wrong. Please try again later." +#: common/lib/xmodule/xmodule/js/src/sequence/display.js +#: openedx/features/course_bookmarks/static/course_bookmarks/js/views/bookmark_button.js +msgid "Bookmarked" msgstr "" -#: common/static/bundles/SingleSupportForm.js -#: lms/djangoapps/support/static/support/jsx/file_upload.jsx -msgid "Add Attachment" +#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js +#: common/lib/xmodule/xmodule/js/src/video/09_play_pause_control.js +#: common/lib/xmodule/xmodule/js/src/video/09_play_skip_control.js +msgid "Play" msgstr "" -#: common/static/bundles/SingleSupportForm.js -#: lms/djangoapps/support/static/support/jsx/file_upload.jsx -msgid "(Optional)" +#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js +#: common/lib/xmodule/xmodule/js/src/video/09_play_pause_control.js +msgid "Pause" msgstr "" -#: common/static/bundles/SingleSupportForm.js -#: lms/djangoapps/support/static/support/jsx/file_upload.jsx -msgid "Remove file" +#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js +msgid "Mute" msgstr "" -#: common/static/bundles/SingleSupportForm.js -#: lms/djangoapps/support/static/support/jsx/logged_in_user.jsx -msgid "Course Name" +#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js +msgid "Unmute" msgstr "" -#: common/static/bundles/SingleSupportForm.js -#: lms/djangoapps/support/static/support/jsx/logged_in_user.jsx -msgid "Not specific to a course" +#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js +#: common/lib/xmodule/xmodule/js/src/video/04_video_full_screen.js +msgid "Exit full browser" msgstr "" -#: common/static/bundles/SingleSupportForm.js -#: lms/djangoapps/support/static/support/jsx/logged_in_user.jsx -msgid "What can we help you with, {username}?" +#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js +#: common/lib/xmodule/xmodule/js/src/video/04_video_full_screen.js +msgid "Fill browser" msgstr "" -#: common/static/bundles/SingleSupportForm.js -#: lms/djangoapps/support/static/support/jsx/logged_in_user.jsx -#: lms/static/js/instructor_dashboard/util.js -msgid "Subject" +#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js +#: common/lib/xmodule/xmodule/js/src/video/08_video_speed_control.js +msgid "Speed" msgstr "" -#: common/static/bundles/SingleSupportForm.js -#: lms/djangoapps/support/static/support/jsx/logged_in_user.jsx -msgid "Details" +#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js +#: common/lib/xmodule/xmodule/js/src/video/08_video_auto_advance_control.js +msgid "Auto-advance" msgstr "" -#: common/static/bundles/SingleSupportForm.js -#: lms/djangoapps/support/static/support/jsx/logged_in_user.jsx -msgid "The more you tell us, the more quickly and helpfully we can respond!" +#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js +#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js +msgid "Volume" msgstr "" -#: common/static/bundles/SingleSupportForm.js -#: lms/djangoapps/support/static/support/jsx/logged_in_user.jsx -#: common/static/common/templates/discussion/new-post.underscore -#: common/static/common/templates/discussion/thread-response.underscore -#: common/static/common/templates/discussion/thread.underscore -#: lms/templates/verify_student/incourse_reverify.underscore -msgid "Submit" +#. Translators: Volume level equals 0%. +#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js +msgid "Muted" msgstr "" -#: common/static/bundles/SingleSupportForm.js -#: lms/djangoapps/support/static/support/jsx/logged_out_user.jsx -msgid "Sign in to {platform} so we can help you better." +#. Translators: Volume level in range ]0,20]% +#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js +msgid "Very low" msgstr "" -#: common/static/bundles/SingleSupportForm.js -#: lms/templates/student_account/hinted_login.underscore -#: lms/templates/student_account/login.underscore -msgid "Sign in" +#. Translators: Volume level in range ]20,40]% +#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js +msgid "Low" msgstr "" -#: common/static/bundles/SingleSupportForm.js -msgid "Create an {platform} account" +#. Translators: Volume level in range ]40,60]% +#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js +msgid "Average" msgstr "" -#: common/static/bundles/SingleSupportForm.js -#: lms/djangoapps/support/static/support/jsx/logged_out_user.jsx -msgid "" -"If you are unable to access your account contact us via email using {email}." +#. Translators: Volume level in range ]60,80]% +#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js +msgid "Loud" msgstr "" -#: common/static/bundles/SingleSupportForm.js -#: lms/djangoapps/support/static/support/jsx/single_support_form.jsx -msgid "" -"Select a course or select \"Not specific to a course\" for your support " -"request." +#. Translators: Volume level in range ]80,99]% +#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js +msgid "Very loud" msgstr "" -#: common/static/bundles/SingleSupportForm.js -#: lms/djangoapps/support/static/support/jsx/single_support_form.jsx -msgid "Enter a subject for your support request." +#. Translators: Volume level equals 100%. +#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js +msgid "Maximum" msgstr "" -#: common/static/bundles/SingleSupportForm.js -#: lms/djangoapps/support/static/support/jsx/single_support_form.jsx -msgid "Enter some details for your support request." +#: common/lib/xmodule/xmodule/js/src/video/02_html5_video.js +msgid "This browser cannot play .mp4, .ogg, or .webm files." msgstr "" -#: common/static/bundles/SingleSupportForm.js -#: lms/djangoapps/support/static/support/jsx/single_support_form.jsx -#: lms/djangoapps/support/static/support/jsx/success.jsx -msgid "Contact Us" +#: common/lib/xmodule/xmodule/js/src/video/02_html5_video.js +msgid "Try using a different browser, such as Google Chrome." msgstr "" -#: common/static/bundles/SingleSupportForm.js -#: lms/djangoapps/support/static/support/jsx/single_support_form.jsx -msgid "Find answers to the top questions asked by learners." +#: common/lib/xmodule/xmodule/js/src/video/05_video_quality_control.js +msgid "High Definition" msgstr "" -#: common/static/bundles/SingleSupportForm.js -#: lms/djangoapps/support/static/support/jsx/single_support_form.jsx -msgid "Search the {platform} Help Center" +#: common/lib/xmodule/xmodule/js/src/video/05_video_quality_control.js +msgid "off" msgstr "" -#: common/static/bundles/SingleSupportForm.js -#: lms/djangoapps/support/static/support/jsx/success.jsx -msgid "Go to my Dashboard" +#: common/lib/xmodule/xmodule/js/src/video/05_video_quality_control.js +msgid "on" msgstr "" -#: common/static/bundles/SingleSupportForm.js -#: lms/djangoapps/support/static/support/jsx/success.jsx -msgid "Go to {platform} Home" +#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js +msgid "Video position. Press space to toggle playback" msgstr "" -#: common/static/bundles/SingleSupportForm.js -#: lms/djangoapps/support/static/support/jsx/success.jsx -msgid "" -"Thank you for submitting a request! We will contact you within 24 hours." +#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js +msgid "Video ended" msgstr "" -#: common/static/bundles/SingleSupportForm.js -#: lms/djangoapps/support/static/support/jsx/upload_progress.jsx -msgid "Cancel upload" +#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js +msgid "Video position" msgstr "" -#: common/static/bundles/StudentAccountDeletion.js -#: common/static/bundles/StudentAccountDeletionInitializer.js -#: lms/static/js/student_account/components/StudentAccountDeletion.jsx -#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx +#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js +msgid "%(value)s hour" +msgid_plural "%(value)s hours" +msgstr[0] "" +msgstr[1] "" + +#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js +msgid "%(value)s minute" +msgid_plural "%(value)s minutes" +msgstr[0] "" +msgstr[1] "" + +#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js +msgid "%(value)s second" +msgid_plural "%(value)s seconds" +msgstr[0] "" +msgstr[1] "" + +#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js msgid "" -"You may also lose access to verified certificates and other program " -"credentials like MicroMasters certificates. If you want to make a copy of " -"these for your records before proceeding with deletion, follow the " -"instructions for {htmlStart}printing or downloading a certificate{htmlEnd}." +"Click on this button to mute or unmute this video or press UP or DOWN " +"buttons to increase or decrease volume level." +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js +msgid "Adjust video volume" msgstr "" -#: common/static/bundles/StudentAccountDeletion.js -#: common/static/bundles/StudentAccountDeletionInitializer.js -#: lms/static/js/student_account/components/StudentAccountDeletion.jsx +#: common/lib/xmodule/xmodule/js/src/video/08_video_speed_control.js msgid "" -"Before proceeding, please {htmlStart}unlink all social media " -"accounts{htmlEnd}." +"Press UP to enter the speed menu then use the UP and DOWN arrow keys to " +"navigate the different speeds, then press ENTER to change to the selected " +"speed." msgstr "" -#: common/static/bundles/StudentAccountDeletion.js -#: common/static/bundles/StudentAccountDeletionInitializer.js -#: lms/static/js/student_account/components/StudentAccountDeletion.jsx -msgid "Before proceeding, please {htmlStart}activate your account{htmlEnd}." +#: common/lib/xmodule/xmodule/js/src/video/08_video_speed_control.js +msgid "Adjust video speed" msgstr "" -#: common/static/bundles/StudentAccountDeletion.js -#: common/static/bundles/StudentAccountDeletionInitializer.js -#: lms/static/js/student_account/components/StudentAccountDeletion.jsx -msgid "" -"{htmlStart}Want to change your email, name, or password instead?{htmlEnd}" +#: common/lib/xmodule/xmodule/js/src/video/08_video_speed_control.js +msgid "Video speed: " msgstr "" -#: common/static/bundles/StudentAccountDeletion.js -#: common/static/bundles/StudentAccountDeletionInitializer.js -#: lms/static/js/student_account/components/StudentAccountDeletion.jsx -msgid "" -"{strongStart}Warning: Account deletion is permanent.{strongEnd} Please read " -"the above carefully before proceeding. This is an irreversible action, and " -"{strongStart}you will no longer be able to use the same email on " -"edX.{strongEnd}" +#: common/lib/xmodule/xmodule/js/src/video/09_play_skip_control.js +msgid "Skip" msgstr "" -#: common/static/bundles/StudentAccountDeletion.js -#: common/static/bundles/StudentAccountDeletionInitializer.js -#: lms/static/js/student_account/components/StudentAccountDeletion.jsx -msgid "We’re sorry to see you go!" +#: common/lib/xmodule/xmodule/js/src/video/09_poster.js +msgid "Play video" msgstr "" -#: common/static/bundles/StudentAccountDeletion.js -#: common/static/bundles/StudentAccountDeletionInitializer.js -#: lms/static/js/student_account/components/StudentAccountDeletion.jsx -msgid "" -"Please note: Deletion of your account and personal data is permanent and " -"cannot be undone. EdX will not be able to recover your account or the data " -"that is deleted." +#: common/lib/xmodule/xmodule/js/src/video/09_skip_control.js +msgid "Do not show again" msgstr "" -#: common/static/bundles/StudentAccountDeletion.js -#: common/static/bundles/StudentAccountDeletionInitializer.js -#: lms/static/js/student_account/components/StudentAccountDeletion.jsx -msgid "" -"Once your account is deleted, you cannot use it to take courses on the edX " -"app, edx.org, or any other site hosted by edX. This includes access to " -"edx.org from your employer’s or university’s system and access to private " -"sites offered by MIT Open Learning, Wharton Executive Education, and Harvard" -" Medical School." +#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js +msgid "Open language menu" msgstr "" -#: common/static/bundles/StudentAccountDeletion.js -#: common/static/bundles/StudentAccountDeletionInitializer.js -#: lms/static/js/student_account/components/StudentAccountDeletion.jsx -#: lms/static/js/student_account/views/account_settings_factory.js -msgid "Delete My Account" +#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js +msgid "Transcript will be displayed when you start playing the video." msgstr "" -#: common/static/bundles/StudentAccountDeletion.js -#: common/static/bundles/StudentAccountDeletionInitializer.js -#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx -msgid "Password is incorrect" +#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js +msgid "" +"Activating a link in this group will skip to the corresponding point in the " +"video." msgstr "" -#: common/static/bundles/StudentAccountDeletion.js -#: common/static/bundles/StudentAccountDeletionInitializer.js -#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx -msgid "Unable to delete account" +#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js +msgid "Video transcript" msgstr "" -#: common/static/bundles/StudentAccountDeletion.js -#: common/static/bundles/StudentAccountDeletionInitializer.js -#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx -msgid "Please re-enter your password." +#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js +msgid "Start of transcript. Skip to the end." msgstr "" -#: common/static/bundles/StudentAccountDeletion.js -#: common/static/bundles/StudentAccountDeletionInitializer.js -#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx -msgid "" -"Sorry, there was an error trying to process your request. Please try again " -"later." +#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js +msgid "End of transcript. Skip to the start." msgstr "" -#: common/static/bundles/StudentAccountDeletion.js -#: common/static/bundles/StudentAccountDeletionInitializer.js -#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx -msgid "A Password is required" +#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js +msgid "" +"Press the UP arrow key to enter the language menu then use UP and DOWN arrow" +" keys to navigate language options. Press ENTER to change to the selected " +"language." msgstr "" -#: common/static/bundles/StudentAccountDeletion.js -#: common/static/bundles/StudentAccountDeletionInitializer.js -#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx -msgid "" -"You have selected “Delete my account.†Deletion of your account and personal" -" data is permanent and cannot be undone. EdX will not be able to recover " -"your account or the data that is deleted." +#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js +msgid "Hide closed captions" msgstr "" -#: common/static/bundles/StudentAccountDeletion.js -#: common/static/bundles/StudentAccountDeletionInitializer.js -#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx -msgid "" -"If you proceed, you will be unable to use this account to take courses on " -"the edX app, edx.org, or any other site hosted by edX. This includes access " -"to edx.org from your employer’s or university’s system and access to private" -" sites offered by MIT Open Learning, Wharton Executive Education, and " -"Harvard Medical School." +#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js +msgid "(Caption will be displayed when you start playing the video.)" msgstr "" -#: common/static/bundles/StudentAccountDeletion.js -#: common/static/bundles/StudentAccountDeletionInitializer.js -#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx -msgid "" -"If you still wish to continue and delete your account, please enter your " -"account password:" +#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js +msgid "Turn on closed captioning" msgstr "" -#: common/static/bundles/StudentAccountDeletion.js -#: common/static/bundles/StudentAccountDeletionInitializer.js -#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx -msgid "Yes, Delete" +#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js +msgid "Turn on transcripts" msgstr "" -#: common/static/bundles/StudentAccountDeletion.js -#: common/static/bundles/StudentAccountDeletionInitializer.js -#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx -msgid "We're sorry to see you go! Your account will be deleted shortly." +#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js +msgid "Turn off transcripts" msgstr "" -#: common/static/bundles/StudentAccountDeletion.js -#: common/static/bundles/StudentAccountDeletionInitializer.js -#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx -msgid "" -"Account deletion, including removal from email lists, may take a few weeks " -"to fully process through our system. If you want to opt-out of emails before" -" then, please unsubscribe from the footer of any email." +#: common/static/common/js/components/BlockBrowser/components/BlockBrowser/BlockBrowser.jsx +#: cms/templates/js/move-xblock-list.underscore +msgid "View child items" msgstr "" -#: common/static/bundles/UnenrollmentFactory.js -#: lms/static/js/dashboard/legacy.js -#: lms/static/js/learner_dashboard/views/unenroll_view.js -msgid "" -"Unable to determine whether we should give you a refund because of System " -"Error. Please try again later." +#: common/static/common/js/components/BlockBrowser/components/BlockBrowser/BlockBrowser.jsx +msgid "Navigate up" msgstr "" -#: common/static/bundles/VerticalStudentView.js -#: lms/static/js/verify_student/views/make_payment_step_view.js -#: openedx/features/course_bookmarks/static/course_bookmarks/js/views/bookmark_button.js -#: openedx/features/course_bookmarks/static/course_bookmarks/js/views/bookmarks_list.js -msgid "An error has occurred. Please try again." +#: common/static/common/js/components/BlockBrowser/components/BlockBrowser/BlockBrowser.jsx +msgid "Browsing" msgstr "" -#: common/static/bundles/VerticalStudentView.js -#: openedx/features/course_bookmarks/static/course_bookmarks/js/views/bookmark_button.js -msgid "Bookmark this page" +#: common/static/common/js/components/BlockBrowser/components/BlockBrowser/BlockBrowser.jsx +msgid "Select" msgstr "" -#: common/static/bundles/commons.js #: common/static/common/js/components/utils/view_utils.js msgid "Required field." msgstr "" -#: common/static/bundles/commons.js #: common/static/common/js/components/utils/view_utils.js msgid "Please do not use any spaces in this field." msgstr "" -#: common/static/bundles/commons.js #: common/static/common/js/components/utils/view_utils.js msgid "Please do not use any spaces or special characters in this field." msgstr "" -#: common/static/bundles/js/factories/library.js #: common/static/common/js/components/views/paginated_view.js #: common/static/common/js/components/views/paging_footer.js msgid "Pagination" @@ -3782,46 +2268,167 @@ msgstr[1] "" msgid "about a month" msgstr "" -#: common/static/js/src/jquery.timeago.locale.js -#, javascript-format -msgid "%d month" -msgid_plural "%d months" -msgstr[0] "" -msgstr[1] "" +#: common/static/js/src/jquery.timeago.locale.js +#, javascript-format +msgid "%d month" +msgid_plural "%d months" +msgstr[0] "" +msgstr[1] "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "about a year" +msgstr "" + +#: common/static/js/src/jquery.timeago.locale.js +#, javascript-format +msgid "%d year" +msgid_plural "%d years" +msgstr[0] "" +msgstr[1] "" + +#: lms/djangoapps/instructor/static/instructor/ProblemBrowser/components/Main/Main.jsx +msgid "Select a section or problem" +msgstr "" + +#: lms/djangoapps/support/static/support/js/views/certificates.js +msgid "An unexpected error occurred. Please try again." +msgstr "" + +#: lms/djangoapps/support/static/support/js/views/enrollment.js +msgid "Financial Assistance" +msgstr "" + +#: lms/djangoapps/support/static/support/js/views/enrollment.js +msgid "Upset Learner" +msgstr "" + +#: lms/djangoapps/support/static/support/js/views/enrollment.js +msgid "Teaching Assistant" +msgstr "" + +#: lms/djangoapps/support/static/support/js/views/enrollment_modal.js +msgid "Please specify a reason." +msgstr "" + +#: lms/djangoapps/support/static/support/js/views/enrollment_modal.js +msgid "Something went wrong changing this enrollment. Please try again." +msgstr "" + +#: lms/djangoapps/support/static/support/jsx/errors_list.jsx +msgid "Please fix the following errors:" +msgstr "" + +#: lms/djangoapps/support/static/support/jsx/file_upload.jsx +msgid "Files that you upload must be smaller than 5MB in size." +msgstr "" + +#: lms/djangoapps/support/static/support/jsx/file_upload.jsx +msgid "" +"Files that you upload must be PDFs or image files in .gif, .jpg, .jpeg, or " +".png format." +msgstr "" + +#: lms/djangoapps/support/static/support/jsx/file_upload.jsx +#: lms/djangoapps/support/static/support/jsx/single_support_form.jsx +msgid "Something went wrong. Please try again later." +msgstr "" + +#: lms/djangoapps/support/static/support/jsx/file_upload.jsx +msgid "Add Attachment" +msgstr "" + +#: lms/djangoapps/support/static/support/jsx/file_upload.jsx +msgid "(Optional)" +msgstr "" + +#: lms/djangoapps/support/static/support/jsx/file_upload.jsx +msgid "Remove file" +msgstr "" + +#: lms/djangoapps/support/static/support/jsx/logged_in_user.jsx +msgid "Course Name" +msgstr "" + +#: lms/djangoapps/support/static/support/jsx/logged_in_user.jsx +msgid "Not specific to a course" +msgstr "" + +#: lms/djangoapps/support/static/support/jsx/logged_in_user.jsx +msgid "What can we help you with, {username}?" +msgstr "" + +#: lms/djangoapps/support/static/support/jsx/logged_in_user.jsx +#: lms/static/js/instructor_dashboard/util.js +msgid "Subject" +msgstr "" + +#: lms/djangoapps/support/static/support/jsx/logged_in_user.jsx +msgid "Details" +msgstr "" + +#: lms/djangoapps/support/static/support/jsx/logged_in_user.jsx +msgid "The more you tell us, the more quickly and helpfully we can respond!" +msgstr "" + +#: lms/djangoapps/support/static/support/jsx/logged_in_user.jsx +#: common/static/common/templates/discussion/new-post.underscore +#: common/static/common/templates/discussion/thread-response.underscore +#: common/static/common/templates/discussion/thread.underscore +#: lms/templates/verify_student/incourse_reverify.underscore +msgid "Submit" +msgstr "" + +#: lms/djangoapps/support/static/support/jsx/logged_out_user.jsx +msgid "Sign in to {platform} so we can help you better." +msgstr "" + +#: lms/djangoapps/support/static/support/jsx/logged_out_user.jsx +msgid "" +"If you are unable to access your account contact us via email using {email}." +msgstr "" + +#: lms/djangoapps/support/static/support/jsx/single_support_form.jsx +msgid "" +"Select a course or select \"Not specific to a course\" for your support " +"request." +msgstr "" + +#: lms/djangoapps/support/static/support/jsx/single_support_form.jsx +msgid "Enter a subject for your support request." +msgstr "" -#: common/static/js/src/jquery.timeago.locale.js -msgid "about a year" +#: lms/djangoapps/support/static/support/jsx/single_support_form.jsx +msgid "Enter some details for your support request." msgstr "" -#: common/static/js/src/jquery.timeago.locale.js -#, javascript-format -msgid "%d year" -msgid_plural "%d years" -msgstr[0] "" -msgstr[1] "" +#: lms/djangoapps/support/static/support/jsx/single_support_form.jsx +#: lms/djangoapps/support/static/support/jsx/success.jsx +msgid "Contact Us" +msgstr "" -#: lms/djangoapps/support/static/support/js/views/certificates.js -msgid "An unexpected error occurred. Please try again." +#: lms/djangoapps/support/static/support/jsx/single_support_form.jsx +msgid "Find answers to the top questions asked by learners." msgstr "" -#: lms/djangoapps/support/static/support/js/views/enrollment.js -msgid "Financial Assistance" +#: lms/djangoapps/support/static/support/jsx/single_support_form.jsx +msgid "Search the {platform} Help Center" msgstr "" -#: lms/djangoapps/support/static/support/js/views/enrollment.js -msgid "Upset Learner" +#: lms/djangoapps/support/static/support/jsx/success.jsx +msgid "Go to my Dashboard" msgstr "" -#: lms/djangoapps/support/static/support/js/views/enrollment.js -msgid "Teaching Assistant" +#: lms/djangoapps/support/static/support/jsx/success.jsx +msgid "Go to {platform} Home" msgstr "" -#: lms/djangoapps/support/static/support/js/views/enrollment_modal.js -msgid "Please specify a reason." +#: lms/djangoapps/support/static/support/jsx/success.jsx +msgid "" +"Thank you for submitting a request! We will contact you within 24 hours." msgstr "" -#: lms/djangoapps/support/static/support/js/views/enrollment_modal.js -msgid "Something went wrong changing this enrollment. Please try again." +#: lms/djangoapps/support/static/support/jsx/upload_progress.jsx +msgid "Cancel upload" msgstr "" #: lms/djangoapps/teams/static/teams/js/collections/team.js @@ -4535,6 +3142,13 @@ msgid "" "refund." msgstr "" +#: lms/static/js/dashboard/legacy.js +#: lms/static/js/learner_dashboard/views/unenroll_view.js +msgid "" +"Unable to determine whether we should give you a refund because of System " +"Error. Please try again later." +msgstr "" + #: lms/static/js/discovery/views/search_form.js #, javascript-format msgid "Viewing %s course" @@ -4949,14 +3563,11 @@ msgstr "" #: cms/templates/js/transcript-organization-credentials.underscore #: lms/djangoapps/support/static/support/templates/manage_user.underscore #: lms/templates/financial-assistance/financial_assessment_form.underscore -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/course_allowances.underscore -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/student-proctored-exam-attempts.underscore msgid "Username" msgstr "" #: lms/static/js/instructor_dashboard/membership.js #: lms/djangoapps/support/static/support/templates/manage_user.underscore -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/course_allowances.underscore msgid "Email" msgstr "" @@ -5449,98 +4060,332 @@ msgid "" " technical support if the problem persists." msgstr "" -#: lms/static/js/instructor_dashboard/util.js -msgid "Sent By" +#: lms/static/js/instructor_dashboard/util.js +msgid "Sent By" +msgstr "" + +#: lms/static/js/instructor_dashboard/util.js +msgid "Sent To" +msgstr "" + +#: lms/static/js/instructor_dashboard/util.js +msgid "Time Sent" +msgstr "" + +#: lms/static/js/instructor_dashboard/util.js +msgid "Number Sent" +msgstr "" + +#: lms/static/js/instructor_dashboard/util.js +msgid "Copy Email To Editor" +msgstr "" + +#: lms/static/js/instructor_dashboard/util.js +msgid "Subject:" +msgstr "" + +#: lms/static/js/instructor_dashboard/util.js +msgid "Sent By:" +msgstr "" + +#: lms/static/js/instructor_dashboard/util.js +msgid "Time Sent:" +msgstr "" + +#: lms/static/js/instructor_dashboard/util.js +msgid "Sent To:" +msgstr "" + +#: lms/static/js/instructor_dashboard/util.js +msgid "Message:" +msgstr "" + +#: lms/static/js/instructor_dashboard/util.js +msgid "No tasks currently running." +msgstr "" + +#: lms/static/js/instructor_dashboard/util.js +msgid "File Name" +msgstr "" + +#: lms/static/js/instructor_dashboard/util.js +msgid "" +"Links are generated on demand and expire within 5 minutes due to the " +"sensitive nature of student information." +msgstr "" + +#: lms/static/js/learner_dashboard/models/course_card_model.js +msgid "(Self-paced) Starts {start}" +msgstr "" + +#: lms/static/js/learner_dashboard/models/course_card_model.js +msgid "(Self-paced) Started {start}" +msgstr "" + +#: lms/static/js/learner_dashboard/models/course_card_model.js +msgid "(Self-paced) Ends {end}" +msgstr "" + +#: lms/static/js/learner_dashboard/models/course_card_model.js +msgid "(Self-paced) Ended {end}" +msgstr "" + +#: lms/static/js/learner_dashboard/models/course_card_model.js +msgid "Starts {start}" +msgstr "" + +#: lms/static/js/learner_dashboard/models/course_card_model.js +msgid "Started {start}" +msgstr "" + +#: lms/static/js/learner_dashboard/models/course_card_model.js +msgid "Ends {end}" +msgstr "" + +#: lms/static/js/learner_dashboard/views/course_entitlement_view.js +msgid "You must select a session to access the course." +msgstr "" + +#: lms/static/js/learner_dashboard/views/course_entitlement_view.js +msgid "There was an error. Please reload the page and try again." +msgstr "" + +#: lms/static/js/learner_dashboard/views/course_entitlement_view.js +#: lms/templates/learner_dashboard/course_entitlement.underscore +msgid "Change Session" +msgstr "" + +#: lms/static/js/learner_dashboard/views/course_entitlement_view.js +#: lms/templates/learner_dashboard/course_entitlement.underscore +msgid "Select Session" +msgstr "" + +#: lms/static/js/learner_dashboard/views/course_entitlement_view.js +msgid "Leave Current Session" +msgstr "" + +#: lms/static/js/learner_dashboard/views/course_entitlement_view.js +msgid "Are you sure you want to select this session?" +msgstr "" + +#: lms/static/js/learner_dashboard/views/course_entitlement_view.js +msgid "Are you sure you want to change to a different session?" +msgstr "" + +#: lms/static/js/learner_dashboard/views/course_entitlement_view.js +msgid "Any course progress or grades from your current session will be lost." +msgstr "" + +#: lms/static/js/learner_dashboard/views/course_entitlement_view.js +msgid "Are you sure that you want to leave this session?" +msgstr "" + +#: lms/static/js/learner_dashboard/views/entitlement_unenrollment_view.js +msgid "" +"Your unenrollment request could not be processed. Please try again later." +msgstr "" + +#: lms/static/js/learner_dashboard/views/entitlement_unenrollment_view.js +msgid "" +"Are you sure you want to unenroll from {courseName} ({courseNumber})? You " +"will be refunded the amount you paid." +msgstr "" + +#: lms/static/js/learner_dashboard/views/program_details_sidebar_view.js +msgid "{type} Progress" +msgstr "" + +#: lms/static/js/learner_dashboard/views/program_details_sidebar_view.js +msgid "Earned Certificates" +msgstr "" + +#: lms/static/js/learner_dashboard/views/program_details_view.js +msgid "Enrolled" +msgstr "" + +#: lms/static/js/staff_debug_actions.js +msgid "Successfully reset the attempts for user {user}" +msgstr "" + +#: lms/static/js/staff_debug_actions.js +msgid "Failed to reset attempts for user." +msgstr "" + +#: lms/static/js/staff_debug_actions.js +msgid "Successfully deleted student state for user {user}" +msgstr "" + +#: lms/static/js/staff_debug_actions.js +msgid "Failed to delete student state for user." +msgstr "" + +#: lms/static/js/staff_debug_actions.js +msgid "Successfully rescored problem for user {user}" +msgstr "" + +#: lms/static/js/staff_debug_actions.js +msgid "Failed to rescore problem for user." +msgstr "" + +#: lms/static/js/staff_debug_actions.js +msgid "Successfully rescored problem to improve score for user {user}" +msgstr "" + +#: lms/static/js/staff_debug_actions.js +msgid "Failed to rescore problem to improve score for user." +msgstr "" + +#: lms/static/js/staff_debug_actions.js +msgid "Successfully overrode problem score for {user}" +msgstr "" + +#: lms/static/js/staff_debug_actions.js +msgid "Could not override problem score for {user}." +msgstr "" + +#: lms/static/js/student_account/components/PasswordResetConfirmation.jsx +msgid "Enter and confirm your new password." +msgstr "" + +#: lms/static/js/student_account/components/PasswordResetConfirmation.jsx +msgid "New Password" +msgstr "" + +#: lms/static/js/student_account/components/PasswordResetConfirmation.jsx +msgid "Confirm Password" +msgstr "" + +#: lms/static/js/student_account/components/PasswordResetConfirmation.jsx +msgid "Passwords do not match." +msgstr "" + +#: lms/static/js/student_account/components/PasswordResetConfirmation.jsx +msgid "Reset My Password" msgstr "" -#: lms/static/js/instructor_dashboard/util.js -msgid "Sent To" +#: lms/static/js/student_account/components/PasswordResetConfirmation.jsx +#: lms/static/js/student_account/views/account_settings_factory.js +msgid "Reset Your Password" msgstr "" -#: lms/static/js/instructor_dashboard/util.js -msgid "Time Sent" +#: lms/static/js/student_account/components/PasswordResetInput.jsx +msgid "Error: " msgstr "" -#: lms/static/js/instructor_dashboard/util.js -msgid "Number Sent" +#: lms/static/js/student_account/components/StudentAccountDeletion.jsx +#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx +msgid "" +"You may also lose access to verified certificates and other program " +"credentials like MicroMasters certificates. If you want to make a copy of " +"these for your records before proceeding with deletion, follow the " +"instructions for {htmlStart}printing or downloading a certificate{htmlEnd}." msgstr "" -#: lms/static/js/instructor_dashboard/util.js -msgid "Copy Email To Editor" +#: lms/static/js/student_account/components/StudentAccountDeletion.jsx +msgid "" +"Before proceeding, please {htmlStart}unlink all social media " +"accounts{htmlEnd}." msgstr "" -#: lms/static/js/instructor_dashboard/util.js -msgid "Subject:" +#: lms/static/js/student_account/components/StudentAccountDeletion.jsx +msgid "Before proceeding, please {htmlStart}activate your account{htmlEnd}." msgstr "" -#: lms/static/js/instructor_dashboard/util.js -msgid "Sent By:" +#: lms/static/js/student_account/components/StudentAccountDeletion.jsx +msgid "" +"{htmlStart}Want to change your email, name, or password instead?{htmlEnd}" msgstr "" -#: lms/static/js/instructor_dashboard/util.js -msgid "Time Sent:" +#: lms/static/js/student_account/components/StudentAccountDeletion.jsx +msgid "" +"{strongStart}Warning: Account deletion is permanent.{strongEnd} Please read " +"the above carefully before proceeding. This is an irreversible action, and " +"{strongStart}you will no longer be able to use the same email on " +"edX.{strongEnd}" msgstr "" -#: lms/static/js/instructor_dashboard/util.js -msgid "Sent To:" +#: lms/static/js/student_account/components/StudentAccountDeletion.jsx +msgid "We’re sorry to see you go!" msgstr "" -#: lms/static/js/instructor_dashboard/util.js -msgid "Message:" +#: lms/static/js/student_account/components/StudentAccountDeletion.jsx +msgid "" +"Please note: Deletion of your account and personal data is permanent and " +"cannot be undone. EdX will not be able to recover your account or the data " +"that is deleted." msgstr "" -#: lms/static/js/instructor_dashboard/util.js -msgid "No tasks currently running." +#: lms/static/js/student_account/components/StudentAccountDeletion.jsx +msgid "" +"Once your account is deleted, you cannot use it to take courses on the edX " +"app, edx.org, or any other site hosted by edX. This includes access to " +"edx.org from your employer’s or university’s system and access to private " +"sites offered by MIT Open Learning, Wharton Executive Education, and Harvard" +" Medical School." msgstr "" -#: lms/static/js/instructor_dashboard/util.js -msgid "File Name" +#: lms/static/js/student_account/components/StudentAccountDeletion.jsx +#: lms/static/js/student_account/views/account_settings_factory.js +msgid "Delete My Account" msgstr "" -#: lms/static/js/instructor_dashboard/util.js -msgid "" -"Links are generated on demand and expire within 5 minutes due to the " -"sensitive nature of student information." +#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx +msgid "Password is incorrect" msgstr "" -#: lms/static/js/staff_debug_actions.js -msgid "Successfully reset the attempts for user {user}" +#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx +msgid "Unable to delete account" msgstr "" -#: lms/static/js/staff_debug_actions.js -msgid "Failed to reset attempts for user." +#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx +msgid "Please re-enter your password." msgstr "" -#: lms/static/js/staff_debug_actions.js -msgid "Successfully deleted student state for user {user}" +#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx +msgid "" +"Sorry, there was an error trying to process your request. Please try again " +"later." msgstr "" -#: lms/static/js/staff_debug_actions.js -msgid "Failed to delete student state for user." +#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx +msgid "A Password is required" msgstr "" -#: lms/static/js/staff_debug_actions.js -msgid "Successfully rescored problem for user {user}" +#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx +msgid "" +"You have selected “Delete my account.†Deletion of your account and personal" +" data is permanent and cannot be undone. EdX will not be able to recover " +"your account or the data that is deleted." msgstr "" -#: lms/static/js/staff_debug_actions.js -msgid "Failed to rescore problem for user." +#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx +msgid "" +"If you proceed, you will be unable to use this account to take courses on " +"the edX app, edx.org, or any other site hosted by edX. This includes access " +"to edx.org from your employer’s or university’s system and access to private" +" sites offered by MIT Open Learning, Wharton Executive Education, and " +"Harvard Medical School." msgstr "" -#: lms/static/js/staff_debug_actions.js -msgid "Successfully rescored problem to improve score for user {user}" +#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx +msgid "" +"If you still wish to continue and delete your account, please enter your " +"account password:" msgstr "" -#: lms/static/js/staff_debug_actions.js -msgid "Failed to rescore problem to improve score for user." +#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx +msgid "Yes, Delete" msgstr "" -#: lms/static/js/staff_debug_actions.js -msgid "Successfully overrode problem score for {user}" +#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx +msgid "We're sorry to see you go! Your account will be deleted shortly." msgstr "" -#: lms/static/js/staff_debug_actions.js -msgid "Could not override problem score for {user}." +#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx +msgid "" +"Account deletion, including removal from email lists, may take a few weeks " +"to fully process through our system. If you want to opt-out of emails before" +" then, please unsubscribe from the footer of any email." msgstr "" #: lms/static/js/student_account/tos_modal.js @@ -5595,9 +4440,9 @@ msgid "" "address is associated with your {platform_name} account, we will send a " "message with password recovery instructions to this email " "address.{paragraphEnd}{paragraphStart}If you do not receive a password reset" -" message, verify that you entered the correct email address, or check your " -"spam folder.{paragraphEnd}{paragraphStart}If you need further assistance, " -"{anchorStart}contact technical support{anchorEnd}.{paragraphEnd}" +" message after 1 minute, verify that you entered the correct email address, " +"or check your spam folder.{paragraphEnd}{paragraphStart}If you need further " +"assistance, {anchorStart}contact technical support{anchorEnd}.{paragraphEnd}" msgstr "" #: lms/static/js/student_account/views/LoginView.js @@ -5925,6 +4770,12 @@ msgstr "" msgid "Try the transaction again in a few minutes." msgstr "" +#: lms/static/js/verify_student/views/make_payment_step_view.js +#: openedx/features/course_bookmarks/static/course_bookmarks/js/views/bookmark_button.js +#: openedx/features/course_bookmarks/static/course_bookmarks/js/views/bookmarks_list.js +msgid "An error has occurred. Please try again." +msgstr "" + #: lms/static/js/verify_student/views/make_payment_step_view.js msgid "Could not submit order" msgstr "" @@ -6090,6 +4941,32 @@ msgstr "" msgid "Overall Score" msgstr "" +#: openedx/features/course_bookmarks/static/course_bookmarks/js/views/bookmark_button.js +msgid "Bookmark this page" +msgstr "" + +#: openedx/features/course_experience/static/course_experience/js/CourseGoals.js +msgid "Thank you for setting your course goal to {goal}!" +msgstr "" + +#: openedx/features/course_experience/static/course_experience/js/CourseHome.js +msgid "You have successfully updated your goal." +msgstr "" + +#: openedx/features/course_experience/static/course_experience/js/CourseHome.js +msgid "There was an error updating your goal." +msgstr "" + +#: openedx/features/course_experience/static/course_experience/js/CourseOutline.js +#: lms/templates/ccx/schedule.underscore +msgid "Expand All" +msgstr "" + +#: openedx/features/course_experience/static/course_experience/js/CourseOutline.js +#: lms/templates/ccx/schedule.underscore +msgid "Collapse All" +msgstr "" + #: openedx/features/course_search/static/course_search/js/views/search_results_view.js msgid "{total_results} result" msgid_plural "{total_results} results" @@ -6178,6 +5055,29 @@ msgstr "" msgid "Profile" msgstr "" +#: cms/static/cms/js/main.js cms/static/js/views/active_video_upload_list.js +#: cms/static/js/views/video_transcripts.js +msgid "" +"This may be happening because of an error with our server or your internet " +"connection. Try refreshing the page or making sure you are online." +msgstr "" + +#: cms/static/cms/js/main.js +msgid "Studio's having trouble saving your work" +msgstr "" + +#: cms/static/cms/js/xblock/cms.runtime.v1.js +msgid "OpenAssessment Save Error" +msgstr "" + +#: cms/static/js/base.js +msgid "This link will open in a new browser window/tab" +msgstr "" + +#: cms/static/js/base.js +msgid "This link will open in a modal window" +msgstr "" + #: cms/static/js/certificates/models/certificate.js msgid "Certificate name is required." msgstr "" @@ -6226,6 +5126,13 @@ msgstr "" msgid "This action cannot be undone." msgstr "" +#: cms/static/js/certificates/views/signatory_editor.js +#: cms/static/js/views/course_info_update.js cms/static/js/views/list_item.js +#: cms/static/js/views/show_textbook.js cms/static/js/views/tabs.js +#: cms/static/js/views/utils/xblock_utils.js +msgid "Deleting" +msgstr "" + #: cms/static/js/certificates/views/signatory_editor.js msgid "Upload signature image." msgstr "" @@ -6297,6 +5204,76 @@ msgstr "" msgid "You have unsaved changes. Do you really want to leave this page?" msgstr "" +#: cms/static/js/features/import/factories/import.js +msgid "There was an error during the upload process." +msgstr "" + +#: cms/static/js/features/import/factories/import.js +msgid "There was an error while unpacking the file." +msgstr "" + +#: cms/static/js/features/import/factories/import.js +msgid "There was an error while verifying the file you submitted." +msgstr "" + +#: cms/static/js/features/import/factories/import.js +msgid "Choose new file" +msgstr "" + +#: cms/static/js/features/import/factories/import.js +msgid "" +"File format not supported. Please upload a file with a {ext} extension." +msgstr "" + +#: cms/static/js/features/import/factories/import.js +msgid "There was an error while importing the new library to our database." +msgstr "" + +#: cms/static/js/features/import/factories/import.js +msgid "There was an error while importing the new course to our database." +msgstr "" + +#: cms/static/js/features/import/factories/import.js +msgid "Your import has failed." +msgstr "" + +#: cms/static/js/features/import/views/import.js +msgid "Your import is in progress; navigating away will abort it." +msgstr "" + +#: cms/static/js/features/import/views/import.js +msgid "Error importing course" +msgstr "" + +#: cms/static/js/features/import/views/import.js +msgid "There was an error with the upload" +msgstr "" + +#: cms/static/js/features_jsx/studio/CourseOrLibraryListing.jsx +msgid "Organization:" +msgstr "" + +#: cms/static/js/features_jsx/studio/CourseOrLibraryListing.jsx +msgid "Course Number:" +msgstr "" + +#: cms/static/js/features_jsx/studio/CourseOrLibraryListing.jsx +msgid "Course Run:" +msgstr "" + +#: cms/static/js/features_jsx/studio/CourseOrLibraryListing.jsx +msgid "(Read-only)" +msgstr "" + +#: cms/static/js/features_jsx/studio/CourseOrLibraryListing.jsx +msgid "Re-run Course" +msgstr "" + +#: cms/static/js/features_jsx/studio/CourseOrLibraryListing.jsx +#: cms/templates/js/show-textbook.underscore +msgid "View Live" +msgstr "" + #: cms/static/js/maintenance/force_publish_course.js msgid "Internal Server Error." msgstr "" @@ -6318,6 +5295,22 @@ msgstr "" msgid "Upload failed" msgstr "" +#: cms/static/js/models/chapter.js +msgid "Chapter name and asset_path are both required" +msgstr "" + +#: cms/static/js/models/chapter.js +msgid "Chapter name is required" +msgstr "" + +#: cms/static/js/models/chapter.js +msgid "asset_path is required" +msgstr "" + +#: cms/static/js/models/course.js cms/static/js/models/section.js +msgid "You must specify a name" +msgstr "" + #: cms/static/js/models/course_update.js msgid "Action required: Enter a valid date." msgstr "" @@ -6414,6 +5407,39 @@ msgstr "" msgid "Not able to set passing grade to less than %(minimum_grade_cutoff)s%." msgstr "" +#: cms/static/js/models/textbook.js +msgid "Textbook name is required" +msgstr "" + +#: cms/static/js/models/textbook.js +msgid "Please add at least one chapter" +msgstr "" + +#: cms/static/js/models/textbook.js +msgid "All chapters must have a name and asset" +msgstr "" + +#: cms/static/js/models/uploads.js +msgid "" +"Only <%= fileTypes %> files can be uploaded. Please select a file ending in " +"<%= fileExtensions %> to upload." +msgstr "" + +#: cms/static/js/models/uploads.js +#: lms/templates/student_account/hinted_login.underscore +#: lms/templates/student_account/institution_login.underscore +#: lms/templates/student_account/institution_register.underscore +msgid "or" +msgstr "" + +#: cms/static/js/models/xblock_validation.js +msgid "This unit has validation issues." +msgstr "" + +#: cms/static/js/models/xblock_validation.js +msgid "This component has validation issues." +msgstr "" + #: cms/static/js/views/active_video_upload.js cms/static/js/views/assets.js msgid "Your file could not be uploaded" msgstr "" @@ -6486,7 +5512,6 @@ msgstr "" #: cms/static/js/views/assets.js cms/templates/js/asset-library.underscore #: lms/djangoapps/support/static/support/templates/certificates_results.underscore -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/student-proctored-exam-attempts.underscore msgid "Type" msgstr "" @@ -6513,6 +5538,11 @@ msgstr "" msgid "Load Another File" msgstr "" +#: cms/static/js/views/components/add_xblock.js +#: cms/static/js/views/utils/xblock_utils.js +msgid "Adding" +msgstr "" + #: cms/static/js/views/course_info_update.js msgid "Are you sure you want to delete this update?" msgstr "" @@ -6566,6 +5596,14 @@ msgstr "" msgid "{selectedProvider} credentials saved" msgstr "" +#: cms/static/js/views/edit_chapter.js +msgid "Upload a new PDF to “<%= name %>â€" +msgstr "" + +#: cms/static/js/views/edit_chapter.js +msgid "Please select a PDF file to upload." +msgstr "" + #: cms/static/js/views/export.js msgid "There has been an error while exporting." msgstr "" @@ -6662,6 +5700,69 @@ msgstr "" msgid "Files must be in JPEG or PNG format." msgstr "" +#: cms/static/js/views/license.js cms/templates/js/license-selector.underscore +msgid "All Rights Reserved" +msgstr "" + +#: cms/static/js/views/license.js +msgid "You reserve all rights for your work" +msgstr "" + +#: cms/static/js/views/license.js +msgid "Creative Commons" +msgstr "" + +#: cms/static/js/views/license.js +msgid "You waive some rights for your work, such that others can use it too" +msgstr "" + +#: cms/static/js/views/license.js +msgid "Version" +msgstr "" + +#: cms/static/js/views/license.js +msgid "Attribution" +msgstr "" + +#: cms/static/js/views/license.js +msgid "" +"Allow others to copy, distribute, display and perform your copyrighted work " +"but only if they give credit the way you request. Currently, this option is " +"required." +msgstr "" + +#: cms/static/js/views/license.js +msgid "Noncommercial" +msgstr "" + +#: cms/static/js/views/license.js +msgid "" +"Allow others to copy, distribute, display and perform your work - and " +"derivative works based upon it - but for noncommercial purposes only." +msgstr "" + +#: cms/static/js/views/license.js +msgid "No Derivatives" +msgstr "" + +#: cms/static/js/views/license.js +msgid "" +"Allow others to copy, distribute, display and perform only verbatim copies " +"of your work, not derivative works based upon it. This option is " +"incompatible with \"Share Alike\"." +msgstr "" + +#: cms/static/js/views/license.js +msgid "Share Alike" +msgstr "" + +#: cms/static/js/views/license.js +msgid "" +"Allow others to distribute derivative works only under a license identical " +"to the license that governs your work. This option is incompatible with \"No" +" Derivatives\"." +msgstr "" + #. Translators: "item_display_name" is the name of the item to be deleted. #: cms/static/js/views/list_item.js msgid "Delete this %(item_display_name)s?" @@ -6760,24 +5861,191 @@ msgstr "" msgid "Visibility" msgstr "" -#: cms/static/js/views/modals/validation_error_modal.js -msgid "Validation Error While Saving" +#. Translators: "title" is the name of the current component being edited. +#: cms/static/js/views/modals/edit_xblock.js +msgid "Editing: {title}" +msgstr "" + +#: cms/static/js/views/modals/edit_xblock.js +msgid "Plugins" +msgstr "" + +#: cms/static/js/views/modals/edit_xblock.js +#: lms/templates/ccx/schedule.underscore +msgid "Unit" +msgstr "" + +#: cms/static/js/views/modals/edit_xblock.js +msgid "Component" +msgstr "" + +#: cms/static/js/views/modals/move_xblock_modal.js +msgid "Move" +msgstr "" + +#: cms/static/js/views/modals/move_xblock_modal.js +msgid "Choose a location to move your component to" +msgstr "" + +#: cms/static/js/views/modals/move_xblock_modal.js +msgid "Move: {displayName}" +msgstr "" + +#: cms/static/js/views/modals/validation_error_modal.js +msgid "Validation Error While Saving" +msgstr "" + +#: cms/static/js/views/modals/validation_error_modal.js +msgid "Undo Changes" +msgstr "" + +#: cms/static/js/views/modals/validation_error_modal.js +msgid "Change Manually" +msgstr "" + +#: cms/static/js/views/move_xblock_list.js +msgid "Sections" +msgstr "" + +#: cms/static/js/views/move_xblock_list.js +msgid "Subsections" +msgstr "" + +#: cms/static/js/views/move_xblock_list.js +msgid "Units" +msgstr "" + +#: cms/static/js/views/move_xblock_list.js +msgid "Components" +msgstr "" + +#: cms/static/js/views/move_xblock_list.js +#: cms/templates/js/group-configuration-editor.underscore +msgid "Groups" +msgstr "" + +#: cms/static/js/views/move_xblock_list.js +msgid "This {parentCategory} has no {childCategory}" +msgstr "" + +#: cms/static/js/views/move_xblock_list.js +#: cms/templates/js/group-configuration-details.underscore +#: cms/templates/js/partition-group-details.underscore +msgid "Course Outline" +msgstr "" + +#: cms/static/js/views/paged_container.js +msgid "Date added" +msgstr "" + +#. Translators: "title" is the name of the current component or unit being +#. edited. +#: cms/static/js/views/pages/container.js +msgid "Editing access for: %(title)s" +msgstr "" + +#: cms/static/js/views/pages/container_subviews.js +msgid "Publishing" +msgstr "" + +#: cms/static/js/views/pages/container_subviews.js +#: cms/templates/js/course-video-settings-update-org-credentials-footer.underscore +#: cms/templates/js/course-video-settings-update-settings-footer.underscore +#: cms/templates/js/publish-xblock.underscore +msgid "Discard Changes" +msgstr "" + +#: cms/static/js/views/pages/container_subviews.js +msgid "" +"Are you sure you want to revert to the last published version of the unit? " +"You cannot undo this action." +msgstr "" + +#: cms/static/js/views/pages/container_subviews.js +msgid "Discarding Changes" +msgstr "" + +#: cms/static/js/views/pages/container_subviews.js +msgid "Hiding from Students" +msgstr "" + +#: cms/static/js/views/pages/container_subviews.js +msgid "Explicitly Hiding from Students" +msgstr "" + +#: cms/static/js/views/pages/container_subviews.js +msgid "Inheriting Student Visibility" +msgstr "" + +#: cms/static/js/views/pages/container_subviews.js +msgid "Make Visible to Students" +msgstr "" + +#: cms/static/js/views/pages/container_subviews.js +msgid "" +"If the unit was previously published and released to students, any changes " +"you made to the unit when it was hidden will now be visible to students. Do " +"you want to proceed?" +msgstr "" + +#: cms/static/js/views/pages/container_subviews.js +msgid "Making Visible to Students" +msgstr "" + +#: cms/static/js/views/pages/course_outline.js +msgid "Course Index" +msgstr "" + +#: cms/static/js/views/pages/course_outline.js +msgid "There were errors reindexing course." +msgstr "" + +#: cms/static/js/views/pages/paged_container.js +msgid "Hide Previews" +msgstr "" + +#: cms/static/js/views/pages/paged_container.js +msgid "Show Previews" +msgstr "" + +#. Translators: sample result: +#. "Showing 0-9 out of 25 total, filtered by Images, sorted by Date Added +#. ascending" +#: cms/static/js/views/paging_header.js +msgid "" +"Showing {currentItemRange} out of {totalItemsCount}, filtered by " +"{assetType}, sorted by {sortName} ascending" msgstr "" -#: cms/static/js/views/modals/validation_error_modal.js -msgid "Undo Changes" +#. Translators: sample result: +#. "Showing 0-9 out of 25 total, filtered by Images, sorted by Date Added +#. descending" +#: cms/static/js/views/paging_header.js +msgid "" +"Showing {currentItemRange} out of {totalItemsCount}, filtered by " +"{assetType}, sorted by {sortName} descending" msgstr "" -#: cms/static/js/views/modals/validation_error_modal.js -msgid "Change Manually" +#. Translators: sample result: +#. "Showing 0-9 out of 25 total, sorted by Date Added ascending" +#: cms/static/js/views/paging_header.js +msgid "" +"Showing {currentItemRange} out of {totalItemsCount}, sorted by {sortName} " +"ascending" msgstr "" -#: cms/static/js/views/pages/course_outline.js -msgid "Course Index" +#. Translators: sample result: +#. "Showing 0-9 out of 25 total, sorted by Date Added descending" +#: cms/static/js/views/paging_header.js +msgid "" +"Showing {currentItemRange} out of {totalItemsCount}, sorted by {sortName} " +"descending" msgstr "" -#: cms/static/js/views/pages/course_outline.js -msgid "There were errors reindexing course." +#. Translators: turns into "25 total" to be used in other sentences, e.g. +#. "Showing 0-9 out of 25 total". +#: cms/static/js/views/paging_header.js +msgid "{totalItems} total" msgstr "" #. Translators: This refers to a content group that can be linked to a student @@ -6854,6 +6122,35 @@ msgstr "" msgid "Upload your video thumbnail image." msgstr "" +#: cms/static/js/views/show_textbook.js +msgid "Delete “<%- name %>â€?" +msgstr "" + +#: cms/static/js/views/show_textbook.js +msgid "" +"Deleting a textbook cannot be undone and once deleted any reference to it in" +" your courseware's navigation will also be removed." +msgstr "" + +#: cms/static/js/views/tabs.js +msgid "Delete Page Confirmation" +msgstr "" + +#: cms/static/js/views/tabs.js +msgid "" +"Are you sure you want to delete this page? This action cannot be undone." +msgstr "" + +#: cms/static/js/views/uploads.js +#: cms/templates/js/metadata-file-uploader-item.underscore +#: cms/templates/js/video/metadata-translations-item.underscore +msgid "Upload" +msgstr "" + +#: cms/static/js/views/uploads.js +msgid "We're sorry, there was an error" +msgstr "" + #: cms/static/js/views/utils/create_course_utils.js msgid "" "The combined length of the organization, course number, and course run " @@ -6866,6 +6163,71 @@ msgid "" "more than <%=limit%> characters." msgstr "" +#: cms/static/js/views/utils/move_xblock_utils.js +msgid "Success! \"{displayName}\" has been moved." +msgstr "" + +#: cms/static/js/views/utils/move_xblock_utils.js +msgid "" +"Move cancelled. \"{sourceDisplayName}\" has been moved back to its original " +"location." +msgstr "" + +#: cms/static/js/views/utils/move_xblock_utils.js +msgid "Undo move" +msgstr "" + +#: cms/static/js/views/utils/move_xblock_utils.js +msgid "Take me to the new location" +msgstr "" + +#: cms/static/js/views/utils/xblock_utils.js +msgid "Duplicating" +msgstr "" + +#: cms/static/js/views/utils/xblock_utils.js +msgid "Undo moving" +msgstr "" + +#: cms/static/js/views/utils/xblock_utils.js +msgid "Moving" +msgstr "" + +#: cms/static/js/views/utils/xblock_utils.js +msgid "Deleting this {xblock_type} is permanent and cannot be undone." +msgstr "" + +#: cms/static/js/views/utils/xblock_utils.js +msgid "" +"Any content that has listed this content as a prerequisite will also have " +"access limitations removed." +msgstr "" + +#: cms/static/js/views/utils/xblock_utils.js +msgid "Delete this {xblock_type} (and prerequisite)?" +msgstr "" + +#: cms/static/js/views/utils/xblock_utils.js +msgid "Yes, delete this {xblock_type}" +msgstr "" + +#: cms/static/js/views/utils/xblock_utils.js +msgid "Delete this {xblock_type}?" +msgstr "" + +#: cms/static/js/views/utils/xblock_utils.js +msgid "section" +msgstr "" + +#: cms/static/js/views/utils/xblock_utils.js +msgid "subsection" +msgstr "" + +#: cms/static/js/views/utils/xblock_utils.js +#: cms/templates/js/container-access.underscore +msgid "unit" +msgstr "" + #: cms/static/js/views/validation.js msgid "You've made some changes" msgstr "" @@ -6887,6 +6249,67 @@ msgstr "" msgid "Save Changes" msgstr "" +#: cms/static/js/views/video/transcripts/file_uploader.js +msgid "Please select a file in .srt format." +msgstr "" + +#: cms/static/js/views/video/transcripts/file_uploader.js +msgid "Error: Uploading failed." +msgstr "" + +#: cms/static/js/views/video/transcripts/message_manager.js +msgid "Error: Import failed." +msgstr "" + +#: cms/static/js/views/video/transcripts/message_manager.js +msgid "Error: Replacing failed." +msgstr "" + +#: cms/static/js/views/video/transcripts/message_manager.js +msgid "Error: Choosing failed." +msgstr "" + +#: cms/static/js/views/video/transcripts/metadata_videolist.js +msgid "Error: Connection with server failed." +msgstr "" + +#: cms/static/js/views/video/transcripts/metadata_videolist.js +msgid "Link types should be unique." +msgstr "" + +#: cms/static/js/views/video/transcripts/metadata_videolist.js +msgid "Links should be unique." +msgstr "" + +#: cms/static/js/views/video/transcripts/metadata_videolist.js +msgid "Incorrect url format." +msgstr "" + +#: cms/static/js/views/video/translations_editor.js +msgid "" +"Sorry, there was an error parsing the subtitles that you uploaded. Please " +"check the format and try again." +msgstr "" + +#: cms/static/js/views/video/translations_editor.js +#: cms/static/js/views/video_transcripts.js +msgid "Are you sure you want to remove this transcript?" +msgstr "" + +#: cms/static/js/views/video/translations_editor.js +msgid "" +"If you remove this transcript, the transcript will not be available for this" +" component." +msgstr "" + +#: cms/static/js/views/video/translations_editor.js +msgid "Remove Transcript" +msgstr "" + +#: cms/static/js/views/video/translations_editor.js +msgid "Upload translation" +msgstr "" + #: cms/static/js/views/video_thumbnail.js msgid "Add Thumbnail" msgstr "" @@ -6935,7 +6358,6 @@ msgid "Video duration is {humanizeDuration}" msgstr "" #: cms/static/js/views/video_thumbnail.js -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/add-new-allowance.underscore msgid "minutes" msgstr "" @@ -7028,6 +6450,26 @@ msgid "" "components that use this video." msgstr "" +#: cms/static/js/views/xblock_editor.js +msgid "Editor" +msgstr "" + +#: cms/static/js/views/xblock_editor.js +#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore +msgid "Settings" +msgstr "" + +#: cms/static/js/views/xblock_outline.js +msgid "New {component_type}" +msgstr "" + +#. Translators: This message will be added to the front of messages of type +#. warning, +#. e.g. "Warning: this component has not been configured yet". +#: cms/static/js/views/xblock_validation.js +msgid "Warning" +msgstr "" + #: cms/static/js/xblock_asides/structured_tags.js msgid "Updating Tags" msgstr "" @@ -7055,16 +6497,9 @@ msgstr "" #: cms/templates/js/asset-library.underscore #: cms/templates/js/basic-modal.underscore #: lms/templates/instructor/instructor_dashboard_2/enrollment-code-lookup-links.underscore -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/course_allowances.underscore -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/student-proctored-exam-attempts.underscore msgid "Actions" msgstr "" -#: cms/templates/js/course-outline.underscore -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/add-new-allowance.underscore -msgid "Timed Exam" -msgstr "" - #: cms/templates/js/course-outline.underscore #: cms/templates/js/publish-xblock.underscore #: lms/templates/ccx/schedule.underscore @@ -7501,7 +6936,6 @@ msgid "Course Key" msgstr "" #: lms/djangoapps/support/static/support/templates/certificates_results.underscore -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/student-proctored-exam-attempts.underscore msgid "Status" msgstr "" @@ -7872,6 +7306,10 @@ msgstr "" msgid "Mark Exam As Completed" msgstr "" +#: lms/templates/courseware/proctored-exam-status.underscore +msgid "You are taking \"{exam_link}\" as {exam_type}. " +msgstr "" + #: lms/templates/courseware/proctored-exam-status.underscore msgid "a timed exam" msgstr "" @@ -8594,6 +8032,11 @@ msgstr "" msgid "Need help logging in?" msgstr "" +#: lms/templates/student_account/hinted_login.underscore +#: lms/templates/student_account/login.underscore +msgid "Sign in" +msgstr "" + #: lms/templates/student_account/hinted_login.underscore #, python-format msgid "Would you like to sign in using your %(providerName)s credentials?" @@ -8626,7 +8069,8 @@ msgid "Register with Institution/Campus Credentials" msgstr "" #: lms/templates/student_account/institution_register.underscore -msgid "Register through edX" +#: lms/templates/student_account/register.underscore +msgid "Create an Account" msgstr "" #: lms/templates/student_account/login.underscore @@ -8733,10 +8177,6 @@ msgstr "" msgid "or create a new one here" msgstr "" -#: lms/templates/student_account/register.underscore -msgid "Create an Account" -msgstr "" - #: lms/templates/student_account/register.underscore msgid "Support education research by providing additional information" msgstr "" @@ -9232,75 +8672,6 @@ msgstr "" msgid "Take Photo" msgstr "" -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/add-new-allowance.underscore -msgid "Add a New Allowance" -msgstr "" - -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/add-new-allowance.underscore -msgid "Special Exam" -msgstr "" - -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/add-new-allowance.underscore -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/student-proctored-exam-attempts.underscore -#, python-format -msgid " %(exam_display_name)s " -msgstr "" - -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/add-new-allowance.underscore -msgid "Exam Type" -msgstr "" - -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/add-new-allowance.underscore -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/course_allowances.underscore -msgid "Allowance Type" -msgstr "" - -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/add-new-allowance.underscore -msgid "Additional Time (minutes)" -msgstr "" - -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/add-new-allowance.underscore -msgid "Value" -msgstr "" - -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/add-new-allowance.underscore -msgid "Username or Email" -msgstr "" - -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/course_allowances.underscore -msgid "Allowances" -msgstr "" - -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/course_allowances.underscore -msgid "Add Allowance" -msgstr "" - -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/course_allowances.underscore -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/student-proctored-exam-attempts.underscore -msgid "Exam Name" -msgstr "" - -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/course_allowances.underscore -msgid "Allowance Value" -msgstr "" - -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/student-proctored-exam-attempts.underscore -msgid "Time Limit" -msgstr "" - -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/student-proctored-exam-attempts.underscore -msgid "Started At" -msgstr "" - -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/student-proctored-exam-attempts.underscore -msgid "Completed At" -msgstr "" - -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/student-proctored-exam-attempts.underscore -#, python-format -msgid " %(username)s " -msgstr "" - #: openedx/features/course_bookmarks/static/course_bookmarks/templates/bookmarks-list.underscore msgid "Bookmarked on" msgstr "" @@ -9847,6 +9218,10 @@ msgstr "" msgid "Proctored Exam" msgstr "" +#: cms/templates/js/course-outline.underscore +msgid "Timed Exam" +msgstr "" + #: cms/templates/js/course-outline.underscore #: cms/templates/js/xblock-outline.underscore #, python-format diff --git a/conf/locale/eo/LC_MESSAGES/django.mo b/conf/locale/eo/LC_MESSAGES/django.mo index f84dd7e3796aac8de16e6528786d879a02538dfe..4f75f03961c886208aed520e07e77bc224635b9d 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 8bfb938baf328fd670959e5b7546ee6c6c72ee8d..7ff68872de4068adfb85339ed02d8e65ac21dc05 100644 --- a/conf/locale/eo/LC_MESSAGES/django.po +++ b/conf/locale/eo/LC_MESSAGES/django.po @@ -38,8 +38,8 @@ msgid "" msgstr "" "Project-Id-Version: 0.1a\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2019-05-16 10:12+0000\n" -"PO-Revision-Date: 2019-05-16 10:12:24.699998\n" +"POT-Creation-Date: 2019-06-13 08:13+0000\n" +"PO-Revision-Date: 2019-06-13 08:13:47.931648\n" "Last-Translator: \n" "Language-Team: openedx-translation <openedx-translation@googlegroups.com>\n" "Language: eo\n" @@ -469,9 +469,9 @@ msgstr "" "¢σηѕє¢тєтυÑ#" #: common/djangoapps/student/forms.py -msgid "Your legal name must be a minimum of two characters long" +msgid "Your legal name must be a minimum of one character long" msgstr "" -"Ãöür légäl nämé müst ßé ä mïnïmüm öf twö çhäräçtérs löng â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ " +"Ãöür légäl nämé müst ßé ä mïnïmüm öf öné çhäräçtér löng â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ " "ѕιт αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±#" #: common/djangoapps/student/forms.py @@ -1043,6 +1043,13 @@ msgstr "" "ÏαÑιαтυÑ. єχ¢єÏÑ‚Ñ”Ï…Ñ Ñ•Î¹Î·Ñ‚ σ¢¢αє¢αт ¢υÏι∂αтαт ηση ÏÑσι∂єηт, ѕυηт ιη ¢υłÏα qυι " "σƒƒι¢ια#" +#: common/djangoapps/student/views/management.py +msgid "" +"Your previous request is in progress, please try again in a few moments." +msgstr "" +"Ãöür prévïöüs réqüést ïs ïn prögréss, pléäsé trý ägäïn ïn ä féw möménts. " +"â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕє¢тєтυÑ#" + #: common/djangoapps/student/views/management.py msgid "Some error occured during password change. Please try again" msgstr "" @@ -3271,23 +3278,23 @@ msgstr "Dïsçüssïön Töpïç Mäppïng â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ msgid "" "Enter discussion categories in the following format: \"CategoryName\": " "{\"id\": \"i4x-InstitutionName-CourseNumber-course-CourseRun\"}. For " -"example, one discussion category may be \"Lydian Mode\": {\"id\": \"i4x-" -"UniversityX-MUS101-course-2015_T1\"}. The \"id\" value for each category " -"must be unique. In \"id\" values, the only special characters that are " -"supported are underscore, hyphen, and period. You can also specify a " +"example, one discussion category may be \"Lydian Mode\": {\"id\": " +"\"i4x-UniversityX-MUS101-course-2015_T1\"}. The \"id\" value for each " +"category must be unique. In \"id\" values, the only special characters that " +"are supported are underscore, hyphen, and period. You can also specify a " "category as the default for new posts in the Discussion page by setting its " -"\"default\" attribute to true. For example, \"Lydian Mode\": {\"id\": \"i4x-" -"UniversityX-MUS101-course-2015_T1\", \"default\": true}." +"\"default\" attribute to true. For example, \"Lydian Mode\": {\"id\": " +"\"i4x-UniversityX-MUS101-course-2015_T1\", \"default\": true}." msgstr "" "Éntér dïsçüssïön çätégörïés ïn thé föllöwïng förmät: \"ÇätégörýNämé\": " "{\"id\": \"i4x-InstitutionName-CourseNumber-course-CourseRun\"}. För " -"éxämplé, öné dïsçüssïön çätégörý mäý ßé \"Lýdïän Mödé\": {\"id\": \"i4x-" -"UniversityX-MUS101-course-2015_T1\"}. Thé \"ïd\" välüé för éäçh çätégörý " -"müst ßé ünïqüé. ÃŒn \"ïd\" välüés, thé önlý spéçïäl çhäräçtérs thät äré " -"süppörtéd äré ündérsçöré, hýphén, änd pérïöd. Ãöü çän älsö spéçïfý ä " +"éxämplé, öné dïsçüssïön çätégörý mäý ßé \"Lýdïän Mödé\": {\"id\": " +"\"i4x-UniversityX-MUS101-course-2015_T1\"}. Thé \"ïd\" välüé för éäçh " +"çätégörý müst ßé ünïqüé. ÃŒn \"ïd\" välüés, thé önlý spéçïäl çhäräçtérs thät " +"äré süppörtéd äré ündérsçöré, hýphén, änd pérïöd. Ãöü çän älsö spéçïfý ä " "çätégörý äs thé défäült för néw pösts ïn thé Dïsçüssïön pägé ßý séttïng ïts " -"\"défäült\" ättrïßüté tö trüé. För éxämplé, \"Lýdïän Mödé\": {\"id\": \"i4x-" -"UniversityX-MUS101-course-2015_T1\", \"default\": true}.#" +"\"défäült\" ättrïßüté tö trüé. För éxämplé, \"Lýdïän Mödé\": {\"id\": " +"\"i4x-UniversityX-MUS101-course-2015_T1\", \"default\": true}.#" #: common/lib/xmodule/xmodule/course_module.py msgid "Discussion Sorting Alphabetical" @@ -7698,10 +7705,10 @@ msgstr "" #: lms/djangoapps/dashboard/git_import.py msgid "" "Non usable git url provided. Expecting something like: " -"git@github.com:mitocw/edx4edx_lite.git" +"git@github.com:edx/edx4edx_lite.git" msgstr "" "Nön üsäßlé gït ürl prövïdéd. Éxpéçtïng söméthïng lïké: " -"gït@gïthüß.çöm:mïtöçw/édx4édx_lïté.gït â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σ#" +"gït@gïthüß.çöm:édx/édx4édx_lïté.gït â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕ#" #: lms/djangoapps/dashboard/git_import.py msgid "Unable to get git log" @@ -10890,9 +10897,9 @@ msgstr "Nö pröfïlé föünd för üsér â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ #: lms/djangoapps/verify_student/views.py #, python-brace-format -msgid "Name must be at least {min_length} characters long." +msgid "Name must be at least {min_length} character long." msgstr "" -"Nämé müst ßé ät léäst {min_length} çhäräçtérs löng. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ " +"Nämé müst ßé ät léäst {min_length} çhäräçtér löng. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ " "αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ #" #: lms/djangoapps/verify_student/views.py @@ -12197,15 +12204,6 @@ msgstr "" "Thé réäsön thïs üsér wänts tö äççéss thé ÀPÃŒ. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, " "Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ #" -#: openedx/core/djangoapps/api_admin/models.py -#, python-brace-format -msgid "API access request from {company}" -msgstr "ÀPÃŒ äççéss réqüést fröm {company} â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕє#" - -#: openedx/core/djangoapps/api_admin/models.py -msgid "API access request" -msgstr "ÀPÃŒ äççéss réqüést â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт#" - #: openedx/core/djangoapps/api_admin/widgets.py #, python-brace-format msgid "" @@ -13589,23 +13587,22 @@ msgstr "" #: openedx/core/djangoapps/user_api/api.py #, python-brace-format msgid "" -"By creating an account with {platform_name}, you agree to " -"abide by our {platform_name} " +"By creating an account, you agree to the " "{terms_of_service_link_start}{terms_of_service}{terms_of_service_link_end}" -" and agree to our {privacy_policy_link_start}Privacy " -"Policy{privacy_policy_link_end}." +" and you acknowledge that {platform_name} and each Member " +"process your personal data in accordance with the " +"{privacy_policy_link_start}Privacy Policy{privacy_policy_link_end}." msgstr "" -"Bý çréätïng än äççöünt wïth {platform_name}, ýöü ägréé tö " -"äßïdé ßý öür {platform_name} " +"Bý çréätïng än äççöünt, ýöü ägréé tö thé " "{terms_of_service_link_start}{terms_of_service}{terms_of_service_link_end}" -" änd ägréé tö öür {privacy_policy_link_start}Prïväçý " -"Pölïçý{privacy_policy_link_end}. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ " -"α∂ιÏιѕι¢ιηg єłιт, ѕє∂ ∂σ єιυѕмσ∂ тємÏÏƒÑ Î¹Î·Â¢Î¹âˆ‚Î¹âˆ‚Ï…Î·Ñ‚ Ï…Ñ‚ łαвσÑÑ” єт ∂σłσÑÑ” мαgηα" -" αłιqυα. Ï…Ñ‚ єηιм α∂ мιηιм νєηιαм, qυιѕ ησѕтÑυ∂ єχєÑ¢ιтαтιση υłłαм¢σ łαвσÑιѕ " -"ηιѕι Ï…Ñ‚ αłιqÏ…Î¹Ï Ñ”Ï‡ єα ¢σммσ∂σ ¢σηѕєqυαт. ∂υιѕ αυтє ιÑÏ…ÑÑ” âˆ‚ÏƒÅ‚ÏƒÑ Î¹Î· " -"ÑÑ”ÏÑєнєη∂єÑιт ιη νσłυÏтαтє νєłιт єѕѕє ¢ιłłυм ∂σłσÑÑ” єυ Æ’Ï…gιαт ηυłłα " -"ÏαÑιαтυÑ. єχ¢єÏÑ‚Ñ”Ï…Ñ Ñ•Î¹Î·Ñ‚ σ¢¢αє¢αт ¢υÏι∂αтαт ηση ÏÑσι∂єηт, ѕυηт ιη ¢υłÏα qυι " -"σƒƒι¢ια#" +" änd ýöü äçknöwlédgé thät {platform_name} änd éäçh Mémßér " +"pröçéss ýöür pérsönäl dätä ïn äççördänçé wïth thé " +"{privacy_policy_link_start}Prïväçý Pölïçý{privacy_policy_link_end}. â± 'σÑєм " +"ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±âˆ‚Î¹Ïιѕι¢ιηg єłιт, ѕє∂ ∂σ єιυѕмσ∂ тємÏÏƒÑ " +"ιη¢ι∂ι∂υηт Ï…Ñ‚ łαвσÑÑ” єт ∂σłσÑÑ” мαgηα αłιqυα. Ï…Ñ‚ єηιм α∂ мιηιм νєηιαм, qυιѕ " +"ησѕтÑυ∂ єχєÑ¢ιтαтιση υłłαм¢σ łαвσÑιѕ ηιѕι Ï…Ñ‚ αłιqÏ…Î¹Ï Ñ”Ï‡ єα ¢σммσ∂σ " +"¢σηѕєqυαт. ∂υιѕ αυтє ιÑÏ…ÑÑ” âˆ‚ÏƒÅ‚ÏƒÑ Î¹Î· ÑÑ”ÏÑєнєη∂єÑιт ιη νσłυÏтαтє νєłιт єѕѕє " +"¢ιłłυм ∂σłσÑÑ” єυ Æ’Ï…gιαт ηυłłα#" #. Translators: "Terms of service" is a legal document users must agree to #. in order to register a new account. @@ -14185,11 +14182,11 @@ msgstr "Révïéws â± 'σÑєм ιÏѕυм #" #: openedx/features/course_experience/utils.py #, no-python-format, python-brace-format msgid "" -"{banner_open}15% off your first upgrade.{span_close} Discount automatically " -"applied.{div_close}" +"{banner_open}{percentage}% off your first upgrade.{span_close} Discount " +"automatically applied.{div_close}" msgstr "" -"{banner_open}15% öff ýöür fïrst üpgrädé.{span_close} Dïsçöünt äütömätïçällý " -"äpplïéd.{div_close} â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ #" +"{banner_open}{percentage}% öff ýöür fïrst üpgrädé.{span_close} Dïsçöünt " +"äütömätïçällý äpplïéd.{div_close} â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ #" #: openedx/features/course_experience/views/course_home_messages.py #, python-brace-format @@ -14250,6 +14247,43 @@ msgstr "{choice} â± 'σÑєм#" msgid "Set goal to: {goal_text}" msgstr "Sét göäl tö: {goal_text} â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αм#" +#: openedx/features/discounts/admin.py +msgid "" +"These define the context to disable lms-controlled discounts on. If no " +"values are set, then the configuration applies globally. If a single value " +"is set, then the configuration applies to all courses within that context. " +"At most one value can be set at a time.<br>If multiple contexts apply to a " +"course (for example, if configuration is specified for the course " +"specifically, and for the org that the course is in, then the more specific " +"context overrides the more general context." +msgstr "" +"Thésé défïné thé çöntéxt tö dïsäßlé lms-çöntrölléd dïsçöünts ön. ÃŒf nö " +"välüés äré sét, thén thé çönfïgürätïön äpplïés glößällý. ÃŒf ä sïnglé välüé " +"ïs sét, thén thé çönfïgürätïön äpplïés tö äll çöürsés wïthïn thät çöntéxt. " +"Àt möst öné välüé çän ßé sét ät ä tïmé.<br>ÃŒf mültïplé çöntéxts äpplý tö ä " +"çöürsé (för éxämplé, ïf çönfïgürätïön ïs spéçïfïéd för thé çöürsé " +"spéçïfïçällý, änd för thé örg thät thé çöürsé ïs ïn, thén thé möré spéçïfïç " +"çöntéxt övérrïdés thé möré généräl çöntéxt.#" + +#: openedx/features/discounts/admin.py +msgid "" +"If any of these values is left empty or \"Unknown\", then their value at " +"runtime will be retrieved from the next most specific context that applies. " +"For example, if \"Disabled\" is left as \"Unknown\" in the course context, " +"then that course will be Disabled only if the org that it is in is Disabled." +msgstr "" +"ÃŒf äný öf thésé välüés ïs léft émptý ör \"Ûnknöwn\", thén théïr välüé ät " +"rüntïmé wïll ßé rétrïévéd fröm thé néxt möst spéçïfïç çöntéxt thät äpplïés. " +"För éxämplé, ïf \"Dïsäßléd\" ïs léft äs \"Ûnknöwn\" ïn thé çöürsé çöntéxt, " +"thén thät çöürsé wïll ßé Dïsäßléd önlý ïf thé örg thät ït ïs ïn ïs Dïsäßléd." +" â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±âˆ‚Î¹Ïιѕι¢ιηg єłιт, ѕє∂ ∂σ єιυѕмσ∂ " +"тємÏÏƒÑ Î¹Î·Â¢Î¹âˆ‚Î¹âˆ‚Ï…Î·Ñ‚ Ï…Ñ‚ łαвσÑÑ” єт ∂σłσÑÑ” мαgηα αłιqυα. Ï…Ñ‚ єηιм α∂ мιηιм νєηιαм," +" qυιѕ ησѕтÑυ∂ єχєÑ¢ιтαтιση υłłαм¢σ #" + +#: openedx/features/discounts/models.py +msgid "Disabled" +msgstr "Dïsäßléd â± 'σÑєм ιÏѕυм ∂#" + #: openedx/features/enterprise_support/api.py #, python-brace-format msgid "Enrollment in {course_title} was not complete." @@ -14392,10 +14426,10 @@ msgstr "" #: cms/djangoapps/contentstore/git_export_utils.py msgid "" "Non writable git url provided. Expecting something like: " -"git@github.com:mitocw/edx4edx_lite.git" +"git@github.com:edx/edx4edx_lite.git" msgstr "" "Nön wrïtäßlé gït ürl prövïdéd. Éxpéçtïng söméthïng lïké: " -"gït@gïthüß.çöm:mïtöçw/édx4édx_lïté.gït â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢#" +"gït@gïthüß.çöm:édx/édx4édx_lïté.gït â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢ση#" #: cms/djangoapps/contentstore/git_export_utils.py msgid "" @@ -15804,6 +15838,10 @@ msgstr "Déßüg: â± 'σÑєм ιÏѕυм #" msgid "External Authentication failed" msgstr "Éxtérnäl Àüthéntïçätïön fäïléd â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕє¢т#" +#: lms/templates/footer.html +msgid "organization logo" +msgstr "örgänïzätïön lögö â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмє#" + #: lms/templates/forgot_password_modal.html msgid "" "Please enter your e-mail address below, and we will e-mail instructions for " @@ -16055,21 +16093,17 @@ msgstr "" msgid "Search for a course" msgstr "Séärçh för ä çöürsé â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт,#" -#. Translators: 'Open edX' is a registered trademark, please keep this -#. untranslated. See http://open.edx.org for more information. -#: lms/templates/index_overlay.html -msgid "Welcome to the Open edX{registered_trademark} platform!" -msgstr "" -"Wélçömé tö thé Öpén édX{registered_trademark} plätförm! â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ " -"ѕιт αмєт, ¢σηѕє¢тєтυ#" +#: lms/templates/index_overlay.html lms/templates/register-sidebar.html +msgid "Welcome to {platform_name}" +msgstr "Wélçömé tö {platform_name} â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚#" #. Translators: 'Open edX' is a registered trademark, please keep this #. untranslated. See http://open.edx.org for more information. #: lms/templates/index_overlay.html -msgid "It works! This is the default homepage for this Open edX instance." +msgid "It works! Powered by Open edX{registered_trademark}" msgstr "" -"ÃŒt wörks! Thïs ïs thé défäült hömépägé för thïs Öpén édX ïnstänçé. â± 'σÑєм " -"ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ #" +"ÃŒt wörks! Pöwéréd ßý Öpén édX{registered_trademark} â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ " +"αмєт, ¢σηѕє¢тє#" #: lms/templates/invalid_email_key.html msgid "Invalid email change key" @@ -16424,6 +16458,12 @@ msgstr "Sävé ýöür änswér â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αм# msgid "Reset your answer" msgstr "Rését ýöür änswér â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмє#" +#: lms/templates/problem.html +msgid "Answers are displayed within the problem" +msgstr "" +"Ànswérs äré dïspläýéd wïthïn thé prößlém â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, " +"¢σηѕє¢тєтυÑ#" + #: lms/templates/problem_notifications.html msgid "Next Hint" msgstr "Néxt Hïnt â± 'σÑєм ιÏѕυм ∂σł#" @@ -16661,10 +16701,6 @@ msgstr "Àlréädý régïstéréd? â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ msgid "Log in" msgstr "Lög ïn â± 'σÑєм ιÏÑ•Ï…#" -#: lms/templates/register-sidebar.html -msgid "Welcome to {platform_name}" -msgstr "Wélçömé tö {platform_name} â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚#" - #: lms/templates/register-sidebar.html msgid "" "Registering with {platform_name} gives you access to all of our current and " @@ -18796,6 +18832,20 @@ msgstr "" "Pléäsé wäït whïlé wé rétrïévé ýöür ördér détäïls. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ " "αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±#" +#: lms/templates/course_modes/_upgrade_button.html +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/_upgrade_button.html +#: themes/edx.org/lms/templates/course_modes/choose.html +msgid "Pursue the Verified Track" +msgstr "Pürsüé thé Vérïfïéd Träçk â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕ#" + +#: lms/templates/course_modes/_upgrade_button.html +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/_upgrade_button.html +#: themes/edx.org/lms/templates/course_modes/choose.html +msgid "Pursue a Verified Certificate" +msgstr "Pürsüé ä Vérïfïéd Çértïfïçäté â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕє¢#" + #: lms/templates/course_modes/choose.html #: themes/edx.org/lms/templates/course_modes/choose.html msgid "Enroll In {course_name} | Choose Your Track" @@ -18906,16 +18956,6 @@ msgstr "" "{b_start}Éäsïlý shäréäßlé:{b_end} Àdd thé çértïfïçäté tö ýöür ÇV ör résümé, " "ör pöst ït dïréçtlý ön LïnkédÃŒn â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, #" -#: lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -msgid "Pursue a Verified Certificate" -msgstr "Pürsüé ä Vérïfïéd Çértïfïçäté â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕє¢#" - -#: lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -msgid "Pursue the Verified Track" -msgstr "Pürsüé thé Vérïfïéd Träçk â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕ#" - #: lms/templates/course_modes/choose.html #: themes/edx.org/lms/templates/course_modes/choose.html msgid "" @@ -19075,6 +19115,12 @@ msgstr "" "Àn érrör öççürréd. Pléäsé trý ägäïn lätér. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, " "Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ #" +#: lms/templates/courseware/course_about.html +msgid "An error has occurred. Please ensure that you are logged in to enroll." +msgstr "" +"Àn érrör häs öççürréd. Pléäsé énsüré thät ýöü äré löggéd ïn tö énröll. " +"â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ #" + #: lms/templates/courseware/course_about.html msgid "You are enrolled in this course" msgstr "Ãöü äré énrölléd ïn thïs çöürsé â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕє¢т#" @@ -19113,8 +19159,8 @@ msgstr "" "âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕє¢т#" #: lms/templates/courseware/course_about.html -msgid "Enroll in {course_name}" -msgstr "Énröll ïn {course_name} â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹#" +msgid "Enroll Now" +msgstr "Énröll Nöw â± 'σÑєм ιÏѕυм ∂σłσ#" #: lms/templates/courseware/course_about.html msgid "View About Page in studio" @@ -19478,10 +19524,10 @@ msgid "View Grading in studio" msgstr "Vïéw Grädïng ïn stüdïö â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢#" #: lms/templates/courseware/progress.html -msgid "Course Progress for Student '{username}' ({email})" +msgid "Course Progress for '{username}' ({email})" msgstr "" -"Çöürsé Prögréss för Stüdént '{username}' ({email}) â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ " -"αмєт, ¢σηѕє¢тєтυÑ#" +"Çöürsé Prögréss för '{username}' ({email}) â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, " +"¢σηѕє¢т#" #: lms/templates/courseware/progress.html msgid "View Certificate" diff --git a/conf/locale/eo/LC_MESSAGES/djangojs.mo b/conf/locale/eo/LC_MESSAGES/djangojs.mo index c65f41d3c9f687897beaeb5e1dad58bbb7260134..b07082b205f2dbd49479a2ee32ec17f8d1169a31 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 dd0266d8390f73037a5ce628ad7fbfd25370d5ea..3415d47044a10fd3da72483122e6e0c712fc78d0 100644 --- a/conf/locale/eo/LC_MESSAGES/djangojs.po +++ b/conf/locale/eo/LC_MESSAGES/djangojs.po @@ -32,8 +32,8 @@ msgid "" msgstr "" "Project-Id-Version: 0.1a\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2019-05-16 10:10+0000\n" -"PO-Revision-Date: 2019-05-16 10:12:24.543843\n" +"POT-Creation-Date: 2019-06-13 08:13+0000\n" +"PO-Revision-Date: 2019-06-13 08:13:47.491238\n" "Last-Translator: \n" "Language-Team: openedx-translation <openedx-translation@googlegroups.com>\n" "Language: eo\n" @@ -43,31 +43,6 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "Generated-By: Babel 1.3\n" -#: cms/static/cms/js/main.js cms/static/js/views/active_video_upload_list.js -#: cms/static/js/views/video_transcripts.js common/static/bundles/commons.js -msgid "" -"This may be happening because of an error with our server or your internet " -"connection. Try refreshing the page or making sure you are online." -msgstr "" -"Thïs mäý ßé häppénïng ßéçäüsé öf än érrör wïth öür sérvér ör ýöür ïntérnét " -"çönnéçtïön. Trý réfréshïng thé pägé ör mäkïng süré ýöü äré önlïné. â± 'σÑєм " -"ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±âˆ‚Î¹Ïιѕι¢ιηg єłιт, ѕє∂ ∂σ єιυѕмσ∂ тємÏÏƒÑ " -"ιη¢ι∂ι∂υηт Ï…Ñ‚ łαвσÑÑ” єт ∂σłσÑÑ” мαgηα αłιqυα. Ï…Ñ‚ єηιм α∂ мιηιм νєηιαм, qυιѕ " -"ησѕтÑυ∂ єχєÑ¢ιтαтιση υłłαм¢σ łαвσÑιѕ ηιѕι Ï…Ñ‚ αłιqÏ…Î¹Ï Ñ”Ï‡ єα ¢σммσ∂σ " -"¢σηѕєqυαт. ∂υιѕ αυтє ιÑÏ…ÑÑ” âˆ‚ÏƒÅ‚ÏƒÑ Î¹Î· ÑÑ”ÏÑєнєη∂єÑιт ιη νσłυÏтαтє νєłιт єѕѕє " -"¢ιłłυм ∂σłσÑÑ” єυ Æ’Ï…gιαт ηυłłα ÏαÑιαтυÑ. єχ¢єÏÑ‚Ñ”Ï…Ñ Ñ•Î¹Î·Ñ‚ σ¢¢αє¢αт ¢υÏι∂αтαт " -"ηση ÏÑσι∂єηт, ѕυηт ιη ¢υłÏα qυι σƒƒι¢ια ∂єѕєÑυηт мσłłιт αηιм ι∂ єѕт #" - -#: cms/static/cms/js/main.js common/static/bundles/commons.js -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/cms/js/xblock/cms.runtime.v1.js common/static/bundles/commons.js -msgid "OpenAssessment Save Error" -msgstr "ÖpénÀsséssmént Sävé Érrör â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕ#" - #: cms/static/cms/js/xblock/cms.runtime.v1.js #: cms/static/js/certificates/views/signatory_details.js #: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js @@ -77,32 +52,15 @@ msgstr "ÖpénÀsséssmént Sävé Érrör â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ #: cms/static/js/views/edit_textbook.js #: cms/static/js/views/list_item_editor.js #: cms/static/js/views/modals/edit_xblock.js cms/static/js/views/tabs.js -#: cms/static/js/views/utils/xblock_utils.js common/static/bundles/commons.js -#: common/static/bundles/js/factories/container.js -#: common/static/bundles/js/factories/edit_tabs.js -#: common/static/bundles/js/factories/library.js -#: common/static/bundles/js/factories/textbooks.js -#: lms/static/js/ccx/schedule.js lms/static/js/views/fields.js +#: cms/static/js/views/utils/xblock_utils.js lms/static/js/ccx/schedule.js +#: lms/static/js/views/fields.js msgid "Saving" msgstr "Sävïng â± 'σÑєм ιÏÑ•Ï…#" -#: cms/static/js/base.js common/static/bundles/commons.js -msgid "This link will open in a new browser window/tab" -msgstr "" -"Thïs lïnk wïll öpén ïn ä néw ßröwsér wïndöw/täß â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт," -" Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±#" - -#: cms/static/js/base.js common/static/bundles/commons.js -msgid "This link will open in a modal window" -msgstr "" -"Thïs lïnk wïll öpén ïn ä mödäl wïndöw â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, " -"¢σηѕє¢тєтυ#" - #: cms/static/js/certificates/views/signatory_editor.js #: cms/static/js/views/asset.js cms/static/js/views/list_item.js #: cms/static/js/views/manage_users_and_roles.js #: cms/static/js/views/show_textbook.js -#: common/static/bundles/js/factories/textbooks.js #: lms/djangoapps/teams/static/teams/js/views/instructor_tools.js #: cms/templates/js/certificate-details.underscore #: cms/templates/js/certificate-editor.underscore @@ -123,15 +81,6 @@ msgstr "" msgid "Delete" msgstr "Délété â± 'σÑєм ιÏÑ•Ï…#" -#: cms/static/js/certificates/views/signatory_editor.js -#: cms/static/js/views/course_info_update.js cms/static/js/views/list_item.js -#: cms/static/js/views/show_textbook.js cms/static/js/views/tabs.js -#: cms/static/js/views/utils/xblock_utils.js common/static/bundles/commons.js -#: common/static/bundles/js/factories/edit_tabs.js -#: common/static/bundles/js/factories/textbooks.js -msgid "Deleting" -msgstr "Délétïng â± 'σÑєм ιÏѕυм ∂#" - #. #-#-#-#-# djangojs-partial.po (0.1a) #-#-#-#-# #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML @@ -143,11 +92,6 @@ msgstr "Délétïng â± 'σÑєм ιÏѕυм ∂#" #: cms/static/js/views/show_textbook.js cms/static/js/views/tabs.js #: cms/static/js/views/validation.js #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/StudentAccountDeletion.js -#: common/static/bundles/StudentAccountDeletionInitializer.js -#: common/static/bundles/commons.js -#: common/static/bundles/js/factories/edit_tabs.js -#: common/static/bundles/js/factories/textbooks.js #: common/static/common/js/components/utils/view_utils.js #: lms/static/js/Markdown.Editor.js #: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx @@ -173,182 +117,12 @@ msgstr "Délétïng â± 'σÑєм ιÏѕυм ∂#" msgid "Cancel" msgstr "Çänçél â± 'σÑєм ιÏÑ•Ï…#" -#: cms/static/js/features/import/factories/import.js -#: common/static/bundles/Import.js -msgid "There was an error during the upload process." -msgstr "" -"Théré wäs än érrör dürïng thé üplöäd pröçéss. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, " -"Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ #" - -#: cms/static/js/features/import/factories/import.js -#: common/static/bundles/Import.js -msgid "There was an error while unpacking the file." -msgstr "" -"Théré wäs än érrör whïlé ünpäçkïng thé fïlé. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, " -"Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ #" - -#: cms/static/js/features/import/factories/import.js -#: common/static/bundles/Import.js -msgid "There was an error while verifying the file you submitted." -msgstr "" -"Théré wäs än érrör whïlé vérïfýïng thé fïlé ýöü süßmïttéd. â± 'σÑєм ιÏѕυм " -"âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±#" - -#: cms/static/js/features/import/factories/import.js -#: common/static/bundles/Import.js -msgid "Choose new file" -msgstr "Çhöösé néw fïlé â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ α#" - -#: cms/static/js/features/import/factories/import.js -#: common/static/bundles/Import.js -msgid "" -"File format not supported. Please upload a file with a {ext} extension." -msgstr "" -"Fïlé förmät nöt süppörtéd. Pléäsé üplöäd ä fïlé wïth ä {ext} éxténsïön. " -"â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ #" - -#: cms/static/js/features/import/factories/import.js -#: common/static/bundles/Import.js -msgid "There was an error while importing the new library to our database." -msgstr "" -"Théré wäs än érrör whïlé ïmpörtïng thé néw lïßrärý tö öür dätäßäsé. â± 'σÑєм " -"ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ #" - -#: cms/static/js/features/import/factories/import.js -#: common/static/bundles/Import.js -msgid "There was an error while importing the new course to our database." -msgstr "" -"Théré wäs än érrör whïlé ïmpörtïng thé néw çöürsé tö öür dätäßäsé. â± 'σÑєм " -"ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ #" - -#: cms/static/js/features/import/factories/import.js -#: common/static/bundles/Import.js -msgid "Your import has failed." -msgstr "Ãöür ïmpört häs fäïléd. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σ#" - -#: cms/static/js/features/import/views/import.js -#: common/static/bundles/Import.js -msgid "Your import is in progress; navigating away will abort it." -msgstr "" -"Ãöür ïmpört ïs ïn prögréss; nävïgätïng äwäý wïll äßört ït. â± 'σÑєм ιÏѕυм " -"âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±#" - -#: cms/static/js/features/import/views/import.js -#: common/static/bundles/Import.js -msgid "Error importing course" -msgstr "Érrör ïmpörtïng çöürsé â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢#" - -#: cms/static/js/features/import/views/import.js -#: common/static/bundles/Import.js -msgid "There was an error with the upload" -msgstr "" -"Théré wäs än érrör wïth thé üplöäd â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕє¢тєт#" - -#: cms/static/js/features_jsx/studio/CourseOrLibraryListing.jsx -#: common/static/bundles/CourseOrLibraryListing.js -msgid "Organization:" -msgstr "Örgänïzätïön: â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹#" - -#: cms/static/js/features_jsx/studio/CourseOrLibraryListing.jsx -#: common/static/bundles/CourseOrLibraryListing.js -msgid "Course Number:" -msgstr "Çöürsé Nümßér: â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚#" - -#: cms/static/js/features_jsx/studio/CourseOrLibraryListing.jsx -#: common/static/bundles/CourseOrLibraryListing.js -msgid "Course Run:" -msgstr "Çöürsé Rün: â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ #" - -#: cms/static/js/features_jsx/studio/CourseOrLibraryListing.jsx -#: common/static/bundles/CourseOrLibraryListing.js -msgid "(Read-only)" -msgstr "(Réäd-önlý) â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ #" - -#: cms/static/js/features_jsx/studio/CourseOrLibraryListing.jsx -#: common/static/bundles/CourseOrLibraryListing.js -msgid "Re-run Course" -msgstr "Ré-rün Çöürsé â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹#" - -#: cms/static/js/features_jsx/studio/CourseOrLibraryListing.jsx -#: common/static/bundles/CourseOrLibraryListing.js -#: cms/templates/js/show-textbook.underscore -msgid "View Live" -msgstr "Vïéw Lïvé â± 'σÑєм ιÏѕυм ∂σł#" - #. Translators: This is the status of an active video upload #: cms/static/js/models/active_video_upload.js cms/static/js/views/assets.js #: cms/static/js/views/video_thumbnail.js lms/static/js/views/image_field.js msgid "Uploading" msgstr "Ûplöädïng â± 'σÑєм ιÏѕυм ∂σł#" -#: cms/static/js/models/chapter.js -#: common/static/bundles/js/factories/textbooks.js -msgid "Chapter name and asset_path are both required" -msgstr "" -"Çhäptér nämé änd ässét_päth äré ßöth réqüïréd â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, " -"Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ #" - -#: cms/static/js/models/chapter.js -#: common/static/bundles/js/factories/textbooks.js -msgid "Chapter name is required" -msgstr "Çhäptér nämé ïs réqüïréd â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢ση#" - -#: cms/static/js/models/chapter.js -#: common/static/bundles/js/factories/textbooks.js -msgid "asset_path is required" -msgstr "ässét_päth ïs réqüïréd â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢#" - -#: cms/static/js/models/course.js cms/static/js/models/section.js -#: common/static/bundles/commons.js -#: common/static/bundles/js/factories/textbooks.js -msgid "You must specify a name" -msgstr "Ãöü müst spéçïfý ä nämé â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σ#" - -#: cms/static/js/models/textbook.js -#: common/static/bundles/js/factories/textbooks.js -msgid "Textbook name is required" -msgstr "Téxtßöök nämé ïs réqüïréd â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕ#" - -#: cms/static/js/models/textbook.js -#: common/static/bundles/js/factories/textbooks.js -msgid "Please add at least one chapter" -msgstr "Pléäsé ädd ät léäst öné çhäptér â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕє¢т#" - -#: cms/static/js/models/textbook.js -#: common/static/bundles/js/factories/textbooks.js -msgid "All chapters must have a name and asset" -msgstr "" -"Àll çhäptérs müst hävé ä nämé änd ässét â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, " -"¢σηѕє¢тєтυÑ#" - -#: cms/static/js/models/uploads.js common/static/bundles/commons.js -msgid "" -"Only <%= fileTypes %> files can be uploaded. Please select a file ending in " -"<%= fileExtensions %> to upload." -msgstr "" -"Önlý <%= fileTypes %> fïlés çän ßé üplöädéd. Pléäsé séléçt ä fïlé éndïng ïn " -"<%= fileExtensions %> tö üplöäd. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕє¢тєт#" - -#: cms/static/js/models/uploads.js common/static/bundles/commons.js -#: lms/templates/student_account/hinted_login.underscore -#: lms/templates/student_account/institution_login.underscore -#: lms/templates/student_account/institution_register.underscore -msgid "or" -msgstr "ör â± 'σÑ#" - -#: cms/static/js/models/xblock_validation.js -#: common/static/bundles/js/factories/xblock_validation.js -msgid "This unit has validation issues." -msgstr "" -"Thïs ünït häs välïdätïön ïssüés. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕє¢тє#" - -#: cms/static/js/models/xblock_validation.js -#: common/static/bundles/js/factories/xblock_validation.js -msgid "This component has validation issues." -msgstr "" -"Thïs çömpönént häs välïdätïön ïssüés. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, " -"¢σηѕє¢тєтυ#" - #. #-#-#-#-# djangojs-partial.po (0.1a) #-#-#-#-# #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML @@ -356,7 +130,7 @@ msgstr "" #: cms/static/js/views/modals/edit_xblock.js #: cms/static/js/views/video_transcripts.js #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js lms/static/js/student_account/tos_modal.js +#: lms/static/js/student_account/tos_modal.js #: cms/templates/js/course-video-settings.underscore #: common/static/common/templates/image-modal.underscore #: common/static/common/templates/discussion/alert-popup.underscore @@ -371,7 +145,7 @@ msgstr "Çlösé â± 'σÑєм ιÏÑ•#" #. browser when a user needs to edit HTML #: cms/static/js/views/assets.js #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js cms/templates/js/asset-library.underscore +#: cms/templates/js/asset-library.underscore #: cms/templates/js/course-instructor-details.underscore #: cms/templates/js/previous-video-upload-list.underscore #: cms/templates/js/signatory-details.underscore @@ -384,20 +158,11 @@ msgstr "Nämé â± 'σÑєм ι#" msgid "Choose File" msgstr "Çhöösé Fïlé â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ #" -#: cms/static/js/views/components/add_xblock.js -#: cms/static/js/views/utils/xblock_utils.js common/static/bundles/commons.js -#: common/static/bundles/js/factories/container.js -#: common/static/bundles/js/factories/library.js -msgid "Adding" -msgstr "Àddïng â± 'σÑєм ιÏÑ•Ï…#" - #. #-#-#-#-# djangojs-partial.po (0.1a) #-#-#-#-# #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: cms/static/js/views/course_info_update.js cms/static/js/views/tabs.js #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -#: common/static/bundles/js/factories/edit_tabs.js #: lms/static/js/Markdown.Editor.js #: common/static/common/templates/discussion/alert-popup.underscore #: lms/templates/learner_dashboard/verification_popover.underscore @@ -409,7 +174,6 @@ msgstr "ÖK â± 'σÑ#" #. browser when a user needs to edit HTML #: cms/static/js/views/course_video_settings.js #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js #: cms/templates/js/timed-examination-preference-editor.underscore msgid "None" msgstr "Nöné â± 'σÑєм ι#" @@ -417,7 +181,7 @@ msgstr "Nöné â± 'σÑєм ι#" #: cms/static/js/views/course_video_settings.js #: cms/static/js/views/metadata.js #: cms/static/js/views/previous_video_upload.js -#: cms/static/js/views/video_transcripts.js common/static/bundles/commons.js +#: cms/static/js/views/video_transcripts.js #: lms/djangoapps/teams/static/teams/js/views/edit_team_members.js #: lms/static/js/views/image_field.js #: cms/templates/js/video/metadata-translations-item.underscore @@ -425,3397 +189,1876 @@ msgstr "Nöné â± 'σÑєм ι#" msgid "Remove" msgstr "Rémövé â± 'σÑєм ιÏÑ•Ï…#" -#: cms/static/js/views/edit_chapter.js -#: common/static/bundles/js/factories/textbooks.js -msgid "Upload a new PDF to “<%= name %>â€" -msgstr "Ûplöäd ä néw PDF tö “<%= name %>†Ⱡ'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕ#" - -#: cms/static/js/views/edit_chapter.js -#: common/static/bundles/js/factories/textbooks.js -msgid "Please select a PDF file to upload." -msgstr "" -"Pléäsé séléçt ä PDF fïlé tö üplöäd. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕє¢тєт#" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: cms/static/js/views/manage_users_and_roles.js +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Ok" +msgstr "Ök â± 'σÑ#" -#: cms/static/js/views/license.js common/static/bundles/commons.js -#: cms/templates/js/license-selector.underscore -msgid "All Rights Reserved" -msgstr "Àll Rïghts Résérvéd â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт,#" +#: cms/static/js/views/manage_users_and_roles.js +#: lms/static/js/instructor_dashboard/util.js +msgid "Unknown" +msgstr "Ûnknöwn â± 'σÑєм ιÏѕυм #" -#: cms/static/js/views/license.js common/static/bundles/commons.js -msgid "You reserve all rights for your work" -msgstr "" -"Ãöü résérvé äll rïghts för ýöür wörk â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, " -"¢σηѕє¢тєтυ#" +#: cms/static/js/views/manage_users_and_roles.js +#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx +msgid "Are you sure?" +msgstr "Àré ýöü süré? â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹#" -#: cms/static/js/views/license.js common/static/bundles/commons.js -msgid "Creative Commons" -msgstr "Çréätïvé Çömmöns â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αм#" +#: cms/static/js/views/metadata.js lms/static/js/views/file_uploader.js +msgid "Upload File" +msgstr "Ûplöäd Fïlé â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ #" -#: cms/static/js/views/license.js common/static/bundles/commons.js -msgid "You waive some rights for your work, such that others can use it too" -msgstr "" -"Ãöü wäïvé sömé rïghts för ýöür wörk, süçh thät öthérs çän üsé ït töö â± 'σÑєм " -"ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ #" +#. #-#-#-#-# djangojs-partial.po (0.1a) #-#-#-#-# +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: cms/static/js/views/modals/base_modal.js +#: cms/static/js/views/modals/course_outline_modals.js +#: common/lib/xmodule/xmodule/js/src/html/edit.js +#: cms/templates/js/certificate-editor.underscore +#: cms/templates/js/content-group-editor.underscore +#: cms/templates/js/course_info_handouts.underscore +#: cms/templates/js/edit-textbook.underscore +#: cms/templates/js/group-configuration-editor.underscore +#: cms/templates/js/section-name-edit.underscore +#: cms/templates/js/signatory-actions.underscore +#: cms/templates/js/xblock-string-field-editor.underscore +#: lms/templates/fields/field_dropdown.underscore +#: lms/templates/instructor/instructor_dashboard_2/cohort-form.underscore +#: lms/templates/instructor/instructor_dashboard_2/divided-discussions-course-wide.underscore +#: lms/templates/instructor/instructor_dashboard_2/divided-discussions-inline.underscore +msgid "Save" +msgstr "Sävé â± 'σÑєм ι#" -#: cms/static/js/views/license.js common/static/bundles/commons.js -msgid "Version" -msgstr "Vérsïön â± 'σÑєм ιÏѕυм #" +#. #-#-#-#-# djangojs-partial.po (0.1a) #-#-#-#-# +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: cms/static/js/views/modals/course_outline_modals.js +#: common/lib/xmodule/xmodule/js/src/html/edit.js +#: cms/templates/js/add-xblock-component-menu-problem.underscore +msgid "Advanced" +msgstr "Àdvänçéd â± 'σÑєм ιÏѕυм ∂#" -#: cms/static/js/views/license.js common/static/bundles/commons.js -msgid "Attribution" -msgstr "Àttrïßütïön â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ #" +#: cms/static/js/views/previous_video_upload.js +#: cms/static/js/views/video/translations_editor.js +#: cms/static/js/views/video_transcripts.js lms/static/js/views/image_field.js +msgid "Removing" +msgstr "Rémövïng â± 'σÑєм ιÏѕυм ∂#" -#: cms/static/js/views/license.js common/static/bundles/commons.js -msgid "" -"Allow others to copy, distribute, display and perform your copyrighted work " -"but only if they give credit the way you request. Currently, this option is " -"required." -msgstr "" -"Àllöw öthérs tö çöpý, dïstrïßüté, dïspläý änd pérförm ýöür çöpýrïghtéd wörk " -"ßüt önlý ïf théý gïvé çrédït thé wäý ýöü réqüést. Çürréntlý, thïs öptïön ïs " -"réqüïréd. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±âˆ‚Î¹Ïιѕι¢ιηg єłιт, ѕє∂ ∂σ " -"єιυѕмσ∂ тємÏÏƒÑ Î¹Î·Â¢Î¹âˆ‚Î¹âˆ‚Ï…Î·Ñ‚ Ï…Ñ‚ łαвσÑÑ” єт ∂σłσÑÑ” мαgηα αłιqυα. Ï…Ñ‚ єηιм α∂ мιηιм" -" νєηιαм, qυιѕ ησѕтÑυ∂ єχєÑ¢ιтαтιση υłłαм¢σ łαвσÑιѕ ηιѕι Ï…Ñ‚ αłιqÏ…Î¹Ï Ñ”Ï‡ єα " -"¢σммσ∂σ ¢σηѕєqυαт. ∂υιѕ αυтє ιÑÏ…ÑÑ” âˆ‚ÏƒÅ‚ÏƒÑ Î¹Î· ÑÑ”ÏÑєнєη∂єÑιт ιη νσłυÏтαтє νєłιт" -" єѕѕє ¢ιłłυм ∂σłσÑÑ” єυ Æ’Ï…gιαт ηυłłα ÏαÑιαтυÑ. єχ¢єÏÑ‚Ñ”Ï…Ñ Ñ•Î¹Î·Ñ‚ σ¢¢αє¢αт " -"¢υÏι∂αтαт ηση ÏÑσι∂єηт, ѕυηт ιη ¢υłÏα qυι σƒƒι¢ια ∂єѕє#" +#: cms/static/js/views/validation.js +#: lms/static/js/discussions_management/views/divided_discussions_course_wide.js +#: lms/static/js/discussions_management/views/divided_discussions_inline.js +#: lms/static/js/views/fields.js +msgid "Your changes have been saved." +msgstr "Ãöür çhängés hävé ßéén sävéd. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕє¢#" -#: cms/static/js/views/license.js common/static/bundles/commons.js -msgid "Noncommercial" -msgstr "Nönçömmérçïäl â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹#" +#. Translators: This message will be added to the front of messages of type +#. error, +#. e.g. "Error: required field is missing". +#: cms/static/js/views/xblock_validation.js +#: common/static/common/js/discussion/utils.js +#: common/static/common/js/discussion/views/discussion_inline_view.js +#: common/static/common/js/discussion/views/discussion_thread_list_view.js +#: common/static/common/js/discussion/views/discussion_thread_view.js +#: common/static/common/js/discussion/views/response_comment_view.js +#: lms/static/js/student_account/views/FinishAuthView.js +#: lms/static/js/verify_student/views/payment_confirmation_step_view.js +#: lms/static/js/verify_student/views/step_view.js +#: lms/static/js/views/fields.js +msgid "Error" +msgstr "Érrör â± 'σÑєм ιÏÑ•#" -#: cms/static/js/views/license.js common/static/bundles/commons.js -msgid "" -"Allow others to copy, distribute, display and perform your work - and " -"derivative works based upon it - but for noncommercial purposes only." +#: common/lib/xmodule/xmodule/assets/library_content/public/js/library_content_edit.js +#: common/lib/xmodule/xmodule/js/public/js/library_content_edit.js +msgid "Updating with latest library content" msgstr "" -"Àllöw öthérs tö çöpý, dïstrïßüté, dïspläý änd pérförm ýöür wörk - änd " -"dérïvätïvé wörks ßäséd üpön ït - ßüt för nönçömmérçïäl pürpösés önlý. â± 'σÑєм" -" ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±âˆ‚Î¹Ïιѕι¢ιηg єłιт, ѕє∂ ∂σ єιυѕмσ∂ тємÏÏƒÑ " -"ιη¢ι∂ι∂υηт Ï…Ñ‚ łαвσÑÑ” єт ∂σłσÑÑ” мαgηα αłιqυα. Ï…Ñ‚ єηιм α∂ мιηιм νєηιαм, qυιѕ " -"ησѕтÑυ∂ єχєÑ¢ιтαтιση υłłαм¢σ łαвσÑιѕ ηιѕι Ï…Ñ‚ αłιqÏ…Î¹Ï Ñ”Ï‡ єα ¢σммσ∂σ " -"¢σηѕєqυαт. ∂υιѕ αυтє ιÑÏ…ÑÑ” âˆ‚ÏƒÅ‚ÏƒÑ Î¹Î· ÑÑ”ÏÑєнєη∂єÑιт ιη νσłυÏтαтє νєłιт єѕѕє " -"¢ιłłυм ∂σłσÑÑ” єυ Æ’Ï…gιαт ηυłłα ÏαÑιαтυÑ. єχ¢єÏÑ‚Ñ”Ï…Ñ Ñ•Î¹Î·Ñ‚ σ¢¢αє¢αт ¢υÏι∂αтαт " -"ηση ÏÑσι∂єηт, ѕυηт ιη ¢υłÏα qυι σƒƒι¢ια ∂єѕєÑυηт мσłłιт αηιм ι∂ єѕт łα#" +"Ûpdätïng wïth lätést lïßrärý çöntént â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, " +"¢σηѕє¢тєтυ#" -#: cms/static/js/views/license.js common/static/bundles/commons.js -msgid "No Derivatives" -msgstr "Nö Dérïvätïvés â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚#" +#: common/lib/xmodule/xmodule/assets/split_test/public/js/split_test_author_view.js +#: common/lib/xmodule/xmodule/js/public/js/split_test_author_view.js +msgid "Creating missing groups" +msgstr "Çréätïng mïssïng gröüps â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σ#" -#: cms/static/js/views/license.js common/static/bundles/commons.js -msgid "" -"Allow others to copy, distribute, display and perform only verbatim copies " -"of your work, not derivative works based upon it. This option is " -"incompatible with \"Share Alike\"." +#: common/lib/xmodule/xmodule/assets/word_cloud/src/js/word_cloud_main.js +msgid "{start_strong}{total}{end_strong} words submitted in total." msgstr "" -"Àllöw öthérs tö çöpý, dïstrïßüté, dïspläý änd pérförm önlý vérßätïm çöpïés " -"öf ýöür wörk, nöt dérïvätïvé wörks ßäséd üpön ït. Thïs öptïön ïs " -"ïnçömpätïßlé wïth \"Shäré Àlïké\". â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ " -"α∂ιÏιѕι¢ιηg єłιт, ѕє∂ ∂σ єιυѕмσ∂ тємÏÏƒÑ Î¹Î·Â¢Î¹âˆ‚Î¹âˆ‚Ï…Î·Ñ‚ Ï…Ñ‚ łαвσÑÑ” єт ∂σłσÑÑ” мαgηα" -" αłιqυα. Ï…Ñ‚ єηιм α∂ мιηιм νєηιαм, qυιѕ ησѕтÑυ∂ єχєÑ¢ιтαтιση υłłαм¢σ łαвσÑιѕ " -"ηιѕι Ï…Ñ‚ αłιqÏ…Î¹Ï Ñ”Ï‡ єα ¢σммσ∂σ ¢σηѕєqυαт. ∂υιѕ αυтє ιÑÏ…ÑÑ” âˆ‚ÏƒÅ‚ÏƒÑ Î¹Î· " -"ÑÑ”ÏÑєнєη∂єÑιт ιη νσłυÏтαтє νєłιт єѕѕє ¢ιłłυм ∂σłσÑÑ” єυ Æ’Ï…gιαт ηυłłα " -"ÏαÑιαтυÑ. єχ¢єÏÑ‚Ñ”Ï…Ñ Ñ•Î¹Î·Ñ‚ σ¢¢αє¢αт ¢υÏι∂αтαт ηση ÏÑσι∂єηт, ѕυηт ιη ¢υłÏα qÏ…#" - -#: cms/static/js/views/license.js common/static/bundles/commons.js -msgid "Share Alike" -msgstr "Shäré Àlïké â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ #" +"{start_strong}{total}{end_strong} wörds süßmïttéd ïn tötäl. â± 'σÑєм ιÏѕυм " +"âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕє¢тєт#" -#: cms/static/js/views/license.js common/static/bundles/commons.js -msgid "" -"Allow others to distribute derivative works only under a license identical " -"to the license that governs your work. This option is incompatible with \"No" -" Derivatives\"." +#: common/lib/xmodule/xmodule/assets/word_cloud/src/js/word_cloud_main.js +msgid "text_word_{uniqueId} title_word_{uniqueId}" msgstr "" -"Àllöw öthérs tö dïstrïßüté dérïvätïvé wörks önlý ündér ä lïçénsé ïdéntïçäl " -"tö thé lïçénsé thät gövérns ýöür wörk. Thïs öptïön ïs ïnçömpätïßlé wïth \"Nö" -" Dérïvätïvés\". â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±âˆ‚Î¹Ïιѕι¢ιηg єłιт, " -"ѕє∂ ∂σ єιυѕмσ∂ тємÏÏƒÑ Î¹Î·Â¢Î¹âˆ‚Î¹âˆ‚Ï…Î·Ñ‚ Ï…Ñ‚ łαвσÑÑ” єт ∂σłσÑÑ” мαgηα αłιqυα. Ï…Ñ‚ єηιм " -"α∂ мιηιм νєηιαм, qυιѕ ησѕтÑυ∂ єχєÑ¢ιтαтιση υłłαм¢σ łαвσÑιѕ ηιѕι Ï…Ñ‚ αłιqÏ…Î¹Ï " -"єχ єα ¢σммσ∂σ ¢σηѕєqυαт. ∂υιѕ αυтє ιÑÏ…ÑÑ” âˆ‚ÏƒÅ‚ÏƒÑ Î¹Î· ÑÑ”ÏÑєнєη∂єÑιт ιη νσłυÏтαтє" -" νєłιт єѕѕє ¢ιłłυм ∂σłσÑÑ” єυ Æ’Ï…gιαт ηυłłα ÏαÑιαтυÑ. єχ¢єÏÑ‚Ñ”Ï…Ñ Ñ•Î¹Î·Ñ‚ σ¢¢αє¢αт " -"¢υÏι∂αтαт ηση ÏÑσι∂єηт, ѕυηт ιη ¢υłÏα qυι σƒƒι¢ια ∂#" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: cms/static/js/views/manage_users_and_roles.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Ok" -msgstr "Ök â± 'σÑ#" - -#: cms/static/js/views/manage_users_and_roles.js -#: lms/static/js/instructor_dashboard/util.js -msgid "Unknown" -msgstr "Ûnknöwn â± 'σÑєм ιÏѕυм #" - -#: cms/static/js/views/manage_users_and_roles.js -#: common/static/bundles/StudentAccountDeletion.js -#: common/static/bundles/StudentAccountDeletionInitializer.js -#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx -msgid "Are you sure?" -msgstr "Àré ýöü süré? â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹#" - -#: cms/static/js/views/metadata.js common/static/bundles/commons.js -#: lms/static/js/views/file_uploader.js -msgid "Upload File" -msgstr "Ûplöäd Fïlé â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ #" +"téxt_wörd_{uniqueId} tïtlé_wörd_{uniqueId} â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, " +"¢σηѕє¢#" -#. #-#-#-#-# djangojs-partial.po (0.1a) #-#-#-#-# -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: cms/static/js/views/modals/base_modal.js -#: cms/static/js/views/modals/course_outline_modals.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -#: cms/templates/js/certificate-editor.underscore -#: cms/templates/js/content-group-editor.underscore -#: cms/templates/js/course_info_handouts.underscore -#: cms/templates/js/edit-textbook.underscore -#: cms/templates/js/group-configuration-editor.underscore -#: cms/templates/js/section-name-edit.underscore -#: cms/templates/js/signatory-actions.underscore -#: cms/templates/js/xblock-string-field-editor.underscore -#: lms/templates/fields/field_dropdown.underscore -#: lms/templates/instructor/instructor_dashboard_2/cohort-form.underscore -#: lms/templates/instructor/instructor_dashboard_2/divided-discussions-course-wide.underscore -#: lms/templates/instructor/instructor_dashboard_2/divided-discussions-inline.underscore -msgid "Save" -msgstr "Sävé â± 'σÑєм ι#" +#: common/lib/xmodule/xmodule/assets/word_cloud/src/js/word_cloud_main.js +msgid "title_word_{uniqueId}" +msgstr "tïtlé_wörd_{uniqueId} â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚#" -#. #-#-#-#-# djangojs-partial.po (0.1a) #-#-#-#-# -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: cms/static/js/views/modals/course_outline_modals.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -#: cms/templates/js/add-xblock-component-menu-problem.underscore -msgid "Advanced" -msgstr "Àdvänçéd â± 'σÑєм ιÏѕυм ∂#" +#: common/lib/xmodule/xmodule/assets/word_cloud/src/js/word_cloud_main.js +msgid "text_word_{uniqueId}" +msgstr "téxt_wörd_{uniqueId} â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹#" -#. Translators: "title" is the name of the current component being edited. -#: cms/static/js/views/modals/edit_xblock.js common/static/bundles/commons.js -msgid "Editing: {title}" -msgstr "Édïtïng: {title} â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•#" +#: common/lib/xmodule/xmodule/js/src/annotatable/display.js +msgid "Show Annotations" +msgstr "Shöw Ànnötätïöns â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αм#" -#: cms/static/js/views/modals/edit_xblock.js common/static/bundles/commons.js -msgid "Plugins" -msgstr "Plügïns â± 'σÑєм ιÏѕυм #" +#: common/lib/xmodule/xmodule/js/src/annotatable/display.js +msgid "Hide Annotations" +msgstr "Hïdé Ànnötätïöns â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αм#" -#: cms/static/js/views/modals/edit_xblock.js common/static/bundles/commons.js -#: lms/templates/ccx/schedule.underscore -msgid "Unit" -msgstr "Ûnït â± 'σÑєм ι#" +#: common/lib/xmodule/xmodule/js/src/annotatable/display.js +msgid "Expand Instructions" +msgstr "Éxpänd ÃŒnstrüçtïöns â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт,#" -#: cms/static/js/views/modals/edit_xblock.js common/static/bundles/commons.js -msgid "Component" -msgstr "Çömpönént â± 'σÑєм ιÏѕυм ∂σł#" +#: common/lib/xmodule/xmodule/js/src/annotatable/display.js +msgid "Collapse Instructions" +msgstr "Çölläpsé ÃŒnstrüçtïöns â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, #" -#: cms/static/js/views/modals/move_xblock_modal.js -#: common/static/bundles/js/factories/container.js -#: common/static/bundles/js/factories/library.js -msgid "Move" -msgstr "Mövé â± 'σÑєм ι#" +#: common/lib/xmodule/xmodule/js/src/annotatable/display.js +msgid "Commentary" +msgstr "Çömméntärý â± 'σÑєм ιÏѕυм ∂σłσ#" -#: cms/static/js/views/modals/move_xblock_modal.js -#: common/static/bundles/js/factories/container.js -#: common/static/bundles/js/factories/library.js -msgid "Choose a location to move your component to" -msgstr "" -"Çhöösé ä löçätïön tö mövé ýöür çömpönént tö â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, " -"Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ #" +#: common/lib/xmodule/xmodule/js/src/annotatable/display.js +msgid "Reply to Annotation" +msgstr "Réplý tö Ànnötätïön â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт,#" -#: cms/static/js/views/modals/move_xblock_modal.js -#: common/static/bundles/js/factories/container.js -#: common/static/bundles/js/factories/library.js -msgid "Move: {displayName}" -msgstr "Mövé: {displayName} â± 'σÑєм ιÏѕυм ∂σł#" +#. Translators: %(num_points)s is the number of points possible (examples: 1, +#. 3, 10).; +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "%(num_points)s point possible (graded, results hidden)" +msgid_plural "%(num_points)s points possible (graded, results hidden)" +msgstr[0] "" +"%(num_points)s pöïnt pössïßlé (grädéd, résülts hïddén) â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ " +"ѕιт αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ #" +msgstr[1] "" +"%(num_points)s pöïnts pössïßlé (grädéd, résülts hïddén) â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ " +"ѕιт αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ #" -#: cms/static/js/views/move_xblock_list.js -#: common/static/bundles/js/factories/container.js -#: common/static/bundles/js/factories/library.js -msgid "Sections" -msgstr "Séçtïöns â± 'σÑєм ιÏѕυм ∂#" +#. Translators: %(num_points)s is the number of points possible (examples: 1, +#. 3, 10).; +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "%(num_points)s point possible (ungraded, results hidden)" +msgid_plural "%(num_points)s points possible (ungraded, results hidden)" +msgstr[0] "" +"%(num_points)s pöïnt pössïßlé (üngrädéd, résülts hïddén) â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ " +"ѕιт αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ #" +msgstr[1] "" +"%(num_points)s pöïnts pössïßlé (üngrädéd, résülts hïddén) â± 'σÑєм ιÏѕυм ∂σłσÑ" +" ѕιт αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±#" -#: cms/static/js/views/move_xblock_list.js -#: common/static/bundles/js/factories/container.js -#: common/static/bundles/js/factories/library.js -msgid "Subsections" -msgstr "Süßséçtïöns â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ #" +#. Translators: %(num_points)s is the number of points possible (examples: 1, +#. 3, 10).; +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "%(num_points)s point possible (graded)" +msgid_plural "%(num_points)s points possible (graded)" +msgstr[0] "" +"%(num_points)s pöïnt pössïßlé (grädéd) â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕє#" +msgstr[1] "" +"%(num_points)s pöïnts pössïßlé (grädéd) â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕє¢#" -#: cms/static/js/views/move_xblock_list.js -#: common/static/bundles/js/factories/container.js -#: common/static/bundles/js/factories/library.js -msgid "Units" -msgstr "Ûnïts â± 'σÑєм ιÏÑ•#" +#. Translators: %(num_points)s is the number of points possible (examples: 1, +#. 3, 10).; +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "%(num_points)s point possible (ungraded)" +msgid_plural "%(num_points)s points possible (ungraded)" +msgstr[0] "" +"%(num_points)s pöïnt pössïßlé (üngrädéd) â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, " +"¢σηѕє¢#" +msgstr[1] "" +"%(num_points)s pöïnts pössïßlé (üngrädéd) â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, " +"¢σηѕє¢т#" -#: cms/static/js/views/move_xblock_list.js -#: common/static/bundles/js/factories/container.js -#: common/static/bundles/js/factories/library.js -msgid "Components" -msgstr "Çömpönénts â± 'σÑєм ιÏѕυм ∂σłσ#" +#. Translators: %(earned)s is the number of points earned. %(possible)s is the +#. total number of points (examples: 0/1, 1/1, 2/3, 5/10). The total number of +#. points will always be at least 1. We pluralize based on the total number of +#. points (example: 0/1 point; 1/2 points); +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "%(earned)s/%(possible)s point (graded)" +msgid_plural "%(earned)s/%(possible)s points (graded)" +msgstr[0] "" +"%(earned)s/%(possible)s pöïnt (grädéd) â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢#" +msgstr[1] "" +"%(earned)s/%(possible)s pöïnts (grädéd) â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σ#" -#: cms/static/js/views/move_xblock_list.js -#: common/static/bundles/js/factories/container.js -#: common/static/bundles/js/factories/library.js -#: cms/templates/js/group-configuration-editor.underscore -msgid "Groups" -msgstr "Gröüps â± 'σÑєм ιÏÑ•Ï…#" - -#: cms/static/js/views/move_xblock_list.js -#: common/static/bundles/js/factories/container.js -#: common/static/bundles/js/factories/library.js -msgid "This {parentCategory} has no {childCategory}" -msgstr "" -"Thïs {parentCategory} häs nö {childCategory} â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт,#" - -#: cms/static/js/views/move_xblock_list.js -#: common/static/bundles/js/factories/container.js -#: common/static/bundles/js/factories/library.js -#: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/partition-group-details.underscore -msgid "Course Outline" -msgstr "Çöürsé Öütlïné â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚#" - -#: cms/static/js/views/paged_container.js -#: common/static/bundles/js/factories/library.js -msgid "Date added" -msgstr "Däté äddéd â± 'σÑєм ιÏѕυм ∂σłσ#" - -#. Translators: "title" is the name of the current component or unit being -#. edited. -#: cms/static/js/views/pages/container.js -#: common/static/bundles/js/factories/container.js -#: common/static/bundles/js/factories/library.js -msgid "Editing access for: %(title)s" -msgstr "Édïtïng äççéss för: %(title)s â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σ#" - -#: cms/static/js/views/pages/container_subviews.js -#: common/static/bundles/js/factories/container.js -#: common/static/bundles/js/factories/library.js -msgid "Publishing" -msgstr "Püßlïshïng â± 'σÑєм ιÏѕυм ∂σłσ#" - -#: cms/static/js/views/pages/container_subviews.js -#: common/static/bundles/js/factories/container.js -#: common/static/bundles/js/factories/library.js -#: cms/templates/js/course-video-settings-update-org-credentials-footer.underscore -#: cms/templates/js/course-video-settings-update-settings-footer.underscore -#: cms/templates/js/publish-xblock.underscore -msgid "Discard Changes" -msgstr "Dïsçärd Çhängés â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ α#" - -#: cms/static/js/views/pages/container_subviews.js -#: common/static/bundles/js/factories/container.js -#: common/static/bundles/js/factories/library.js -msgid "" -"Are you sure you want to revert to the last published version of the unit? " -"You cannot undo this action." -msgstr "" -"Àré ýöü süré ýöü wänt tö révért tö thé läst püßlïshéd vérsïön öf thé ünït? " -"Ãöü çännöt ündö thïs äçtïön. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αм#" - -#: cms/static/js/views/pages/container_subviews.js -#: common/static/bundles/js/factories/container.js -#: common/static/bundles/js/factories/library.js -msgid "Discarding Changes" -msgstr "Dïsçärdïng Çhängés â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт#" - -#: cms/static/js/views/pages/container_subviews.js -#: common/static/bundles/js/factories/container.js -#: common/static/bundles/js/factories/library.js -msgid "Hiding from Students" -msgstr "Hïdïng fröm Stüdénts â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, #" - -#: cms/static/js/views/pages/container_subviews.js -#: common/static/bundles/js/factories/container.js -#: common/static/bundles/js/factories/library.js -msgid "Explicitly Hiding from Students" -msgstr "Éxplïçïtlý Hïdïng fröm Stüdénts â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕє¢т#" - -#: cms/static/js/views/pages/container_subviews.js -#: common/static/bundles/js/factories/container.js -#: common/static/bundles/js/factories/library.js -msgid "Inheriting Student Visibility" -msgstr "ÃŒnhérïtïng Stüdént Vïsïßïlïtý â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕє¢#" - -#: cms/static/js/views/pages/container_subviews.js -#: common/static/bundles/js/factories/container.js -#: common/static/bundles/js/factories/library.js -msgid "Make Visible to Students" -msgstr "Mäké Vïsïßlé tö Stüdénts â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢ση#" - -#: cms/static/js/views/pages/container_subviews.js -#: common/static/bundles/js/factories/container.js -#: common/static/bundles/js/factories/library.js -msgid "" -"If the unit was previously published and released to students, any changes " -"you made to the unit when it was hidden will now be visible to students. Do " -"you want to proceed?" -msgstr "" -"ÃŒf thé ünït wäs prévïöüslý püßlïshéd änd réléäséd tö stüdénts, äný çhängés " -"ýöü mädé tö thé ünït whén ït wäs hïddén wïll nöw ßé vïsïßlé tö stüdénts. Dö " -"ýöü wänt tö pröçééd? â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±âˆ‚Î¹Ïιѕι¢ιηg " -"єłιт, ѕє∂ ∂σ єιυѕмσ∂ тємÏÏƒÑ Î¹Î·Â¢Î¹âˆ‚Î¹âˆ‚Ï…Î·Ñ‚ Ï…Ñ‚ łαвσÑÑ” єт ∂σłσÑÑ” мαgηα αłιqυα. Ï…Ñ‚ " -"єηιм α∂ мιηιм νєηιαм, qυιѕ ησѕтÑυ∂ єχєÑ¢ιтαтιση υłłαм¢σ łαвσÑιѕ ηιѕι Ï…Ñ‚ " -"αłιqÏ…Î¹Ï Ñ”Ï‡ єα ¢σммσ∂σ ¢σηѕєqυαт. ∂υιѕ αυтє ιÑÏ…ÑÑ” âˆ‚ÏƒÅ‚ÏƒÑ Î¹Î· ÑÑ”ÏÑєнєη∂єÑιт ιη " -"νσłυÏтαтє νєłιт єѕѕє ¢ιłłυм ∂σłσÑÑ” єυ Æ’Ï…gιαт ηυłłα ÏαÑιαтυÑ. єχ¢єÏÑ‚Ñ”Ï…Ñ Ñ•Î¹Î·Ñ‚ " -"σ¢¢αє¢αт ¢υÏι∂αтαт ηση ÏÑσι∂єηт, ѕυηт ιη ¢υłÏα qυι#" - -#: cms/static/js/views/pages/container_subviews.js -#: common/static/bundles/js/factories/container.js -#: common/static/bundles/js/factories/library.js -msgid "Making Visible to Students" -msgstr "Mäkïng Vïsïßlé tö Stüdénts â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕ#" - -#: cms/static/js/views/pages/paged_container.js -#: common/static/bundles/js/factories/library.js -msgid "Hide Previews" -msgstr "Hïdé Prévïéws â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹#" - -#: cms/static/js/views/pages/paged_container.js -#: common/static/bundles/js/factories/library.js -msgid "Show Previews" -msgstr "Shöw Prévïéws â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹#" - -#. Translators: sample result: -#. "Showing 0-9 out of 25 total, filtered by Images, sorted by Date Added -#. ascending" -#: cms/static/js/views/paging_header.js -#: common/static/bundles/js/factories/library.js -msgid "" -"Showing {currentItemRange} out of {totalItemsCount}, filtered by " -"{assetType}, sorted by {sortName} ascending" -msgstr "" -"Shöwïng {currentItemRange} öüt öf {totalItemsCount}, fïltéréd ßý " -"{assetType}, sörtéd ßý {sortName} äsçéndïng â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, " -"Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±#" - -#. Translators: sample result: -#. "Showing 0-9 out of 25 total, filtered by Images, sorted by Date Added -#. descending" -#: cms/static/js/views/paging_header.js -#: common/static/bundles/js/factories/library.js -msgid "" -"Showing {currentItemRange} out of {totalItemsCount}, filtered by " -"{assetType}, sorted by {sortName} descending" -msgstr "" -"Shöwïng {currentItemRange} öüt öf {totalItemsCount}, fïltéréd ßý " -"{assetType}, sörtéd ßý {sortName} désçéndïng â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, " -"Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±#" - -#. Translators: sample result: -#. "Showing 0-9 out of 25 total, sorted by Date Added ascending" -#: cms/static/js/views/paging_header.js -#: common/static/bundles/js/factories/library.js -msgid "" -"Showing {currentItemRange} out of {totalItemsCount}, sorted by {sortName} " -"ascending" -msgstr "" -"Shöwïng {currentItemRange} öüt öf {totalItemsCount}, sörtéd ßý {sortName} " -"äsçéndïng â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±#" - -#. Translators: sample result: -#. "Showing 0-9 out of 25 total, sorted by Date Added descending" -#: cms/static/js/views/paging_header.js -#: common/static/bundles/js/factories/library.js -msgid "" -"Showing {currentItemRange} out of {totalItemsCount}, sorted by {sortName} " -"descending" -msgstr "" -"Shöwïng {currentItemRange} öüt öf {totalItemsCount}, sörtéd ßý {sortName} " -"désçéndïng â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±#" - -#. Translators: turns into "25 total" to be used in other sentences, e.g. -#. "Showing 0-9 out of 25 total". -#: cms/static/js/views/paging_header.js -#: common/static/bundles/js/factories/library.js -msgid "{totalItems} total" -msgstr "{totalItems} tötäl â± 'σÑєм ιÏѕυм ∂σł#" - -#: cms/static/js/views/previous_video_upload.js -#: cms/static/js/views/video/translations_editor.js -#: cms/static/js/views/video_transcripts.js common/static/bundles/commons.js -#: lms/static/js/views/image_field.js -msgid "Removing" -msgstr "Rémövïng â± 'σÑєм ιÏѕυм ∂#" - -#: cms/static/js/views/show_textbook.js -#: common/static/bundles/js/factories/textbooks.js -msgid "Delete “<%= name %>â€?" -msgstr "Délété “<%= name %>â€? â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹#" - -#: cms/static/js/views/show_textbook.js -#: common/static/bundles/js/factories/textbooks.js -msgid "" -"Deleting a textbook cannot be undone and once deleted any reference to it in" -" your courseware's navigation will also be removed." -msgstr "" -"Délétïng ä téxtßöök çännöt ßé ündöné änd önçé délétéd äný référénçé tö ït ïn" -" ýöür çöürséwäré's nävïgätïön wïll älsö ßé rémövéd. â± 'σÑÑ”#" - -#: cms/static/js/views/tabs.js common/static/bundles/js/factories/edit_tabs.js -msgid "Delete Page Confirmation" -msgstr "Délété Pägé Çönfïrmätïön â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢ση#" - -#: cms/static/js/views/tabs.js common/static/bundles/js/factories/edit_tabs.js -msgid "" -"Are you sure you want to delete this page? This action cannot be undone." -msgstr "" -"Àré ýöü süré ýöü wänt tö délété thïs pägé? Thïs äçtïön çännöt ßé ündöné. " -"â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕє¢тєтυÑ#" - -#: cms/static/js/views/uploads.js common/static/bundles/commons.js -#: cms/templates/js/metadata-file-uploader-item.underscore -#: cms/templates/js/video/metadata-translations-item.underscore -msgid "Upload" -msgstr "Ûplöäd â± 'σÑєм ιÏÑ•Ï…#" - -#: cms/static/js/views/uploads.js common/static/bundles/commons.js -msgid "We're sorry, there was an error" -msgstr "Wé'ré sörrý, théré wäs än érrör â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕє¢т#" - -#: cms/static/js/views/utils/move_xblock_utils.js -#: common/static/bundles/js/factories/container.js -#: common/static/bundles/js/factories/library.js -msgid "Success! \"{displayName}\" has been moved." -msgstr "" -"Süççéss! \"{displayName}\" häs ßéén mövéd. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, " -"¢σηѕє¢т#" - -#: cms/static/js/views/utils/move_xblock_utils.js -#: common/static/bundles/js/factories/container.js -#: common/static/bundles/js/factories/library.js -msgid "" -"Move cancelled. \"{sourceDisplayName}\" has been moved back to its original " -"location." -msgstr "" -"Mövé çänçélléd. \"{sourceDisplayName}\" häs ßéén mövéd ßäçk tö ïts örïgïnäl " -"löçätïön. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ #" - -#: cms/static/js/views/utils/move_xblock_utils.js -#: common/static/bundles/js/factories/container.js -#: common/static/bundles/js/factories/library.js -msgid "Undo move" -msgstr "Ûndö mövé â± 'σÑєм ιÏѕυм ∂σł#" - -#: cms/static/js/views/utils/move_xblock_utils.js -#: common/static/bundles/js/factories/container.js -#: common/static/bundles/js/factories/library.js -msgid "Take me to the new location" -msgstr "Täké mé tö thé néw löçätïön â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕє#" - -#: cms/static/js/views/utils/xblock_utils.js common/static/bundles/commons.js -msgid "Duplicating" -msgstr "Düplïçätïng â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ #" - -#: cms/static/js/views/utils/xblock_utils.js common/static/bundles/commons.js -msgid "Undo moving" -msgstr "Ûndö mövïng â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ #" - -#: cms/static/js/views/utils/xblock_utils.js common/static/bundles/commons.js -msgid "Moving" -msgstr "Mövïng â± 'σÑєм ιÏÑ•Ï…#" - -#: cms/static/js/views/utils/xblock_utils.js common/static/bundles/commons.js -msgid "Deleting this {xblock_type} is permanent and cannot be undone." -msgstr "" -"Délétïng thïs {xblock_type} ïs pérmänént änd çännöt ßé ündöné. â± 'σÑєм ιÏѕυм " -"âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±#" - -#: cms/static/js/views/utils/xblock_utils.js common/static/bundles/commons.js -msgid "" -"Any content that has listed this content as a prerequisite will also have " -"access limitations removed." -msgstr "" -"Àný çöntént thät häs lïstéd thïs çöntént äs ä préréqüïsïté wïll älsö hävé " -"äççéss lïmïtätïöns rémövéd. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмє#" - -#: cms/static/js/views/utils/xblock_utils.js common/static/bundles/commons.js -msgid "Delete this {xblock_type} (and prerequisite)?" -msgstr "" -"Délété thïs {xblock_type} (änd préréqüïsïté)? â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, " -"¢σηѕє¢тєт#" - -#: cms/static/js/views/utils/xblock_utils.js common/static/bundles/commons.js -msgid "Yes, delete this {xblock_type}" -msgstr "Ãés, délété thïs {xblock_type} â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, #" - -#: cms/static/js/views/utils/xblock_utils.js common/static/bundles/commons.js -msgid "Delete this {xblock_type}?" -msgstr "Délété thïs {xblock_type}? â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αм#" - -#: cms/static/js/views/utils/xblock_utils.js common/static/bundles/commons.js -msgid "section" -msgstr "séçtïön â± 'σÑєм ιÏѕυм #" - -#: cms/static/js/views/utils/xblock_utils.js common/static/bundles/commons.js -msgid "subsection" -msgstr "süßséçtïön â± 'σÑєм ιÏѕυм ∂σłσ#" - -#: cms/static/js/views/utils/xblock_utils.js common/static/bundles/commons.js -#: cms/templates/js/container-access.underscore -msgid "unit" -msgstr "ünït â± 'σÑєм ι#" - -#: cms/static/js/views/validation.js -#: lms/static/js/discussions_management/views/divided_discussions_course_wide.js -#: lms/static/js/discussions_management/views/divided_discussions_inline.js -#: lms/static/js/views/fields.js -msgid "Your changes have been saved." -msgstr "Ãöür çhängés hävé ßéén sävéd. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕє¢#" - -#: cms/static/js/views/video/transcripts/file_uploader.js -#: common/static/bundles/commons.js -msgid "Please select a file in .srt format." -msgstr "" -"Pléäsé séléçt ä fïlé ïn .srt förmät. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, " -"¢σηѕє¢тєтυ#" - -#: cms/static/js/views/video/transcripts/file_uploader.js -#: common/static/bundles/commons.js -msgid "Error: Uploading failed." -msgstr "Érrör: Ûplöädïng fäïléd. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢ση#" - -#: cms/static/js/views/video/transcripts/message_manager.js -#: common/static/bundles/commons.js -msgid "Error: Import failed." -msgstr "Érrör: ÃŒmpört fäïléd. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, #" - -#: cms/static/js/views/video/transcripts/message_manager.js -#: common/static/bundles/commons.js -msgid "Error: Replacing failed." -msgstr "Érrör: Répläçïng fäïléd. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢ση#" - -#: cms/static/js/views/video/transcripts/message_manager.js -#: common/static/bundles/commons.js -msgid "Error: Choosing failed." -msgstr "Érrör: Çhöösïng fäïléd. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σ#" - -#: cms/static/js/views/video/transcripts/metadata_videolist.js -#: common/static/bundles/commons.js -msgid "Error: Connection with server failed." -msgstr "" -"Érrör: Çönnéçtïön wïth sérvér fäïléd. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, " -"¢σηѕє¢тєтυ#" - -#: cms/static/js/views/video/transcripts/metadata_videolist.js -#: common/static/bundles/commons.js -msgid "Link types should be unique." -msgstr "Lïnk týpés shöüld ßé ünïqüé. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕє¢#" - -#: cms/static/js/views/video/transcripts/metadata_videolist.js -#: common/static/bundles/commons.js -msgid "Links should be unique." -msgstr "Lïnks shöüld ßé ünïqüé. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σ#" - -#: cms/static/js/views/video/transcripts/metadata_videolist.js -#: common/static/bundles/commons.js -msgid "Incorrect url format." -msgstr "ÃŒnçörréçt ürl förmät. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, #" - -#: cms/static/js/views/video/translations_editor.js -#: common/static/bundles/commons.js -msgid "" -"Sorry, there was an error parsing the subtitles that you uploaded. Please " -"check the format and try again." -msgstr "" -"Sörrý, théré wäs än érrör pärsïng thé süßtïtlés thät ýöü üplöädéd. Pléäsé " -"çhéçk thé förmät änd trý ägäïn. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ #" - -#: cms/static/js/views/video/translations_editor.js -#: cms/static/js/views/video_transcripts.js common/static/bundles/commons.js -msgid "Are you sure you want to remove this transcript?" -msgstr "" -"Àré ýöü süré ýöü wänt tö rémövé thïs tränsçrïpt? â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ " -"αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±#" - -#: cms/static/js/views/video/translations_editor.js -#: common/static/bundles/commons.js -msgid "" -"If you remove this transcript, the transcript will not be available for this" -" component." -msgstr "" -"ÃŒf ýöü rémövé thïs tränsçrïpt, thé tränsçrïpt wïll nöt ßé äväïläßlé för thïs" -" çömpönént. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕє#" - -#: cms/static/js/views/video/translations_editor.js -#: common/static/bundles/commons.js -msgid "Remove Transcript" -msgstr "Rémövé Tränsçrïpt â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмє#" - -#: cms/static/js/views/video/translations_editor.js -#: common/static/bundles/commons.js -msgid "Upload translation" -msgstr "Ûplöäd tränslätïön â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт#" - -#: cms/static/js/views/xblock_editor.js common/static/bundles/commons.js -msgid "Editor" -msgstr "Édïtör â± 'σÑєм ιÏÑ•Ï…#" - -#: cms/static/js/views/xblock_editor.js common/static/bundles/commons.js -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore -msgid "Settings" -msgstr "Séttïngs â± 'σÑєм ιÏѕυм ∂#" - -#: cms/static/js/views/xblock_outline.js -#: common/static/bundles/js/factories/container.js -#: common/static/bundles/js/factories/library.js -msgid "New {component_type}" -msgstr "Néw {component_type} â± 'σÑєм ιÏѕυм #" - -#. Translators: This message will be added to the front of messages of type -#. warning, -#. e.g. "Warning: this component has not been configured yet". -#: cms/static/js/views/xblock_validation.js -#: common/static/bundles/js/factories/xblock_validation.js -msgid "Warning" -msgstr "Wärnïng â± 'σÑєм ιÏѕυм #" - -#. Translators: This message will be added to the front of messages of type -#. error, -#. e.g. "Error: required field is missing". -#: cms/static/js/views/xblock_validation.js -#: common/static/bundles/js/factories/xblock_validation.js -#: common/static/common/js/discussion/utils.js -#: common/static/common/js/discussion/views/discussion_inline_view.js -#: common/static/common/js/discussion/views/discussion_thread_list_view.js -#: common/static/common/js/discussion/views/discussion_thread_view.js -#: common/static/common/js/discussion/views/response_comment_view.js -#: lms/static/js/student_account/views/FinishAuthView.js -#: lms/static/js/verify_student/views/payment_confirmation_step_view.js -#: lms/static/js/verify_student/views/step_view.js -#: lms/static/js/views/fields.js -msgid "Error" -msgstr "Érrör â± 'σÑєм ιÏÑ•#" - -#: common/lib/xmodule/xmodule/assets/library_content/public/js/library_content_edit.js -#: common/lib/xmodule/xmodule/js/public/js/library_content_edit.js -msgid "Updating with latest library content" -msgstr "" -"Ûpdätïng wïth lätést lïßrärý çöntént â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, " -"¢σηѕє¢тєтυ#" - -#: common/lib/xmodule/xmodule/assets/split_test/public/js/split_test_author_view.js -#: common/lib/xmodule/xmodule/js/public/js/split_test_author_view.js -msgid "Creating missing groups" -msgstr "Çréätïng mïssïng gröüps â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σ#" - -#: common/lib/xmodule/xmodule/assets/word_cloud/src/js/word_cloud_main.js -msgid "{start_strong}{total}{end_strong} words submitted in total." -msgstr "" -"{start_strong}{total}{end_strong} wörds süßmïttéd ïn tötäl. â± 'σÑєм ιÏѕυм " -"âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕє¢тєт#" - -#: common/lib/xmodule/xmodule/assets/word_cloud/src/js/word_cloud_main.js -msgid "text_word_{uniqueId} title_word_{uniqueId}" -msgstr "" -"téxt_wörd_{uniqueId} tïtlé_wörd_{uniqueId} â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, " -"¢σηѕє¢#" - -#: common/lib/xmodule/xmodule/assets/word_cloud/src/js/word_cloud_main.js -msgid "title_word_{uniqueId}" -msgstr "tïtlé_wörd_{uniqueId} â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚#" - -#: common/lib/xmodule/xmodule/assets/word_cloud/src/js/word_cloud_main.js -msgid "text_word_{uniqueId}" -msgstr "téxt_wörd_{uniqueId} â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹#" - -#: common/lib/xmodule/xmodule/js/src/annotatable/display.js -#: common/static/bundles/AnnotatableModule.js -msgid "Show Annotations" -msgstr "Shöw Ànnötätïöns â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αм#" - -#: common/lib/xmodule/xmodule/js/src/annotatable/display.js -#: common/static/bundles/AnnotatableModule.js -msgid "Hide Annotations" -msgstr "Hïdé Ànnötätïöns â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αм#" - -#: common/lib/xmodule/xmodule/js/src/annotatable/display.js -#: common/static/bundles/AnnotatableModule.js -msgid "Expand Instructions" -msgstr "Éxpänd ÃŒnstrüçtïöns â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт,#" - -#: common/lib/xmodule/xmodule/js/src/annotatable/display.js -#: common/static/bundles/AnnotatableModule.js -msgid "Collapse Instructions" -msgstr "Çölläpsé ÃŒnstrüçtïöns â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, #" - -#: common/lib/xmodule/xmodule/js/src/annotatable/display.js -#: common/static/bundles/AnnotatableModule.js -msgid "Commentary" -msgstr "Çömméntärý â± 'σÑєм ιÏѕυм ∂σłσ#" - -#: common/lib/xmodule/xmodule/js/src/annotatable/display.js -#: common/static/bundles/AnnotatableModule.js -msgid "Reply to Annotation" -msgstr "Réplý tö Ànnötätïön â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт,#" - -#. Translators: %(num_points)s is the number of points possible (examples: 1, -#. 3, 10).; -#: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/static/bundles/CapaModule.js -msgid "%(num_points)s point possible (graded, results hidden)" -msgid_plural "%(num_points)s points possible (graded, results hidden)" -msgstr[0] "" -"%(num_points)s pöïnt pössïßlé (grädéd, résülts hïddén) â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ " -"ѕιт αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ #" -msgstr[1] "" -"%(num_points)s pöïnts pössïßlé (grädéd, résülts hïddén) â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ " -"ѕιт αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ #" - -#. Translators: %(num_points)s is the number of points possible (examples: 1, -#. 3, 10).; -#: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/static/bundles/CapaModule.js -msgid "%(num_points)s point possible (ungraded, results hidden)" -msgid_plural "%(num_points)s points possible (ungraded, results hidden)" -msgstr[0] "" -"%(num_points)s pöïnt pössïßlé (üngrädéd, résülts hïddén) â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ " -"ѕιт αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ #" -msgstr[1] "" -"%(num_points)s pöïnts pössïßlé (üngrädéd, résülts hïddén) â± 'σÑєм ιÏѕυм ∂σłσÑ" -" ѕιт αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±#" - -#. Translators: %(num_points)s is the number of points possible (examples: 1, -#. 3, 10).; -#: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/static/bundles/CapaModule.js -msgid "%(num_points)s point possible (graded)" -msgid_plural "%(num_points)s points possible (graded)" -msgstr[0] "" -"%(num_points)s pöïnt pössïßlé (grädéd) â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕє#" -msgstr[1] "" -"%(num_points)s pöïnts pössïßlé (grädéd) â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕє¢#" - -#. Translators: %(num_points)s is the number of points possible (examples: 1, -#. 3, 10).; -#: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/static/bundles/CapaModule.js -msgid "%(num_points)s point possible (ungraded)" -msgid_plural "%(num_points)s points possible (ungraded)" -msgstr[0] "" -"%(num_points)s pöïnt pössïßlé (üngrädéd) â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, " -"¢σηѕє¢#" -msgstr[1] "" -"%(num_points)s pöïnts pössïßlé (üngrädéd) â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, " -"¢σηѕє¢т#" - -#. Translators: %(earned)s is the number of points earned. %(possible)s is the -#. total number of points (examples: 0/1, 1/1, 2/3, 5/10). The total number of -#. points will always be at least 1. We pluralize based on the total number of -#. points (example: 0/1 point; 1/2 points); -#: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/static/bundles/CapaModule.js -msgid "%(earned)s/%(possible)s point (graded)" -msgid_plural "%(earned)s/%(possible)s points (graded)" -msgstr[0] "" -"%(earned)s/%(possible)s pöïnt (grädéd) â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢#" -msgstr[1] "" -"%(earned)s/%(possible)s pöïnts (grädéd) â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σ#" - -#. Translators: %(earned)s is the number of points earned. %(possible)s is the -#. total number of points (examples: 0/1, 1/1, 2/3, 5/10). The total number of -#. points will always be at least 1. We pluralize based on the total number of -#. points (example: 0/1 point; 1/2 points); -#: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/static/bundles/CapaModule.js -msgid "%(earned)s/%(possible)s point (ungraded)" -msgid_plural "%(earned)s/%(possible)s points (ungraded)" -msgstr[0] "" -"%(earned)s/%(possible)s pöïnt (üngrädéd) â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢ση#" -msgstr[1] "" -"%(earned)s/%(possible)s pöïnts (üngrädéd) â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕ#" - -#: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/static/bundles/CapaModule.js -msgid "The grading process is still running. Refresh the page to see updates." -msgstr "" -"Thé grädïng pröçéss ïs stïll rünnïng. Réfrésh thé pägé tö séé üpdätés. " -"â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ #" - -#: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/static/bundles/CapaModule.js -msgid "Could not grade your answer. The submission was aborted." -msgstr "" -"Çöüld nöt grädé ýöür änswér. Thé süßmïssïön wäs äßörtéd. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ " -"ѕιт αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±#" - -#: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/static/bundles/CapaModule.js -msgid "" -"Submission aborted! Sorry, your browser does not support file uploads. If " -"you can, please use Chrome or Safari which have been verified to support " -"file uploads." -msgstr "" -"Süßmïssïön äßörtéd! Sörrý, ýöür ßröwsér döés nöt süppört fïlé üplöäds. ÃŒf " -"ýöü çän, pléäsé üsé Çhrömé ör Säfärï whïçh hävé ßéén vérïfïéd tö süppört " -"fïlé üplöäds. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±âˆ‚Î¹Ïιѕι¢ιηg єłιт, ѕє∂" -" ∂σ єιυѕмσ∂ тємÏÏƒÑ Î¹Î·Â¢Î¹âˆ‚Î¹âˆ‚Ï…Î·Ñ‚ Ï…Ñ‚ łαвσÑÑ” єт ∂σłσÑÑ” мαgηα αłιqυα. Ï…Ñ‚ єηιм α∂ " -"мιηιм νєηιαм, qυιѕ ησѕтÑυ∂ єχєÑ¢ιтαтιση υłłαм¢σ łαвσÑιѕ ηιѕι Ï…Ñ‚ αłιqÏ…Î¹Ï Ñ”Ï‡ " -"єα ¢σммσ∂σ ¢σηѕєqυαт. ∂υιѕ αυтє ιÑÏ…ÑÑ” âˆ‚ÏƒÅ‚ÏƒÑ Î¹Î· ÑÑ”ÏÑєнєη∂єÑιт ιη νσłυÏтαтє " -"νєłιт єѕѕє ¢ιłłυм ∂σłσÑÑ” єυ Æ’Ï…gιαт ηυłłα ÏαÑιαтυÑ. єχ¢єÏÑ‚Ñ”Ï…Ñ Ñ•Î¹Î·Ñ‚ σ¢¢αє¢αт " -"¢υÏι∂αтαт ηση ÏÑσι∂єηт, ѕυηт ιη ¢υłÏα qυι σƒƒι¢ια ∂єѕєÑÏ…#" - -#: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/static/bundles/CapaModule.js -msgid "You submitted {filename}; only {allowedFiles} are allowed." -msgstr "" -"Ãöü süßmïttéd {filename}; önlý {allowedFiles} äré ällöwéd. â± 'σÑєм ιÏѕυм " -"âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕє¢тєтυÑ#" - -#: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/static/bundles/CapaModule.js -msgid "Your file {filename} is too large (max size: {maxSize}MB)." -msgstr "" -"Ãöür fïlé {filename} ïs töö lärgé (mäx sïzé: {maxSize}MB). â± 'σÑєм ιÏѕυм " -"âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ #" - -#: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/static/bundles/CapaModule.js -msgid "You did not submit the required files: {requiredFiles}." -msgstr "" -"Ãöü dïd nöt süßmït thé réqüïréd fïlés: {requiredFiles}. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ " -"ѕιт αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ #" - -#: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/static/bundles/CapaModule.js -msgid "You did not select any files to submit." -msgstr "" -"Ãöü dïd nöt séléçt äný fïlés tö süßmït. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, " -"¢σηѕє¢тєтυÑ#" - -#. Translators: This is only translated to allow for reordering of label and -#. associated status.; -#: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/static/bundles/CapaModule.js -msgid "{label}: {status}" -msgstr "{label}: {status} â± 'σÑєм ιÏѕυм ∂#" - -#: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/static/bundles/CapaModule.js -msgid "This problem has been reset." -msgstr "Thïs prößlém häs ßéén rését. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕє¢#" - -#: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/static/bundles/CapaModule.js -msgid "unsubmitted" -msgstr "ünsüßmï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/static/bundles/commons.js -msgid "Paragraph" -msgstr "Pärägräph â± 'σÑєм ιÏѕυм ∂σł#" - -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Preformatted" -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/static/bundles/commons.js -msgid "Heading 3" -msgstr "Héädïng 3 â± 'σÑєм ιÏѕυм ∂σł#" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Heading 4" -msgstr "Héädïng 4 â± 'σÑєм ιÏѕυм ∂σł#" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Heading 5" -msgstr "Héädïng 5 â± 'σÑєм ιÏѕυм ∂σł#" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Heading 6" -msgstr "Héädïng 6 â± 'σÑєм ιÏѕυм ∂σł#" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Add to Dictionary" -msgstr "Àdd tö Dïçtïönärý â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмє#" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Align center" -msgstr "Àlïgn çéntér â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•#" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Align left" -msgstr "Àlïgn léft â± 'σÑєм ιÏѕυм ∂σłσ#" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Align right" -msgstr "Àlïgn rïght â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ #" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Alignment" -msgstr "Àlïgnmént â± 'σÑєм ιÏѕυм ∂σł#" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Alternative source" -msgstr "Àltérnätïvé söürçé â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт#" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Anchor" -msgstr "Ànçhör â± 'σÑєм ιÏÑ•Ï…#" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Anchors" -msgstr "Ànçhörs â± 'σÑєм ιÏѕυм #" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Author" -msgstr "Àüthör â± 'σÑєм ιÏÑ•Ï…#" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Background color" -msgstr "Bäçkgröünd çölör â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αм#" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js lms/static/js/Markdown.Editor.js -msgid "Blockquote" -msgstr "Blöçkqüö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/static/bundles/commons.js -msgid "Blocks" -msgstr "Blöçks â± 'σÑєм ιÏÑ•Ï…#" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Body" -msgstr "Bö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/static/bundles/commons.js -msgid "Bold" -msgstr "Böld â± 'σÑєм ι#" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Border color" -msgstr "Bördér çölör â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•#" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Border" -msgstr "Bördér â± 'σÑєм ιÏÑ•Ï…#" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Bottom" -msgstr "Böttöm â± 'σÑєм ιÏÑ•Ï…#" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Bullet list" -msgstr "Büllét lïst â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ #" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Caption" -msgstr "Çäptïö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/static/bundles/commons.js -msgid "Cell padding" -msgstr "Çéll päddï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/static/bundles/commons.js -msgid "Cell properties" -msgstr "Çéll pröpértïés â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ α#" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Cell spacing" -msgstr "Çéll späçï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/static/bundles/commons.js -msgid "Cell type" -msgstr "Çéll týpé â± 'σÑєм ιÏѕυм ∂σł#" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Cell" -msgstr "Çéll â± 'σÑєм ι#" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Center" -msgstr "Çéntér â± 'σÑєм ιÏÑ•Ï…#" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Circle" -msgstr "Çïrçlé â± 'σÑєм ιÏÑ•Ï…#" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Clear formatting" -msgstr "Çléär förmättïng â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αм#" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#. Translators: this is a toolbar button tooltip from the raw HTML editor -#. displayed in the browser when a user needs to edit HTML -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#. Translators: this is a toolbar button tooltip from the raw HTML editor -#. displayed in the browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Code block" -msgstr "Çödé ßlöçk â± 'σÑєм ιÏѕυм ∂σłσ#" - -#. #-#-#-#-# djangojs-partial.po (0.1a) #-#-#-#-# -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -#: lms/templates/instructor/instructor_dashboard_2/enrollment-code-lookup-links.underscore -msgid "Code" -msgstr "Çö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/static/bundles/commons.js -msgid "Color" -msgstr "Çölör â± 'σÑєм ιÏÑ•#" +#. Translators: %(earned)s is the number of points earned. %(possible)s is the +#. total number of points (examples: 0/1, 1/1, 2/3, 5/10). The total number of +#. points will always be at least 1. We pluralize based on the total number of +#. points (example: 0/1 point; 1/2 points); +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "%(earned)s/%(possible)s point (ungraded)" +msgid_plural "%(earned)s/%(possible)s points (ungraded)" +msgstr[0] "" +"%(earned)s/%(possible)s pöïnt (üngrädéd) â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢ση#" +msgstr[1] "" +"%(earned)s/%(possible)s pöïnts (üngrädé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/static/bundles/commons.js -msgid "Cols" -msgstr "Çöls â± 'σÑєм ι#" +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "The grading process is still running. Refresh the page to see updates." +msgstr "" +"Thé grädïng pröçéss ïs stïll rünnïng. Réfrésh thé pägé tö séé üpdätés. " +"â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ #" -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Column group" -msgstr "Çölümn gröüp â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•#" +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "Could not grade your answer. The submission was aborted." +msgstr "" +"Çöüld nöt grädé ýöür änswér. Thé süßmïssïön wäs äßörté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/static/bundles/commons.js -msgid "Column" -msgstr "Çölümn â± 'σÑєм ιÏÑ•Ï…#" +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "" +"Submission aborted! Sorry, your browser does not support file uploads. If " +"you can, please use Chrome or Safari which have been verified to support " +"file uploads." +msgstr "" +"Süßmïssïön äßörtéd! Sörrý, ýöür ßröwsér döés nöt süppört fïlé üplöäds. ÃŒf " +"ýöü çän, pléäsé üsé Çhrömé ör Säfärï whïçh hävé ßéén vérïfïéd tö süppört " +"fïlé üplöäds. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±âˆ‚Î¹Ïιѕι¢ιηg єłιт, ѕє∂" +" ∂σ єιυѕмσ∂ тємÏÏƒÑ Î¹Î·Â¢Î¹âˆ‚Î¹âˆ‚Ï…Î·Ñ‚ Ï…Ñ‚ łαвσÑÑ” єт ∂σłσÑÑ” мαgηα αłιqυα. Ï…Ñ‚ єηιм α∂ " +"мιηιм νєηιαм, qυιѕ ησѕтÑυ∂ єχєÑ¢ιтαтιση υłłαм¢σ łαвσÑιѕ ηιѕι Ï…Ñ‚ αłιqÏ…Î¹Ï Ñ”Ï‡ " +"єα ¢σммσ∂σ ¢σηѕєqυαт. ∂υιѕ αυтє ιÑÏ…ÑÑ” âˆ‚ÏƒÅ‚ÏƒÑ Î¹Î· ÑÑ”ÏÑєнєη∂єÑιт ιη νσłυÏтαтє " +"νєłιт єѕѕє ¢ιłłυм ∂σłσÑÑ” єυ Æ’Ï…gιαт ηυłłα ÏαÑιαтυÑ. єχ¢єÏÑ‚Ñ”Ï…Ñ Ñ•Î¹Î·Ñ‚ σ¢¢αє¢αт " +"¢υÏι∂αтαт ηση ÏÑσι∂єηт, ѕυηт ιη ¢υłÏα qυι σƒƒι¢ια ∂єѕєÑÏ…#" -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Constrain proportions" -msgstr "Çönsträïn pröpörtïöns â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, #" +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "You submitted {filename}; only {allowedFiles} are allowed." +msgstr "" +"Ãöü süßmïttéd {filename}; önlý {allowedFiles} äré ällöwé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/static/bundles/commons.js -msgid "Copy row" -msgstr "Çöpý röw â± 'σÑєм ιÏѕυм ∂#" +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "Your file {filename} is too large (max size: {maxSize}MB)." +msgstr "" +"Ãöür fïlé {filename} ïs töö lärgé (mäx sïzé: {maxSize}MB). â± 'σÑєм ιÏѕυм " +"âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ #" -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Copy" -msgstr "Çöpý â± 'σÑєм ι#" +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "You did not submit the required files: {requiredFiles}." +msgstr "" +"Ãöü dïd nöt süßmït thé réqüïréd fïlés: {requiredFiles}. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ " +"ѕιт αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ #" -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Could not find the specified string." +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "You did not select any files to submit." msgstr "" -"Çöüld nöt fïnd thé spéçïfïéd strïng. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, " -"¢σηѕє¢тєтυ#" +"Ãöü dïd nöt séléçt äný fïlés tö süßmï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/static/bundles/commons.js -msgid "Custom color" -msgstr "Çüstöm çölör â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•#" +#. Translators: This is only translated to allow for reordering of label and +#. associated status.; +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "{label}: {status}" +msgstr "{label}: {status} â± 'σÑєм ιÏѕυм ∂#" -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Custom..." -msgstr "Çüstöm... â± 'σÑєм ιÏѕυм ∂σł#" +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "This problem has been reset." +msgstr "Thïs prößlém häs ßéén résé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/static/bundles/commons.js -msgid "Cut row" -msgstr "Çüt röw â± 'σÑєм ιÏѕυм #" +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "unsubmitted" +msgstr "ünsüßmï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/static/bundles/commons.js -msgid "Cut" -msgstr "Çüt â± 'σÑєм#" +msgid "Paragraph" +msgstr "Pärägräph â± 'σÑєм ιÏѕυм ∂σł#" -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Decrease indent" -msgstr "Déçréäsé ïndént â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ α#" +msgid "Preformatted" +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/static/bundles/commons.js -msgid "Default" -msgstr "Défäült â± 'σÑєм ιÏѕυм #" +msgid "Heading 3" +msgstr "Héädïng 3 â± 'σÑєм ιÏѕυм ∂σł#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Delete column" -msgstr "Délété çölümn â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹#" +msgid "Heading 4" +msgstr "Héädïng 4 â± 'σÑєм ιÏѕυм ∂σł#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Delete row" -msgstr "Délété röw â± 'σÑєм ιÏѕυм ∂σłσ#" +msgid "Heading 5" +msgstr "Héädïng 5 â± 'σÑєм ιÏѕυм ∂σł#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Delete table" -msgstr "Délété täßlé â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•#" +msgid "Heading 6" +msgstr "Héädïng 6 â± 'σÑєм ιÏѕυм ∂σł#" -#. #-#-#-#-# djangojs-partial.po (0.1a) #-#-#-#-# #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -#: cms/templates/js/certificate-editor.underscore -#: cms/templates/js/group-configuration-editor.underscore -#: lms/templates/commerce/receipt.underscore -#: lms/templates/verify_student/payment_confirmation_step.underscore -msgid "Description" -msgstr "Désçrïptïön â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ #" +msgid "Add to Dictionary" +msgstr "Àdd tö Dïçtïönärý â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмє#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Dimensions" -msgstr "Dïménsïöns â± 'σÑєм ιÏѕυм ∂σłσ#" +msgid "Align center" +msgstr "Àlïgn çéntér â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Disc" -msgstr "Dïsç â± 'σÑєм ι#" +msgid "Align left" +msgstr "Àlïgn léft â± 'σÑєм ιÏѕυм ∂σłσ#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Div" -msgstr "Dïv â± 'σÑєм#" +msgid "Align right" +msgstr "Àlïgn rïght â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ #" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Document properties" -msgstr "Döçümént pröpértïés â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт,#" +msgid "Alignment" +msgstr "Àlïgnmént â± 'σÑєм ιÏѕυм ∂σł#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Edit HTML" -msgstr "Édït HTML â± 'σÑєм ιÏѕυм ∂σł#" +msgid "Alternative source" +msgstr "Àltérnätïvé söürçé â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт#" -#. #-#-#-#-# djangojs-partial.po (0.1a) #-#-#-#-# #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -#: cms/templates/js/certificate-details.underscore -#: cms/templates/js/course_info_handouts.underscore -#: cms/templates/js/course_info_update.underscore -#: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/partition-group-details.underscore -#: cms/templates/js/show-textbook.underscore -#: cms/templates/js/signatory-details.underscore -#: cms/templates/js/xblock-string-field-editor.underscore -#: common/static/common/templates/discussion/forum-action-edit.underscore -msgid "Edit" -msgstr "Édït â± 'σÑєм ι#" +msgid "Anchor" +msgstr "Ànçhör â± 'σÑєм ιÏÑ•Ï…#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Embed" -msgstr "Émßéd â± 'σÑєм ιÏÑ•#" +msgid "Anchors" +msgstr "Ànçhörs â± 'σÑєм ιÏѕυм #" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Emoticons" -msgstr "Émötïçöns â± 'σÑєм ιÏѕυм ∂σł#" +msgid "Author" +msgstr "Àüthör â± 'σÑєм ιÏÑ•Ï…#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Encoding" -msgstr "Énçödïng â± 'σÑєм ιÏѕυм ∂#" +msgid "Background color" +msgstr "Bäçkgröünd çölör â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αм#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "File" -msgstr "Fïlé â± 'σÑєм ι#" +#: lms/static/js/Markdown.Editor.js +msgid "Blockquote" +msgstr "Blöçkqüö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/static/bundles/commons.js -msgid "Find and replace" -msgstr "Fïnd änd répläçé â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αм#" +msgid "Blocks" +msgstr "Blöçks â± 'σÑєм ιÏÑ•Ï…#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Find next" -msgstr "Fïnd néxt â± 'σÑєм ιÏѕυм ∂σł#" +msgid "Body" +msgstr "Bö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/static/bundles/commons.js -msgid "Find previous" -msgstr "Fïnd prévïöüs â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹#" +msgid "Bold" +msgstr "Böld â± 'σÑєм ι#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Find" -msgstr "Fïnd â± 'σÑєм ι#" +msgid "Border color" +msgstr "Bördér çölör â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Finish" -msgstr "Fïnïsh â± 'σÑєм ιÏÑ•Ï…#" +msgid "Border" +msgstr "Bördér â± 'σÑєм ιÏÑ•Ï…#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Font Family" -msgstr "Fönt Fämïlý â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ #" +msgid "Bottom" +msgstr "Böttöm â± 'σÑєм ιÏÑ•Ï…#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Font Sizes" -msgstr "Fönt Sïzés â± 'σÑєм ιÏѕυм ∂σłσ#" +msgid "Bullet list" +msgstr "Büllét lïst â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ #" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Footer" -msgstr "Föötér â± 'σÑєм ιÏÑ•Ï…#" +msgid "Caption" +msgstr "Çäptïö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/static/bundles/commons.js -msgid "Format" -msgstr "Förmät â± 'σÑєм ιÏÑ•Ï…#" +msgid "Cell padding" +msgstr "Çéll päddï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/static/bundles/commons.js -msgid "Formats" -msgstr "Förmäts â± 'σÑєм ιÏѕυм #" +msgid "Cell properties" +msgstr "Çéll pröpértïés â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ α#" -#. #-#-#-#-# djangojs-partial.po (0.1a) #-#-#-#-# #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -#: common/static/common/templates/image-modal.underscore -msgid "Fullscreen" -msgstr "Füllsçréén â± 'σÑєм ιÏѕυм ∂σłσ#" +msgid "Cell spacing" +msgstr "Çéll späçï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/static/bundles/commons.js -msgid "General" -msgstr "Généräl â± 'σÑєм ιÏѕυм #" +msgid "Cell type" +msgstr "Çéll týpé â± 'σÑєм ιÏѕυм ∂σł#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "H Align" -msgstr "H Àlïgn â± 'σÑєм ιÏѕυм #" +msgid "Cell" +msgstr "Çéll â± 'σÑєм ι#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Header 1" -msgstr "Héädér 1 â± 'σÑєм ιÏѕυм ∂#" +msgid "Center" +msgstr "Çéntér â± 'σÑєм ιÏÑ•Ï…#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Header 2" -msgstr "Héädér 2 â± 'σÑєм ιÏѕυм ∂#" +msgid "Circle" +msgstr "Çïrçlé â± 'σÑєм ιÏÑ•Ï…#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Header 3" -msgstr "Héädér 3 â± 'σÑєм ιÏѕυм ∂#" +msgid "Clear formatting" +msgstr "Çléär förmättïng â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αм#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML +#. Translators: this is a toolbar button tooltip from the raw HTML editor +#. displayed in the browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Header 4" -msgstr "Héädér 4 â± 'σÑєм ιÏѕυм ∂#" +msgid "Code block" +msgstr "Çödé ßlöçk â± 'σÑєм ιÏѕυм ∂σłσ#" +#. #-#-#-#-# djangojs-partial.po (0.1a) #-#-#-#-# #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Header 5" -msgstr "Héädér 5 â± 'σÑєм ιÏѕυм ∂#" +#: lms/templates/instructor/instructor_dashboard_2/enrollment-code-lookup-links.underscore +msgid "Code" +msgstr "Çö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/static/bundles/commons.js -msgid "Header 6" -msgstr "Héädér 6 â± 'σÑєм ιÏѕυм ∂#" +msgid "Color" +msgstr "Çölör â± 'σÑєм ιÏÑ•#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Header cell" -msgstr "Héädér çéll â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ #" +msgid "Cols" +msgstr "Çöls â± 'σÑєм ι#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/static/bundles/CapaDescriptor.js common/static/bundles/commons.js -msgid "Header" -msgstr "Héädér â± 'σÑєм ιÏÑ•Ï…#" +msgid "Column group" +msgstr "Çölümn gröüp â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Headers" -msgstr "Héädérs â± 'σÑєм ιÏѕυм #" +msgid "Column" +msgstr "Çölümn â± 'σÑєм ιÏÑ•Ï…#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Heading 1" -msgstr "Héädïng 1 â± 'σÑєм ιÏѕυм ∂σł#" +msgid "Constrain proportions" +msgstr "Çönsträïn pröpörtïöns â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, #" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Heading 2" -msgstr "Héädïng 2 â± 'σÑєм ιÏѕυм ∂σł#" +msgid "Copy row" +msgstr "Çöpý röw â± 'σÑєм ιÏѕυм ∂#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Headings" -msgstr "Héädïngs â± 'σÑєм ιÏѕυм ∂#" +msgid "Copy" +msgstr "Çöpý â± 'σÑєм ι#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Height" -msgstr "Héïght â± 'σÑєм ιÏÑ•Ï…#" +msgid "Could not find the specified string." +msgstr "" +"Çöüld nöt fïnd thé spéçïfïéd strï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/static/bundles/commons.js -msgid "Horizontal line" -msgstr "Hörïzöntäl lïné â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ α#" +msgid "Custom color" +msgstr "Çüstöm çölör â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Horizontal space" -msgstr "Hörïzöntäl späçé â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αм#" +msgid "Custom..." +msgstr "Çüstöm... â± 'σÑєм ιÏѕυм ∂σł#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "HTML source code" -msgstr "HTML söürçé çödé â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αм#" +msgid "Cut row" +msgstr "Çüt röw â± 'σÑєм ιÏѕυм #" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Ignore all" -msgstr "ÃŒgnöré äll â± 'σÑєм ιÏѕυм ∂σłσ#" +msgid "Cut" +msgstr "Çü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/static/bundles/commons.js -msgid "Ignore" -msgstr "ÃŒgnöré â± 'σÑєм ιÏÑ•Ï…#" +msgid "Decrease indent" +msgstr "Déçréäsé ïndént â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ α#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Image description" -msgstr "ÃŒmägé désçrïptïön â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмє#" +msgid "Default" +msgstr "Défäült â± 'σÑєм ιÏѕυм #" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Increase indent" -msgstr "ÃŒnçréäsé ïndént â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ α#" +msgid "Delete column" +msgstr "Délété çölümn â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Inline" -msgstr "ÃŒnlïné â± 'σÑєм ιÏÑ•Ï…#" +msgid "Delete row" +msgstr "Délété röw â± 'σÑєм ιÏѕυм ∂σłσ#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Insert column after" -msgstr "ÃŒnsért çölümn äftér â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт,#" +msgid "Delete table" +msgstr "Délété täßlé â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•#" +#. #-#-#-#-# djangojs-partial.po (0.1a) #-#-#-#-# #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Insert column before" -msgstr "ÃŒnsért çölümn ßéföré â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, #" +#: cms/templates/js/certificate-editor.underscore +#: cms/templates/js/group-configuration-editor.underscore +#: lms/templates/commerce/receipt.underscore +#: lms/templates/verify_student/payment_confirmation_step.underscore +msgid "Description" +msgstr "Désçrïptïö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/static/bundles/commons.js -msgid "Insert date/time" -msgstr "ÃŒnsért däté/tïmé â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αм#" +msgid "Dimensions" +msgstr "Dïménsïöns â± 'σÑєм ιÏѕυм ∂σłσ#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Insert image" -msgstr "ÃŒnsért ïmägé â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•#" +msgid "Disc" +msgstr "Dïsç â± 'σÑєм ι#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Insert link" -msgstr "ÃŒnsért lïnk â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ #" +msgid "Div" +msgstr "Dïv â± 'σÑєм#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Insert row after" -msgstr "ÃŒnsért röw äftér â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αм#" +msgid "Document properties" +msgstr "Döçümént pröpértïés â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт,#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Insert row before" -msgstr "ÃŒnsért röw ßéföré â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмє#" +msgid "Edit HTML" +msgstr "Édït HTML â± 'σÑєм ιÏѕυм ∂σł#" +#. #-#-#-#-# djangojs-partial.po (0.1a) #-#-#-#-# #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Insert table" -msgstr "ÃŒnsért täßlé â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•#" +#: cms/templates/js/certificate-details.underscore +#: cms/templates/js/course_info_handouts.underscore +#: cms/templates/js/course_info_update.underscore +#: cms/templates/js/group-configuration-details.underscore +#: cms/templates/js/partition-group-details.underscore +#: cms/templates/js/show-textbook.underscore +#: cms/templates/js/signatory-details.underscore +#: cms/templates/js/xblock-string-field-editor.underscore +#: common/static/common/templates/discussion/forum-action-edit.underscore +msgid "Edit" +msgstr "Édï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/static/bundles/commons.js -msgid "Insert template" -msgstr "ÃŒnsért témpläté â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ α#" +msgid "Embed" +msgstr "Émßé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/static/bundles/commons.js -msgid "Insert video" -msgstr "ÃŒnsért vïdéö â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•#" +msgid "Emoticons" +msgstr "Émötïçöns â± 'σÑєм ιÏѕυм ∂σł#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Insert" -msgstr "ÃŒnsért â± 'σÑєм ιÏÑ•Ï…#" +msgid "Encoding" +msgstr "Énçödï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/static/bundles/commons.js -msgid "Insert/edit image" -msgstr "ÃŒnsért/édït ïmägé â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмє#" +msgid "File" +msgstr "Fïlé â± 'σÑєм ι#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Insert/edit link" -msgstr "ÃŒnsért/édït lïnk â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αм#" +msgid "Find and replace" +msgstr "Fïnd änd répläçé â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αм#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Insert/edit video" -msgstr "ÃŒnsért/édït vïdéö â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмє#" +msgid "Find next" +msgstr "Fïnd néxt â± 'σÑєм ιÏѕυм ∂σł#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Italic" -msgstr "ÃŒtälïç â± 'σÑєм ιÏÑ•Ï…#" +msgid "Find previous" +msgstr "Fïnd prévïöüs â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Justify" -msgstr "Jüstïfý â± 'σÑєм ιÏѕυм #" +msgid "Find" +msgstr "Fïnd â± 'σÑєм ι#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Keywords" -msgstr "Kéýwörds â± 'σÑєм ιÏѕυм ∂#" +msgid "Finish" +msgstr "Fïnïsh â± 'σÑєм ιÏÑ•Ï…#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Left to right" -msgstr "Léft tö rïght â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹#" +msgid "Font Family" +msgstr "Fönt Fämïlý â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ #" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Left" -msgstr "Léft â± 'σÑєм ι#" +msgid "Font Sizes" +msgstr "Fönt Sïzés â± 'σÑєм ιÏѕυм ∂σłσ#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Lower Alpha" -msgstr "Löwér Àlphä â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ #" +msgid "Footer" +msgstr "Föötér â± 'σÑєм ιÏÑ•Ï…#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Lower Greek" -msgstr "Löwér Gréék â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ #" +msgid "Format" +msgstr "Förmä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/static/bundles/commons.js -msgid "Lower Roman" -msgstr "Löwér Römän â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ #" +msgid "Formats" +msgstr "Förmäts â± 'σÑєм ιÏѕυм #" +#. #-#-#-#-# djangojs-partial.po (0.1a) #-#-#-#-# #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Match case" -msgstr "Mätçh çäsé â± 'σÑєм ιÏѕυм ∂σłσ#" +#: common/static/common/templates/image-modal.underscore +msgid "Fullscreen" +msgstr "Füllsçréé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/static/bundles/commons.js -msgid "Merge cells" -msgstr "Mérgé çélls â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ #" +msgid "General" +msgstr "Généräl â± 'σÑєм ιÏѕυм #" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Middle" -msgstr "Mïddlé â± 'σÑєм ιÏÑ•Ï…#" +msgid "H Align" +msgstr "H Àlïgn â± 'σÑєм ιÏѕυм #" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "New document" -msgstr "Néw döçümént â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•#" +msgid "Header 1" +msgstr "Héädér 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/static/bundles/commons.js -msgid "New window" -msgstr "Néw wïndöw â± 'σÑєм ιÏѕυм ∂σłσ#" +msgid "Header 2" +msgstr "Héädér 2 â± 'σÑєм ιÏѕυм ∂#" -#. #-#-#-#-# djangojs-partial.po (0.1a) #-#-#-#-# #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js cms/templates/js/paging-header.underscore -#: common/static/common/templates/components/paging-footer.underscore -#: common/static/common/templates/discussion/pagination.underscore -msgid "Next" -msgstr "Néxt â± 'σÑєм ι#" +msgid "Header 3" +msgstr "Héädér 3 â± 'σÑєм ιÏѕυм ∂#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "No color" -msgstr "Nö çölör â± 'σÑєм ιÏѕυм ∂#" +msgid "Header 4" +msgstr "Héädér 4 â± 'σÑєм ιÏѕυм ∂#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Nonbreaking space" -msgstr "Nönßréäkïng späçé â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмє#" +msgid "Header 5" +msgstr "Héädér 5 â± 'σÑєм ιÏѕυм ∂#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Numbered list" -msgstr "Nümßéréd lïst â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹#" +msgid "Header 6" +msgstr "Héädér 6 â± 'σÑєм ιÏѕυм ∂#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Page break" -msgstr "Pägé ßréäk â± 'σÑєм ιÏѕυм ∂σłσ#" +msgid "Header cell" +msgstr "Héädér çéll â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ #" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Paste as text" -msgstr "Pästé äs téxt â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹#" +#: common/lib/xmodule/xmodule/js/src/problem/edit.js +msgid "Header" +msgstr "Héädér â± 'σÑєм ιÏÑ•Ï…#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "" -"Paste is now in plain text mode. Contents will now be pasted as plain text " -"until you toggle this option off." -msgstr "" -"Pästé ïs nöw ïn pläïn téxt mödé. Çönténts wïll nöw ßé pästéd äs pläïn téxt " -"üntïl ýöü tögglé thïs öptïön öff. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹#" +msgid "Headers" +msgstr "Héädérs â± 'σÑєм ιÏѕυм #" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Paste row after" -msgstr "Pästé röw äftér â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ α#" +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/static/bundles/commons.js -msgid "Paste row before" -msgstr "Pästé röw ßéföré â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αм#" +#: 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/static/bundles/commons.js -msgid "Paste your embed code below:" -msgstr "Pästé ýöür émßéd çödé ßélöw: â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕє¢#" +msgid "Headings" +msgstr "Héädïngs â± 'σÑєм ιÏѕυм ∂#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Paste" -msgstr "Pästé â± 'σÑєм ιÏÑ•#" +msgid "Height" +msgstr "Héïght â± 'σÑєм ιÏÑ•Ï…#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Poster" -msgstr "Pöstér â± 'σÑєм ιÏÑ•Ï…#" +msgid "Horizontal line" +msgstr "Hörïzöntäl lï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/static/bundles/commons.js -msgid "Pre" -msgstr "Pré â± 'σÑєм#" +msgid "Horizontal space" +msgstr "Hörïzöntäl späçé â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αм#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Prev" -msgstr "Prév â± 'σÑєм ι#" +msgid "HTML source code" +msgstr "HTML söürçé çödé â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αм#" -#. #-#-#-#-# djangojs-partial.po (0.1a) #-#-#-#-# #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js lms/static/js/customwmd.js -#: cms/templates/js/asset-library.underscore -msgid "Preview" -msgstr "Prévïéw â± 'σÑєм ιÏѕυм #" +msgid "Ignore all" +msgstr "ÃŒgnöré äll â± 'σÑєм ιÏѕυм ∂σłσ#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Print" -msgstr "Prïnt â± 'σÑєм ιÏÑ•#" +msgid "Ignore" +msgstr "ÃŒgnöré â± 'σÑєм ιÏÑ•Ï…#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Redo" -msgstr "Rédö â± 'σÑєм ι#" +msgid "Image description" +msgstr "ÃŒmägé désçrïptïö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/static/bundles/commons.js -msgid "Remove link" -msgstr "Rémövé lïnk â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ #" +msgid "Increase indent" +msgstr "ÃŒnçréäsé ïndént â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ α#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Replace all" -msgstr "Répläçé äll â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ #" +msgid "Inline" +msgstr "ÃŒnlï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/static/bundles/commons.js -msgid "Replace with" -msgstr "Répläçé wïth â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•#" +msgid "Insert column after" +msgstr "ÃŒnsért çölümn äftér â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт,#" -#. #-#-#-#-# djangojs-partial.po (0.1a) #-#-#-#-# #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -#: cms/templates/js/metadata-file-uploader-item.underscore -#: cms/templates/js/video-transcripts.underscore -#: cms/templates/js/video/metadata-translations-item.underscore -msgid "Replace" -msgstr "Répläçé â± 'σÑєм ιÏѕυм #" +msgid "Insert column before" +msgstr "ÃŒnsért çölümn ßéföré â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, #" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Restore last draft" -msgstr "Réstöré läst dräft â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт#" +msgid "Insert date/time" +msgstr "ÃŒnsért däté/tïmé â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αм#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "" -"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press " -"ALT-0 for help" -msgstr "" -"Rïçh Téxt Àréä. Préss ÀLT-F9 för ménü. Préss ÀLT-F10 för töölßär. Préss " -"ÀLT-0 för hélp â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕє¢#" +msgid "Insert image" +msgstr "ÃŒnsért ïmägé â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Right to left" -msgstr "Rïght tö léft â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹#" +msgid "Insert link" +msgstr "ÃŒnsért 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/static/bundles/commons.js -msgid "Right" -msgstr "Rïght â± 'σÑєм ιÏÑ•#" +msgid "Insert row after" +msgstr "ÃŒnsért röw äftér â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αм#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Robots" -msgstr "Rößöts â± 'σÑєм ιÏÑ•Ï…#" +msgid "Insert row before" +msgstr "ÃŒnsért röw ßéföré â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмє#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Row group" -msgstr "Röw gröüp â± 'σÑєм ιÏѕυм ∂σł#" +msgid "Insert table" +msgstr "ÃŒnsért täßlé â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Row properties" -msgstr "Röw pröpértïés â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚#" +msgid "Insert template" +msgstr "ÃŒnsért témplä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/static/bundles/commons.js -msgid "Row type" -msgstr "Röw týpé â± 'σÑєм ιÏѕυм ∂#" +msgid "Insert video" +msgstr "ÃŒnsért vï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/static/bundles/commons.js -msgid "Row" -msgstr "Röw â± 'σÑєм#" +msgid "Insert" +msgstr "ÃŒnsért â± 'σÑєм ιÏÑ•Ï…#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Rows" -msgstr "Röws â± 'σÑєм ι#" +msgid "Insert/edit image" +msgstr "ÃŒnsért/édït ïmägé â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмє#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Scope" -msgstr "Sçöpé â± 'σÑєм ιÏÑ•#" +msgid "Insert/edit link" +msgstr "ÃŒnsért/édït 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/static/bundles/commons.js -msgid "Select all" -msgstr "Séléçt äll â± 'σÑєм ιÏѕυм ∂σłσ#" +msgid "Insert/edit video" +msgstr "ÃŒnsért/édït vï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/static/bundles/commons.js -msgid "Show blocks" -msgstr "Shöw ßlöçks â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ #" +msgid "Italic" +msgstr "ÃŒtälïç â± 'σÑєм ιÏÑ•Ï…#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Show invisible characters" -msgstr "Shöw ïnvïsïßlé çhäräçtérs â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕ#" +msgid "Justify" +msgstr "Jüstïfý â± 'σÑєм ιÏѕυм #" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Source code" -msgstr "Söürçé çödé â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ #" +msgid "Keywords" +msgstr "Kéýwörds â± 'σÑєм ιÏѕυм ∂#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Source" -msgstr "Söürçé â± 'σÑєм ιÏÑ•Ï…#" +msgid "Left to right" +msgstr "Léft tö rïght â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Special character" -msgstr "Spéçïäl çhäräçtér â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмє#" +msgid "Left" +msgstr "Léft â± 'σÑєм ι#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Spellcheck" -msgstr "Spéllçhéçk â± 'σÑєм ιÏѕυм ∂σłσ#" +msgid "Lower Alpha" +msgstr "Löwér Àlphä â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ #" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Split cell" -msgstr "Splït çéll â± 'σÑєм ιÏѕυм ∂σłσ#" +msgid "Lower Greek" +msgstr "Löwér Gréék â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ #" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Square" -msgstr "Sqüäré â± 'σÑєм ιÏÑ•Ï…#" +msgid "Lower Roman" +msgstr "Löwér Römä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/static/bundles/commons.js -msgid "Start search" -msgstr "Stärt séärçh â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•#" +msgid "Match case" +msgstr "Mätçh çäsé â± 'σÑєм ιÏѕυм ∂σłσ#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Strikethrough" -msgstr "Strïkéthröügh â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹#" +msgid "Merge cells" +msgstr "Mérgé çélls â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ #" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Style" -msgstr "Stýlé â± 'σÑєм ιÏÑ•#" +msgid "Middle" +msgstr "Mïddlé â± 'σÑєм ιÏÑ•Ï…#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Subscript" -msgstr "Süßsçrïpt â± 'σÑєм ιÏѕυм ∂σł#" +msgid "New document" +msgstr "Néw döçümént â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Superscript" -msgstr "Süpérsçrïpt â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ #" +msgid "New window" +msgstr "Néw wïndöw â± 'σÑєм ιÏѕυм ∂σłσ#" +#. #-#-#-#-# djangojs-partial.po (0.1a) #-#-#-#-# #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Table properties" -msgstr "Täßlé pröpértïés â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αм#" +#: cms/templates/js/paging-header.underscore +#: common/static/common/templates/components/paging-footer.underscore +#: common/static/common/templates/discussion/pagination.underscore +msgid "Next" +msgstr "Néxt â± 'σÑєм ι#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Table" -msgstr "Täßlé â± 'σÑєм ιÏÑ•#" +msgid "No color" +msgstr "Nö çölör â± 'σÑєм ιÏѕυм ∂#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Target" -msgstr "Tärgét â± 'σÑєм ιÏÑ•Ï…#" +msgid "Nonbreaking space" +msgstr "Nönßréäkïng späçé â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмє#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Templates" -msgstr "Témplätés â± 'σÑєм ιÏѕυм ∂σł#" +msgid "Numbered list" +msgstr "Nümßéréd lïst â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Text color" -msgstr "Téxt çölör â± 'σÑєм ιÏѕυм ∂σłσ#" +msgid "Page break" +msgstr "Pägé ßréäk â± 'σÑєм ιÏѕυм ∂σłσ#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Text to display" -msgstr "Téxt tö dïspläý â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ α#" +msgid "Paste as text" +msgstr "Pästé äs téxt â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js msgid "" -"The URL you entered seems to be an email address. Do you want to add the " -"required mailto: prefix?" +"Paste is now in plain text mode. Contents will now be pasted as plain text " +"until you toggle this option off." msgstr "" -"Thé ÛRL ýöü éntéréd sééms tö ßé än émäïl äddréss. Dö ýöü wänt tö ädd thé " -"réqüïréd mäïltö: préfïx? â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, #" +"Pästé ïs nöw ïn pläïn téxt mödé. Çönténts wïll nöw ßé pästéd äs pläïn téxt " +"üntïl ýöü tögglé thïs öptïön öff. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "" -"The URL you entered seems to be an external link. Do you want to add the " -"required http:// prefix?" -msgstr "" -"Thé ÛRL ýöü éntéréd sééms tö ßé än éxtérnäl lïnk. Dö ýöü wänt tö ädd thé " -"réqüïréd http:// préfïx? â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, #" +msgid "Paste row after" +msgstr "Pästé röw äftér â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ α#" -#. #-#-#-#-# djangojs-partial.po (0.1a) #-#-#-#-# #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -#: cms/templates/js/course-instructor-details.underscore -#: cms/templates/js/signatory-details.underscore -#: common/static/common/templates/discussion/new-post.underscore -#: common/static/common/templates/discussion/thread-edit.underscore -msgid "Title" -msgstr "Tïtlé â± 'σÑєм ιÏÑ•#" +msgid "Paste row before" +msgstr "Pästé röw ßéföré â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αм#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Tools" -msgstr "Tööls â± 'σÑєм ιÏÑ•#" +msgid "Paste your embed code below:" +msgstr "Pästé ýöür émßéd çödé ßélöw: â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕє¢#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Top" -msgstr "Töp â± 'σÑєм#" +msgid "Paste" +msgstr "Pästé â± 'σÑєм ιÏÑ•#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Underline" -msgstr "Ûndérlïné â± 'σÑєм ιÏѕυм ∂σł#" +msgid "Poster" +msgstr "Pöstér â± 'σÑєм ιÏÑ•Ï…#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Undo" -msgstr "Ûndö â± 'σÑєм ι#" +msgid "Pre" +msgstr "Pré â± 'σÑєм#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Upper Alpha" -msgstr "Ûppér Àlphä â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ #" +msgid "Prev" +msgstr "Prév â± 'σÑєм ι#" + +#. #-#-#-#-# djangojs-partial.po (0.1a) #-#-#-#-# +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js lms/static/js/customwmd.js +#: cms/templates/js/asset-library.underscore +msgid "Preview" +msgstr "Prévïéw â± 'σÑєм ιÏѕυм #" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Upper Roman" -msgstr "Ûppér Römän â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ #" +msgid "Print" +msgstr "Prïnt â± 'σÑєм ιÏÑ•#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Url" -msgstr "Ûrl â± 'σÑєм#" +msgid "Redo" +msgstr "Ré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/static/bundles/commons.js -msgid "V Align" -msgstr "V Àlïgn â± 'σÑєм ιÏѕυм #" +msgid "Remove link" +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 +msgid "Replace all" +msgstr "Répläçé äll â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ #" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Vertical space" -msgstr "Vértïçäl späçé â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚#" +msgid "Replace with" +msgstr "Répläçé wïth â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•#" #. #-#-#-#-# djangojs-partial.po (0.1a) #-#-#-#-# #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -#: openedx/features/course_bookmarks/static/course_bookmarks/templates/bookmarks-list.underscore -#: openedx/features/course_search/static/course_search/templates/course_search_item.underscore -#: openedx/features/course_search/static/course_search/templates/dashboard_search_item.underscore -msgid "View" -msgstr "Vïéw â± 'σÑєм ι#" +#: cms/templates/js/metadata-file-uploader-item.underscore +#: cms/templates/js/video-transcripts.underscore +#: cms/templates/js/video/metadata-translations-item.underscore +msgid "Replace" +msgstr "Répläçé â± 'σÑєм ιÏѕυм #" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Visual aids" -msgstr "Vïsüäl äïds â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ #" +msgid "Restore last draft" +msgstr "Réstöré läst dräft â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Whole words" -msgstr "Whölé wörds â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ #" +msgid "" +"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press " +"ALT-0 for help" +msgstr "" +"Rïçh Téxt Àréä. Préss ÀLT-F9 för ménü. Préss ÀLT-F10 för töölßär. Préss " +"ÀLT-0 för hélp â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕє¢#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Width" -msgstr "Wïdth â± 'σÑєм ιÏÑ•#" +msgid "Right to left" +msgstr "Rïght tö léft â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Words: {0}" -msgstr "Wörds: {0} â± 'σÑєм ιÏѕυм ∂σłσ#" +msgid "Right" +msgstr "Rïght â± 'σÑєм ιÏÑ•#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "You have unsaved changes are you sure you want to navigate away?" -msgstr "" -"Ãöü hävé ünsävéd çhängés äré ýöü süré ýöü wänt tö nävïgäté äwäý? â± 'σÑєм " -"ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±#" +msgid "Robots" +msgstr "Rößöts â± 'σÑєм ιÏÑ•Ï…#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "" -"Your browser doesn't support direct access to the clipboard. Please use the " -"Ctrl+X/C/V keyboard shortcuts instead." -msgstr "" -"Ãöür ßröwsér döésn't süppört dïréçt äççéss tö thé çlïpßöärd. Pléäsé üsé thé " -"Çtrl+X/Ç/V kéýßöärd shörtçüts ïnstéäd. â± 'σÑєм ιÏѕυм ∂σł#" +msgid "Row group" +msgstr "Röw gröüp â± 'σÑєм ιÏѕυм ∂σł#" -#. Translators: this is a toolbar button tooltip from the raw HTML editor -#. displayed in the browser when a user needs to edit HTML +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Insert/Edit Image" -msgstr "ÃŒnsért/Édït ÃŒmägé â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмє#" - -#: common/lib/xmodule/xmodule/js/src/lti/lti.js -#: common/static/bundles/LTIModule.js -msgid "" -"Click OK to have your username and e-mail address sent to a 3rd party application.\n" -"\n" -"Click Cancel to return to this page without sending your information." -msgstr "" -"Çlïçk ÖK tö hävé ýöür üsérnämé änd é-mäïl äddréss sént tö ä 3rd pärtý äpplïçätïön.\n" -"\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. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±âˆ‚Î¹Ïιѕι¢ιηg єłιт, ѕє∂ ∂σ єιυѕмσ∂ тємÏÏƒÑ Î¹Î·Â¢Î¹âˆ‚Î¹âˆ‚Ï…Î·Ñ‚ Ï…Ñ‚ łαвσÑÑ” єт ∂σłσÑÑ” мαgηα αłιqυα. Ï…Ñ‚ єηιм α∂ мιηιм νєηιαм, qυιѕ ησѕтÑυ∂ єχєÑ¢ιтαтιση υłłαм¢σ łαвσÑιѕ ηιѕι Ï…Ñ‚ αłιqÏ…Î¹Ï Ñ”Ï‡ єα ¢σммσ∂σ ¢σηѕєqυαт. ∂υιѕ αυтє ιÑÏ…ÑÑ” âˆ‚ÏƒÅ‚ÏƒÑ Î¹Î· ÑÑ”ÏÑєнєη∂єÑιт ιη νσłυÏтαтє νєłιт єѕѕє ¢ιłłυм ∂σłσÑÑ” єυ Æ’Ï…gιαт ηυłłα ÏαÑιαтυÑ. єχ¢єÏÑ‚Ñ”Ï…Ñ Ñ•Î¹Î·Ñ‚ σ¢¢αє¢αт ¢υÏι∂αтαт ηση ÏÑσι∂єηт, ѕυηт ιη ¢υłÏα qυι σƒƒι¢ια ∂єѕєÑυηт мσłłι#" - -#: common/lib/xmodule/xmodule/js/src/lti/lti.js -#: common/static/bundles/LTIModule.js -msgid "" -"Click OK to have your username sent to a 3rd party application.\n" -"\n" -"Click Cancel to return to this page without sending your information." -msgstr "" -"Çlïçk ÖK tö hävé ýöür üsérnämé sént tö ä 3rd pärtý äpplïçätïön.\n" -"\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. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±âˆ‚Î¹Ïιѕι¢ιηg єłιт, ѕє∂ ∂σ єιυѕмσ∂ тємÏÏƒÑ Î¹Î·Â¢Î¹âˆ‚Î¹âˆ‚Ï…Î·Ñ‚ Ï…Ñ‚ łαвσÑÑ” єт ∂σłσÑÑ” мαgηα αłιqυα. Ï…Ñ‚ єηιм α∂ мιηιм νєηιαм, qυιѕ ησѕтÑυ∂ єχєÑ¢ιтαтιση υłłαм¢σ łαвσÑιѕ ηιѕι Ï…Ñ‚ αłιqÏ…Î¹Ï Ñ”Ï‡ єα ¢σммσ∂σ ¢σηѕєqυαт. ∂υιѕ αυтє ιÑÏ…ÑÑ” âˆ‚ÏƒÅ‚ÏƒÑ Î¹Î· ÑÑ”ÏÑєнєη∂єÑιт ιη νσłυÏтαтє νєłιт єѕѕє ¢ιłłυм ∂σłσÑÑ” єυ Æ’Ï…gιαт ηυłłα ÏαÑιαтυÑ. єχ¢єÏÑ‚Ñ”Ï…Ñ Ñ•Î¹Î·Ñ‚ σ¢¢αє¢αт ¢υÏι∂αтαт ηση ÏÑσι∂єηт, ѕυηт ιη ¢υłÏα qυι σƒƒι¢ια ∂єѕєÑυηт мσłłιт αηιм ι∂ єѕт łαвσÑυм#" - -#: common/lib/xmodule/xmodule/js/src/lti/lti.js -#: common/static/bundles/LTIModule.js -msgid "" -"Click OK to have your e-mail address sent to a 3rd party application.\n" -"\n" -"Click Cancel to return to this page without sending your information." -msgstr "" -"Çlïçk ÖK tö hävé ýöür é-mäïl äddréss sént tö ä 3rd pärtý äpplïçätïön.\n" -"\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. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±âˆ‚Î¹Ïιѕι¢ιηg єłιт, ѕє∂ ∂σ єιυѕмσ∂ тємÏÏƒÑ Î¹Î·Â¢Î¹âˆ‚Î¹âˆ‚Ï…Î·Ñ‚ Ï…Ñ‚ łαвσÑÑ” єт ∂σłσÑÑ” мαgηα αłιqυα. Ï…Ñ‚ єηιм α∂ мιηιм νєηιαм, qυιѕ ησѕтÑυ∂ єχєÑ¢ιтαтιση υłłαм¢σ łαвσÑιѕ ηιѕι Ï…Ñ‚ αłιqÏ…Î¹Ï Ñ”Ï‡ єα ¢σммσ∂σ ¢σηѕєqυαт. ∂υιѕ αυтє ιÑÏ…ÑÑ” âˆ‚ÏƒÅ‚ÏƒÑ Î¹Î· ÑÑ”ÏÑєнєη∂єÑιт ιη νσłυÏтαтє νєłιт єѕѕє ¢ιłłυм ∂σłσÑÑ” єυ Æ’Ï…gιαт ηυłłα ÏαÑιαтυÑ. єχ¢єÏÑ‚Ñ”Ï…Ñ Ñ•Î¹Î·Ñ‚ σ¢¢αє¢αт ¢υÏι∂αтαт ηση ÏÑσι∂єηт, ѕυηт ιη ¢υłÏα qυι σƒƒι¢ια ∂єѕєÑυηт мσłłιт αηιм ι∂ єѕт Å‚#" - -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/static/bundles/CapaDescriptor.js -msgid "incorrect" -msgstr "ïnçörréçt â± 'σÑєм ιÏѕυм ∂σł#" - -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/static/bundles/CapaDescriptor.js -msgid "correct" -msgstr "çörréçt â± 'σÑєм ιÏѕυм #" - -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/static/bundles/CapaDescriptor.js -msgid "answer" -msgstr "änswér â± 'σÑєм ιÏÑ•Ï…#" - -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/static/bundles/CapaDescriptor.js -msgid "Short explanation" -msgstr "Shört éxplänätïön â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмє#" - -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/static/bundles/CapaDescriptor.js -msgid "" -"If you use the Advanced Editor, this problem will be converted to XML and you will not be able to return to the Simple Editor Interface.\n" -"\n" -"Proceed to the Advanced Editor and convert this problem to XML?" -msgstr "" -"ÃŒf ýöü üsé thé Àdvänçéd Édïtör, thïs prößlém wïll ßé çönvértéd tö XML änd ýöü wïll nöt ßé äßlé tö rétürn tö thé Sïmplé Édïtör ÃŒntérfäçé.\n" -"\n" -"Pröçééd tö thé Àdvänçéd Édïtör änd çönvért thïs prößlém tö XML? â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±âˆ‚Î¹Ïιѕι¢ιηg єłιт, ѕє∂ ∂σ єιυѕмσ∂ тємÏÏƒÑ Î¹Î·Â¢Î¹âˆ‚Î¹âˆ‚Ï…Î·Ñ‚ Ï…Ñ‚ łαвσÑÑ” єт ∂σłσÑÑ” мαgηα αłιqυα. Ï…Ñ‚ єηιм α∂ мιηιм νєηιαм, qυιѕ ησѕтÑυ∂ єχєÑ¢ιтαтιση υłłαм¢σ łαвσÑιѕ ηιѕι Ï…Ñ‚ αłιqÏ…Î¹Ï Ñ”Ï‡ єα ¢σммσ∂σ ¢σηѕєqυαт. ∂υιѕ αυтє ιÑÏ…ÑÑ” âˆ‚ÏƒÅ‚ÏƒÑ Î¹Î· ÑÑ”ÏÑєнєη∂єÑιт ιη νσłυÏтαтє νєłιт єѕѕє ¢ιłłυм ∂σłσÑÑ” єυ Æ’Ï…gιαт ηυłłα ÏαÑιαтυÑ. єχ¢єÏÑ‚Ñ”Ï…Ñ Ñ•Î¹Î·Ñ‚ σ¢¢αє¢α#" - -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/static/bundles/CapaDescriptor.js -msgid "Explanation" -msgstr "Éxplänätïön â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ #" - -#: common/lib/xmodule/xmodule/js/src/sequence/display.js -#: common/static/bundles/commons.js -msgid "" -"Sequence error! Cannot navigate to %(tab_name)s in the current " -"SequenceModule. Please contact the course staff." -msgstr "" -"Séqüénçé érrör! Çännöt nävïgäté tö %(tab_name)s ïn thé çürrént " -"SéqüénçéMödülé. Pléäsé çöntäçt thé çöürsé stäff. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αм#" - -#: common/lib/xmodule/xmodule/js/src/sequence/display.js -#: common/static/bundles/VerticalStudentView.js -#: common/static/bundles/commons.js -#: openedx/features/course_bookmarks/static/course_bookmarks/js/views/bookmark_button.js -msgid "Bookmarked" -msgstr "Böökmärkéd â± 'σÑєм ιÏѕυм ∂σłσ#" - -#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js -#: common/lib/xmodule/xmodule/js/src/video/09_play_pause_control.js -#: common/lib/xmodule/xmodule/js/src/video/09_play_skip_control.js -#: common/static/bundles/VideoModule.js -msgid "Play" -msgstr "Pläý â± 'σÑєм ι#" - -#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js -#: common/lib/xmodule/xmodule/js/src/video/09_play_pause_control.js -#: common/static/bundles/VideoModule.js -msgid "Pause" -msgstr "Päüsé â± 'σÑєм ιÏÑ•#" - -#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js -#: common/static/bundles/VideoModule.js -msgid "Mute" -msgstr "Müté â± 'σÑєм ι#" - -#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js -#: common/static/bundles/VideoModule.js -msgid "Unmute" -msgstr "Ûnmüté â± 'σÑєм ιÏÑ•Ï…#" - -#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js -#: common/lib/xmodule/xmodule/js/src/video/04_video_full_screen.js -#: common/static/bundles/VideoModule.js -msgid "Exit full browser" -msgstr "Éxït füll ßröwsér â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмє#" - -#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js -#: common/lib/xmodule/xmodule/js/src/video/04_video_full_screen.js -#: common/static/bundles/VideoModule.js -msgid "Fill browser" -msgstr "Fïll ßröwsér â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•#" - -#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js -#: common/lib/xmodule/xmodule/js/src/video/08_video_speed_control.js -#: common/static/bundles/VideoModule.js -msgid "Speed" -msgstr "Spééd â± 'σÑєм ιÏÑ•#" - -#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js -#: common/lib/xmodule/xmodule/js/src/video/08_video_auto_advance_control.js -#: common/static/bundles/VideoModule.js -msgid "Auto-advance" -msgstr "Àütö-ädvänçé â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•#" - -#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js -#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js -#: common/static/bundles/VideoModule.js -msgid "Volume" -msgstr "Völümé â± 'σÑєм ιÏÑ•Ï…#" - -#. Translators: Volume level equals 0%. -#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js -#: common/static/bundles/VideoModule.js -msgid "Muted" -msgstr "Mütéd â± 'σÑєм ιÏÑ•#" - -#. Translators: Volume level in range ]0,20]% -#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js -#: common/static/bundles/VideoModule.js -msgid "Very low" -msgstr "Vérý löw â± 'σÑєм ιÏѕυм ∂#" - -#. Translators: Volume level in range ]20,40]% -#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js -#: common/static/bundles/VideoModule.js -msgid "Low" -msgstr "Löw â± 'σÑєм#" - -#. Translators: Volume level in range ]40,60]% -#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js -#: common/static/bundles/VideoModule.js -msgid "Average" -msgstr "Àvérägé â± 'σÑєм ιÏѕυм #" - -#. Translators: Volume level in range ]60,80]% -#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js -#: common/static/bundles/VideoModule.js -msgid "Loud" -msgstr "Löüd â± 'σÑєм ι#" - -#. Translators: Volume level in range ]80,99]% -#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js -#: common/static/bundles/VideoModule.js -msgid "Very loud" -msgstr "Vérý löüd â± 'σÑєм ιÏѕυм ∂σł#" - -#. Translators: Volume level equals 100%. -#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js -#: common/static/bundles/VideoModule.js -msgid "Maximum" -msgstr "Mäxïmüm â± 'σÑєм ιÏѕυм #" - -#: common/lib/xmodule/xmodule/js/src/video/02_html5_video.js -#: common/static/bundles/VideoModule.js -msgid "This browser cannot play .mp4, .ogg, or .webm files." -msgstr "" -"Thïs ßröwsér çännöt pläý .mp4, .ögg, ör .wéßm fïlés. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ " -"αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±#" - -#: common/lib/xmodule/xmodule/js/src/video/02_html5_video.js -#: common/static/bundles/VideoModule.js -msgid "Try using a different browser, such as Google Chrome." -msgstr "" -"Trý üsïng ä dïfférént ßröwsér, süçh äs Gööglé Çhrömé. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚" -" αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±#" - -#: common/lib/xmodule/xmodule/js/src/video/05_video_quality_control.js -#: common/static/bundles/VideoModule.js -msgid "High Definition" -msgstr "Hïgh Défïnïtïön â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ α#" - -#: common/lib/xmodule/xmodule/js/src/video/05_video_quality_control.js -#: common/static/bundles/VideoModule.js -msgid "off" -msgstr "öff â± 'σÑєм#" - -#: common/lib/xmodule/xmodule/js/src/video/05_video_quality_control.js -#: common/static/bundles/VideoModule.js -msgid "on" -msgstr "ön â± 'σÑ#" - -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js -#: common/static/bundles/VideoModule.js -msgid "Video position. Press space to toggle playback" -msgstr "" -"Vïdéö pösïtïön. Préss späçé tö tögglé pläýßäçk â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, " -"Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±#" - -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js -#: common/static/bundles/VideoModule.js -msgid "Video ended" -msgstr "Vïdéö éndéd â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ #" - -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js -#: common/static/bundles/VideoModule.js -msgid "Video position" -msgstr "Vïdéö pösïtïön â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚#" +msgid "Row properties" +msgstr "Röw pröpértïés â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚#" -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js -#: common/static/bundles/VideoModule.js -msgid "%(value)s hour" -msgid_plural "%(value)s hours" -msgstr[0] "%(value)s höür â± 'σÑєм ιÏѕυм ∂#" -msgstr[1] "%(value)s höürs â± 'σÑєм ιÏѕυм ∂σł#" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Row type" +msgstr "Röw týpé â± 'σÑєм ιÏѕυм ∂#" -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js -#: common/static/bundles/VideoModule.js -msgid "%(value)s minute" -msgid_plural "%(value)s minutes" -msgstr[0] "%(value)s mïnüté â± 'σÑєм ιÏѕυм ∂σłσ#" -msgstr[1] "%(value)s mïnütés â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ #" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Row" +msgstr "Röw â± 'σÑєм#" -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js -#: common/static/bundles/VideoModule.js -msgid "%(value)s second" -msgid_plural "%(value)s seconds" -msgstr[0] "%(value)s séçönd â± 'σÑєм ιÏѕυм ∂σłσ#" -msgstr[1] "%(value)s séçönds â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ #" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Rows" +msgstr "Röws â± 'σÑєм ι#" -#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js -#: common/static/bundles/VideoModule.js -msgid "" -"Click on this button to mute or unmute this video or press UP or DOWN " -"buttons to increase or decrease volume level." -msgstr "" -"Çlïçk ön thïs ßüttön tö müté ör ünmüté thïs vïdéö ör préss ÛP ör DÖWN " -"ßüttöns tö ïnçréäsé ör déçréäsé völümé lévél. â± 'σÑєм ιÏѕυм ∂σł#" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Scope" +msgstr "Sçöpé â± 'σÑєм ιÏÑ•#" -#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js -#: common/static/bundles/VideoModule.js -msgid "Adjust video volume" -msgstr "Àdjüst vïdéö völümé â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт,#" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Select all" +msgstr "Séléçt äll â± 'σÑєм ιÏѕυм ∂σłσ#" -#: common/lib/xmodule/xmodule/js/src/video/08_video_speed_control.js -#: common/static/bundles/VideoModule.js -msgid "" -"Press UP to enter the speed menu then use the UP and DOWN arrow keys to " -"navigate the different speeds, then press ENTER to change to the selected " -"speed." -msgstr "" -"Préss ÛP tö éntér thé spééd ménü thén üsé thé ÛP änd DÖWN ärröw kéýs tö " -"nävïgäté thé dïfférént spééds, thén préss ÉNTÉR tö çhängé tö thé séléçtéd " -"spééd. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±âˆ‚Î¹Ïιѕι¢ιηg єłιт, ѕє∂ ∂σ " -"єιυѕмσ∂ тємÏÏƒÑ Î¹Î·Â¢Î¹âˆ‚Î¹âˆ‚Ï…Î·Ñ‚ Ï…Ñ‚ łαвσÑÑ” єт ∂σłσÑÑ” мαgηα αłιqυα. Ï…Ñ‚ єηιм α∂ мιηιм" -" νєηιαм, qυιѕ ησѕтÑυ∂ єχєÑ¢ιтαтιση υłłαм¢σ łαвσÑιѕ ηιѕι Ï…Ñ‚ αłιqÏ…Î¹Ï Ñ”Ï‡ єα " -"¢σммσ∂σ ¢σηѕєqυαт. ∂υιѕ αυтє ιÑÏ…ÑÑ” âˆ‚ÏƒÅ‚ÏƒÑ Î¹Î· ÑÑ”ÏÑєнєη∂єÑιт ιη νσłυÏтαтє νєłιт" -" єѕѕє ¢ιłłυм ∂σłσÑÑ” єυ Æ’Ï…gιαт ηυłłα ÏαÑιαтυÑ. єχ¢єÏÑ‚Ñ”Ï…Ñ Ñ•Î¹Î·Ñ‚ σ¢¢αє¢αт " -"¢υÏι∂αтαт ηση ÏÑσι∂єηт, ѕυηт ιη ¢υłÏα qυι σƒƒι¢ια ∂єѕєÑυηт мσłłιт#" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Show blocks" +msgstr "Shöw ßlöçks â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ #" -#: common/lib/xmodule/xmodule/js/src/video/08_video_speed_control.js -#: common/static/bundles/VideoModule.js -msgid "Adjust video speed" -msgstr "Àdjüst vïdéö spéé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 +msgid "Show invisible characters" +msgstr "Shöw ïnvïsïßlé çhäräçtérs â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕ#" -#: common/lib/xmodule/xmodule/js/src/video/08_video_speed_control.js -#: common/static/bundles/VideoModule.js -msgid "Video speed: " -msgstr "Vïdéö spéé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 +msgid "Source code" +msgstr "Söürçé çödé â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ #" -#: common/lib/xmodule/xmodule/js/src/video/09_play_skip_control.js -#: common/static/bundles/VideoModule.js -msgid "Skip" -msgstr "Skïp â± 'σÑєм ι#" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Source" +msgstr "Söürçé â± 'σÑєм ιÏÑ•Ï…#" -#: common/lib/xmodule/xmodule/js/src/video/09_poster.js -#: common/static/bundles/VideoModule.js -msgid "Play video" -msgstr "Pläý vï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 +msgid "Special character" +msgstr "Spéçïäl çhäräçtér â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмє#" -#: common/lib/xmodule/xmodule/js/src/video/09_skip_control.js -#: common/static/bundles/VideoModule.js -msgid "Do not show again" -msgstr "Dö nöt shöw ägäï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 +msgid "Spellcheck" +msgstr "Spéllçhéçk â± 'σÑєм ιÏѕυм ∂σłσ#" -#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js -#: common/static/bundles/VideoModule.js -msgid "Open language menu" -msgstr "Öpén längüägé mé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 +msgid "Split cell" +msgstr "Splït çéll â± 'σÑєм ιÏѕυм ∂σłσ#" -#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js -#: common/static/bundles/VideoModule.js -msgid "Transcript will be displayed when you start playing the video." -msgstr "" -"Tränsçrïpt wïll ßé dïspläýéd whén ýöü stärt pläýïng thé vï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 +msgid "Square" +msgstr "Sqüäré â± 'σÑєм ιÏÑ•Ï…#" -#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js -#: common/static/bundles/VideoModule.js -msgid "" -"Activating a link in this group will skip to the corresponding point in the " -"video." -msgstr "" -"Àçtïvätïng ä lïnk ïn thïs gröüp wïll skïp tö thé çörréspöndïng pöïnt ïn thé " -"vï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 +msgid "Start search" +msgstr "Stärt séärçh â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•#" -#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js -#: common/static/bundles/VideoModule.js -msgid "Video transcript" -msgstr "Vïdéö tränsçrïpt â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αм#" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Strikethrough" +msgstr "Strïkéthröügh â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹#" -#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js -#: common/static/bundles/VideoModule.js -msgid "Start of transcript. Skip to the end." -msgstr "" -"Stärt öf tränsçrïpt. Skïp tö thé énd. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, " -"¢σηѕє¢тєтυ#" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Style" +msgstr "Stýlé â± 'σÑєм ιÏÑ•#" -#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js -#: common/static/bundles/VideoModule.js -msgid "End of transcript. Skip to the start." -msgstr "" -"Énd öf tränsçrïpt. Skïp tö thé stärt. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, " -"¢σηѕє¢тєтυ#" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Subscript" +msgstr "Süßsçrïpt â± 'σÑєм ιÏѕυм ∂σł#" -#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js -#: common/static/bundles/VideoModule.js -msgid "" -"Press the UP arrow key to enter the language menu then use UP and DOWN arrow" -" keys to navigate language options. Press ENTER to change to the selected " -"language." -msgstr "" -"Préss thé ÛP ärröw kéý tö éntér thé längüägé ménü thén üsé ÛP änd DÖWN ärröw" -" kéýs tö nävïgäté längüägé öptïöns. Préss ÉNTÉR tö çhängé tö thé séléçtéd " -"längüägé. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±âˆ‚Î¹Ïιѕι¢ιηg єłιт, ѕє∂ ∂σ " -"єιυѕмσ∂ тємÏÏƒÑ Î¹Î·Â¢Î¹âˆ‚Î¹âˆ‚Ï…Î·Ñ‚ Ï…Ñ‚ łαвσÑÑ” єт ∂σłσÑÑ” мαgηα αłιqυα. Ï…Ñ‚ єηιм α∂ мιηιм" -" νєηιαм, qυιѕ ησѕтÑυ∂ єχєÑ¢ιтαтιση υłłαм¢σ łαвσÑιѕ ηιѕι Ï…Ñ‚ αłιqÏ…Î¹Ï Ñ”Ï‡ єα " -"¢σммσ∂σ ¢σηѕєqυαт. ∂υιѕ αυтє ιÑÏ…ÑÑ” âˆ‚ÏƒÅ‚ÏƒÑ Î¹Î· ÑÑ”ÏÑєнєη∂єÑιт ιη νσłυÏтαтє νєłιт" -" єѕѕє ¢ιłłυм ∂σłσÑÑ” єυ Æ’Ï…gιαт ηυłłα ÏαÑιαтυÑ. єχ¢єÏÑ‚Ñ”Ï…Ñ Ñ•Î¹Î·Ñ‚ σ¢¢αє¢αт " -"¢υÏι∂αтαт ηση ÏÑσι∂єηт, ѕυηт ιη ¢υłÏα qυι σƒƒι¢ια ∂єѕєÑυη#" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Superscript" +msgstr "Süpérsçrïpt â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ #" -#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js -#: common/static/bundles/VideoModule.js -msgid "Hide closed captions" -msgstr "Hïdé çlöséd çäptïöns â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, #" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Table properties" +msgstr "Täßlé pröpértïés â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αм#" -#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js -#: common/static/bundles/VideoModule.js -msgid "(Caption will be displayed when you start playing the video.)" -msgstr "" -"(Çäptïön wïll ßé dïspläýéd whén ýöü stärt pläýïng thé vï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 +msgid "Table" +msgstr "Täßlé â± 'σÑєм ιÏÑ•#" -#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js -#: common/static/bundles/VideoModule.js -msgid "Turn on closed captioning" -msgstr "Türn ön çlöséd çäptïönï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 +msgid "Target" +msgstr "Tärgét â± 'σÑєм ιÏÑ•Ï…#" -#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js -#: common/static/bundles/VideoModule.js -msgid "Turn on transcripts" -msgstr "Türn ön tränsçrïpts â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт,#" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Templates" +msgstr "Témplätés â± 'σÑєм ιÏѕυм ∂σł#" -#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js -#: common/static/bundles/VideoModule.js -msgid "Turn off transcripts" -msgstr "Türn öff tränsçrïpts â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, #" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Text color" +msgstr "Téxt çölör â± 'σÑєм ιÏѕυм ∂σłσ#" -#: common/static/bundles/CourseGoals.js -#: openedx/features/course_experience/static/course_experience/js/CourseGoals.js -msgid "Thank you for setting your course goal to {goal}!" -msgstr "" -"Thänk ýöü för séttïng ýöür çöürsé göäl tö {goal}! â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ " -"αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±#" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Text to display" +msgstr "Téxt tö dïspläý â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ α#" -#: common/static/bundles/CourseGoals.js +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "" -"There was an error in setting your goal, please reload the page and try " -"again." -msgstr "" -"Théré wäs än érrör ïn séttïng ýöür göäl, pléäsé rélöäd thé pägé änd trý " -"ägäïn. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕє¢тєт#" - -#: common/static/bundles/CourseHome.js -#: openedx/features/course_experience/static/course_experience/js/CourseHome.js -msgid "You have successfully updated your goal." +"The URL you entered seems to be an email address. Do you want to add the " +"required mailto: prefix?" msgstr "" -"Ãöü hävé süççéssfüllý üpdätéd ýöür göäl. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, " -"¢σηѕє¢тєтυÑ#" +"Thé ÛRL ýöü éntéréd sééms tö ßé än émäïl äddréss. Dö ýöü wänt tö ädd thé " +"réqüïréd mäïltö: préfïx? â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, #" -#: common/static/bundles/CourseHome.js -#: openedx/features/course_experience/static/course_experience/js/CourseHome.js -msgid "There was an error updating your goal." +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "" +"The URL you entered seems to be an external link. Do you want to add the " +"required http:// prefix?" msgstr "" -"Théré wäs än érrör üpdätïng ýöür göäl. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, " -"¢σηѕє¢тєтυÑ#" +"Thé ÛRL ýöü éntéréd sééms tö ßé än éxtérnäl lïnk. Dö ýöü wänt tö ädd thé " +"réqüïréd http:// préfïx? â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, #" -#: common/static/bundles/CourseOutline.js -#: openedx/features/course_experience/static/course_experience/js/CourseOutline.js -#: lms/templates/ccx/schedule.underscore -msgid "Expand All" -msgstr "Éxpänd Àll â± 'σÑєм ιÏѕυм ∂σłσ#" +#. #-#-#-#-# djangojs-partial.po (0.1a) #-#-#-#-# +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +#: cms/templates/js/course-instructor-details.underscore +#: cms/templates/js/signatory-details.underscore +#: common/static/common/templates/discussion/new-post.underscore +#: common/static/common/templates/discussion/thread-edit.underscore +msgid "Title" +msgstr "Tïtlé â± 'σÑєм ιÏÑ•#" -#: common/static/bundles/CourseOutline.js -#: openedx/features/course_experience/static/course_experience/js/CourseOutline.js -#: lms/templates/ccx/schedule.underscore -msgid "Collapse All" -msgstr "Çölläpsé Àll â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•#" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Tools" +msgstr "Tööls â± 'σÑєм ιÏÑ•#" -#: common/static/bundles/EntitlementFactory.js -#: common/static/bundles/ProgramDetailsFactory.js -#: lms/static/js/learner_dashboard/models/course_card_model.js -msgid "(Self-paced) Starts {start}" -msgstr "(Sélf-päçéd) Stärts {start} â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σ#" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Top" +msgstr "Töp â± 'σÑєм#" -#: common/static/bundles/EntitlementFactory.js -#: common/static/bundles/ProgramDetailsFactory.js -#: lms/static/js/learner_dashboard/models/course_card_model.js -msgid "(Self-paced) Started {start}" -msgstr "(Sélf-päçéd) Stärtéd {start} â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢ση#" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Underline" +msgstr "Ûndérlïné â± 'σÑєм ιÏѕυм ∂σł#" -#: common/static/bundles/EntitlementFactory.js -#: common/static/bundles/ProgramDetailsFactory.js -#: lms/static/js/learner_dashboard/models/course_card_model.js -msgid "(Self-paced) Ends {end}" -msgstr "(Sélf-päçéd) Énds {end} â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, #" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Undo" +msgstr "Ûndö â± 'σÑєм ι#" -#: common/static/bundles/EntitlementFactory.js -#: common/static/bundles/ProgramDetailsFactory.js -#: lms/static/js/learner_dashboard/models/course_card_model.js -msgid "(Self-paced) Ended {end}" -msgstr "(Sélf-päçéd) Éndéd {end} â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢#" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Upper Alpha" +msgstr "Ûppér Àlphä â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ #" -#: common/static/bundles/EntitlementFactory.js -#: common/static/bundles/ProgramDetailsFactory.js -#: lms/static/js/learner_dashboard/models/course_card_model.js -msgid "Starts {start}" -msgstr "Stärts {start} â± 'σÑєм ιÏѕυм ∂σłσ#" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Upper Roman" +msgstr "Ûppér Römän â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ #" -#: common/static/bundles/EntitlementFactory.js -#: common/static/bundles/ProgramDetailsFactory.js -#: lms/static/js/learner_dashboard/models/course_card_model.js -msgid "Started {start}" -msgstr "Stärtéd {start} â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ #" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Url" +msgstr "Ûrl â± 'σÑєм#" -#: common/static/bundles/EntitlementFactory.js -#: common/static/bundles/ProgramDetailsFactory.js -#: lms/static/js/learner_dashboard/models/course_card_model.js -msgid "Ends {end}" -msgstr "Énds {end} â± 'σÑєм ιÏѕυм ∂#" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "V Align" +msgstr "V Àlïgn â± 'σÑєм ιÏѕυм #" -#: common/static/bundles/EntitlementFactory.js -#: common/static/bundles/ProgramDetailsFactory.js -#: lms/static/js/learner_dashboard/views/course_entitlement_view.js -msgid "You must select a session to access the course." -msgstr "" -"Ãöü müst séléçt ä séssïön tö äççéss thé çöürsé. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт," -" Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±#" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Vertical space" +msgstr "Vértïçäl späçé â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚#" -#: common/static/bundles/EntitlementFactory.js -#: common/static/bundles/ProgramDetailsFactory.js -#: lms/static/js/learner_dashboard/views/course_entitlement_view.js -msgid "There was an error. Please reload the page and try again." -msgstr "" -"Théré wäs än érrör. Pléäsé rélöäd thé pägé änd trý ägäïn. â± 'σÑєм ιÏѕυм ∂σłσÑ" -" ѕιт αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±#" +#. #-#-#-#-# djangojs-partial.po (0.1a) #-#-#-#-# +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +#: openedx/features/course_bookmarks/static/course_bookmarks/templates/bookmarks-list.underscore +#: openedx/features/course_search/static/course_search/templates/course_search_item.underscore +#: openedx/features/course_search/static/course_search/templates/dashboard_search_item.underscore +msgid "View" +msgstr "Vïéw â± 'σÑєм ι#" -#: common/static/bundles/EntitlementFactory.js -#: common/static/bundles/ProgramDetailsFactory.js -#: lms/static/js/learner_dashboard/views/course_entitlement_view.js -#: lms/templates/learner_dashboard/course_entitlement.underscore -msgid "Change Session" -msgstr "Çhängé Séssïö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 +msgid "Visual aids" +msgstr "Vïsüäl äïds â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ #" -#: common/static/bundles/EntitlementFactory.js -#: common/static/bundles/ProgramDetailsFactory.js -#: lms/static/js/learner_dashboard/views/course_entitlement_view.js -#: lms/templates/learner_dashboard/course_entitlement.underscore -msgid "Select Session" -msgstr "Séléçt Séssïö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 +msgid "Whole words" +msgstr "Whölé wörds â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ #" -#: common/static/bundles/EntitlementFactory.js -#: common/static/bundles/ProgramDetailsFactory.js -#: lms/static/js/learner_dashboard/views/course_entitlement_view.js -msgid "Leave Current Session" -msgstr "Léävé Çürrént Séssïö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 +msgid "Width" +msgstr "Wïdth â± 'σÑєм ιÏÑ•#" -#: common/static/bundles/EntitlementFactory.js -#: common/static/bundles/ProgramDetailsFactory.js -#: lms/static/js/learner_dashboard/views/course_entitlement_view.js -msgid "Are you sure you want to select this session?" -msgstr "" -"Àré ýöü süré ýöü wänt tö séléçt thïs séssïö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 +msgid "Words: {0}" +msgstr "Wörds: {0} â± 'σÑєм ιÏѕυм ∂σłσ#" -#: common/static/bundles/EntitlementFactory.js -#: common/static/bundles/ProgramDetailsFactory.js -#: lms/static/js/learner_dashboard/views/course_entitlement_view.js -msgid "Are you sure you want to change to a different session?" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "You have unsaved changes are you sure you want to navigate away?" msgstr "" -"Àré ýöü süré ýöü wänt tö çhängé tö ä dïfférént séssïön? â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ " -"ѕιт αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±#" +"Ãöü hävé ünsävéd çhängés äré ýöü süré ýöü wänt tö nävïgäté äwäý? â± 'σÑєм " +"ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±#" -#: common/static/bundles/EntitlementFactory.js -#: common/static/bundles/ProgramDetailsFactory.js -#: lms/static/js/learner_dashboard/views/course_entitlement_view.js -msgid "Any course progress or grades from your current session will be lost." +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "" +"Your browser doesn't support direct access to the clipboard. Please use the " +"Ctrl+X/C/V keyboard shortcuts instead." msgstr "" -"Àný çöürsé prögréss ör grädés fröm ýöür çürrént séssïön wïll ßé löst. â± 'σÑєм" -" ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ #" +"Ãöür ßröwsér döésn't süppört dïréçt äççéss tö thé çlïpßöärd. Pléäsé üsé thé " +"Çtrl+X/Ç/V kéýßöärd shörtçüts ïnstéäd. â± 'σÑєм ιÏѕυм ∂σł#" -#: common/static/bundles/EntitlementFactory.js -#: common/static/bundles/ProgramDetailsFactory.js -#: lms/static/js/learner_dashboard/views/course_entitlement_view.js -msgid "Are you sure that you want to leave this session?" -msgstr "" -"Àré ýöü süré thät ýöü wänt tö léävé thïs séssïön? â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ " -"αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±#" +#. Translators: this is a toolbar button tooltip from the raw HTML editor +#. displayed in the browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Insert/Edit Image" +msgstr "ÃŒnsért/Édït ÃŒmägé â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмє#" -#: common/static/bundles/EntitlementUnenrollmentFactory.js -#: lms/static/js/learner_dashboard/views/entitlement_unenrollment_view.js +#: common/lib/xmodule/xmodule/js/src/lti/lti.js msgid "" -"Your unenrollment request could not be processed. Please try again later." +"Click OK to have your username and e-mail address sent to a 3rd party application.\n" +"\n" +"Click Cancel to return to this page without sending your information." msgstr "" -"Ãöür ünénröllmént réqüést çöüld nöt ßé pröçésséd. Pléäsé trý ägäïn lätér. " -"â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕє¢тєтυÑ#" +"Çlïçk ÖK tö hävé ýöür üsérnämé änd é-mäïl äddréss sént tö ä 3rd pärtý äpplïçätïön.\n" +"\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. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±âˆ‚Î¹Ïιѕι¢ιηg єłιт, ѕє∂ ∂σ єιυѕмσ∂ тємÏÏƒÑ Î¹Î·Â¢Î¹âˆ‚Î¹âˆ‚Ï…Î·Ñ‚ Ï…Ñ‚ łαвσÑÑ” єт ∂σłσÑÑ” мαgηα αłιqυα. Ï…Ñ‚ єηιм α∂ мιηιм νєηιαм, qυιѕ ησѕтÑυ∂ єχєÑ¢ιтαтιση υłłαм¢σ łαвσÑιѕ ηιѕι Ï…Ñ‚ αłιqÏ…Î¹Ï Ñ”Ï‡ єα ¢σммσ∂σ ¢σηѕєqυαт. ∂υιѕ αυтє ιÑÏ…ÑÑ” âˆ‚ÏƒÅ‚ÏƒÑ Î¹Î· ÑÑ”ÏÑєнєη∂єÑιт ιη νσłυÏтαтє νєłιт єѕѕє ¢ιłłυм ∂σłσÑÑ” єυ Æ’Ï…gιαт ηυłłα ÏαÑιαтυÑ. єχ¢єÏÑ‚Ñ”Ï…Ñ Ñ•Î¹Î·Ñ‚ σ¢¢αє¢αт ¢υÏι∂αтαт ηση ÏÑσι∂єηт, ѕυηт ιη ¢υłÏα qυι σƒƒι¢ια ∂єѕєÑυηт мσłłι#" -#: common/static/bundles/EntitlementUnenrollmentFactory.js -#: lms/static/js/learner_dashboard/views/entitlement_unenrollment_view.js +#: common/lib/xmodule/xmodule/js/src/lti/lti.js msgid "" -"Are you sure you want to unenroll from {courseName} ({courseNumber})? You " -"will be refunded the amount you paid." +"Click OK to have your username sent to a 3rd party application.\n" +"\n" +"Click Cancel to return to this page without sending your information." msgstr "" -"Àré ýöü süré ýöü wänt tö ünénröll fröm {courseName} ({courseNumber})? Ãöü " -"wïll ßé réfündéd thé ämöünt ýöü päïd. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢ση#" +"Çlïçk ÖK tö hävé ýöür üsérnämé sént tö ä 3rd pärtý äpplïçätïön.\n" +"\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. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±âˆ‚Î¹Ïιѕι¢ιηg єłιт, ѕє∂ ∂σ єιυѕмσ∂ тємÏÏƒÑ Î¹Î·Â¢Î¹âˆ‚Î¹âˆ‚Ï…Î·Ñ‚ Ï…Ñ‚ łαвσÑÑ” єт ∂σłσÑÑ” мαgηα αłιqυα. Ï…Ñ‚ єηιм α∂ мιηιм νєηιαм, qυιѕ ησѕтÑυ∂ єχєÑ¢ιтαтιση υłłαм¢σ łαвσÑιѕ ηιѕι Ï…Ñ‚ αłιqÏ…Î¹Ï Ñ”Ï‡ єα ¢σммσ∂σ ¢σηѕєqυαт. ∂υιѕ αυтє ιÑÏ…ÑÑ” âˆ‚ÏƒÅ‚ÏƒÑ Î¹Î· ÑÑ”ÏÑєнєη∂єÑιт ιη νσłυÏтαтє νєłιт єѕѕє ¢ιłłυм ∂σłσÑÑ” єυ Æ’Ï…gιαт ηυłłα ÏαÑιαтυÑ. єχ¢єÏÑ‚Ñ”Ï…Ñ Ñ•Î¹Î·Ñ‚ σ¢¢αє¢αт ¢υÏι∂αтαт ηση ÏÑσι∂єηт, ѕυηт ιη ¢υłÏα qυι σƒƒι¢ια ∂єѕєÑυηт мσłłιт αηιм ι∂ єѕт łαвσÑυм#" -#: common/static/bundles/PasswordResetConfirmation.js -#: lms/static/js/student_account/components/PasswordResetConfirmation.jsx -msgid "Enter and confirm your new password." +#: common/lib/xmodule/xmodule/js/src/lti/lti.js +msgid "" +"Click OK to have your e-mail address sent to a 3rd party application.\n" +"\n" +"Click Cancel to return to this page without sending your information." msgstr "" -"Éntér änd çönfïrm ýöür néw pässwörd. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, " -"¢σηѕє¢тєтυ#" - -#: common/static/bundles/PasswordResetConfirmation.js -#: lms/static/js/student_account/components/PasswordResetConfirmation.jsx -msgid "New Password" -msgstr "Néw Pässwörd â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•#" - -#: common/static/bundles/PasswordResetConfirmation.js -#: lms/static/js/student_account/components/PasswordResetConfirmation.jsx -msgid "Confirm Password" -msgstr "Çönfïrm Pässwörd â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αм#" - -#: common/static/bundles/PasswordResetConfirmation.js -#: lms/static/js/student_account/components/PasswordResetConfirmation.jsx -msgid "Passwords do not match." -msgstr "Pässwörds dö nöt mätçh. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σ#" - -#: common/static/bundles/PasswordResetConfirmation.js -#: lms/static/js/student_account/components/PasswordResetConfirmation.jsx -msgid "Reset My Password" -msgstr "Rését Mý Pässwörd â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмє#" - -#: common/static/bundles/PasswordResetConfirmation.js -#: lms/static/js/student_account/components/PasswordResetConfirmation.jsx -#: lms/static/js/student_account/views/account_settings_factory.js -msgid "Reset Your Password" -msgstr "Rését Ãöür Pässwörd â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт,#" - -#: common/static/bundles/PasswordResetConfirmation.js -#: lms/static/js/student_account/components/PasswordResetInput.jsx -msgid "Error: " -msgstr "Érrör: â± 'σÑєм ιÏѕυм #" - -#: common/static/bundles/ProblemBrowser.js -#: common/static/common/js/components/BlockBrowser/components/BlockBrowser/BlockBrowser.jsx -#: cms/templates/js/move-xblock-list.underscore -msgid "View child items" -msgstr "Vïéw çhïld ïtéms â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αм#" - -#: common/static/bundles/ProblemBrowser.js -#: common/static/common/js/components/BlockBrowser/components/BlockBrowser/BlockBrowser.jsx -msgid "Navigate up" -msgstr "Nävïgäté üp â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ #" - -#: common/static/bundles/ProblemBrowser.js -#: common/static/common/js/components/BlockBrowser/components/BlockBrowser/BlockBrowser.jsx -msgid "Browsing" -msgstr "Bröwsïng â± 'σÑєм ιÏѕυм ∂#" - -#: common/static/bundles/ProblemBrowser.js -#: common/static/common/js/components/BlockBrowser/components/BlockBrowser/BlockBrowser.jsx -msgid "Select" -msgstr "Séléçt â± 'σÑєм ιÏÑ•Ï…#" +"Çlïçk ÖK tö hävé ýöür é-mäïl äddréss sént tö ä 3rd pärtý äpplïçätïön.\n" +"\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. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±âˆ‚Î¹Ïιѕι¢ιηg єłιт, ѕє∂ ∂σ єιυѕмσ∂ тємÏÏƒÑ Î¹Î·Â¢Î¹âˆ‚Î¹âˆ‚Ï…Î·Ñ‚ Ï…Ñ‚ łαвσÑÑ” єт ∂σłσÑÑ” мαgηα αłιqυα. Ï…Ñ‚ єηιм α∂ мιηιм νєηιαм, qυιѕ ησѕтÑυ∂ єχєÑ¢ιтαтιση υłłαм¢σ łαвσÑιѕ ηιѕι Ï…Ñ‚ αłιqÏ…Î¹Ï Ñ”Ï‡ єα ¢σммσ∂σ ¢σηѕєqυαт. ∂υιѕ αυтє ιÑÏ…ÑÑ” âˆ‚ÏƒÅ‚ÏƒÑ Î¹Î· ÑÑ”ÏÑєнєη∂єÑιт ιη νσłυÏтαтє νєłιт єѕѕє ¢ιłłυм ∂σłσÑÑ” єυ Æ’Ï…gιαт ηυłłα ÏαÑιαтυÑ. єχ¢єÏÑ‚Ñ”Ï…Ñ Ñ•Î¹Î·Ñ‚ σ¢¢αє¢αт ¢υÏι∂αтαт ηση ÏÑσι∂єηт, ѕυηт ιη ¢υłÏα qυι σƒƒι¢ια ∂єѕєÑυηт мσłłιт αηιм ι∂ єѕт Å‚#" -#: common/static/bundles/ProblemBrowser.js -#: lms/djangoapps/instructor/static/instructor/ProblemBrowser/components/Main/Main.jsx -msgid "Select a section or problem" -msgstr "Séléçt ä séçtïön ör prößlém â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕє#" +#: common/lib/xmodule/xmodule/js/src/problem/edit.js +msgid "incorrect" +msgstr "ïnçörréçt â± 'σÑєм ιÏѕυм ∂σł#" -#: common/static/bundles/ProgramDetailsFactory.js -#: lms/static/js/learner_dashboard/views/program_details_sidebar_view.js -msgid "{type} Progress" -msgstr "{type} Prögréss â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•#" +#: common/lib/xmodule/xmodule/js/src/problem/edit.js +msgid "correct" +msgstr "çörréçt â± 'σÑєм ιÏѕυм #" -#: common/static/bundles/ProgramDetailsFactory.js -#: lms/static/js/learner_dashboard/views/program_details_sidebar_view.js -msgid "Earned Certificates" -msgstr "Éärnéd Çértïfïçätés â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт,#" +#: common/lib/xmodule/xmodule/js/src/problem/edit.js +msgid "answer" +msgstr "änswér â± 'σÑєм ιÏÑ•Ï…#" -#: common/static/bundles/ProgramDetailsFactory.js -#: lms/static/js/learner_dashboard/views/program_details_view.js -msgid "Enrolled" -msgstr "Énrölléd â± 'σÑєм ιÏѕυм ∂#" +#: common/lib/xmodule/xmodule/js/src/problem/edit.js +msgid "Short explanation" +msgstr "Shört éxplänätïön â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмє#" -#: common/static/bundles/SingleSupportForm.js -#: lms/djangoapps/support/static/support/jsx/errors_list.jsx -msgid "Please fix the following errors:" +#: common/lib/xmodule/xmodule/js/src/problem/edit.js +msgid "" +"If you use the Advanced Editor, this problem will be converted to XML and you will not be able to return to the Simple Editor Interface.\n" +"\n" +"Proceed to the Advanced Editor and convert this problem to XML?" msgstr "" -"Pléäsé fïx thé föllöwïng érrörs: â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕє¢тє#" +"ÃŒf ýöü üsé thé Àdvänçéd Édïtör, thïs prößlém wïll ßé çönvértéd tö XML änd ýöü wïll nöt ßé äßlé tö rétürn tö thé Sïmplé Édïtör ÃŒntérfäçé.\n" +"\n" +"Pröçééd tö thé Àdvänçéd Édïtör änd çönvért thïs prößlém tö XML? â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±âˆ‚Î¹Ïιѕι¢ιηg єłιт, ѕє∂ ∂σ єιυѕмσ∂ тємÏÏƒÑ Î¹Î·Â¢Î¹âˆ‚Î¹âˆ‚Ï…Î·Ñ‚ Ï…Ñ‚ łαвσÑÑ” єт ∂σłσÑÑ” мαgηα αłιqυα. Ï…Ñ‚ єηιм α∂ мιηιм νєηιαм, qυιѕ ησѕтÑυ∂ єχєÑ¢ιтαтιση υłłαм¢σ łαвσÑιѕ ηιѕι Ï…Ñ‚ αłιqÏ…Î¹Ï Ñ”Ï‡ єα ¢σммσ∂σ ¢σηѕєqυαт. ∂υιѕ αυтє ιÑÏ…ÑÑ” âˆ‚ÏƒÅ‚ÏƒÑ Î¹Î· ÑÑ”ÏÑєнєη∂єÑιт ιη νσłυÏтαтє νєłιт єѕѕє ¢ιłłυм ∂σłσÑÑ” єυ Æ’Ï…gιαт ηυłłα ÏαÑιαтυÑ. єχ¢єÏÑ‚Ñ”Ï…Ñ Ñ•Î¹Î·Ñ‚ σ¢¢αє¢α#" -#: common/static/bundles/SingleSupportForm.js -#: lms/djangoapps/support/static/support/jsx/file_upload.jsx -msgid "Files that you upload must be smaller than 5MB in size." -msgstr "" -"Fïlés thät ýöü üplöäd müst ßé smällér thän 5MB ïn sïzé. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ " -"ѕιт αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±#" +#: common/lib/xmodule/xmodule/js/src/problem/edit.js +msgid "Explanation" +msgstr "Éxplänätïön â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ #" -#: common/static/bundles/SingleSupportForm.js -#: lms/djangoapps/support/static/support/jsx/file_upload.jsx +#: common/lib/xmodule/xmodule/js/src/sequence/display.js msgid "" -"Files that you upload must be PDFs or image files in .gif, .jpg, .jpeg, or " -".png format." +"Sequence error! Cannot navigate to %(tab_name)s in the current " +"SequenceModule. Please contact the course staff." msgstr "" -"Fïlés thät ýöü üplöäd müst ßé PDFs ör ïmägé fïlés ïn .gïf, .jpg, .jpég, ör " -".png förmät. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕє#" +"Séqüénçé érrör! Çännöt nävïgäté tö %(tab_name)s ïn thé çürrént " +"SéqüénçéMödülé. Pléäsé çöntäçt thé çöürsé stäff. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αм#" -#: common/static/bundles/SingleSupportForm.js -#: lms/djangoapps/support/static/support/jsx/file_upload.jsx -#: lms/djangoapps/support/static/support/jsx/single_support_form.jsx -msgid "Something went wrong. Please try again later." -msgstr "" -"Söméthïng wént wröng. Pléäsé trý ägäïn lätér. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, " -"Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ #" +#: common/lib/xmodule/xmodule/js/src/sequence/display.js +#: openedx/features/course_bookmarks/static/course_bookmarks/js/views/bookmark_button.js +msgid "Bookmarked" +msgstr "Böökmärkéd â± 'σÑєм ιÏѕυм ∂σłσ#" -#: common/static/bundles/SingleSupportForm.js -#: lms/djangoapps/support/static/support/jsx/file_upload.jsx -msgid "Add Attachment" -msgstr "Àdd Àttäçhmént â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚#" +#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js +#: common/lib/xmodule/xmodule/js/src/video/09_play_pause_control.js +#: common/lib/xmodule/xmodule/js/src/video/09_play_skip_control.js +msgid "Play" +msgstr "Pläý â± 'σÑєм ι#" -#: common/static/bundles/SingleSupportForm.js -#: lms/djangoapps/support/static/support/jsx/file_upload.jsx -msgid "(Optional)" -msgstr "(Öptïönäl) â± 'σÑєм ιÏѕυм ∂σłσ#" +#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js +#: common/lib/xmodule/xmodule/js/src/video/09_play_pause_control.js +msgid "Pause" +msgstr "Päüsé â± 'σÑєм ιÏÑ•#" -#: common/static/bundles/SingleSupportForm.js -#: lms/djangoapps/support/static/support/jsx/file_upload.jsx -msgid "Remove file" -msgstr "Rémövé fïlé â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ #" +#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js +msgid "Mute" +msgstr "Müté â± 'σÑєм ι#" -#: common/static/bundles/SingleSupportForm.js -#: lms/djangoapps/support/static/support/jsx/logged_in_user.jsx -msgid "Course Name" -msgstr "Çöürsé Nämé â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ #" +#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js +msgid "Unmute" +msgstr "Ûnmüté â± 'σÑєм ιÏÑ•Ï…#" -#: common/static/bundles/SingleSupportForm.js -#: lms/djangoapps/support/static/support/jsx/logged_in_user.jsx -msgid "Not specific to a course" -msgstr "Nöt spéçïfïç tö ä çöürsé â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢ση#" +#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js +#: common/lib/xmodule/xmodule/js/src/video/04_video_full_screen.js +msgid "Exit full browser" +msgstr "Éxït füll ßröwsér â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмє#" -#: common/static/bundles/SingleSupportForm.js -#: lms/djangoapps/support/static/support/jsx/logged_in_user.jsx -msgid "What can we help you with, {username}?" -msgstr "" -"Whät çän wé hélp ýöü wïth, {username}? â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕє¢т#" +#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js +#: common/lib/xmodule/xmodule/js/src/video/04_video_full_screen.js +msgid "Fill browser" +msgstr "Fïll ßröwsér â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•#" -#: common/static/bundles/SingleSupportForm.js -#: lms/djangoapps/support/static/support/jsx/logged_in_user.jsx -#: lms/static/js/instructor_dashboard/util.js -msgid "Subject" -msgstr "Süßjéçt â± 'σÑєм ιÏѕυм #" +#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js +#: common/lib/xmodule/xmodule/js/src/video/08_video_speed_control.js +msgid "Speed" +msgstr "Spééd â± 'σÑєм ιÏÑ•#" -#: common/static/bundles/SingleSupportForm.js -#: lms/djangoapps/support/static/support/jsx/logged_in_user.jsx -msgid "Details" -msgstr "Détäïls â± 'σÑєм ιÏѕυм #" +#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js +#: common/lib/xmodule/xmodule/js/src/video/08_video_auto_advance_control.js +msgid "Auto-advance" +msgstr "Àütö-ädvänçé â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•#" -#: common/static/bundles/SingleSupportForm.js -#: lms/djangoapps/support/static/support/jsx/logged_in_user.jsx -msgid "The more you tell us, the more quickly and helpfully we can respond!" -msgstr "" -"Thé möré ýöü téll üs, thé möré qüïçklý änd hélpfüllý wé çän réspönd! â± 'σÑєм " -"ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ #" +#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js +#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js +msgid "Volume" +msgstr "Völümé â± 'σÑєм ιÏÑ•Ï…#" -#: common/static/bundles/SingleSupportForm.js -#: lms/djangoapps/support/static/support/jsx/logged_in_user.jsx -#: common/static/common/templates/discussion/new-post.underscore -#: common/static/common/templates/discussion/thread-response.underscore -#: common/static/common/templates/discussion/thread.underscore -#: lms/templates/verify_student/incourse_reverify.underscore -msgid "Submit" -msgstr "Süßmït â± 'σÑєм ιÏÑ•Ï…#" +#. Translators: Volume level equals 0%. +#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js +msgid "Muted" +msgstr "Mütéd â± 'σÑєм ιÏÑ•#" -#: common/static/bundles/SingleSupportForm.js -#: lms/djangoapps/support/static/support/jsx/logged_out_user.jsx -msgid "Sign in to {platform} so we can help you better." -msgstr "" -"Sïgn ïn tö {platform} sö wé çän hélp ýöü ßéttér. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ " -"αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ #" +#. Translators: Volume level in range ]0,20]% +#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js +msgid "Very low" +msgstr "Vérý löw â± 'σÑєм ιÏѕυм ∂#" -#: common/static/bundles/SingleSupportForm.js -#: lms/templates/student_account/hinted_login.underscore -#: lms/templates/student_account/login.underscore -msgid "Sign in" -msgstr "Sïgn ïn â± 'σÑєм ιÏѕυм #" +#. Translators: Volume level in range ]20,40]% +#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js +msgid "Low" +msgstr "Löw â± 'σÑєм#" -#: common/static/bundles/SingleSupportForm.js -msgid "Create an {platform} account" -msgstr "Çréäté än {platform} äççöünt â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, #" +#. Translators: Volume level in range ]40,60]% +#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js +msgid "Average" +msgstr "Àvérägé â± 'σÑєм ιÏѕυм #" -#: common/static/bundles/SingleSupportForm.js -#: lms/djangoapps/support/static/support/jsx/logged_out_user.jsx -msgid "" -"If you are unable to access your account contact us via email using {email}." -msgstr "" -"ÃŒf ýöü äré ünäßlé tö äççéss ýöür äççöünt çöntäçt üs vïä émäïl üsïng {email}." -" â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕє¢тєтυÑ#" +#. Translators: Volume level in range ]60,80]% +#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js +msgid "Loud" +msgstr "Löüd â± 'σÑєм ι#" -#: common/static/bundles/SingleSupportForm.js -#: lms/djangoapps/support/static/support/jsx/single_support_form.jsx -msgid "" -"Select a course or select \"Not specific to a course\" for your support " -"request." -msgstr "" -"Séléçt ä çöürsé ör séléçt \"Nöt spéçïfïç tö ä çöürsé\" för ýöür süppört " -"réqüést. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕє¢тєт#" +#. Translators: Volume level in range ]80,99]% +#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js +msgid "Very loud" +msgstr "Vérý löüd â± 'σÑєм ιÏѕυм ∂σł#" -#: common/static/bundles/SingleSupportForm.js -#: lms/djangoapps/support/static/support/jsx/single_support_form.jsx -msgid "Enter a subject for your support request." -msgstr "" -"Éntér ä süßjéçt för ýöür süppört réqüést. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, " -"Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ #" +#. Translators: Volume level equals 100%. +#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js +msgid "Maximum" +msgstr "Mäxïmüm â± 'σÑєм ιÏѕυм #" -#: common/static/bundles/SingleSupportForm.js -#: lms/djangoapps/support/static/support/jsx/single_support_form.jsx -msgid "Enter some details for your support request." +#: common/lib/xmodule/xmodule/js/src/video/02_html5_video.js +msgid "This browser cannot play .mp4, .ogg, or .webm files." msgstr "" -"Éntér sömé détäïls för ýöür süppört réqüést. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, " -"Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ #" - -#: common/static/bundles/SingleSupportForm.js -#: lms/djangoapps/support/static/support/jsx/single_support_form.jsx -#: lms/djangoapps/support/static/support/jsx/success.jsx -msgid "Contact Us" -msgstr "Çöntäçt Ûs â± 'σÑєм ιÏѕυм ∂σłσ#" +"Thïs ßröwsér çännöt pläý .mp4, .ögg, ör .wéßm fïlés. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ " +"αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±#" -#: common/static/bundles/SingleSupportForm.js -#: lms/djangoapps/support/static/support/jsx/single_support_form.jsx -msgid "Find answers to the top questions asked by learners." +#: common/lib/xmodule/xmodule/js/src/video/02_html5_video.js +msgid "Try using a different browser, such as Google Chrome." msgstr "" -"Fïnd änswérs tö thé töp qüéstïöns äskéd ßý léärnérs. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ " -"αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±#" +"Trý üsïng ä dïfférént ßröwsér, süçh äs Gööglé Çhrömé. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚" +" αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±#" -#: common/static/bundles/SingleSupportForm.js -#: lms/djangoapps/support/static/support/jsx/single_support_form.jsx -msgid "Search the {platform} Help Center" -msgstr "Séärçh thé {platform} Hélp Çéntér â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕ#" +#: common/lib/xmodule/xmodule/js/src/video/05_video_quality_control.js +msgid "High Definition" +msgstr "Hïgh Défïnïtïön â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ α#" -#: common/static/bundles/SingleSupportForm.js -#: lms/djangoapps/support/static/support/jsx/success.jsx -msgid "Go to my Dashboard" -msgstr "Gö tö mý Däshßöärd â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт#" +#: common/lib/xmodule/xmodule/js/src/video/05_video_quality_control.js +msgid "off" +msgstr "öff â± 'σÑєм#" -#: common/static/bundles/SingleSupportForm.js -#: lms/djangoapps/support/static/support/jsx/success.jsx -msgid "Go to {platform} Home" -msgstr "Gö tö {platform} Hömé â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚#" +#: common/lib/xmodule/xmodule/js/src/video/05_video_quality_control.js +msgid "on" +msgstr "ön â± 'σÑ#" -#: common/static/bundles/SingleSupportForm.js -#: lms/djangoapps/support/static/support/jsx/success.jsx -msgid "" -"Thank you for submitting a request! We will contact you within 24 hours." +#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js +msgid "Video position. Press space to toggle playback" msgstr "" -"Thänk ýöü för süßmïttïng ä réqüést! Wé wïll çöntäçt ýöü wïthïn 24 höürs. " -"â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕє¢тєтυÑ#" - -#: common/static/bundles/SingleSupportForm.js -#: lms/djangoapps/support/static/support/jsx/upload_progress.jsx -msgid "Cancel upload" -msgstr "Çänçél üplöäd â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹#" +"Vïdéö pösïtïön. Préss späçé tö tögglé pläýßäçk â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, " +"Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±#" -#: common/static/bundles/StudentAccountDeletion.js -#: common/static/bundles/StudentAccountDeletionInitializer.js -#: lms/static/js/student_account/components/StudentAccountDeletion.jsx -#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx -msgid "" -"You may also lose access to verified certificates and other program " -"credentials like MicroMasters certificates. If you want to make a copy of " -"these for your records before proceeding with deletion, follow the " -"instructions for {htmlStart}printing or downloading a certificate{htmlEnd}." -msgstr "" -"Ãöü mäý älsö lösé äççéss tö vérïfïéd çértïfïçätés änd öthér prögräm " -"çrédéntïäls lïké MïçröMästérs çértïfïçätés. ÃŒf ýöü wänt tö mäké ä çöpý öf " -"thésé för ýöür réçörds ßéföré pröçéédïng wïth délétïön, föllöw thé " -"ïnstrüçtïöns för {htmlStart}prïntïng ör döwnlöädïng ä çértïfïçäté{htmlEnd}. " -"â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±âˆ‚Î¹Ïιѕι¢ιηg єłιт, ѕє∂ ∂σ єιυѕмσ∂ " -"тємÏÏƒÑ Î¹Î·Â¢Î¹âˆ‚Î¹âˆ‚Ï…Î·Ñ‚ Ï…Ñ‚ łαвσÑÑ” єт ∂σłσÑÑ” мαgηα αłιqυα. Ï…Ñ‚ єηιм α∂ мιηιм νєηιαм," -" qυιѕ ησѕтÑυ∂ єχєÑ¢ιтαтιση υłłαм¢σ łαвσÑιѕ ηιѕι Ï…Ñ‚ αłιqÏ…Î¹Ï Ñ”Ï‡ єα ¢σммσ∂σ " -"¢σηѕєqυαт. ∂#" +#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js +msgid "Video ended" +msgstr "Vïdéö éndéd â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ #" -#: common/static/bundles/StudentAccountDeletion.js -#: common/static/bundles/StudentAccountDeletionInitializer.js -#: lms/static/js/student_account/components/StudentAccountDeletion.jsx -msgid "" -"Before proceeding, please {htmlStart}unlink all social media " -"accounts{htmlEnd}." -msgstr "" -"Béföré pröçéédïng, pléäsé {htmlStart}ünlïnk äll söçïäl médïä " -"äççöünts{htmlEnd}. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±#" +#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js +msgid "Video position" +msgstr "Vïdéö pösïtïön â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚#" -#: common/static/bundles/StudentAccountDeletion.js -#: common/static/bundles/StudentAccountDeletionInitializer.js -#: lms/static/js/student_account/components/StudentAccountDeletion.jsx -msgid "Before proceeding, please {htmlStart}activate your account{htmlEnd}." -msgstr "" -"Béföré pröçéédïng, pléäsé {htmlStart}äçtïväté ýöür äççöünt{htmlEnd}. â± 'σÑєм " -"ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±#" +#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js +msgid "%(value)s hour" +msgid_plural "%(value)s hours" +msgstr[0] "%(value)s höür â± 'σÑєм ιÏѕυм ∂#" +msgstr[1] "%(value)s höürs â± 'σÑєм ιÏѕυм ∂σł#" -#: common/static/bundles/StudentAccountDeletion.js -#: common/static/bundles/StudentAccountDeletionInitializer.js -#: lms/static/js/student_account/components/StudentAccountDeletion.jsx -msgid "" -"{htmlStart}Want to change your email, name, or password instead?{htmlEnd}" -msgstr "" -"{htmlStart}Wänt tö çhängé ýöür émäïl, nämé, ör pässwörd ïnstéäd?{htmlEnd} " -"â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±#" +#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js +msgid "%(value)s minute" +msgid_plural "%(value)s minutes" +msgstr[0] "%(value)s mïnüté â± 'σÑєм ιÏѕυм ∂σłσ#" +msgstr[1] "%(value)s mïnütés â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ #" -#: common/static/bundles/StudentAccountDeletion.js -#: common/static/bundles/StudentAccountDeletionInitializer.js -#: lms/static/js/student_account/components/StudentAccountDeletion.jsx +#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js +msgid "%(value)s second" +msgid_plural "%(value)s seconds" +msgstr[0] "%(value)s séçönd â± 'σÑєм ιÏѕυм ∂σłσ#" +msgstr[1] "%(value)s séçönds â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ #" + +#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js msgid "" -"{strongStart}Warning: Account deletion is permanent.{strongEnd} Please read " -"the above carefully before proceeding. This is an irreversible action, and " -"{strongStart}you will no longer be able to use the same email on " -"edX.{strongEnd}" +"Click on this button to mute or unmute this video or press UP or DOWN " +"buttons to increase or decrease volume level." msgstr "" -"{strongStart}Wärnïng: Àççöünt délétïön ïs pérmänént.{strongEnd} Pléäsé réäd " -"thé äßövé çäréfüllý ßéföré pröçéédïng. Thïs ïs än ïrrévérsïßlé äçtïön, änd " -"{strongStart}ýöü wïll nö löngér ßé äßlé tö üsé thé sämé émäïl ön " -"édX.{strongEnd} â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±âˆ‚Î¹Ïιѕι¢ιηg єłιт, " -"ѕє∂ ∂σ єιυѕмσ∂ тємÏÏƒÑ Î¹Î·Â¢Î¹âˆ‚Î¹âˆ‚Ï…Î·Ñ‚ Ï…Ñ‚ łαвσÑÑ” єт ∂σłσÑÑ” мαgηα αłιqυα. Ï…Ñ‚ єηιм " -"α∂ мιηιм νєηιαм, qυιѕ ησѕтÑυ∂ єχєÑ¢ιтαтιση υłłαм¢σ łαвσÑιѕ ηιѕι Ï…Ñ‚ αłιqÏ…Î¹Ï " -"єχ єα ¢σммσ∂σ ¢σηѕєqυαт. ∂υιѕ αυтє ιÑÏ…ÑÑ” âˆ‚ÏƒÅ‚ÏƒÑ Î¹Î· ÑÑ”ÏÑєнєη∂єÑιт ιη νσłυÏтαтє" -" νєłιт єѕѕє ¢ιłłυм ∂σłσÑÑ” єυ Æ’Ï…gιαт ηυłłα ÏαÑιαтυÑ. єχ¢єÏÑ‚Ñ”Ï…Ñ Ñ•Î¹Î·Ñ‚ σ¢¢αє¢αт " -"¢υÏι∂αт#" +"Çlïçk ön thïs ßüttön tö müté ör ünmüté thïs vïdéö ör préss ÛP ör DÖWN " +"ßüttöns tö ïnçréäsé ör déçréäsé völümé lévél. â± 'σÑєм ιÏѕυм ∂σł#" -#: common/static/bundles/StudentAccountDeletion.js -#: common/static/bundles/StudentAccountDeletionInitializer.js -#: lms/static/js/student_account/components/StudentAccountDeletion.jsx -msgid "We’re sorry to see you go!" -msgstr "Wé’ré sörrý tö séé ýöü gö! â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕ#" +#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js +msgid "Adjust video volume" +msgstr "Àdjüst vïdéö völümé â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт,#" -#: common/static/bundles/StudentAccountDeletion.js -#: common/static/bundles/StudentAccountDeletionInitializer.js -#: lms/static/js/student_account/components/StudentAccountDeletion.jsx +#: common/lib/xmodule/xmodule/js/src/video/08_video_speed_control.js msgid "" -"Please note: Deletion of your account and personal data is permanent and " -"cannot be undone. EdX will not be able to recover your account or the data " -"that is deleted." +"Press UP to enter the speed menu then use the UP and DOWN arrow keys to " +"navigate the different speeds, then press ENTER to change to the selected " +"speed." msgstr "" -"Pléäsé nöté: Délétïön öf ýöür äççöünt änd pérsönäl dätä ïs pérmänént änd " -"çännöt ßé ündöné. ÉdX wïll nöt ßé äßlé tö réçövér ýöür äççöünt ör thé dätä " -"thät ïs délétéd. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±âˆ‚Î¹Ïιѕι¢ιηg єłιт, " -"ѕє∂ ∂σ єιυѕмσ∂ тємÏÏƒÑ Î¹Î·Â¢Î¹âˆ‚Î¹âˆ‚Ï…Î·Ñ‚ Ï…Ñ‚ łαвσÑÑ” єт ∂σłσÑÑ” мαgηα αłιqυα. Ï…Ñ‚ єηιм " -"α∂ мιηιм νєηιαм, qυιѕ ησѕтÑυ∂ єχєÑ¢ιтαтιση υłłαм¢σ łαвσÑιѕ ηιѕι Ï…Ñ‚ αłιqÏ…Î¹Ï " -"єχ єα ¢σммσ∂σ ¢σηѕєqυαт. ∂υιѕ αυтє ιÑÏ…ÑÑ” âˆ‚ÏƒÅ‚ÏƒÑ Î¹Î· ÑÑ”ÏÑєнєη∂єÑιт ιη νσłυÏтαтє" -" νєłιт єѕѕє ¢ιłłυм ∂σłσÑÑ” єυ Æ’Ï…gιαт ηυłłα ÏαÑιαтυÑ. єχ¢єÏÑ‚Ñ”Ï…Ñ Ñ•Î¹Î·Ñ‚ σ¢¢αє¢αт " -"¢υÏι∂αтαт ηση ÏÑσι∂єηт, ѕυηт ιη ¢υłÏα qυι σƒƒι¢ια ∂#" +"Préss ÛP tö éntér thé spééd ménü thén üsé thé ÛP änd DÖWN ärröw kéýs tö " +"nävïgäté thé dïfférént spééds, thén préss ÉNTÉR tö çhängé tö thé séléçtéd " +"spééd. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±âˆ‚Î¹Ïιѕι¢ιηg єłιт, ѕє∂ ∂σ " +"єιυѕмσ∂ тємÏÏƒÑ Î¹Î·Â¢Î¹âˆ‚Î¹âˆ‚Ï…Î·Ñ‚ Ï…Ñ‚ łαвσÑÑ” єт ∂σłσÑÑ” мαgηα αłιqυα. Ï…Ñ‚ єηιм α∂ мιηιм" +" νєηιαм, qυιѕ ησѕтÑυ∂ єχєÑ¢ιтαтιση υłłαм¢σ łαвσÑιѕ ηιѕι Ï…Ñ‚ αłιqÏ…Î¹Ï Ñ”Ï‡ єα " +"¢σммσ∂σ ¢σηѕєqυαт. ∂υιѕ αυтє ιÑÏ…ÑÑ” âˆ‚ÏƒÅ‚ÏƒÑ Î¹Î· ÑÑ”ÏÑєнєη∂єÑιт ιη νσłυÏтαтє νєłιт" +" єѕѕє ¢ιłłυм ∂σłσÑÑ” єυ Æ’Ï…gιαт ηυłłα ÏαÑιαтυÑ. єχ¢єÏÑ‚Ñ”Ï…Ñ Ñ•Î¹Î·Ñ‚ σ¢¢αє¢αт " +"¢υÏι∂αтαт ηση ÏÑσι∂єηт, ѕυηт ιη ¢υłÏα qυι σƒƒι¢ια ∂єѕєÑυηт мσłłιт#" -#: common/static/bundles/StudentAccountDeletion.js -#: common/static/bundles/StudentAccountDeletionInitializer.js -#: lms/static/js/student_account/components/StudentAccountDeletion.jsx -msgid "" -"Once your account is deleted, you cannot use it to take courses on the edX " -"app, edx.org, or any other site hosted by edX. This includes access to " -"edx.org from your employer’s or university’s system and access to private " -"sites offered by MIT Open Learning, Wharton Executive Education, and Harvard" -" Medical School." -msgstr "" -"Önçé ýöür äççöünt ïs délétéd, ýöü çännöt üsé ït tö täké çöürsés ön thé édX " -"äpp, édx.örg, ör äný öthér sïté höstéd ßý édX. Thïs ïnçlüdés äççéss tö " -"édx.örg fröm ýöür émplöýér’s ör ünïvérsïtý’s sýstém änd äççéss tö prïväté " -"sïtés öfféréd ßý MÃŒT Öpén Léärnïng, Whärtön Éxéçütïvé Édüçätïön, änd Härvärd" -" Médïçäl Sçhööl. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±âˆ‚Î¹Ïιѕι¢ιηg єłιт, " -"ѕє∂ ∂σ єιυѕмσ∂ тємÏÏƒÑ Î¹Î·Â¢Î¹âˆ‚Î¹âˆ‚Ï…Î·Ñ‚ Ï…Ñ‚ łαвσÑÑ” єт ∂σłσÑÑ” мαgηα αłιqυα. Ï…Ñ‚ єηιм " -"α∂ мιηιм νєη#" +#: common/lib/xmodule/xmodule/js/src/video/08_video_speed_control.js +msgid "Adjust video speed" +msgstr "Àdjüst vïdéö spééd â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт#" -#: common/static/bundles/StudentAccountDeletion.js -#: common/static/bundles/StudentAccountDeletionInitializer.js -#: lms/static/js/student_account/components/StudentAccountDeletion.jsx -#: lms/static/js/student_account/views/account_settings_factory.js -msgid "Delete My Account" -msgstr "Délété Mý Àççöünt â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмє#" +#: common/lib/xmodule/xmodule/js/src/video/08_video_speed_control.js +msgid "Video speed: " +msgstr "Vïdéö spééd: â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹#" -#: common/static/bundles/StudentAccountDeletion.js -#: common/static/bundles/StudentAccountDeletionInitializer.js -#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx -msgid "Password is incorrect" -msgstr "Pässwörd ïs ïnçörréçt â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, #" +#: common/lib/xmodule/xmodule/js/src/video/09_play_skip_control.js +msgid "Skip" +msgstr "Skïp â± 'σÑєм ι#" -#: common/static/bundles/StudentAccountDeletion.js -#: common/static/bundles/StudentAccountDeletionInitializer.js -#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx -msgid "Unable to delete account" -msgstr "Ûnäßlé tö délété äççöünt â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢ση#" +#: common/lib/xmodule/xmodule/js/src/video/09_poster.js +msgid "Play video" +msgstr "Pläý vïdéö â± 'σÑєм ιÏѕυм ∂σłσ#" -#: common/static/bundles/StudentAccountDeletion.js -#: common/static/bundles/StudentAccountDeletionInitializer.js -#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx -msgid "Please re-enter your password." -msgstr "Pléäsé ré-éntér ýöür pässwörd. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕє¢т#" +#: common/lib/xmodule/xmodule/js/src/video/09_skip_control.js +msgid "Do not show again" +msgstr "Dö nöt shöw ägäïn â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмє#" -#: common/static/bundles/StudentAccountDeletion.js -#: common/static/bundles/StudentAccountDeletionInitializer.js -#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx +#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js +msgid "Open language menu" +msgstr "Öpén längüägé ménü â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт#" + +#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js +msgid "Transcript will be displayed when you start playing the video." +msgstr "" +"Tränsçrïpt wïll ßé dïspläýéd whén ýöü stärt pläýïng thé vïdéö. â± 'σÑєм ιÏѕυм " +"âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±#" + +#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js msgid "" -"Sorry, there was an error trying to process your request. Please try again " -"later." +"Activating a link in this group will skip to the corresponding point in the " +"video." msgstr "" -"Sörrý, théré wäs än érrör trýïng tö pröçéss ýöür réqüést. Pléäsé trý ägäïn " -"lätér. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕє¢тє#" +"Àçtïvätïng ä lïnk ïn thïs gröüp wïll skïp tö thé çörréspöndïng pöïnt ïn thé " +"vïdéö. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕє¢тє#" -#: common/static/bundles/StudentAccountDeletion.js -#: common/static/bundles/StudentAccountDeletionInitializer.js -#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx -msgid "A Password is required" -msgstr "À Pässwörd ïs réqüïréd â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢#" +#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js +msgid "Video transcript" +msgstr "Vïdéö tränsçrïpt â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αм#" -#: common/static/bundles/StudentAccountDeletion.js -#: common/static/bundles/StudentAccountDeletionInitializer.js -#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx -msgid "" -"You have selected “Delete my account.†Deletion of your account and personal" -" data is permanent and cannot be undone. EdX will not be able to recover " -"your account or the data that is deleted." +#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js +msgid "Start of transcript. Skip to the end." msgstr "" -"Ãöü hävé séléçtéd “Délété mý äççöünt.†Délétïön öf ýöür äççöünt änd pérsönäl" -" dätä ïs pérmänént änd çännöt ßé ündöné. ÉdX wïll nöt ßé äßlé tö réçövér " -"ýöür äççöünt ör thé dätä thät ïs délétéd. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, " -"Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±âˆ‚Î¹Ïιѕι¢ιηg єłιт, ѕє∂ ∂σ єιυѕмσ∂ тємÏÏƒÑ Î¹Î·Â¢Î¹âˆ‚Î¹âˆ‚Ï…Î·Ñ‚ Ï…Ñ‚ łαвσÑÑ” єт " -"∂σłσÑÑ” мαgηα αłιqυα. Ï…Ñ‚ єηιм α∂ мιηιм νєηιαм, qυιѕ ησѕтÑυ∂ єχєÑ¢ιтαтιση " -"υłłαм¢σ łαвσÑιѕ ηιѕι Ï…Ñ‚ αłιqÏ…Î¹Ï Ñ”Ï‡ єα ¢σммσ∂σ ¢σηѕєqυαт. ∂υιѕ αυтє ιÑÏ…ÑÑ” " -"âˆ‚ÏƒÅ‚ÏƒÑ Î¹Î· ÑÑ”ÏÑєнєη∂єÑιт ιη νσłυÏтαтє νєłιт єѕѕє ¢ιłłυм ∂σłσÑÑ” єυ Æ’Ï…gιαт ηυłłα" -" ÏαÑιαтυÑ. єχ¢єÏÑ‚Ñ”Ï…Ñ Ñ•Î¹Î·Ñ‚ σ¢¢αє¢αт ¢υÏι∂αтαт ηση Ï#" +"Stärt öf tränsçrïpt. Skïp tö thé énd. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, " +"¢σηѕє¢тєтυ#" -#: common/static/bundles/StudentAccountDeletion.js -#: common/static/bundles/StudentAccountDeletionInitializer.js -#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx -msgid "" -"If you proceed, you will be unable to use this account to take courses on " -"the edX app, edx.org, or any other site hosted by edX. This includes access " -"to edx.org from your employer’s or university’s system and access to private" -" sites offered by MIT Open Learning, Wharton Executive Education, and " -"Harvard Medical School." +#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js +msgid "End of transcript. Skip to the start." msgstr "" -"ÃŒf ýöü pröçééd, ýöü wïll ßé ünäßlé tö üsé thïs äççöünt tö täké çöürsés ön " -"thé édX äpp, édx.örg, ör äný öthér sïté höstéd ßý édX. Thïs ïnçlüdés äççéss " -"tö édx.örg fröm ýöür émplöýér’s ör ünïvérsïtý’s sýstém änd äççéss tö prïväté" -" sïtés öfféréd ßý MÃŒT Öpén Léärnïng, Whärtön Éxéçütïvé Édüçätïön, änd " -"Härvärd Médïçäl Sçhööl. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±âˆ‚Î¹Ïιѕι¢ιηg" -" єłιт, ѕє∂ ∂σ єιυѕмσ∂ тємÏÏƒÑ Î¹Î·Â¢Î¹âˆ‚Î¹âˆ‚Ï…Î·Ñ‚ Ï…Ñ‚ łαвσÑÑ” єт ∂σłσÑÑ” мαgηα αłιqυα. Ï…Ñ‚" -" Ñ”#" +"Énd öf tränsçrïpt. Skïp tö thé stärt. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, " +"¢σηѕє¢тєтυ#" -#: common/static/bundles/StudentAccountDeletion.js -#: common/static/bundles/StudentAccountDeletionInitializer.js -#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx +#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js msgid "" -"If you still wish to continue and delete your account, please enter your " -"account password:" +"Press the UP arrow key to enter the language menu then use UP and DOWN arrow" +" keys to navigate language options. Press ENTER to change to the selected " +"language." msgstr "" -"ÃŒf ýöü stïll wïsh tö çöntïnüé änd délété ýöür äççöünt, pléäsé éntér ýöür " -"äççöünt pässwörd: â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕ#" +"Préss thé ÛP ärröw kéý tö éntér thé längüägé ménü thén üsé ÛP änd DÖWN ärröw" +" kéýs tö nävïgäté längüägé öptïöns. Préss ÉNTÉR tö çhängé tö thé séléçtéd " +"längüägé. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±âˆ‚Î¹Ïιѕι¢ιηg єłιт, ѕє∂ ∂σ " +"єιυѕмσ∂ тємÏÏƒÑ Î¹Î·Â¢Î¹âˆ‚Î¹âˆ‚Ï…Î·Ñ‚ Ï…Ñ‚ łαвσÑÑ” єт ∂σłσÑÑ” мαgηα αłιqυα. Ï…Ñ‚ єηιм α∂ мιηιм" +" νєηιαм, qυιѕ ησѕтÑυ∂ єχєÑ¢ιтαтιση υłłαм¢σ łαвσÑιѕ ηιѕι Ï…Ñ‚ αłιqÏ…Î¹Ï Ñ”Ï‡ єα " +"¢σммσ∂σ ¢σηѕєqυαт. ∂υιѕ αυтє ιÑÏ…ÑÑ” âˆ‚ÏƒÅ‚ÏƒÑ Î¹Î· ÑÑ”ÏÑєнєη∂єÑιт ιη νσłυÏтαтє νєłιт" +" єѕѕє ¢ιłłυм ∂σłσÑÑ” єυ Æ’Ï…gιαт ηυłłα ÏαÑιαтυÑ. єχ¢єÏÑ‚Ñ”Ï…Ñ Ñ•Î¹Î·Ñ‚ σ¢¢αє¢αт " +"¢υÏι∂αтαт ηση ÏÑσι∂єηт, ѕυηт ιη ¢υłÏα qυι σƒƒι¢ια ∂єѕєÑυη#" -#: common/static/bundles/StudentAccountDeletion.js -#: common/static/bundles/StudentAccountDeletionInitializer.js -#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx -msgid "Yes, Delete" -msgstr "Ãés, Délété â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ #" +#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js +msgid "Hide closed captions" +msgstr "Hïdé çlöséd çäptïöns â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, #" -#: common/static/bundles/StudentAccountDeletion.js -#: common/static/bundles/StudentAccountDeletionInitializer.js -#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx -msgid "We're sorry to see you go! Your account will be deleted shortly." +#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js +msgid "(Caption will be displayed when you start playing the video.)" msgstr "" -"Wé'ré sörrý tö séé ýöü gö! Ãöür äççöünt wïll ßé délétéd shörtlý. â± 'σÑєм " -"ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±#" +"(Çäptïön wïll ßé dïspläýéd whén ýöü stärt pläýïng thé vïdéö.) â± 'σÑєм ιÏѕυм " +"âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±#" -#: common/static/bundles/StudentAccountDeletion.js -#: common/static/bundles/StudentAccountDeletionInitializer.js -#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx -msgid "" -"Account deletion, including removal from email lists, may take a few weeks " -"to fully process through our system. If you want to opt-out of emails before" -" then, please unsubscribe from the footer of any email." -msgstr "" -"Àççöünt délétïön, ïnçlüdïng rémöväl fröm émäïl lïsts, mäý täké ä féw wééks " -"tö füllý pröçéss thröügh öür sýstém. ÃŒf ýöü wänt tö öpt-öüt öf émäïls ßéföré" -" thén, pléäsé ünsüßsçrïßé fröm thé föötér öf äný émäïl. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ " -"ѕιт αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±âˆ‚Î¹Ïιѕι¢ιηg єłιт, ѕє∂ ∂σ єιυѕмσ∂ тємÏÏƒÑ Î¹Î·Â¢Î¹âˆ‚Î¹âˆ‚Ï…Î·Ñ‚ Ï…Ñ‚ " -"łαвσÑÑ” єт ∂σłσÑÑ” мαgηα αłιqυα. Ï…Ñ‚ єηιм α∂ мιηιм νєηιαм, qυιѕ ησѕтÑυ∂ " -"єχєÑ¢ιтαтιση υłłαм¢σ łαвσÑιѕ ηιѕι Ï…Ñ‚ αłιqÏ…Î¹Ï Ñ”Ï‡ єα ¢σммσ∂σ ¢σηѕєqυαт. ∂υιѕ " -"αυтє ιÑÏ…ÑÑ” âˆ‚ÏƒÅ‚ÏƒÑ Î¹Î· ÑÑ”ÏÑєнєη∂єÑιт ιη νσłυÏтαтє νєłιт єѕѕє ¢ιłłυм ∂σłσÑÑ” єυ " -"Æ’Ï…gιαт ηυłłα ÏαÑιαтυÑ. єχ¢єÏÑ‚Ñ”Ï…Ñ Ñ•Î¹Î·Ñ‚#" +#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js +msgid "Turn on closed captioning" +msgstr "Türn ön çlöséd çäptïönïng â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕ#" -#: common/static/bundles/UnenrollmentFactory.js -#: lms/static/js/dashboard/legacy.js -#: lms/static/js/learner_dashboard/views/unenroll_view.js -msgid "" -"Unable to determine whether we should give you a refund because of System " -"Error. Please try again later." -msgstr "" -"Ûnäßlé tö détérmïné whéthér wé shöüld gïvé ýöü ä réfünd ßéçäüsé öf Sýstém " -"Érrör. Pléäsé trý ägäïn lätér. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ α#" +#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js +msgid "Turn on transcripts" +msgstr "Türn ön tränsçrïpts â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт,#" + +#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js +msgid "Turn off transcripts" +msgstr "Türn öff tränsçrïpts â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, #" + +#: common/static/common/js/components/BlockBrowser/components/BlockBrowser/BlockBrowser.jsx +#: cms/templates/js/move-xblock-list.underscore +msgid "View child items" +msgstr "Vïéw çhïld ïtéms â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αм#" -#: common/static/bundles/VerticalStudentView.js -#: lms/static/js/verify_student/views/make_payment_step_view.js -#: openedx/features/course_bookmarks/static/course_bookmarks/js/views/bookmark_button.js -#: openedx/features/course_bookmarks/static/course_bookmarks/js/views/bookmarks_list.js -msgid "An error has occurred. Please try again." -msgstr "" -"Àn érrör häs öççürréd. Pléäsé trý ägäïn. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, " -"¢σηѕє¢тєтυÑ#" +#: common/static/common/js/components/BlockBrowser/components/BlockBrowser/BlockBrowser.jsx +msgid "Navigate up" +msgstr "Nävïgäté üp â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ #" -#: common/static/bundles/VerticalStudentView.js -#: openedx/features/course_bookmarks/static/course_bookmarks/js/views/bookmark_button.js -msgid "Bookmark this page" -msgstr "Böökmärk thïs pägé â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт#" +#: common/static/common/js/components/BlockBrowser/components/BlockBrowser/BlockBrowser.jsx +msgid "Browsing" +msgstr "Bröwsïng â± 'σÑєм ιÏѕυм ∂#" + +#: common/static/common/js/components/BlockBrowser/components/BlockBrowser/BlockBrowser.jsx +msgid "Select" +msgstr "Séléçt â± 'σÑєм ιÏÑ•Ï…#" -#: common/static/bundles/commons.js #: common/static/common/js/components/utils/view_utils.js msgid "Required field." msgstr "Réqüïréd fïéld. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ α#" -#: common/static/bundles/commons.js #: common/static/common/js/components/utils/view_utils.js msgid "Please do not use any spaces in this field." msgstr "" "Pléäsé dö nöt üsé äný späçés ïn thïs fïéld. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, " "Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ #" -#: common/static/bundles/commons.js #: common/static/common/js/components/utils/view_utils.js msgid "Please do not use any spaces or special characters in this field." msgstr "" "Pléäsé dö nöt üsé äný späçés ör spéçïäl çhäräçtérs ïn thïs fïéld. â± 'σÑєм " "ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±#" -#: common/static/bundles/js/factories/library.js #: common/static/common/js/components/views/paginated_view.js #: common/static/common/js/components/views/paging_footer.js msgid "Pagination" @@ -4220,6 +2463,10 @@ msgid_plural "%d years" msgstr[0] "%d ýéär â± 'σÑєм ιÏѕυм ∂#" msgstr[1] "%d ýéärs â± 'σÑєм ιÏѕυм ∂σł#" +#: lms/djangoapps/instructor/static/instructor/ProblemBrowser/components/Main/Main.jsx +msgid "Select a section or problem" +msgstr "Séléçt ä séçtïön ör prößlém â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕє#" + #: lms/djangoapps/support/static/support/js/views/certificates.js msgid "An unexpected error occurred. Please try again." msgstr "" @@ -4248,6 +2495,147 @@ msgstr "" "Söméthïng wént wröng çhängïng thïs énröllmént. Pléäsé trý ägäïn. â± 'σÑєм " "ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±#" +#: lms/djangoapps/support/static/support/jsx/errors_list.jsx +msgid "Please fix the following errors:" +msgstr "" +"Pléäsé fïx thé föllöwïng érrörs: â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕє¢тє#" + +#: lms/djangoapps/support/static/support/jsx/file_upload.jsx +msgid "Files that you upload must be smaller than 5MB in size." +msgstr "" +"Fïlés thät ýöü üplöäd müst ßé smällér thän 5MB ïn sïzé. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ " +"ѕιт αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±#" + +#: lms/djangoapps/support/static/support/jsx/file_upload.jsx +msgid "" +"Files that you upload must be PDFs or image files in .gif, .jpg, .jpeg, or " +".png format." +msgstr "" +"Fïlés thät ýöü üplöäd müst ßé PDFs ör ïmägé fïlés ïn .gïf, .jpg, .jpég, ör " +".png förmät. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕє#" + +#: lms/djangoapps/support/static/support/jsx/file_upload.jsx +#: lms/djangoapps/support/static/support/jsx/single_support_form.jsx +msgid "Something went wrong. Please try again later." +msgstr "" +"Söméthïng wént wröng. Pléäsé trý ägäïn lätér. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, " +"Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ #" + +#: lms/djangoapps/support/static/support/jsx/file_upload.jsx +msgid "Add Attachment" +msgstr "Àdd Àttäçhmént â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚#" + +#: lms/djangoapps/support/static/support/jsx/file_upload.jsx +msgid "(Optional)" +msgstr "(Öptïönäl) â± 'σÑєм ιÏѕυм ∂σłσ#" + +#: lms/djangoapps/support/static/support/jsx/file_upload.jsx +msgid "Remove file" +msgstr "Rémövé fïlé â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ #" + +#: lms/djangoapps/support/static/support/jsx/logged_in_user.jsx +msgid "Course Name" +msgstr "Çöürsé Nämé â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ #" + +#: lms/djangoapps/support/static/support/jsx/logged_in_user.jsx +msgid "Not specific to a course" +msgstr "Nöt spéçïfïç tö ä çöürsé â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢ση#" + +#: lms/djangoapps/support/static/support/jsx/logged_in_user.jsx +msgid "What can we help you with, {username}?" +msgstr "" +"Whät çän wé hélp ýöü wïth, {username}? â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕє¢т#" + +#: lms/djangoapps/support/static/support/jsx/logged_in_user.jsx +#: lms/static/js/instructor_dashboard/util.js +msgid "Subject" +msgstr "Süßjéçt â± 'σÑєм ιÏѕυм #" + +#: lms/djangoapps/support/static/support/jsx/logged_in_user.jsx +msgid "Details" +msgstr "Détäïls â± 'σÑєм ιÏѕυм #" + +#: lms/djangoapps/support/static/support/jsx/logged_in_user.jsx +msgid "The more you tell us, the more quickly and helpfully we can respond!" +msgstr "" +"Thé möré ýöü téll üs, thé möré qüïçklý änd hélpfüllý wé çän réspönd! â± 'σÑєм " +"ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ #" + +#: lms/djangoapps/support/static/support/jsx/logged_in_user.jsx +#: common/static/common/templates/discussion/new-post.underscore +#: common/static/common/templates/discussion/thread-response.underscore +#: common/static/common/templates/discussion/thread.underscore +#: lms/templates/verify_student/incourse_reverify.underscore +msgid "Submit" +msgstr "Süßmït â± 'σÑєм ιÏÑ•Ï…#" + +#: lms/djangoapps/support/static/support/jsx/logged_out_user.jsx +msgid "Sign in to {platform} so we can help you better." +msgstr "" +"Sïgn ïn tö {platform} sö wé çän hélp ýöü ßéttér. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ " +"αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ #" + +#: lms/djangoapps/support/static/support/jsx/logged_out_user.jsx +msgid "" +"If you are unable to access your account contact us via email using {email}." +msgstr "" +"ÃŒf ýöü äré ünäßlé tö äççéss ýöür äççöünt çöntäçt üs vïä émäïl üsïng {email}." +" â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕє¢тєтυÑ#" + +#: lms/djangoapps/support/static/support/jsx/single_support_form.jsx +msgid "" +"Select a course or select \"Not specific to a course\" for your support " +"request." +msgstr "" +"Séléçt ä çöürsé ör séléçt \"Nöt spéçïfïç tö ä çöürsé\" för ýöür süppört " +"réqüést. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕє¢тєт#" + +#: lms/djangoapps/support/static/support/jsx/single_support_form.jsx +msgid "Enter a subject for your support request." +msgstr "" +"Éntér ä süßjéçt för ýöür süppört réqüést. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, " +"Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ #" + +#: lms/djangoapps/support/static/support/jsx/single_support_form.jsx +msgid "Enter some details for your support request." +msgstr "" +"Éntér sömé détäïls för ýöür süppört réqüést. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, " +"Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ #" + +#: lms/djangoapps/support/static/support/jsx/single_support_form.jsx +#: lms/djangoapps/support/static/support/jsx/success.jsx +msgid "Contact Us" +msgstr "Çöntäçt Ûs â± 'σÑєм ιÏѕυм ∂σłσ#" + +#: lms/djangoapps/support/static/support/jsx/single_support_form.jsx +msgid "Find answers to the top questions asked by learners." +msgstr "" +"Fïnd änswérs tö thé töp qüéstïöns äskéd ßý léärnérs. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ " +"αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±#" + +#: lms/djangoapps/support/static/support/jsx/single_support_form.jsx +msgid "Search the {platform} Help Center" +msgstr "Séärçh thé {platform} Hélp Çéntér â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕ#" + +#: lms/djangoapps/support/static/support/jsx/success.jsx +msgid "Go to my Dashboard" +msgstr "Gö tö mý Däshßöärd â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт#" + +#: lms/djangoapps/support/static/support/jsx/success.jsx +msgid "Go to {platform} Home" +msgstr "Gö tö {platform} Hömé â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚#" + +#: lms/djangoapps/support/static/support/jsx/success.jsx +msgid "" +"Thank you for submitting a request! We will contact you within 24 hours." +msgstr "" +"Thänk ýöü för süßmïttïng ä réqüést! Wé wïll çöntäçt ýöü wïthïn 24 höürs. " +"â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕє¢тєтυÑ#" + +#: lms/djangoapps/support/static/support/jsx/upload_progress.jsx +msgid "Cancel upload" +msgstr "Çänçél üplöäd â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹#" + #: lms/djangoapps/teams/static/teams/js/collections/team.js msgid "last activity" msgstr "läst äçtïvïtý â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹#" @@ -5142,6 +3530,15 @@ msgstr "" "Thé réfünd déädlïné för thïs çöürsé häs pässéd,sö ýöü wïll nöt réçéïvé ä " "réfünd. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕє¢тє#" +#: lms/static/js/dashboard/legacy.js +#: lms/static/js/learner_dashboard/views/unenroll_view.js +msgid "" +"Unable to determine whether we should give you a refund because of System " +"Error. Please try again later." +msgstr "" +"Ûnäßlé tö détérmïné whéthér wé shöüld gïvé ýöü ä réfünd ßéçäüsé öf Sýstém " +"Érrör. Pléäsé trý ägäïn lätér. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ α#" + #: lms/static/js/discovery/views/search_form.js #, javascript-format msgid "Viewing %s course" @@ -5696,14 +4093,11 @@ msgstr "Märk énröllmént çödé äs ünüséd â± 'σÑєм ιÏѕυм ∂σ #: cms/templates/js/transcript-organization-credentials.underscore #: lms/djangoapps/support/static/support/templates/manage_user.underscore #: lms/templates/financial-assistance/financial_assessment_form.underscore -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/course_allowances.underscore -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/student-proctored-exam-attempts.underscore msgid "Username" msgstr "Ûsérnämé â± 'σÑєм ιÏѕυм ∂#" #: lms/static/js/instructor_dashboard/membership.js #: lms/djangoapps/support/static/support/templates/manage_user.underscore -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/course_allowances.underscore msgid "Email" msgstr "Émäïl â± 'σÑєм ιÏÑ•#" @@ -6441,25 +4835,130 @@ msgstr "Tïmé Sént: â± 'σÑєм ιÏѕυм ∂σłσ#" msgid "Sent To:" msgstr "Sént Tö: â± 'σÑєм ιÏѕυм ∂#" -#: lms/static/js/instructor_dashboard/util.js -msgid "Message:" -msgstr "Méssägé: â± 'σÑєм ιÏѕυм ∂#" +#: lms/static/js/instructor_dashboard/util.js +msgid "Message:" +msgstr "Méssägé: â± 'σÑєм ιÏѕυм ∂#" + +#: lms/static/js/instructor_dashboard/util.js +msgid "No tasks currently running." +msgstr "Nö täsks çürréntlý rünnïng. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕє#" + +#: lms/static/js/instructor_dashboard/util.js +msgid "File Name" +msgstr "Fïlé Nämé â± 'σÑєм ιÏѕυм ∂σł#" + +#: lms/static/js/instructor_dashboard/util.js +msgid "" +"Links are generated on demand and expire within 5 minutes due to the " +"sensitive nature of student information." +msgstr "" +"Lïnks äré générätéd ön démänd änd éxpïré wïthïn 5 mïnütés düé tö thé " +"sénsïtïvé nätüré öf stüdént ïnförmätïön. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•#" + +#: lms/static/js/learner_dashboard/models/course_card_model.js +msgid "(Self-paced) Starts {start}" +msgstr "(Sélf-päçéd) Stärts {start} â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σ#" + +#: lms/static/js/learner_dashboard/models/course_card_model.js +msgid "(Self-paced) Started {start}" +msgstr "(Sélf-päçéd) Stärtéd {start} â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢ση#" + +#: lms/static/js/learner_dashboard/models/course_card_model.js +msgid "(Self-paced) Ends {end}" +msgstr "(Sélf-päçéd) Énds {end} â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, #" + +#: lms/static/js/learner_dashboard/models/course_card_model.js +msgid "(Self-paced) Ended {end}" +msgstr "(Sélf-päçéd) Éndéd {end} â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢#" + +#: lms/static/js/learner_dashboard/models/course_card_model.js +msgid "Starts {start}" +msgstr "Stärts {start} â± 'σÑєм ιÏѕυм ∂σłσ#" + +#: lms/static/js/learner_dashboard/models/course_card_model.js +msgid "Started {start}" +msgstr "Stärtéd {start} â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ #" + +#: lms/static/js/learner_dashboard/models/course_card_model.js +msgid "Ends {end}" +msgstr "Énds {end} â± 'σÑєм ιÏѕυм ∂#" + +#: lms/static/js/learner_dashboard/views/course_entitlement_view.js +msgid "You must select a session to access the course." +msgstr "" +"Ãöü müst séléçt ä séssïön tö äççéss thé çöürsé. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт," +" Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±#" + +#: lms/static/js/learner_dashboard/views/course_entitlement_view.js +msgid "There was an error. Please reload the page and try again." +msgstr "" +"Théré wäs än érrör. Pléäsé rélöäd thé pägé änd trý ägäïn. â± 'σÑєм ιÏѕυм ∂σłσÑ" +" ѕιт αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±#" + +#: lms/static/js/learner_dashboard/views/course_entitlement_view.js +#: lms/templates/learner_dashboard/course_entitlement.underscore +msgid "Change Session" +msgstr "Çhängé Séssïön â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚#" + +#: lms/static/js/learner_dashboard/views/course_entitlement_view.js +#: lms/templates/learner_dashboard/course_entitlement.underscore +msgid "Select Session" +msgstr "Séléçt Séssïön â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚#" + +#: lms/static/js/learner_dashboard/views/course_entitlement_view.js +msgid "Leave Current Session" +msgstr "Léävé Çürrént Séssïön â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, #" + +#: lms/static/js/learner_dashboard/views/course_entitlement_view.js +msgid "Are you sure you want to select this session?" +msgstr "" +"Àré ýöü süré ýöü wänt tö séléçt thïs séssïön? â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, " +"Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ #" + +#: lms/static/js/learner_dashboard/views/course_entitlement_view.js +msgid "Are you sure you want to change to a different session?" +msgstr "" +"Àré ýöü süré ýöü wänt tö çhängé tö ä dïfférént séssïön? â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ " +"ѕιт αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±#" -#: lms/static/js/instructor_dashboard/util.js -msgid "No tasks currently running." -msgstr "Nö täsks çürréntlý rünnïng. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕє#" +#: lms/static/js/learner_dashboard/views/course_entitlement_view.js +msgid "Any course progress or grades from your current session will be lost." +msgstr "" +"Àný çöürsé prögréss ör grädés fröm ýöür çürrént séssïön wïll ßé löst. â± 'σÑєм" +" ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ #" -#: lms/static/js/instructor_dashboard/util.js -msgid "File Name" -msgstr "Fïlé Nämé â± 'σÑєм ιÏѕυм ∂σł#" +#: lms/static/js/learner_dashboard/views/course_entitlement_view.js +msgid "Are you sure that you want to leave this session?" +msgstr "" +"Àré ýöü süré thät ýöü wänt tö léävé thïs séssïön? â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ " +"αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±#" -#: lms/static/js/instructor_dashboard/util.js +#: lms/static/js/learner_dashboard/views/entitlement_unenrollment_view.js msgid "" -"Links are generated on demand and expire within 5 minutes due to the " -"sensitive nature of student information." +"Your unenrollment request could not be processed. Please try again later." msgstr "" -"Lïnks äré générätéd ön démänd änd éxpïré wïthïn 5 mïnütés düé tö thé " -"sénsïtïvé nätüré öf stüdént ïnförmätïön. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•#" +"Ãöür ünénröllmént réqüést çöüld nöt ßé pröçésséd. Pléäsé trý ägäïn lätér. " +"â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕє¢тєтυÑ#" + +#: lms/static/js/learner_dashboard/views/entitlement_unenrollment_view.js +msgid "" +"Are you sure you want to unenroll from {courseName} ({courseNumber})? You " +"will be refunded the amount you paid." +msgstr "" +"Àré ýöü süré ýöü wänt tö ünénröll fröm {courseName} ({courseNumber})? Ãöü " +"wïll ßé réfündéd thé ämöünt ýöü päïd. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢ση#" + +#: lms/static/js/learner_dashboard/views/program_details_sidebar_view.js +msgid "{type} Progress" +msgstr "{type} Prögréss â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•#" + +#: lms/static/js/learner_dashboard/views/program_details_sidebar_view.js +msgid "Earned Certificates" +msgstr "Éärnéd Çértïfïçätés â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт,#" + +#: lms/static/js/learner_dashboard/views/program_details_view.js +msgid "Enrolled" +msgstr "Énrölléd â± 'σÑєм ιÏѕυм ∂#" #: lms/static/js/staff_debug_actions.js msgid "Successfully reset the attempts for user {user}" @@ -6510,14 +5009,228 @@ msgstr "" #: lms/static/js/staff_debug_actions.js msgid "Successfully overrode problem score for {user}" msgstr "" -"Süççéssfüllý övérrödé prößlém sçöré för {user} â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, " -"Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ #" +"Süççéssfüllý övérrödé prößlém sçöré för {user} â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, " +"Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ #" + +#: lms/static/js/staff_debug_actions.js +msgid "Could not override problem score for {user}." +msgstr "" +"Çöüld nöt övérrïdé prößlém sçöré för {user}. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, " +"Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ #" + +#: lms/static/js/student_account/components/PasswordResetConfirmation.jsx +msgid "Enter and confirm your new password." +msgstr "" +"Éntér änd çönfïrm ýöür néw pässwörd. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, " +"¢σηѕє¢тєтυ#" + +#: lms/static/js/student_account/components/PasswordResetConfirmation.jsx +msgid "New Password" +msgstr "Néw Pässwörd â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•#" + +#: lms/static/js/student_account/components/PasswordResetConfirmation.jsx +msgid "Confirm Password" +msgstr "Çönfïrm Pässwörd â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αм#" + +#: lms/static/js/student_account/components/PasswordResetConfirmation.jsx +msgid "Passwords do not match." +msgstr "Pässwörds dö nöt mätçh. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σ#" + +#: lms/static/js/student_account/components/PasswordResetConfirmation.jsx +msgid "Reset My Password" +msgstr "Rését Mý Pässwörd â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмє#" + +#: lms/static/js/student_account/components/PasswordResetConfirmation.jsx +#: lms/static/js/student_account/views/account_settings_factory.js +msgid "Reset Your Password" +msgstr "Rését Ãöür Pässwörd â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт,#" + +#: lms/static/js/student_account/components/PasswordResetInput.jsx +msgid "Error: " +msgstr "Érrör: â± 'σÑєм ιÏѕυм #" + +#: lms/static/js/student_account/components/StudentAccountDeletion.jsx +#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx +msgid "" +"You may also lose access to verified certificates and other program " +"credentials like MicroMasters certificates. If you want to make a copy of " +"these for your records before proceeding with deletion, follow the " +"instructions for {htmlStart}printing or downloading a certificate{htmlEnd}." +msgstr "" +"Ãöü mäý älsö lösé äççéss tö vérïfïéd çértïfïçätés änd öthér prögräm " +"çrédéntïäls lïké MïçröMästérs çértïfïçätés. ÃŒf ýöü wänt tö mäké ä çöpý öf " +"thésé för ýöür réçörds ßéföré pröçéédïng wïth délétïön, föllöw thé " +"ïnstrüçtïöns för {htmlStart}prïntïng ör döwnlöädïng ä çértïfïçäté{htmlEnd}. " +"â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±âˆ‚Î¹Ïιѕι¢ιηg єłιт, ѕє∂ ∂σ єιυѕмσ∂ " +"тємÏÏƒÑ Î¹Î·Â¢Î¹âˆ‚Î¹âˆ‚Ï…Î·Ñ‚ Ï…Ñ‚ łαвσÑÑ” єт ∂σłσÑÑ” мαgηα αłιqυα. Ï…Ñ‚ єηιм α∂ мιηιм νєηιαм," +" qυιѕ ησѕтÑυ∂ єχєÑ¢ιтαтιση υłłαм¢σ łαвσÑιѕ ηιѕι Ï…Ñ‚ αłιqÏ…Î¹Ï Ñ”Ï‡ єα ¢σммσ∂σ " +"¢σηѕєqυαт. ∂#" + +#: lms/static/js/student_account/components/StudentAccountDeletion.jsx +msgid "" +"Before proceeding, please {htmlStart}unlink all social media " +"accounts{htmlEnd}." +msgstr "" +"Béföré pröçéédïng, pléäsé {htmlStart}ünlïnk äll söçïäl médïä " +"äççöünts{htmlEnd}. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±#" + +#: lms/static/js/student_account/components/StudentAccountDeletion.jsx +msgid "Before proceeding, please {htmlStart}activate your account{htmlEnd}." +msgstr "" +"Béföré pröçéédïng, pléäsé {htmlStart}äçtïväté ýöür äççöünt{htmlEnd}. â± 'σÑєм " +"ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±#" + +#: lms/static/js/student_account/components/StudentAccountDeletion.jsx +msgid "" +"{htmlStart}Want to change your email, name, or password instead?{htmlEnd}" +msgstr "" +"{htmlStart}Wänt tö çhängé ýöür émäïl, nämé, ör pässwörd ïnstéäd?{htmlEnd} " +"â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±#" + +#: lms/static/js/student_account/components/StudentAccountDeletion.jsx +msgid "" +"{strongStart}Warning: Account deletion is permanent.{strongEnd} Please read " +"the above carefully before proceeding. This is an irreversible action, and " +"{strongStart}you will no longer be able to use the same email on " +"edX.{strongEnd}" +msgstr "" +"{strongStart}Wärnïng: Àççöünt délétïön ïs pérmänént.{strongEnd} Pléäsé réäd " +"thé äßövé çäréfüllý ßéföré pröçéédïng. Thïs ïs än ïrrévérsïßlé äçtïön, änd " +"{strongStart}ýöü wïll nö löngér ßé äßlé tö üsé thé sämé émäïl ön " +"édX.{strongEnd} â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±âˆ‚Î¹Ïιѕι¢ιηg єłιт, " +"ѕє∂ ∂σ єιυѕмσ∂ тємÏÏƒÑ Î¹Î·Â¢Î¹âˆ‚Î¹âˆ‚Ï…Î·Ñ‚ Ï…Ñ‚ łαвσÑÑ” єт ∂σłσÑÑ” мαgηα αłιqυα. Ï…Ñ‚ єηιм " +"α∂ мιηιм νєηιαм, qυιѕ ησѕтÑυ∂ єχєÑ¢ιтαтιση υłłαм¢σ łαвσÑιѕ ηιѕι Ï…Ñ‚ αłιqÏ…Î¹Ï " +"єχ єα ¢σммσ∂σ ¢σηѕєqυαт. ∂υιѕ αυтє ιÑÏ…ÑÑ” âˆ‚ÏƒÅ‚ÏƒÑ Î¹Î· ÑÑ”ÏÑєнєη∂єÑιт ιη νσłυÏтαтє" +" νєłιт єѕѕє ¢ιłłυм ∂σłσÑÑ” єυ Æ’Ï…gιαт ηυłłα ÏαÑιαтυÑ. єχ¢єÏÑ‚Ñ”Ï…Ñ Ñ•Î¹Î·Ñ‚ σ¢¢αє¢αт " +"¢υÏι∂αт#" + +#: lms/static/js/student_account/components/StudentAccountDeletion.jsx +msgid "We’re sorry to see you go!" +msgstr "Wé’ré sörrý tö séé ýöü gö! â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕ#" + +#: lms/static/js/student_account/components/StudentAccountDeletion.jsx +msgid "" +"Please note: Deletion of your account and personal data is permanent and " +"cannot be undone. EdX will not be able to recover your account or the data " +"that is deleted." +msgstr "" +"Pléäsé nöté: Délétïön öf ýöür äççöünt änd pérsönäl dätä ïs pérmänént änd " +"çännöt ßé ündöné. ÉdX wïll nöt ßé äßlé tö réçövér ýöür äççöünt ör thé dätä " +"thät ïs délétéd. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±âˆ‚Î¹Ïιѕι¢ιηg єłιт, " +"ѕє∂ ∂σ єιυѕмσ∂ тємÏÏƒÑ Î¹Î·Â¢Î¹âˆ‚Î¹âˆ‚Ï…Î·Ñ‚ Ï…Ñ‚ łαвσÑÑ” єт ∂σłσÑÑ” мαgηα αłιqυα. Ï…Ñ‚ єηιм " +"α∂ мιηιм νєηιαм, qυιѕ ησѕтÑυ∂ єχєÑ¢ιтαтιση υłłαм¢σ łαвσÑιѕ ηιѕι Ï…Ñ‚ αłιqÏ…Î¹Ï " +"єχ єα ¢σммσ∂σ ¢σηѕєqυαт. ∂υιѕ αυтє ιÑÏ…ÑÑ” âˆ‚ÏƒÅ‚ÏƒÑ Î¹Î· ÑÑ”ÏÑєнєη∂єÑιт ιη νσłυÏтαтє" +" νєłιт єѕѕє ¢ιłłυм ∂σłσÑÑ” єυ Æ’Ï…gιαт ηυłłα ÏαÑιαтυÑ. єχ¢єÏÑ‚Ñ”Ï…Ñ Ñ•Î¹Î·Ñ‚ σ¢¢αє¢αт " +"¢υÏι∂αтαт ηση ÏÑσι∂єηт, ѕυηт ιη ¢υłÏα qυι σƒƒι¢ια ∂#" + +#: lms/static/js/student_account/components/StudentAccountDeletion.jsx +msgid "" +"Once your account is deleted, you cannot use it to take courses on the edX " +"app, edx.org, or any other site hosted by edX. This includes access to " +"edx.org from your employer’s or university’s system and access to private " +"sites offered by MIT Open Learning, Wharton Executive Education, and Harvard" +" Medical School." +msgstr "" +"Önçé ýöür äççöünt ïs délétéd, ýöü çännöt üsé ït tö täké çöürsés ön thé édX " +"äpp, édx.örg, ör äný öthér sïté höstéd ßý édX. Thïs ïnçlüdés äççéss tö " +"édx.örg fröm ýöür émplöýér’s ör ünïvérsïtý’s sýstém änd äççéss tö prïväté " +"sïtés öfféréd ßý MÃŒT Öpén Léärnïng, Whärtön Éxéçütïvé Édüçätïön, änd Härvärd" +" Médïçäl Sçhööl. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±âˆ‚Î¹Ïιѕι¢ιηg єłιт, " +"ѕє∂ ∂σ єιυѕмσ∂ тємÏÏƒÑ Î¹Î·Â¢Î¹âˆ‚Î¹âˆ‚Ï…Î·Ñ‚ Ï…Ñ‚ łαвσÑÑ” єт ∂σłσÑÑ” мαgηα αłιqυα. Ï…Ñ‚ єηιм " +"α∂ мιηιм νєη#" + +#: lms/static/js/student_account/components/StudentAccountDeletion.jsx +#: lms/static/js/student_account/views/account_settings_factory.js +msgid "Delete My Account" +msgstr "Délété Mý Àççöünt â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмє#" + +#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx +msgid "Password is incorrect" +msgstr "Pässwörd ïs ïnçörréçt â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, #" + +#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx +msgid "Unable to delete account" +msgstr "Ûnäßlé tö délété äççöünt â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢ση#" + +#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx +msgid "Please re-enter your password." +msgstr "Pléäsé ré-éntér ýöür pässwörd. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕє¢т#" + +#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx +msgid "" +"Sorry, there was an error trying to process your request. Please try again " +"later." +msgstr "" +"Sörrý, théré wäs än érrör trýïng tö pröçéss ýöür réqüést. Pléäsé trý ägäïn " +"lätér. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕє¢тє#" + +#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx +msgid "A Password is required" +msgstr "À Pässwörd ïs réqüïréd â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢#" + +#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx +msgid "" +"You have selected “Delete my account.†Deletion of your account and personal" +" data is permanent and cannot be undone. EdX will not be able to recover " +"your account or the data that is deleted." +msgstr "" +"Ãöü hävé séléçtéd “Délété mý äççöünt.†Délétïön öf ýöür äççöünt änd pérsönäl" +" dätä ïs pérmänént änd çännöt ßé ündöné. ÉdX wïll nöt ßé äßlé tö réçövér " +"ýöür äççöünt ör thé dätä thät ïs délétéd. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, " +"Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±âˆ‚Î¹Ïιѕι¢ιηg єłιт, ѕє∂ ∂σ єιυѕмσ∂ тємÏÏƒÑ Î¹Î·Â¢Î¹âˆ‚Î¹âˆ‚Ï…Î·Ñ‚ Ï…Ñ‚ łαвσÑÑ” єт " +"∂σłσÑÑ” мαgηα αłιqυα. Ï…Ñ‚ єηιм α∂ мιηιм νєηιαм, qυιѕ ησѕтÑυ∂ єχєÑ¢ιтαтιση " +"υłłαм¢σ łαвσÑιѕ ηιѕι Ï…Ñ‚ αłιqÏ…Î¹Ï Ñ”Ï‡ єα ¢σммσ∂σ ¢σηѕєqυαт. ∂υιѕ αυтє ιÑÏ…ÑÑ” " +"âˆ‚ÏƒÅ‚ÏƒÑ Î¹Î· ÑÑ”ÏÑєнєη∂єÑιт ιη νσłυÏтαтє νєłιт єѕѕє ¢ιłłυм ∂σłσÑÑ” єυ Æ’Ï…gιαт ηυłłα" +" ÏαÑιαтυÑ. єχ¢єÏÑ‚Ñ”Ï…Ñ Ñ•Î¹Î·Ñ‚ σ¢¢αє¢αт ¢υÏι∂αтαт ηση Ï#" + +#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx +msgid "" +"If you proceed, you will be unable to use this account to take courses on " +"the edX app, edx.org, or any other site hosted by edX. This includes access " +"to edx.org from your employer’s or university’s system and access to private" +" sites offered by MIT Open Learning, Wharton Executive Education, and " +"Harvard Medical School." +msgstr "" +"ÃŒf ýöü pröçééd, ýöü wïll ßé ünäßlé tö üsé thïs äççöünt tö täké çöürsés ön " +"thé édX äpp, édx.örg, ör äný öthér sïté höstéd ßý édX. Thïs ïnçlüdés äççéss " +"tö édx.örg fröm ýöür émplöýér’s ör ünïvérsïtý’s sýstém änd äççéss tö prïväté" +" sïtés öfféréd ßý MÃŒT Öpén Léärnïng, Whärtön Éxéçütïvé Édüçätïön, änd " +"Härvärd Médïçäl Sçhööl. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±âˆ‚Î¹Ïιѕι¢ιηg" +" єłιт, ѕє∂ ∂σ єιυѕмσ∂ тємÏÏƒÑ Î¹Î·Â¢Î¹âˆ‚Î¹âˆ‚Ï…Î·Ñ‚ Ï…Ñ‚ łαвσÑÑ” єт ∂σłσÑÑ” мαgηα αłιqυα. Ï…Ñ‚" +" Ñ”#" + +#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx +msgid "" +"If you still wish to continue and delete your account, please enter your " +"account password:" +msgstr "" +"ÃŒf ýöü stïll wïsh tö çöntïnüé änd délété ýöür äççöünt, pléäsé éntér ýöür " +"äççöünt pässwörd: â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕ#" + +#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx +msgid "Yes, Delete" +msgstr "Ãés, Délété â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ #" + +#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx +msgid "We're sorry to see you go! Your account will be deleted shortly." +msgstr "" +"Wé'ré sörrý tö séé ýöü gö! Ãöür äççöünt wïll ßé délétéd shörtlý. â± 'σÑєм " +"ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±#" -#: lms/static/js/staff_debug_actions.js -msgid "Could not override problem score for {user}." +#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx +msgid "" +"Account deletion, including removal from email lists, may take a few weeks " +"to fully process through our system. If you want to opt-out of emails before" +" then, please unsubscribe from the footer of any email." msgstr "" -"Çöüld nöt övérrïdé prößlém sçöré för {user}. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, " -"Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ #" +"Àççöünt délétïön, ïnçlüdïng rémöväl fröm émäïl lïsts, mäý täké ä féw wééks " +"tö füllý pröçéss thröügh öür sýstém. ÃŒf ýöü wänt tö öpt-öüt öf émäïls ßéföré" +" thén, pléäsé ünsüßsçrïßé fröm thé föötér öf äný émäïl. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ " +"ѕιт αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±âˆ‚Î¹Ïιѕι¢ιηg єłιт, ѕє∂ ∂σ єιυѕмσ∂ тємÏÏƒÑ Î¹Î·Â¢Î¹âˆ‚Î¹âˆ‚Ï…Î·Ñ‚ Ï…Ñ‚ " +"łαвσÑÑ” єт ∂σłσÑÑ” мαgηα αłιqυα. Ï…Ñ‚ єηιм α∂ мιηιм νєηιαм, qυιѕ ησѕтÑυ∂ " +"єχєÑ¢ιтαтιση υłłαм¢σ łαвσÑιѕ ηιѕι Ï…Ñ‚ αłιqÏ…Î¹Ï Ñ”Ï‡ єα ¢σммσ∂σ ¢σηѕєqυαт. ∂υιѕ " +"αυтє ιÑÏ…ÑÑ” âˆ‚ÏƒÅ‚ÏƒÑ Î¹Î· ÑÑ”ÏÑєнєη∂єÑιт ιη νσłυÏтαтє νєłιт єѕѕє ¢ιłłυм ∂σłσÑÑ” єυ " +"Æ’Ï…gιαт ηυłłα ÏαÑιαтυÑ. єχ¢єÏÑ‚Ñ”Ï…Ñ Ñ•Î¹Î·Ñ‚#" #: lms/static/js/student_account/tos_modal.js msgid "Terms of Service and Honor Code" @@ -6577,17 +5290,18 @@ msgid "" "address is associated with your {platform_name} account, we will send a " "message with password recovery instructions to this email " "address.{paragraphEnd}{paragraphStart}If you do not receive a password reset" -" message, verify that you entered the correct email address, or check your " -"spam folder.{paragraphEnd}{paragraphStart}If you need further assistance, " -"{anchorStart}contact technical support{anchorEnd}.{paragraphEnd}" +" message after 1 minute, verify that you entered the correct email address, " +"or check your spam folder.{paragraphEnd}{paragraphStart}If you need further " +"assistance, {anchorStart}contact technical support{anchorEnd}.{paragraphEnd}" msgstr "" "{paragraphStart}Ãöü éntéréd {boldStart}{email}{boldEnd}. ÃŒf thïs émäïl " "äddréss ïs ässöçïätéd wïth ýöür {platform_name} äççöünt, wé wïll sénd ä " "méssägé wïth pässwörd réçövérý ïnstrüçtïöns tö thïs émäïl " "äddréss.{paragraphEnd}{paragraphStart}ÃŒf ýöü dö nöt réçéïvé ä pässwörd rését" -" méssägé, vérïfý thät ýöü éntéréd thé çörréçt émäïl äddréss, ör çhéçk ýöür " -"späm földér.{paragraphEnd}{paragraphStart}ÃŒf ýöü nééd fürthér ässïstänçé, " -"{anchorStart}çöntäçt téçhnïçäl süppört{anchorEnd}.{paragraphEnd} â± 'σ#" +" méssägé äftér 1 mïnüté, vérïfý thät ýöü éntéréd thé çörréçt émäïl äddréss, " +"ör çhéçk ýöür späm földér.{paragraphEnd}{paragraphStart}ÃŒf ýöü nééd fürthér " +"ässïstänçé, {anchorStart}çöntäçt téçhnïçäl " +"süppört{anchorEnd}.{paragraphEnd}#" #: lms/static/js/student_account/views/LoginView.js msgid "" @@ -7000,6 +5714,14 @@ msgstr "" "Trý thé tränsäçtïön ägäïn ïn ä féw mïnütés. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, " "Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ #" +#: lms/static/js/verify_student/views/make_payment_step_view.js +#: openedx/features/course_bookmarks/static/course_bookmarks/js/views/bookmark_button.js +#: openedx/features/course_bookmarks/static/course_bookmarks/js/views/bookmarks_list.js +msgid "An error has occurred. Please try again." +msgstr "" +"Àn érrör häs öççürréd. Pléäsé trý ägäïn. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, " +"¢σηѕє¢тєтυÑ#" + #: lms/static/js/verify_student/views/make_payment_step_view.js msgid "Could not submit order" msgstr "Çöüld nöt süßmït ördér â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢#" @@ -7196,6 +5918,38 @@ msgstr "Nümßér öf Stüdénts â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αм msgid "Overall Score" msgstr "Övéräll Sçöré â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹#" +#: openedx/features/course_bookmarks/static/course_bookmarks/js/views/bookmark_button.js +msgid "Bookmark this page" +msgstr "Böökmärk thïs pägé â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт#" + +#: openedx/features/course_experience/static/course_experience/js/CourseGoals.js +msgid "Thank you for setting your course goal to {goal}!" +msgstr "" +"Thänk ýöü för séttïng ýöür çöürsé göäl tö {goal}! â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ " +"αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±#" + +#: openedx/features/course_experience/static/course_experience/js/CourseHome.js +msgid "You have successfully updated your goal." +msgstr "" +"Ãöü hävé süççéssfüllý üpdätéd ýöür göäl. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, " +"¢σηѕє¢тєтυÑ#" + +#: openedx/features/course_experience/static/course_experience/js/CourseHome.js +msgid "There was an error updating your goal." +msgstr "" +"Théré wäs än érrör üpdätïng ýöür göäl. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, " +"¢σηѕє¢тєтυÑ#" + +#: openedx/features/course_experience/static/course_experience/js/CourseOutline.js +#: lms/templates/ccx/schedule.underscore +msgid "Expand All" +msgstr "Éxpänd Àll â± 'σÑєм ιÏѕυм ∂σłσ#" + +#: openedx/features/course_experience/static/course_experience/js/CourseOutline.js +#: lms/templates/ccx/schedule.underscore +msgid "Collapse All" +msgstr "Çölläpsé Àll â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•#" + #: openedx/features/course_search/static/course_search/js/views/search_results_view.js msgid "{total_results} result" msgid_plural "{total_results} results" @@ -7298,6 +6052,43 @@ msgstr "Àççömplïshménts â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ α#" msgid "Profile" msgstr "Pröfïlé â± 'σÑєм ιÏѕυм #" +#: cms/static/cms/js/main.js cms/static/js/views/active_video_upload_list.js +#: cms/static/js/views/video_transcripts.js +msgid "" +"This may be happening because of an error with our server or your internet " +"connection. Try refreshing the page or making sure you are online." +msgstr "" +"Thïs mäý ßé häppénïng ßéçäüsé öf än érrör wïth öür sérvér ör ýöür ïntérnét " +"çönnéçtïön. Trý réfréshïng thé pägé ör mäkïng süré ýöü äré önlïné. â± 'σÑєм " +"ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±âˆ‚Î¹Ïιѕι¢ιηg єłιт, ѕє∂ ∂σ єιυѕмσ∂ тємÏÏƒÑ " +"ιη¢ι∂ι∂υηт Ï…Ñ‚ łαвσÑÑ” єт ∂σłσÑÑ” мαgηα αłιqυα. Ï…Ñ‚ єηιм α∂ мιηιм νєηιαм, qυιѕ " +"ησѕтÑυ∂ єχєÑ¢ιтαтιση υłłαм¢σ łαвσÑιѕ ηιѕι Ï…Ñ‚ αłιqÏ…Î¹Ï Ñ”Ï‡ єα ¢σммσ∂σ " +"¢σηѕєqυαт. ∂υιѕ αυтє ιÑÏ…ÑÑ” âˆ‚ÏƒÅ‚ÏƒÑ Î¹Î· ÑÑ”ÏÑєнєη∂єÑιт ιη νσłυÏтαтє νєłιт єѕѕє " +"¢ιłłυм ∂σłσÑÑ” єυ Æ’Ï…gιαт ηυłłα ÏαÑιαтυÑ. єχ¢єÏÑ‚Ñ”Ï…Ñ Ñ•Î¹Î·Ñ‚ σ¢¢αє¢αт ¢υÏι∂αтαт " +"ηση ÏÑσι∂єηт, ѕυηт ιη ¢υłÏα qυι σƒƒι¢ια ∂єѕєÑυηт мσłłιт αηιм ι∂ єѕт #" + +#: cms/static/cms/js/main.js +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/cms/js/xblock/cms.runtime.v1.js +msgid "OpenAssessment Save Error" +msgstr "ÖpénÀsséssmént Sävé Érrör â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕ#" + +#: cms/static/js/base.js +msgid "This link will open in a new browser window/tab" +msgstr "" +"Thïs lïnk wïll öpén ïn ä néw ßröwsér wïndöw/täß â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт," +" Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±#" + +#: cms/static/js/base.js +msgid "This link will open in a modal window" +msgstr "" +"Thïs lïnk wïll öpén ïn ä mödäl wïndöw â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, " +"¢σηѕє¢тєтυ#" + #: cms/static/js/certificates/models/certificate.js msgid "Certificate name is required." msgstr "Çértïfïçäté nämé ïs réqüïréd. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕє¢#" @@ -7356,6 +6147,13 @@ msgstr "" msgid "This action cannot be undone." msgstr "Thïs äçtïön çännöt ßé ündöné. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕє¢#" +#: cms/static/js/certificates/views/signatory_editor.js +#: cms/static/js/views/course_info_update.js cms/static/js/views/list_item.js +#: cms/static/js/views/show_textbook.js cms/static/js/views/tabs.js +#: cms/static/js/views/utils/xblock_utils.js +msgid "Deleting" +msgstr "Délétïng â± 'σÑєм ιÏѕυм ∂#" + #: cms/static/js/certificates/views/signatory_editor.js msgid "Upload signature image." msgstr "Ûplöäd sïgnätüré ïmägé. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σ#" @@ -7433,6 +6231,91 @@ msgstr "" "Ãöü hävé ünsävéd çhängés. Dö ýöü réällý wänt tö léävé thïs pägé? â± 'σÑєм " "ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±#" +#: cms/static/js/features/import/factories/import.js +msgid "There was an error during the upload process." +msgstr "" +"Théré wäs än érrör dürïng thé üplöäd pröçéss. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, " +"Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ #" + +#: cms/static/js/features/import/factories/import.js +msgid "There was an error while unpacking the file." +msgstr "" +"Théré wäs än érrör whïlé ünpäçkïng thé fïlé. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, " +"Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ #" + +#: cms/static/js/features/import/factories/import.js +msgid "There was an error while verifying the file you submitted." +msgstr "" +"Théré wäs än érrör whïlé vérïfýïng thé fïlé ýöü süßmïttéd. â± 'σÑєм ιÏѕυм " +"âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±#" + +#: cms/static/js/features/import/factories/import.js +msgid "Choose new file" +msgstr "Çhöösé néw fïlé â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ α#" + +#: cms/static/js/features/import/factories/import.js +msgid "" +"File format not supported. Please upload a file with a {ext} extension." +msgstr "" +"Fïlé förmät nöt süppörtéd. Pléäsé üplöäd ä fïlé wïth ä {ext} éxténsïön. " +"â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ #" + +#: cms/static/js/features/import/factories/import.js +msgid "There was an error while importing the new library to our database." +msgstr "" +"Théré wäs än érrör whïlé ïmpörtïng thé néw lïßrärý tö öür dätäßäsé. â± 'σÑєм " +"ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ #" + +#: cms/static/js/features/import/factories/import.js +msgid "There was an error while importing the new course to our database." +msgstr "" +"Théré wäs än érrör whïlé ïmpörtïng thé néw çöürsé tö öür dätäßäsé. â± 'σÑєм " +"ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ #" + +#: cms/static/js/features/import/factories/import.js +msgid "Your import has failed." +msgstr "Ãöür ïmpört häs fäïléd. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σ#" + +#: cms/static/js/features/import/views/import.js +msgid "Your import is in progress; navigating away will abort it." +msgstr "" +"Ãöür ïmpört ïs ïn prögréss; nävïgätïng äwäý wïll äßört ït. â± 'σÑєм ιÏѕυм " +"âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±#" + +#: cms/static/js/features/import/views/import.js +msgid "Error importing course" +msgstr "Érrör ïmpörtïng çöürsé â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢#" + +#: cms/static/js/features/import/views/import.js +msgid "There was an error with the upload" +msgstr "" +"Théré wäs än érrör wïth thé üplöäd â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕє¢тєт#" + +#: cms/static/js/features_jsx/studio/CourseOrLibraryListing.jsx +msgid "Organization:" +msgstr "Örgänïzätïön: â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹#" + +#: cms/static/js/features_jsx/studio/CourseOrLibraryListing.jsx +msgid "Course Number:" +msgstr "Çöürsé Nümßér: â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚#" + +#: cms/static/js/features_jsx/studio/CourseOrLibraryListing.jsx +msgid "Course Run:" +msgstr "Çöürsé Rün: â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ #" + +#: cms/static/js/features_jsx/studio/CourseOrLibraryListing.jsx +msgid "(Read-only)" +msgstr "(Réäd-önlý) â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ #" + +#: cms/static/js/features_jsx/studio/CourseOrLibraryListing.jsx +msgid "Re-run Course" +msgstr "Ré-rün Çöürsé â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹#" + +#: cms/static/js/features_jsx/studio/CourseOrLibraryListing.jsx +#: cms/templates/js/show-textbook.underscore +msgid "View Live" +msgstr "Vïéw Lïvé â± 'σÑєм ιÏѕυм ∂σł#" + #: cms/static/js/maintenance/force_publish_course.js msgid "Internal Server Error." msgstr "ÃŒntérnäl Sérvér Érrör. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢#" @@ -7454,6 +6337,24 @@ msgstr "Ûplöäd çömplétéd â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αм# msgid "Upload failed" msgstr "Ûplöäd fäïléd â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹#" +#: cms/static/js/models/chapter.js +msgid "Chapter name and asset_path are both required" +msgstr "" +"Çhäptér nämé änd ässét_päth äré ßöth réqüïréd â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, " +"Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ #" + +#: cms/static/js/models/chapter.js +msgid "Chapter name is required" +msgstr "Çhäptér nämé ïs réqüïréd â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢ση#" + +#: cms/static/js/models/chapter.js +msgid "asset_path is required" +msgstr "ässét_päth ïs réqüïréd â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢#" + +#: cms/static/js/models/course.js cms/static/js/models/section.js +msgid "You must specify a name" +msgstr "Ãöü müst spéçïfý ä nämé â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σ#" + #: cms/static/js/models/course_update.js msgid "Action required: Enter a valid date." msgstr "" @@ -7587,6 +6488,46 @@ msgstr "" "Nöt äßlé tö sét pässïng grädé tö léss thän %(minimum_grade_cutoff)s%. â± 'σÑєм" " ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±#" +#: cms/static/js/models/textbook.js +msgid "Textbook name is required" +msgstr "Téxtßöök nämé ïs réqüïréd â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕ#" + +#: cms/static/js/models/textbook.js +msgid "Please add at least one chapter" +msgstr "Pléäsé ädd ät léäst öné çhäptér â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕє¢т#" + +#: cms/static/js/models/textbook.js +msgid "All chapters must have a name and asset" +msgstr "" +"Àll çhäptérs müst hävé ä nämé änd ässét â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, " +"¢σηѕє¢тєтυÑ#" + +#: cms/static/js/models/uploads.js +msgid "" +"Only <%= fileTypes %> files can be uploaded. Please select a file ending in " +"<%= fileExtensions %> to upload." +msgstr "" +"Önlý <%= fileTypes %> fïlés çän ßé üplöädéd. Pléäsé séléçt ä fïlé éndïng ïn " +"<%= fileExtensions %> tö üplöäd. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕє¢тєт#" + +#: cms/static/js/models/uploads.js +#: lms/templates/student_account/hinted_login.underscore +#: lms/templates/student_account/institution_login.underscore +#: lms/templates/student_account/institution_register.underscore +msgid "or" +msgstr "ör â± 'σÑ#" + +#: cms/static/js/models/xblock_validation.js +msgid "This unit has validation issues." +msgstr "" +"Thïs ünït häs välïdätïön ïssüés. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕє¢тє#" + +#: cms/static/js/models/xblock_validation.js +msgid "This component has validation issues." +msgstr "" +"Thïs çömpönént häs välïdätïön ïssüés. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, " +"¢σηѕє¢тєтυ#" + #: cms/static/js/views/active_video_upload.js cms/static/js/views/assets.js msgid "Your file could not be uploaded" msgstr "Ãöür fïlé çöüld nöt ßé üplöädéd â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕє¢т#" @@ -7677,7 +6618,6 @@ msgstr "Däté Àddéd â± 'σÑєм ιÏѕυм ∂σłσ#" #: cms/static/js/views/assets.js cms/templates/js/asset-library.underscore #: lms/djangoapps/support/static/support/templates/certificates_results.underscore -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/student-proctored-exam-attempts.underscore msgid "Type" msgstr "Týpé â± 'σÑєм ι#" @@ -7708,6 +6648,11 @@ msgstr "Ûplöäd Néw Fïlé â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ α#" msgid "Load Another File" msgstr "Löäd Ànöthér Fïlé â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмє#" +#: cms/static/js/views/components/add_xblock.js +#: cms/static/js/views/utils/xblock_utils.js +msgid "Adding" +msgstr "Àddïng â± 'σÑєм ιÏÑ•Ï…#" + #: cms/static/js/views/course_info_update.js msgid "Are you sure you want to delete this update?" msgstr "" @@ -7766,6 +6711,15 @@ msgstr "" msgid "{selectedProvider} credentials saved" msgstr "{selectedProvider} çrédéntïäls sävéd â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, #" +#: cms/static/js/views/edit_chapter.js +msgid "Upload a new PDF to “<%= name %>â€" +msgstr "Ûplöäd ä néw PDF tö “<%= name %>†Ⱡ'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕ#" + +#: cms/static/js/views/edit_chapter.js +msgid "Please select a PDF file to upload." +msgstr "" +"Pléäsé séléçt ä PDF fïlé tö üplöäd. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕє¢тєт#" + #: cms/static/js/views/export.js msgid "There has been an error while exporting." msgstr "" @@ -7896,6 +6850,105 @@ msgstr "" "Fïlés müst ßé ïn JPÉG ör PNG förmät. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, " "¢σηѕє¢тєтυ#" +#: cms/static/js/views/license.js cms/templates/js/license-selector.underscore +msgid "All Rights Reserved" +msgstr "Àll Rïghts Résérvéd â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт,#" + +#: cms/static/js/views/license.js +msgid "You reserve all rights for your work" +msgstr "" +"Ãöü résérvé äll rïghts för ýöür wörk â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, " +"¢σηѕє¢тєтυ#" + +#: cms/static/js/views/license.js +msgid "Creative Commons" +msgstr "Çréätïvé Çömmöns â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αм#" + +#: cms/static/js/views/license.js +msgid "You waive some rights for your work, such that others can use it too" +msgstr "" +"Ãöü wäïvé sömé rïghts för ýöür wörk, süçh thät öthérs çän üsé ït töö â± 'σÑєм " +"ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ #" + +#: cms/static/js/views/license.js +msgid "Version" +msgstr "Vérsïön â± 'σÑєм ιÏѕυм #" + +#: cms/static/js/views/license.js +msgid "Attribution" +msgstr "Àttrïßütïön â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ #" + +#: cms/static/js/views/license.js +msgid "" +"Allow others to copy, distribute, display and perform your copyrighted work " +"but only if they give credit the way you request. Currently, this option is " +"required." +msgstr "" +"Àllöw öthérs tö çöpý, dïstrïßüté, dïspläý änd pérförm ýöür çöpýrïghtéd wörk " +"ßüt önlý ïf théý gïvé çrédït thé wäý ýöü réqüést. Çürréntlý, thïs öptïön ïs " +"réqüïréd. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±âˆ‚Î¹Ïιѕι¢ιηg єłιт, ѕє∂ ∂σ " +"єιυѕмσ∂ тємÏÏƒÑ Î¹Î·Â¢Î¹âˆ‚Î¹âˆ‚Ï…Î·Ñ‚ Ï…Ñ‚ łαвσÑÑ” єт ∂σłσÑÑ” мαgηα αłιqυα. Ï…Ñ‚ єηιм α∂ мιηιм" +" νєηιαм, qυιѕ ησѕтÑυ∂ єχєÑ¢ιтαтιση υłłαм¢σ łαвσÑιѕ ηιѕι Ï…Ñ‚ αłιqÏ…Î¹Ï Ñ”Ï‡ єα " +"¢σммσ∂σ ¢σηѕєqυαт. ∂υιѕ αυтє ιÑÏ…ÑÑ” âˆ‚ÏƒÅ‚ÏƒÑ Î¹Î· ÑÑ”ÏÑєнєη∂єÑιт ιη νσłυÏтαтє νєłιт" +" єѕѕє ¢ιłłυм ∂σłσÑÑ” єυ Æ’Ï…gιαт ηυłłα ÏαÑιαтυÑ. єχ¢єÏÑ‚Ñ”Ï…Ñ Ñ•Î¹Î·Ñ‚ σ¢¢αє¢αт " +"¢υÏι∂αтαт ηση ÏÑσι∂єηт, ѕυηт ιη ¢υłÏα qυι σƒƒι¢ια ∂єѕє#" + +#: cms/static/js/views/license.js +msgid "Noncommercial" +msgstr "Nönçömmérçïäl â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹#" + +#: cms/static/js/views/license.js +msgid "" +"Allow others to copy, distribute, display and perform your work - and " +"derivative works based upon it - but for noncommercial purposes only." +msgstr "" +"Àllöw öthérs tö çöpý, dïstrïßüté, dïspläý änd pérförm ýöür wörk - änd " +"dérïvätïvé wörks ßäséd üpön ït - ßüt för nönçömmérçïäl pürpösés önlý. â± 'σÑєм" +" ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±âˆ‚Î¹Ïιѕι¢ιηg єłιт, ѕє∂ ∂σ єιυѕмσ∂ тємÏÏƒÑ " +"ιη¢ι∂ι∂υηт Ï…Ñ‚ łαвσÑÑ” єт ∂σłσÑÑ” мαgηα αłιqυα. Ï…Ñ‚ єηιм α∂ мιηιм νєηιαм, qυιѕ " +"ησѕтÑυ∂ єχєÑ¢ιтαтιση υłłαм¢σ łαвσÑιѕ ηιѕι Ï…Ñ‚ αłιqÏ…Î¹Ï Ñ”Ï‡ єα ¢σммσ∂σ " +"¢σηѕєqυαт. ∂υιѕ αυтє ιÑÏ…ÑÑ” âˆ‚ÏƒÅ‚ÏƒÑ Î¹Î· ÑÑ”ÏÑєнєη∂єÑιт ιη νσłυÏтαтє νєłιт єѕѕє " +"¢ιłłυм ∂σłσÑÑ” єυ Æ’Ï…gιαт ηυłłα ÏαÑιαтυÑ. єχ¢єÏÑ‚Ñ”Ï…Ñ Ñ•Î¹Î·Ñ‚ σ¢¢αє¢αт ¢υÏι∂αтαт " +"ηση ÏÑσι∂єηт, ѕυηт ιη ¢υłÏα qυι σƒƒι¢ια ∂єѕєÑυηт мσłłιт αηιм ι∂ єѕт łα#" + +#: cms/static/js/views/license.js +msgid "No Derivatives" +msgstr "Nö Dérïvätïvés â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚#" + +#: cms/static/js/views/license.js +msgid "" +"Allow others to copy, distribute, display and perform only verbatim copies " +"of your work, not derivative works based upon it. This option is " +"incompatible with \"Share Alike\"." +msgstr "" +"Àllöw öthérs tö çöpý, dïstrïßüté, dïspläý änd pérförm önlý vérßätïm çöpïés " +"öf ýöür wörk, nöt dérïvätïvé wörks ßäséd üpön ït. Thïs öptïön ïs " +"ïnçömpätïßlé wïth \"Shäré Àlïké\". â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ " +"α∂ιÏιѕι¢ιηg єłιт, ѕє∂ ∂σ єιυѕмσ∂ тємÏÏƒÑ Î¹Î·Â¢Î¹âˆ‚Î¹âˆ‚Ï…Î·Ñ‚ Ï…Ñ‚ łαвσÑÑ” єт ∂σłσÑÑ” мαgηα" +" αłιqυα. Ï…Ñ‚ єηιм α∂ мιηιм νєηιαм, qυιѕ ησѕтÑυ∂ єχєÑ¢ιтαтιση υłłαм¢σ łαвσÑιѕ " +"ηιѕι Ï…Ñ‚ αłιqÏ…Î¹Ï Ñ”Ï‡ єα ¢σммσ∂σ ¢σηѕєqυαт. ∂υιѕ αυтє ιÑÏ…ÑÑ” âˆ‚ÏƒÅ‚ÏƒÑ Î¹Î· " +"ÑÑ”ÏÑєнєη∂єÑιт ιη νσłυÏтαтє νєłιт єѕѕє ¢ιłłυм ∂σłσÑÑ” єυ Æ’Ï…gιαт ηυłłα " +"ÏαÑιαтυÑ. єχ¢єÏÑ‚Ñ”Ï…Ñ Ñ•Î¹Î·Ñ‚ σ¢¢αє¢αт ¢υÏι∂αтαт ηση ÏÑσι∂єηт, ѕυηт ιη ¢υłÏα qÏ…#" + +#: cms/static/js/views/license.js +msgid "Share Alike" +msgstr "Shäré Àlïké â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ #" + +#: cms/static/js/views/license.js +msgid "" +"Allow others to distribute derivative works only under a license identical " +"to the license that governs your work. This option is incompatible with \"No" +" Derivatives\"." +msgstr "" +"Àllöw öthérs tö dïstrïßüté dérïvätïvé wörks önlý ündér ä lïçénsé ïdéntïçäl " +"tö thé lïçénsé thät gövérns ýöür wörk. Thïs öptïön ïs ïnçömpätïßlé wïth \"Nö" +" Dérïvätïvés\". â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±âˆ‚Î¹Ïιѕι¢ιηg єłιт, " +"ѕє∂ ∂σ єιυѕмσ∂ тємÏÏƒÑ Î¹Î·Â¢Î¹âˆ‚Î¹âˆ‚Ï…Î·Ñ‚ Ï…Ñ‚ łαвσÑÑ” єт ∂σłσÑÑ” мαgηα αłιqυα. Ï…Ñ‚ єηιм " +"α∂ мιηιм νєηιαм, qυιѕ ησѕтÑυ∂ єχєÑ¢ιтαтιση υłłαм¢σ łαвσÑιѕ ηιѕι Ï…Ñ‚ αłιqÏ…Î¹Ï " +"єχ єα ¢σммσ∂σ ¢σηѕєqυαт. ∂υιѕ αυтє ιÑÏ…ÑÑ” âˆ‚ÏƒÅ‚ÏƒÑ Î¹Î· ÑÑ”ÏÑєнєη∂єÑιт ιη νσłυÏтαтє" +" νєłιт єѕѕє ¢ιłłυм ∂σłσÑÑ” єυ Æ’Ï…gιαт ηυłłα ÏαÑιαтυÑ. єχ¢єÏÑ‚Ñ”Ï…Ñ Ñ•Î¹Î·Ñ‚ σ¢¢αє¢αт " +"¢υÏι∂αтαт ηση ÏÑσι∂єηт, ѕυηт ιη ¢υłÏα qυι σƒƒι¢ια ∂#" + #. Translators: "item_display_name" is the name of the item to be deleted. #: cms/static/js/views/list_item.js msgid "Delete this %(item_display_name)s?" @@ -8007,6 +7060,38 @@ msgstr "Bäsïç â± 'σÑєм ιÏÑ•#" msgid "Visibility" msgstr "Vïsïßïlïtý â± 'σÑєм ιÏѕυм ∂σłσ#" +#. Translators: "title" is the name of the current component being edited. +#: cms/static/js/views/modals/edit_xblock.js +msgid "Editing: {title}" +msgstr "Édïtïng: {title} â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•#" + +#: cms/static/js/views/modals/edit_xblock.js +msgid "Plugins" +msgstr "Plügïns â± 'σÑєм ιÏѕυм #" + +#: cms/static/js/views/modals/edit_xblock.js +#: lms/templates/ccx/schedule.underscore +msgid "Unit" +msgstr "Ûnït â± 'σÑєм ι#" + +#: cms/static/js/views/modals/edit_xblock.js +msgid "Component" +msgstr "Çömpönént â± 'σÑєм ιÏѕυм ∂σł#" + +#: cms/static/js/views/modals/move_xblock_modal.js +msgid "Move" +msgstr "Mövé â± 'σÑєм ι#" + +#: cms/static/js/views/modals/move_xblock_modal.js +msgid "Choose a location to move your component to" +msgstr "" +"Çhöösé ä löçätïön tö mövé ýöür çömpönént tö â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, " +"Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ #" + +#: cms/static/js/views/modals/move_xblock_modal.js +msgid "Move: {displayName}" +msgstr "Mövé: {displayName} â± 'σÑєм ιÏѕυм ∂σł#" + #: cms/static/js/views/modals/validation_error_modal.js msgid "Validation Error While Saving" msgstr "Välïdätïön Érrör Whïlé Sävïng â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕє¢#" @@ -8019,15 +7104,173 @@ msgstr "Ûndö Çhängés â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•#" msgid "Change Manually" msgstr "Çhängé Mänüällý â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ α#" -#: cms/static/js/views/pages/course_outline.js -msgid "Course Index" -msgstr "Çöürsé ÃŒndéx â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•#" +#: cms/static/js/views/move_xblock_list.js +msgid "Sections" +msgstr "Séçtïöns â± 'σÑєм ιÏѕυм ∂#" + +#: cms/static/js/views/move_xblock_list.js +msgid "Subsections" +msgstr "Süßséçtïöns â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ #" + +#: cms/static/js/views/move_xblock_list.js +msgid "Units" +msgstr "Ûnïts â± 'σÑєм ιÏÑ•#" + +#: cms/static/js/views/move_xblock_list.js +msgid "Components" +msgstr "Çömpönénts â± 'σÑєм ιÏѕυм ∂σłσ#" + +#: cms/static/js/views/move_xblock_list.js +#: cms/templates/js/group-configuration-editor.underscore +msgid "Groups" +msgstr "Gröüps â± 'σÑєм ιÏÑ•Ï…#" + +#: cms/static/js/views/move_xblock_list.js +msgid "This {parentCategory} has no {childCategory}" +msgstr "" +"Thïs {parentCategory} häs nö {childCategory} â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт,#" + +#: cms/static/js/views/move_xblock_list.js +#: cms/templates/js/group-configuration-details.underscore +#: cms/templates/js/partition-group-details.underscore +msgid "Course Outline" +msgstr "Çöürsé Öütlïné â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚#" + +#: cms/static/js/views/paged_container.js +msgid "Date added" +msgstr "Däté äddéd â± 'σÑєм ιÏѕυм ∂σłσ#" + +#. Translators: "title" is the name of the current component or unit being +#. edited. +#: cms/static/js/views/pages/container.js +msgid "Editing access for: %(title)s" +msgstr "Édïtïng äççéss för: %(title)s â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σ#" + +#: cms/static/js/views/pages/container_subviews.js +msgid "Publishing" +msgstr "Püßlïshïng â± 'σÑєм ιÏѕυм ∂σłσ#" + +#: cms/static/js/views/pages/container_subviews.js +#: cms/templates/js/course-video-settings-update-org-credentials-footer.underscore +#: cms/templates/js/course-video-settings-update-settings-footer.underscore +#: cms/templates/js/publish-xblock.underscore +msgid "Discard Changes" +msgstr "Dïsçärd Çhängés â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ α#" + +#: cms/static/js/views/pages/container_subviews.js +msgid "" +"Are you sure you want to revert to the last published version of the unit? " +"You cannot undo this action." +msgstr "" +"Àré ýöü süré ýöü wänt tö révért tö thé läst püßlïshéd vérsïön öf thé ünït? " +"Ãöü çännöt ündö thïs äçtïön. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αм#" + +#: cms/static/js/views/pages/container_subviews.js +msgid "Discarding Changes" +msgstr "Dïsçärdïng Çhängés â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт#" + +#: cms/static/js/views/pages/container_subviews.js +msgid "Hiding from Students" +msgstr "Hïdïng fröm Stüdénts â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, #" + +#: cms/static/js/views/pages/container_subviews.js +msgid "Explicitly Hiding from Students" +msgstr "Éxplïçïtlý Hïdïng fröm Stüdénts â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕє¢т#" + +#: cms/static/js/views/pages/container_subviews.js +msgid "Inheriting Student Visibility" +msgstr "ÃŒnhérïtïng Stüdént Vïsïßïlïtý â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕє¢#" + +#: cms/static/js/views/pages/container_subviews.js +msgid "Make Visible to Students" +msgstr "Mäké Vïsïßlé tö Stüdénts â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢ση#" + +#: cms/static/js/views/pages/container_subviews.js +msgid "" +"If the unit was previously published and released to students, any changes " +"you made to the unit when it was hidden will now be visible to students. Do " +"you want to proceed?" +msgstr "" +"ÃŒf thé ünït wäs prévïöüslý püßlïshéd änd réléäséd tö stüdénts, äný çhängés " +"ýöü mädé tö thé ünït whén ït wäs hïddén wïll nöw ßé vïsïßlé tö stüdénts. Dö " +"ýöü wänt tö pröçééd? â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±âˆ‚Î¹Ïιѕι¢ιηg " +"єłιт, ѕє∂ ∂σ єιυѕмσ∂ тємÏÏƒÑ Î¹Î·Â¢Î¹âˆ‚Î¹âˆ‚Ï…Î·Ñ‚ Ï…Ñ‚ łαвσÑÑ” єт ∂σłσÑÑ” мαgηα αłιqυα. Ï…Ñ‚ " +"єηιм α∂ мιηιм νєηιαм, qυιѕ ησѕтÑυ∂ єχєÑ¢ιтαтιση υłłαм¢σ łαвσÑιѕ ηιѕι Ï…Ñ‚ " +"αłιqÏ…Î¹Ï Ñ”Ï‡ єα ¢σммσ∂σ ¢σηѕєqυαт. ∂υιѕ αυтє ιÑÏ…ÑÑ” âˆ‚ÏƒÅ‚ÏƒÑ Î¹Î· ÑÑ”ÏÑєнєη∂єÑιт ιη " +"νσłυÏтαтє νєłιт єѕѕє ¢ιłłυм ∂σłσÑÑ” єυ Æ’Ï…gιαт ηυłłα ÏαÑιαтυÑ. єχ¢єÏÑ‚Ñ”Ï…Ñ Ñ•Î¹Î·Ñ‚ " +"σ¢¢αє¢αт ¢υÏι∂αтαт ηση ÏÑσι∂єηт, ѕυηт ιη ¢υłÏα qυι#" + +#: cms/static/js/views/pages/container_subviews.js +msgid "Making Visible to Students" +msgstr "Mäkïng Vïsïßlé tö Stüdénts â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕ#" + +#: cms/static/js/views/pages/course_outline.js +msgid "Course Index" +msgstr "Çöürsé ÃŒndéx â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•#" + +#: cms/static/js/views/pages/course_outline.js +msgid "There were errors reindexing course." +msgstr "" +"Théré wéré érrörs réïndéxïng çöürsé. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, " +"¢σηѕє¢тєтυ#" + +#: cms/static/js/views/pages/paged_container.js +msgid "Hide Previews" +msgstr "Hïdé Prévïéws â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹#" + +#: cms/static/js/views/pages/paged_container.js +msgid "Show Previews" +msgstr "Shöw Prévïéws â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹#" + +#. Translators: sample result: +#. "Showing 0-9 out of 25 total, filtered by Images, sorted by Date Added +#. ascending" +#: cms/static/js/views/paging_header.js +msgid "" +"Showing {currentItemRange} out of {totalItemsCount}, filtered by " +"{assetType}, sorted by {sortName} ascending" +msgstr "" +"Shöwïng {currentItemRange} öüt öf {totalItemsCount}, fïltéréd ßý " +"{assetType}, sörtéd ßý {sortName} äsçéndïng â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, " +"Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±#" + +#. Translators: sample result: +#. "Showing 0-9 out of 25 total, filtered by Images, sorted by Date Added +#. descending" +#: cms/static/js/views/paging_header.js +msgid "" +"Showing {currentItemRange} out of {totalItemsCount}, filtered by " +"{assetType}, sorted by {sortName} descending" +msgstr "" +"Shöwïng {currentItemRange} öüt öf {totalItemsCount}, fïltéréd ßý " +"{assetType}, sörtéd ßý {sortName} désçéndïng â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, " +"Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±#" + +#. Translators: sample result: +#. "Showing 0-9 out of 25 total, sorted by Date Added ascending" +#: cms/static/js/views/paging_header.js +msgid "" +"Showing {currentItemRange} out of {totalItemsCount}, sorted by {sortName} " +"ascending" +msgstr "" +"Shöwïng {currentItemRange} öüt öf {totalItemsCount}, sörtéd ßý {sortName} " +"äsçéndïng â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±#" -#: cms/static/js/views/pages/course_outline.js -msgid "There were errors reindexing course." +#. Translators: sample result: +#. "Showing 0-9 out of 25 total, sorted by Date Added descending" +#: cms/static/js/views/paging_header.js +msgid "" +"Showing {currentItemRange} out of {totalItemsCount}, sorted by {sortName} " +"descending" msgstr "" -"Théré wéré érrörs réïndéxïng çöürsé. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, " -"¢σηѕє¢тєтυ#" +"Shöwïng {currentItemRange} öüt öf {totalItemsCount}, sörtéd ßý {sortName} " +"désçéndïng â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±#" + +#. Translators: turns into "25 total" to be used in other sentences, e.g. +#. "Showing 0-9 out of 25 total". +#: cms/static/js/views/paging_header.js +msgid "{totalItems} total" +msgstr "{totalItems} tötäl â± 'σÑєм ιÏѕυм ∂σł#" #. Translators: This refers to a content group that can be linked to a student #. cohort. @@ -8135,6 +7378,39 @@ msgid "Upload your video thumbnail image." msgstr "" "Ûplöäd ýöür vïdéö thümßnäïl ïmägé. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕє¢тєт#" +#: cms/static/js/views/show_textbook.js +msgid "Delete “<%- name %>â€?" +msgstr "Délété “<%- name %>â€? â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹#" + +#: cms/static/js/views/show_textbook.js +msgid "" +"Deleting a textbook cannot be undone and once deleted any reference to it in" +" your courseware's navigation will also be removed." +msgstr "" +"Délétïng ä téxtßöök çännöt ßé ündöné änd önçé délétéd äný référénçé tö ït ïn" +" ýöür çöürséwäré's nävïgätïön wïll älsö ßé rémövéd. â± 'σÑÑ”#" + +#: cms/static/js/views/tabs.js +msgid "Delete Page Confirmation" +msgstr "Délété Pägé Çönfïrmätïön â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢ση#" + +#: cms/static/js/views/tabs.js +msgid "" +"Are you sure you want to delete this page? This action cannot be undone." +msgstr "" +"Àré ýöü süré ýöü wänt tö délété thïs pägé? Thïs äçtïön çännöt ßé ündöné. " +"â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕє¢тєтυÑ#" + +#: cms/static/js/views/uploads.js +#: cms/templates/js/metadata-file-uploader-item.underscore +#: cms/templates/js/video/metadata-translations-item.underscore +msgid "Upload" +msgstr "Ûplöäd â± 'σÑєм ιÏÑ•Ï…#" + +#: cms/static/js/views/uploads.js +msgid "We're sorry, there was an error" +msgstr "Wé'ré sörrý, théré wäs än érrör â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕє¢т#" + #: cms/static/js/views/utils/create_course_utils.js msgid "" "The combined length of the organization, course number, and course run " @@ -8151,6 +7427,81 @@ msgstr "" "Thé çömßïnéd léngth öf thé örgänïzätïön änd lïßrärý çödé fïélds çännöt ßé " "möré thän <%=limit%> çhäräçtérs. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт#" +#: cms/static/js/views/utils/move_xblock_utils.js +msgid "Success! \"{displayName}\" has been moved." +msgstr "" +"Süççéss! \"{displayName}\" häs ßéén mövéd. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, " +"¢σηѕє¢т#" + +#: cms/static/js/views/utils/move_xblock_utils.js +msgid "" +"Move cancelled. \"{sourceDisplayName}\" has been moved back to its original " +"location." +msgstr "" +"Mövé çänçélléd. \"{sourceDisplayName}\" häs ßéén mövéd ßäçk tö ïts örïgïnäl " +"löçätïön. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ #" + +#: cms/static/js/views/utils/move_xblock_utils.js +msgid "Undo move" +msgstr "Ûndö mövé â± 'σÑєм ιÏѕυм ∂σł#" + +#: cms/static/js/views/utils/move_xblock_utils.js +msgid "Take me to the new location" +msgstr "Täké mé tö thé néw löçätïön â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕє#" + +#: cms/static/js/views/utils/xblock_utils.js +msgid "Duplicating" +msgstr "Düplïçätïng â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ #" + +#: cms/static/js/views/utils/xblock_utils.js +msgid "Undo moving" +msgstr "Ûndö mövïng â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ #" + +#: cms/static/js/views/utils/xblock_utils.js +msgid "Moving" +msgstr "Mövïng â± 'σÑєм ιÏÑ•Ï…#" + +#: cms/static/js/views/utils/xblock_utils.js +msgid "Deleting this {xblock_type} is permanent and cannot be undone." +msgstr "" +"Délétïng thïs {xblock_type} ïs pérmänént änd çännöt ßé ündöné. â± 'σÑєм ιÏѕυм " +"âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±#" + +#: cms/static/js/views/utils/xblock_utils.js +msgid "" +"Any content that has listed this content as a prerequisite will also have " +"access limitations removed." +msgstr "" +"Àný çöntént thät häs lïstéd thïs çöntént äs ä préréqüïsïté wïll älsö hävé " +"äççéss lïmïtätïöns rémövéd. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмє#" + +#: cms/static/js/views/utils/xblock_utils.js +msgid "Delete this {xblock_type} (and prerequisite)?" +msgstr "" +"Délété thïs {xblock_type} (änd préréqüïsïté)? â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, " +"¢σηѕє¢тєт#" + +#: cms/static/js/views/utils/xblock_utils.js +msgid "Yes, delete this {xblock_type}" +msgstr "Ãés, délété thïs {xblock_type} â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, #" + +#: cms/static/js/views/utils/xblock_utils.js +msgid "Delete this {xblock_type}?" +msgstr "Délété thïs {xblock_type}? â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αм#" + +#: cms/static/js/views/utils/xblock_utils.js +msgid "section" +msgstr "séçtïön â± 'σÑєм ιÏѕυм #" + +#: cms/static/js/views/utils/xblock_utils.js +msgid "subsection" +msgstr "süßséçtïön â± 'σÑєм ιÏѕυм ∂σłσ#" + +#: cms/static/js/views/utils/xblock_utils.js +#: cms/templates/js/container-access.underscore +msgid "unit" +msgstr "ünït â± 'σÑєм ι#" + #: cms/static/js/views/validation.js msgid "You've made some changes" msgstr "Ãöü'vé mädé sömé çhängés â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢ση#" @@ -8178,6 +7529,77 @@ msgstr "" msgid "Save Changes" msgstr "Sävé Çhängés â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•#" +#: cms/static/js/views/video/transcripts/file_uploader.js +msgid "Please select a file in .srt format." +msgstr "" +"Pléäsé séléçt ä fïlé ïn .srt förmät. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, " +"¢σηѕє¢тєтυ#" + +#: cms/static/js/views/video/transcripts/file_uploader.js +msgid "Error: Uploading failed." +msgstr "Érrör: Ûplöädïng fäïléd. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢ση#" + +#: cms/static/js/views/video/transcripts/message_manager.js +msgid "Error: Import failed." +msgstr "Érrör: ÃŒmpört fäïléd. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, #" + +#: cms/static/js/views/video/transcripts/message_manager.js +msgid "Error: Replacing failed." +msgstr "Érrör: Répläçïng fäïléd. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢ση#" + +#: cms/static/js/views/video/transcripts/message_manager.js +msgid "Error: Choosing failed." +msgstr "Érrör: Çhöösïng fäïléd. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σ#" + +#: cms/static/js/views/video/transcripts/metadata_videolist.js +msgid "Error: Connection with server failed." +msgstr "" +"Érrör: Çönnéçtïön wïth sérvér fäïléd. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, " +"¢σηѕє¢тєтυ#" + +#: cms/static/js/views/video/transcripts/metadata_videolist.js +msgid "Link types should be unique." +msgstr "Lïnk týpés shöüld ßé ünïqüé. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕє¢#" + +#: cms/static/js/views/video/transcripts/metadata_videolist.js +msgid "Links should be unique." +msgstr "Lïnks shöüld ßé ünïqüé. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σ#" + +#: cms/static/js/views/video/transcripts/metadata_videolist.js +msgid "Incorrect url format." +msgstr "ÃŒnçörréçt ürl förmät. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, #" + +#: cms/static/js/views/video/translations_editor.js +msgid "" +"Sorry, there was an error parsing the subtitles that you uploaded. Please " +"check the format and try again." +msgstr "" +"Sörrý, théré wäs än érrör pärsïng thé süßtïtlés thät ýöü üplöädéd. Pléäsé " +"çhéçk thé förmät änd trý ägäïn. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ #" + +#: cms/static/js/views/video/translations_editor.js +#: cms/static/js/views/video_transcripts.js +msgid "Are you sure you want to remove this transcript?" +msgstr "" +"Àré ýöü süré ýöü wänt tö rémövé thïs tränsçrïpt? â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ " +"αмєт, Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ Î±#" + +#: cms/static/js/views/video/translations_editor.js +msgid "" +"If you remove this transcript, the transcript will not be available for this" +" component." +msgstr "" +"ÃŒf ýöü rémövé thïs tränsçrïpt, thé tränsçrïpt wïll nöt ßé äväïläßlé för thïs" +" çömpönént. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕє#" + +#: cms/static/js/views/video/translations_editor.js +msgid "Remove Transcript" +msgstr "Rémövé Tränsçrïpt â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмє#" + +#: cms/static/js/views/video/translations_editor.js +msgid "Upload translation" +msgstr "Ûplöäd tränslätïön â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт#" + #: cms/static/js/views/video_thumbnail.js msgid "Add Thumbnail" msgstr "Àdd Thümßnäïl â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹#" @@ -8231,7 +7653,6 @@ msgid "Video duration is {humanizeDuration}" msgstr "Vïdéö dürätïön ïs {humanizeDuration} â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, #" #: cms/static/js/views/video_thumbnail.js -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/add-new-allowance.underscore msgid "minutes" msgstr "mïnütés â± 'σÑєм ιÏѕυм #" @@ -8338,6 +7759,26 @@ msgstr "" "ÃŒf ýöü rémövé thïs tränsçrïpt, thé tränsçrïpt wïll nöt ßé äväïläßlé för äný " "çömpönénts thät üsé thïs vïdéö. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚#" +#: cms/static/js/views/xblock_editor.js +msgid "Editor" +msgstr "Édïtör â± 'σÑєм ιÏÑ•Ï…#" + +#: cms/static/js/views/xblock_editor.js +#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore +msgid "Settings" +msgstr "Séttïngs â± 'σÑєм ιÏѕυм ∂#" + +#: cms/static/js/views/xblock_outline.js +msgid "New {component_type}" +msgstr "Néw {component_type} â± 'σÑєм ιÏѕυм #" + +#. Translators: This message will be added to the front of messages of type +#. warning, +#. e.g. "Warning: this component has not been configured yet". +#: cms/static/js/views/xblock_validation.js +msgid "Warning" +msgstr "Wärnïng â± 'σÑєм ιÏѕυм #" + #: cms/static/js/xblock_asides/structured_tags.js msgid "Updating Tags" msgstr "Ûpdätïng Tägs â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹#" @@ -8373,16 +7814,9 @@ msgstr "Hélp Tränsläté ïntö {beta_language} â± 'σÑєм ιÏѕυм ∂σ #: cms/templates/js/asset-library.underscore #: cms/templates/js/basic-modal.underscore #: lms/templates/instructor/instructor_dashboard_2/enrollment-code-lookup-links.underscore -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/course_allowances.underscore -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/student-proctored-exam-attempts.underscore msgid "Actions" msgstr "Àçtïöns â± 'σÑєм ιÏѕυм #" -#: cms/templates/js/course-outline.underscore -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/add-new-allowance.underscore -msgid "Timed Exam" -msgstr "Tïméd Éxäm â± 'σÑєм ιÏѕυм ∂σłσ#" - #: cms/templates/js/course-outline.underscore #: cms/templates/js/publish-xblock.underscore #: lms/templates/ccx/schedule.underscore @@ -8853,7 +8287,6 @@ msgid "Course Key" msgstr "Çöürsé Kéý â± 'σÑєм ιÏѕυм ∂σłσ#" #: lms/djangoapps/support/static/support/templates/certificates_results.underscore -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/student-proctored-exam-attempts.underscore msgid "Status" msgstr "Stätüs â± 'σÑєм ιÏÑ•Ï…#" @@ -9263,6 +8696,12 @@ msgstr "Vérïfý Nöw â± 'σÑєм ιÏѕυм ∂σłσ#" msgid "Mark Exam As Completed" msgstr "Märk Éxäm Às Çömplétéd â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢#" +#: lms/templates/courseware/proctored-exam-status.underscore +msgid "You are taking \"{exam_link}\" as {exam_type}. " +msgstr "" +"Ãöü äré täkïng \"{exam_link}\" äs {exam_type}. â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт," +" ¢σηѕє¢#" + #: lms/templates/courseware/proctored-exam-status.underscore msgid "a timed exam" msgstr "ä tïméd éxäm â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•#" @@ -10095,6 +9534,11 @@ msgstr "" msgid "Need help logging in?" msgstr "Nééd hélp löggïng ïn? â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, #" +#: lms/templates/student_account/hinted_login.underscore +#: lms/templates/student_account/login.underscore +msgid "Sign in" +msgstr "Sïgn ïn â± 'σÑєм ιÏѕυм #" + #: lms/templates/student_account/hinted_login.underscore #, python-format msgid "Would you like to sign in using your %(providerName)s credentials?" @@ -10137,8 +9581,9 @@ msgstr "" "Â¢ÏƒÎ·Ñ•Ñ”Â¢Ñ‚Ñ”Ñ‚Ï…Ñ #" #: lms/templates/student_account/institution_register.underscore -msgid "Register through edX" -msgstr "Régïstér thröügh édX â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, #" +#: lms/templates/student_account/register.underscore +msgid "Create an Account" +msgstr "Çréäté än Àççöünt â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмє#" #: lms/templates/student_account/login.underscore msgid "First time here?" @@ -10266,10 +9711,6 @@ msgstr "" msgid "or create a new one here" msgstr "ör çréäté ä néw öné héré â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢ση#" -#: lms/templates/student_account/register.underscore -msgid "Create an Account" -msgstr "Çréäté än Àççöünt â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмє#" - #: lms/templates/student_account/register.underscore msgid "Support education research by providing additional information" msgstr "" @@ -10938,75 +10379,6 @@ msgstr "Rétäké Phötö â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•#" msgid "Take Photo" msgstr "Täké Phötö â± 'σÑєм ιÏѕυм ∂σłσ#" -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/add-new-allowance.underscore -msgid "Add a New Allowance" -msgstr "Àdd ä Néw Àllöwänçé â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт,#" - -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/add-new-allowance.underscore -msgid "Special Exam" -msgstr "Spéçïäl Éxäm â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•#" - -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/add-new-allowance.underscore -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/student-proctored-exam-attempts.underscore -#, python-format -msgid " %(exam_display_name)s " -msgstr " %(exam_display_name)s â± 'σÑєм ιÏÑ•#" - -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/add-new-allowance.underscore -msgid "Exam Type" -msgstr "Éxäm Týpé â± 'σÑєм ιÏѕυм ∂σł#" - -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/add-new-allowance.underscore -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/course_allowances.underscore -msgid "Allowance Type" -msgstr "Àllöwänçé Týpé â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚#" - -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/add-new-allowance.underscore -msgid "Additional Time (minutes)" -msgstr "Àddïtïönäl Tïmé (mïnütés) â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмєт, ¢σηѕ#" - -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/add-new-allowance.underscore -msgid "Value" -msgstr "Välüé â± 'σÑєм ιÏÑ•#" - -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/add-new-allowance.underscore -msgid "Username or Email" -msgstr "Ûsérnämé ör Émäïl â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ αмє#" - -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/course_allowances.underscore -msgid "Allowances" -msgstr "Àllöwänçés â± 'σÑєм ιÏѕυм ∂σłσ#" - -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/course_allowances.underscore -msgid "Add Allowance" -msgstr "Àdd Àllöwänçé â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹#" - -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/course_allowances.underscore -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/student-proctored-exam-attempts.underscore -msgid "Exam Name" -msgstr "Éxäm Nämé â± 'σÑєм ιÏѕυм ∂σł#" - -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/course_allowances.underscore -msgid "Allowance Value" -msgstr "Àllöwänçé Välüé â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚ α#" - -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/student-proctored-exam-attempts.underscore -msgid "Time Limit" -msgstr "Tïmé Lïmït â± 'σÑєм ιÏѕυм ∂σłσ#" - -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/student-proctored-exam-attempts.underscore -msgid "Started At" -msgstr "Stärtéd Àt â± 'σÑєм ιÏѕυм ∂σłσ#" - -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/student-proctored-exam-attempts.underscore -msgid "Completed At" -msgstr "Çömplétéd Àt â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•#" - -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/student-proctored-exam-attempts.underscore -#, python-format -msgid " %(username)s " -msgstr " %(username)s â± 'σÑєм ιÏÑ•#" - #: openedx/features/course_bookmarks/static/course_bookmarks/templates/bookmarks-list.underscore msgid "Bookmarked on" msgstr "Böökmärkéd ön â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹#" @@ -11662,6 +11034,10 @@ msgstr "Präçtïçé pröçtöréd Éxäm â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ msgid "Proctored Exam" msgstr "Pröçtöréd Éxäm â± 'σÑєм ιÏѕυм âˆ‚ÏƒÅ‚ÏƒÑ Ñ•Î¹Ñ‚#" +#: cms/templates/js/course-outline.underscore +msgid "Timed Exam" +msgstr "Tïméd Éxäm â± 'σÑєм ιÏѕυм ∂σłσ#" + #: cms/templates/js/course-outline.underscore #: cms/templates/js/xblock-outline.underscore #, python-format diff --git a/conf/locale/es_419/LC_MESSAGES/django.mo b/conf/locale/es_419/LC_MESSAGES/django.mo index 591d5831f6cc66972f9deef393292cc52bd182b3..80e634cbcc67c5ede3f4148f4e9536b573e59631 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 d23ed0bc4e1eef23329c4f4a7bf60ff19df18306..0536c1d8a9bcb10e28a58b16ec3670b07653c53a 100644 --- a/conf/locale/es_419/LC_MESSAGES/django.po +++ b/conf/locale/es_419/LC_MESSAGES/django.po @@ -246,7 +246,7 @@ msgid "" msgstr "" "Project-Id-Version: 0.1a\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2019-04-22 10:50+0000\n" +"POT-Creation-Date: 2019-06-09 20:42+0000\n" "PO-Revision-Date: 2019-01-20 20:43+0000\n" "Last-Translator: Albeiro Gonzalez <albeiro.gonzalez@edunext.co>, 2019\n" "Language-Team: Spanish (Latin America) (https://www.transifex.com/open-edx/teams/6205/es_419/)\n" @@ -574,28 +574,6 @@ msgstr "La cantidad seleccionada es inválida" msgid "No selected price or selected price is too low." msgstr "No ha seleccionado el precio o el precio es demasiado bajo" -#: common/djangoapps/django_comment_common/models.py -msgid "Administrator" -msgstr "Administrador" - -#: common/djangoapps/django_comment_common/models.py -msgid "Moderator" -msgstr "Moderador" - -#: common/djangoapps/django_comment_common/models.py -msgid "Group Moderator" -msgstr "Moderador del Grupo" - -#: common/djangoapps/django_comment_common/models.py -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Community TA" -msgstr "Profesor asistente de la comunidad" - -#: common/djangoapps/django_comment_common/models.py -#: lms/djangoapps/instructor/paidcourse_enrollment_report.py -msgid "Student" -msgstr "Estudiante" - #: common/djangoapps/student/admin.py msgid "User profile" msgstr "Perfil de usuario" @@ -659,8 +637,8 @@ 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 "Your legal name must be a minimum of two characters long" -msgstr "Su nombre legal debe tener por lo menos dos caracteres" +msgid "Your legal name must be a minimum of one character long" +msgstr "" #: common/djangoapps/student/forms.py #, python-format @@ -1064,11 +1042,10 @@ msgstr "El curso que busca está cerrado desde {date}." #: common/djangoapps/student/views/management.py msgid "No inactive user with this e-mail exists" msgstr "" -"No existe un usuario inactivo con esta dirección de correo electrónico" #: common/djangoapps/student/views/management.py msgid "Unable to send reactivation email" -msgstr "No fue posible enviar el correo de reactivación" +msgstr "" #: common/djangoapps/student/views/management.py msgid "Course id not specified" @@ -1231,6 +1208,12 @@ msgstr "" "Los proveedores secundarios se muestran con menos énfasis, en una lista " "separada de proveedores de inicio de sesión para la \"institución\"." +#: common/djangoapps/third_party_auth/models.py +msgid "" +"optional. If this provider is an Organization, this attribute can be used " +"reference users in that Organization" +msgstr "" + #: common/djangoapps/third_party_auth/models.py msgid "The Site that this provider configuration belongs to." msgstr "Sitio al que pertenece la configuración de este proveedor." @@ -3148,13 +3131,13 @@ msgstr "Trama para los temas de discusión" msgid "" "Enter discussion categories in the following format: \"CategoryName\": " "{\"id\": \"i4x-InstitutionName-CourseNumber-course-CourseRun\"}. For " -"example, one discussion category may be \"Lydian Mode\": {\"id\": \"i4x-" -"UniversityX-MUS101-course-2015_T1\"}. The \"id\" value for each category " -"must be unique. In \"id\" values, the only special characters that are " -"supported are underscore, hyphen, and period. You can also specify a " +"example, one discussion category may be \"Lydian Mode\": {\"id\": " +"\"i4x-UniversityX-MUS101-course-2015_T1\"}. The \"id\" value for each " +"category must be unique. In \"id\" values, the only special characters that " +"are supported are underscore, hyphen, and period. You can also specify a " "category as the default for new posts in the Discussion page by setting its " -"\"default\" attribute to true. For example, \"Lydian Mode\": {\"id\": \"i4x-" -"UniversityX-MUS101-course-2015_T1\", \"default\": true}." +"\"default\" attribute to true. For example, \"Lydian Mode\": {\"id\": " +"\"i4x-UniversityX-MUS101-course-2015_T1\", \"default\": true}." msgstr "" "Ingrese las categorÃas de discusión en el siguiente formato: " "\"CategoryName\": {\"id\": \"i4x-InstitutionName-CourseNumber-course-" @@ -5714,20 +5697,17 @@ msgstr "Por favor revise la sintaxis de su entrada." msgid "Take free online courses at edX.org" msgstr "Hacer cursos gratuitos en lÃnea en edX.org" -#. Translators: 'EdX', 'edX', and 'Open edX' are trademarks of 'edX Inc.'. +#. Translators: 'edX' and 'Open edX' are trademarks of 'edX Inc.'. #. Please do not translate any of these trademarks and company names. #: lms/djangoapps/branding/api.py #, python-brace-format msgid "" -"© {org_name}. All rights reserved except where noted. EdX, Open edX and " -"their respective logos are trademarks or registered trademarks of edX Inc." +"© {org_name}. All rights reserved except where noted. edX, Open edX and " +"their respective logos are registered trademarks of edX Inc." msgstr "" -"© {org_name}. Todos los derechos reservados excepto donde se indica. EdX, " -"Open edX y sus respectivos logos son marcas comerciales o marcas registradas" -" de edX Inc. " #. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# -#. Translators: 'Open edX' is a brand, please keep this untranslated. +#. Translators: 'Open edX' is a trademark, please keep this untranslated. #. See http://openedx.org for more information. #. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# #. Translators: 'Open edX' is a brand, please keep this untranslated. See @@ -6890,6 +6870,20 @@ msgstr "Tu certificado está disponible" msgid "To see course content, {sign_in_link} or {register_link}." msgstr "Para ver el contenido del curso, {sign_in_link} o {register_link}." +#: lms/djangoapps/courseware/views/views.py +#: openedx/features/course_experience/views/course_home_messages.py +#, python-brace-format +msgid "{sign_in_link} or {register_link}." +msgstr "" + +#: lms/djangoapps/courseware/views/views.py +#: openedx/features/course_experience/views/course_home_messages.py +#: lms/templates/header/navbar-not-authenticated.html +#: lms/templates/navigation/navbar-not-authenticated.html +#: themes/edx.org/lms/templates/header/navbar-not-authenticated.html +msgid "Sign in" +msgstr "Iniciar sesión" + #: lms/djangoapps/courseware/views/views.py #, python-brace-format msgid "" @@ -7012,10 +7006,8 @@ msgstr "" #: lms/djangoapps/dashboard/git_import.py msgid "" "Non usable git url provided. Expecting something like: " -"git@github.com:mitocw/edx4edx_lite.git" +"git@github.com:edx/edx4edx_lite.git" msgstr "" -"La dirección url de git suministrada no es correcta. Se esperaba algo como " -"git@github.com:mitocw/edx4edx_lite.git" #: lms/djangoapps/dashboard/git_import.py msgid "Unable to get git log" @@ -7201,49 +7193,49 @@ msgstr "rol" msgid "full_name" msgstr "nombre_completo" -#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.html -#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.txt -#, python-format -msgid "%(comment_username)s replied to <b>%(thread_title)s</b>:" -msgstr "%(comment_username)s ha respondido a <b>%(thread_title)s</b>:" - -#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.html -#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.txt -msgid "View discussion" -msgstr "Ver discusión" - -#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/subject.txt -#, python-format -msgid "Response to %(thread_title)s" -msgstr "Respuesta a %(thread_title)s" - -#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/discussion/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/discussion/django_comment_client/base/views.py msgid "Body can't be empty" msgstr "El cuerpo no puede estar vacÃo" -#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/discussion/django_comment_client/base/views.py msgid "Topic doesn't exist" msgstr "El tema no existe" -#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/discussion/django_comment_client/base/views.py msgid "Comment level too deep" msgstr "Nivel de comentario demasiado profundo" -#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/discussion/django_comment_client/base/views.py msgid "" "Error uploading file. Please contact the site administrator. Thank you." msgstr "" "Error en la subida del archivo. Por favor contacte al administrador del " "sitio." -#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/discussion/django_comment_client/base/views.py msgid "Good" msgstr "Bien" +#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.html +#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.txt +#, python-format +msgid "%(comment_username)s replied to <b>%(thread_title)s</b>:" +msgstr "%(comment_username)s ha respondido a <b>%(thread_title)s</b>:" + +#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.html +#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.txt +msgid "View discussion" +msgstr "Ver discusión" + +#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/subject.txt +#, python-format +msgid "Response to %(thread_title)s" +msgstr "Respuesta a %(thread_title)s" + #: lms/djangoapps/edxnotes/helpers.py msgid "EdxNotes Service is unavailable. Please try again in a few minutes." msgstr "" @@ -7376,6 +7368,11 @@ msgstr "El equipo de {platform_name}" msgid "Course Staff" msgstr "Equipo del curso" +#: lms/djangoapps/instructor/paidcourse_enrollment_report.py +#: openedx/core/djangoapps/django_comment_common/models.py +msgid "Student" +msgstr "Estudiante" + #: lms/djangoapps/instructor/paidcourse_enrollment_report.py #: lms/templates/preview_menu.html #: lms/templates/instructor/instructor_dashboard_2/membership.html @@ -8228,12 +8225,6 @@ msgid "An extended due date must be later than the original due date." msgstr "" "La fecha lÃmite extendida debe ser posterior a la fecha lÃmite original." -#: lms/djangoapps/instructor/views/tools.py -msgid "No due date extension is set for that student and unit." -msgstr "" -"No se ha definido extensión de fecha lÃmite para el estudiante y la unidad " -"especificados." - #. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# #. Translators: This label appears above a field on the registration form #. meant to hold the user's full name. @@ -8722,6 +8713,10 @@ msgstr "" msgid "My Notes" msgstr "Mis notas" +#: lms/djangoapps/program_enrollments/models.py +msgid "One of user or external_user_key must not be null." +msgstr "" + #: lms/djangoapps/shoppingcart/models.py msgid "Order Payment Confirmation" msgstr "Confirmación de la orden de pago" @@ -9867,8 +9862,8 @@ msgstr "No hay resultados para perfil de usuario" #: lms/djangoapps/verify_student/views.py #, python-brace-format -msgid "Name must be at least {min_length} characters long." -msgstr "El nombre debe tener al menos {min_length} caracteres." +msgid "Name must be at least {min_length} character long." +msgstr "" #: lms/djangoapps/verify_student/views.py msgid "Image data is not valid." @@ -10367,8 +10362,9 @@ msgid "Hello %(full_name)s," msgstr "Hola %(full_name)s," #: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt #, python-format -msgid "Your %(platform_name)s ID verification has expired.\" " +msgid "Your %(platform_name)s ID verification has expired. " msgstr "" #: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html @@ -10419,11 +10415,6 @@ msgstr "" msgid "Hello %(full_name)s, " msgstr "" -#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt -#, python-format -msgid "Your %(platform_name)s ID verification has expired. " -msgstr "" - #: lms/templates/verify_student/edx_ace/verificationexpiry/email/subject.txt #, python-format msgid "Your %(platform_name)s Verification has Expired" @@ -11055,15 +11046,6 @@ msgstr "El URL del sitio web asociado con este usuario de la API." msgid "The reason this user wants to access the API." msgstr "La razón por la cual este usuario quiere acceder a la API." -#: openedx/core/djangoapps/api_admin/models.py -#, python-brace-format -msgid "API access request from {company}" -msgstr "Solicitud de acceso a la API de {company}" - -#: openedx/core/djangoapps/api_admin/models.py -msgid "API access request" -msgstr "Solicitud de acceso a la API" - #: openedx/core/djangoapps/api_admin/widgets.py #, python-brace-format msgid "" @@ -11432,6 +11414,23 @@ msgstr "Esta es una advertencia de prueba" msgid "This is a test error" msgstr "Este es un error de prueba" +#: openedx/core/djangoapps/django_comment_common/models.py +msgid "Administrator" +msgstr "Administrador" + +#: openedx/core/djangoapps/django_comment_common/models.py +msgid "Moderator" +msgstr "Moderador" + +#: openedx/core/djangoapps/django_comment_common/models.py +msgid "Group Moderator" +msgstr "Moderador del Grupo" + +#: openedx/core/djangoapps/django_comment_common/models.py +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Community TA" +msgstr "Profesor asistente de la comunidad" + #: openedx/core/djangoapps/embargo/forms.py #: openedx/core/djangoapps/verified_track_content/forms.py msgid "COURSE NOT FOUND. Please check that the course ID is valid." @@ -12073,11 +12072,12 @@ msgid "Specialty" msgstr "Especialidad" #: openedx/core/djangoapps/user_api/accounts/utils.py +#, python-brace-format msgid "" -" Make sure that you are providing a valid username or a URL that contains \"" +"Make sure that you are providing a valid username or a URL that contains " +"\"{url_stub}\". To remove the link from your edX profile, leave this field " +"blank." msgstr "" -"Asegúrate de proporcionar un nombre de usuario válido o una URL que contenga" -" \"" #: openedx/core/djangoapps/user_api/accounts/views.py #: openedx/core/djangoapps/user_authn/views/login.py @@ -12227,17 +12227,12 @@ msgstr "" #: openedx/core/djangoapps/user_api/api.py #, python-brace-format msgid "" -"By creating an account with {platform_name}, you agree to " -"abide by our {platform_name} " +"By creating an account, you agree to the " "{terms_of_service_link_start}{terms_of_service}{terms_of_service_link_end}" -" and agree to our {privacy_policy_link_start}Privacy " -"Policy{privacy_policy_link_end}." +" and you acknowledge that {platform_name} and each Member " +"process your personal data in accordance with the " +"{privacy_policy_link_start}Privacy Policy{privacy_policy_link_end}." msgstr "" -"Creando una cuenta de {platform_name}, acepta cumplir con nuestros " -"{platform_name} " -"{terms_of_service_link_start}{terms_of_service}{terms_of_service_link_end}" -" y esta de acuerdo con nuestra " -"{privacy_policy_link_start}polÃtica de privacidad{privacy_policy_link_end}." #. Translators: "Terms of service" is a legal document users must agree to #. in order to register a new account. @@ -12730,18 +12725,18 @@ msgstr "Actualizaciones" msgid "Reviews" msgstr "Reseñas" +#: openedx/features/course_experience/utils.py +#, no-python-format, python-brace-format +msgid "" +"{banner_open}{percentage}% off your first upgrade.{span_close} Discount " +"automatically applied.{div_close}" +msgstr "" + #: openedx/features/course_experience/views/course_home_messages.py #, python-brace-format msgid "{sign_in_link} or {register_link} and then enroll in this course." msgstr "{sign_in_link} o {register_link} y después inscrÃbete en este curso." -#: openedx/features/course_experience/views/course_home_messages.py -#: lms/templates/header/navbar-not-authenticated.html -#: lms/templates/navigation/navbar-not-authenticated.html -#: themes/edx.org/lms/templates/header/navbar-not-authenticated.html -msgid "Sign in" -msgstr "Iniciar sesión" - #: openedx/features/course_experience/views/course_home_messages.py #, python-brace-format msgid "Welcome to {course_display_name}" @@ -12786,6 +12781,29 @@ msgstr "{choice}" msgid "Set goal to: {goal_text}" msgstr "Establece el objetivo de: {goal_text}" +#: openedx/features/discounts/admin.py +msgid "" +"These define the context to disable lms-controlled discounts on. If no " +"values are set, then the configuration applies globally. If a single value " +"is set, then the configuration applies to all courses within that context. " +"At most one value can be set at a time.<br>If multiple contexts apply to a " +"course (for example, if configuration is specified for the course " +"specifically, and for the org that the course is in, then the more specific " +"context overrides the more general context." +msgstr "" + +#: openedx/features/discounts/admin.py +msgid "" +"If any of these values is left empty or \"Unknown\", then their value at " +"runtime will be retrieved from the next most specific context that applies. " +"For example, if \"Disabled\" is left as \"Unknown\" in the course context, " +"then that course will be Disabled only if the org that it is in is Disabled." +msgstr "" + +#: openedx/features/discounts/models.py +msgid "Disabled" +msgstr "" + #: openedx/features/enterprise_support/api.py #, python-brace-format msgid "Enrollment in {course_title} was not complete." @@ -12913,10 +12931,8 @@ msgstr "" #: cms/djangoapps/contentstore/git_export_utils.py msgid "" "Non writable git url provided. Expecting something like: " -"git@github.com:mitocw/edx4edx_lite.git" +"git@github.com:edx/edx4edx_lite.git" msgstr "" -"La Url git no es correcta, Se esperaba algo del tipo " -"git@github.com:mitocw/edx4edx_lite.git" #: cms/djangoapps/contentstore/git_export_utils.py msgid "" @@ -13798,6 +13814,15 @@ msgstr "Reiniciar" msgid "Legal" msgstr "Legal" +#. Translators: 'edX' and 'Open edX' are trademarks of 'edX Inc.'. Please do +#. not translate any of these trademarks and company names. +#: cms/templates/widgets/footer.html +#: themes/red-theme/lms/templates/footer.html +msgid "" +"edX, Open edX, and the edX and Open edX logos are registered trademarks of " +"{link_start}edX Inc.{link_end}" +msgstr "" + #: cms/templates/widgets/header.html lms/templates/header/header.html #: lms/templates/navigation/navigation.html #: lms/templates/widgets/footer-language-selector.html @@ -14197,6 +14222,10 @@ msgstr "Depuración:" msgid "External Authentication failed" msgstr "Autenticación externa fallida" +#: lms/templates/footer.html +msgid "organization logo" +msgstr "" + #: lms/templates/forgot_password_modal.html msgid "" "Please enter your e-mail address below, and we will e-mail instructions for " @@ -14412,19 +14441,15 @@ msgstr "" msgid "Search for a course" msgstr "Buscar curso" -#. Translators: 'Open edX' is a registered trademark, please keep this -#. untranslated. See http://open.edx.org for more information. -#: lms/templates/index_overlay.html -msgid "Welcome to the Open edX{registered_trademark} platform!" -msgstr "Bienvenido a la plataforma de Open edX{registered_trademark}!" +#: lms/templates/index_overlay.html lms/templates/register-sidebar.html +msgid "Welcome to {platform_name}" +msgstr "Bienvenido a la plataforma {platform_name}" #. Translators: 'Open edX' is a registered trademark, please keep this #. untranslated. See http://open.edx.org for more information. #: lms/templates/index_overlay.html -msgid "It works! This is the default homepage for this Open edX instance." +msgid "It works! Powered by Open edX{registered_trademark}" msgstr "" -"Funciona! Esta es la página de inicio por defecto para esta instancia de " -"Open edX." #: lms/templates/invalid_email_key.html msgid "Invalid email change key" @@ -14731,6 +14756,10 @@ msgstr "Guardar respuesta" msgid "Reset your answer" msgstr "Restablecer respuesta" +#: lms/templates/problem.html +msgid "Answers are displayed within the problem" +msgstr "" + #: lms/templates/problem_notifications.html msgid "Next Hint" msgstr "Próximo consejo" @@ -14938,10 +14967,6 @@ msgstr "¿Ya estás registrado?" msgid "Log in" msgstr "Iniciar sesión" -#: lms/templates/register-sidebar.html -msgid "Welcome to {platform_name}" -msgstr "Bienvenido a la plataforma {platform_name}" - #: lms/templates/register-sidebar.html msgid "" "Registering with {platform_name} gives you access to all of our current and " @@ -15315,11 +15340,6 @@ msgstr "Id del Curso o dirección" msgid "Delete course from site" msgstr "Eliminar curso del sitio" -#. Translators: A version number appears after this string -#: lms/templates/sysadmin_dashboard.html -msgid "Platform Version" -msgstr "Versión de la Plataforma" - #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Page {current_page} of {total_pages}" msgstr "Página {current_page} de {total_pages}" @@ -16948,6 +16968,20 @@ msgstr "Cargando datos solicitados" msgid "Please wait while we retrieve your order details." msgstr "Por favor, espera mientras recuperamos el detalle de tu orden" +#: lms/templates/course_modes/_upgrade_button.html +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/_upgrade_button.html +#: themes/edx.org/lms/templates/course_modes/choose.html +msgid "Pursue the Verified Track" +msgstr "Tomar el curso con Certificado Verificado " + +#: lms/templates/course_modes/_upgrade_button.html +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/_upgrade_button.html +#: themes/edx.org/lms/templates/course_modes/choose.html +msgid "Pursue a Verified Certificate" +msgstr "Tomar el curso con Certificado Verificado" + #: lms/templates/course_modes/choose.html #: themes/edx.org/lms/templates/course_modes/choose.html msgid "Enroll In {course_name} | Choose Your Track" @@ -17045,16 +17079,6 @@ msgstr "" "{b_start}Comparte fácilmente:{b_end} Agrega el certificado a tu CV, o " "publÃcalo directamente en LinkedIn" -#: lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -msgid "Pursue a Verified Certificate" -msgstr "Tomar el curso con Certificado Verificado" - -#: lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -msgid "Pursue the Verified Track" -msgstr "Tomar el curso con Certificado Verificado " - #: lms/templates/course_modes/choose.html #: themes/edx.org/lms/templates/course_modes/choose.html msgid "" @@ -17186,6 +17210,10 @@ msgstr "Este contenido es calificable" msgid "An error occurred. Please try again later." msgstr "Ocurrió un error. Por favor intenta nuevamente más tarde." +#: lms/templates/courseware/course_about.html +msgid "An error has occurred. Please ensure that you are logged in to enroll." +msgstr "" + #: lms/templates/courseware/course_about.html msgid "You are enrolled in this course" msgstr "Usted está inscrito en este curso:" @@ -17331,7 +17359,6 @@ msgstr "Refinar su búsqueda" #: lms/templates/courseware/courseware-chromeless.html #: lms/templates/courseware/courseware.html #: openedx/features/course_bookmarks/templates/course_bookmarks/course-bookmarks.html -#: openedx/features/learner_analytics/templates/learner_analytics/dashboard.html msgid "{course_number} Courseware" msgstr "Material del curso {course_number}" @@ -17566,9 +17593,8 @@ msgid "View Grading in studio" msgstr "Ver las calificaciones en Studio" #: lms/templates/courseware/progress.html -msgid "Course Progress for Student '{username}' ({email})" +msgid "Course Progress for '{username}' ({email})" msgstr "" -"Progreso del curso para el estudiante '{username}' con el correo ({email})" #: lms/templates/courseware/progress.html msgid "View Certificate" @@ -18565,34 +18591,26 @@ msgid "" "engaging, high-quality {platform_name} courses. Note that you will not be " "able to log back into your account until you have activated it." msgstr "" -"¡Estás a punto de terminar! Usa el enlace para activar tu cuenta para " -"acceder a cursos interesantes de alta calidad en {platform_name}. FÃjate que" -" no podrás ingresar a tu cuenta nuevamente antes de activarla." #: lms/templates/emails/activation_email.txt msgid "Enjoy learning with {platform_name}." -msgstr "Disfruta de tu aprendizaje con {platform_name}." +msgstr "" #: lms/templates/emails/activation_email.txt msgid "" "If you need help, please use our web form at {support_url} or email " "{support_email}." msgstr "" -"Si necesitas ayuda, por favor usa nuestro formulario web en {support_url} o " -"mándenos un correo para {support_email}." #: lms/templates/emails/activation_email.txt msgid "" "This email message was automatically sent by {lms_url} because someone " "attempted to create an account on {platform_name} using this email address." msgstr "" -"Este correo electrónico fue enviado automáticamente por {lms_url} porque " -"alguien intentó crear una cuenta en {platform_name} usando esta dirección de" -" correo electrónico." #: lms/templates/emails/activation_email_subject.txt msgid "Action Required: Activate your {platform_name} account" -msgstr "Acción Necesaria: Activar tu cuenta en {platform_name}" +msgstr "" #: lms/templates/emails/business_order_confirmation_email.txt msgid "Thank you for your purchase of " @@ -19722,16 +19740,9 @@ msgstr "Reportes disponibles para descargar" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The reports listed below are available for download. A link to every report " -"remains available on this page, identified by the UTC date and time of " -"generation. Reports are not deleted, so you will always be able to access " -"previously generated reports from this page." +"The reports listed below are available for download, identified by UTC date " +"and time of generation." msgstr "" -"Los reportes listados a continuación están disponibles para descargar. Un " -"vÃnculo a cada reporte permanecerá disponible en esta página, identificado " -"por la fecha y hora UTC de generación. Los reportes no serán borrados, asà " -"que siempre podrá acceder a los reportes generados previamente desde esta " -"página." #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" @@ -19748,13 +19759,13 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"{strong_start}Note{strong_end}: To keep student data secure, you cannot save" -" or email these links for direct access. Copies of links expire within 5 " -"minutes." +"{strong_start}Note{strong_end}: {ul_start}{li_start}To keep student data " +"secure, you cannot save or email these links for direct access. Copies of " +"links expire within 5 minutes.{li_end}{li_start}Report files are deleted 90 " +"days after generation. If you will need access to old reports, download and " +"store the files, in accordance with your institution's data security " +"policies.{li_end}{ul_end}" msgstr "" -"{strong_start}Nota{strong_end}: Para mantener seguros los datos de los " -"estudiantes, no puede guardar o enviar por email estos vÃnculos de acceso " -"directo. Las copias de los vÃnculos expirarán en un tiempo de 5 minutos." #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Enrollment Codes" @@ -20155,15 +20166,11 @@ msgstr "Extensiones individuales de fecha lÃmite" #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "" -"In this section, you have the ability to grant extensions on specific units " -"to individual students. Please note that the latest date is always taken; " -"you cannot use this tool to make an assignment due earlier for a particular " -"student." +"In this section, you have the ability to grant extensions on specific " +"subsections to individual students. Please note that the latest date is " +"always taken; you cannot use this tool to make an assignment due earlier for" +" a particular student." msgstr "" -"En esta sección, puede otorgar extensiones de fecha lÃmite para unidades y " -"estudiantes especÃficos. Por favor note que la ultima fecha lÃmite es la que" -" será utilizada. No puede usar esta herramienta para hacer que una actividad" -" tenga una fecha lÃmite anterior para cierto estudiante." #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "" @@ -20177,8 +20184,8 @@ msgid "Student Email or Username" msgstr "Correo electrónico o nombre de usuario del estudiante" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -msgid "Choose the graded unit:" -msgstr "Seleccione la unidad calificada:" +msgid "Choose the graded subsection:" +msgstr "" #. Translators: "format_string" is the string MM/DD/YYYY HH:MM, as that is the #. format the system requires. @@ -20190,6 +20197,10 @@ msgstr "" "Indique la nueva fecha y hora de entrega (en UTC; por favor especifique " "{format_string})." +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Reason for extension" +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Change due date for student" msgstr "Cambiar fecha lÃmite para un estudiante" @@ -20200,19 +20211,15 @@ msgstr "Mostrando las extensiones de fecha lÃmite otorgadas" #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "" -"Here you can see what extensions have been granted on particular units or " -"for a particular student." +"Here you can see what extensions have been granted on particular subsection " +"or for a particular student." msgstr "" -"Acá puede ver las extensiones de fecha lÃmite que han sido otorgadas en " -"unidades particulares a un estudiante." #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "" -"Choose a graded unit and click the button to obtain a list of all students " -"who have extensions for the given unit." +"Choose a graded subsection and click the button to obtain a list of all " +"students who have extensions for the given subsection." msgstr "" -"Seleccione una unidad y haga clic en el botón para obtener una lista de " -"estudiantes que tienen extensiones de fecha lÃmite para dicha unidad." #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "List all students with due date extensions" @@ -20233,13 +20240,13 @@ msgstr "Reiniciar las extensiones de fecha lÃmite" #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "" "Resetting a problem's due date rescinds a due date extension for a student " -"on a particular unit. This will revert the due date for the student back to " -"the problem's original due date." +"on a particular subsection. This will revert the due date for the student " +"back to the problem's original due date." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Reason for reset" msgstr "" -"Al reiniciar la fecha lÃmite de entrega de un problema se anulan las " -"extensiones de fecha lÃmite para unidades y estudiantes particulares. Esto " -"hará que la fecha lÃmite para los estudiantes sea la fecha lÃmite original " -"del problema." #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Reset due date for student" @@ -22490,10 +22497,6 @@ msgstr "No ha comprado acceso a ningún registro diario aún." msgid "Explore journals and courses" msgstr "Explore registros diarios y cursos" -#: openedx/features/learner_analytics/templates/learner_analytics/dashboard.html -msgid "My Stats (Beta)" -msgstr "Mis estadÃsticas (Beta)" - #. Translators: this section lists all the third-party authentication #. providers #. (for example, Google and LinkedIn) the user can link with or unlink from @@ -22596,8 +22599,8 @@ msgid "© 2012–{year} edX Inc. " msgstr "© 2012–{year} edX Inc. " #: themes/edx.org/lms/templates/footer.html -msgid "EdX, Open edX, and MicroMasters are registered trademarks of edX Inc. " -msgstr "EdX, Open edX, y MicroMasters son marcas registradas de edX Inc. " +msgid "edX, Open edX, and MicroMasters are registered trademarks of edX Inc. " +msgstr "" #: themes/edx.org/lms/templates/certificates/_about-accomplishments.html msgid "About edX Verified Certificates" @@ -22677,10 +22680,8 @@ msgstr "edX Inc." #: themes/edx.org/lms/templates/certificates/_accomplishment-footer.html msgid "" "All rights reserved except where noted. edX, Open edX and the edX and Open " -"edX logos are registered trademarks or trademarks of edX Inc." +"edX logos are registered trademarks of edX Inc." msgstr "" -"Todos los derechos reservados, excepto cuando se indique. edX, Open edX, y " -"los logos de edX y Open edX son marcas registradas o marcas de edX Inc." #: themes/edx.org/lms/templates/course_modes/choose.html msgid "" @@ -22708,16 +22709,6 @@ msgstr "Buscar Cursos" msgid "Schools & Partners" msgstr "Escuelas y socios" -#. Translators: 'EdX', 'edX', and 'Open edX' are trademarks of 'edX Inc.'. -#. Please do not translate any of these trademarks and company names. -#: themes/red-theme/lms/templates/footer.html -msgid "" -"EdX, Open edX, and the edX and Open edX logos are registered trademarks or " -"trademarks of {link_start}edX Inc.{link_end}" -msgstr "" -"EdX, Open edX, y los logos de edX y Open edX son marcas registradas de " -"{link_start}edX Inc.{link_end}" - #: themes/red-theme/lms/templates/footer.html msgid "" "{tos_link_start}Terms of Service{tos_link_end} and {honor_link_start}Honor " @@ -26241,8 +26232,6 @@ msgid "" "Thank you for signing up for {studio_name}! To activate your account, please" " copy and paste this address into your web browser's address bar:" msgstr "" -"Gracias por registrarse en {studio_name}! Para activar su cuenta, por favor " -"ingrese a la siguiente dirección en una ventana de su navegador:" #: cms/templates/emails/activation_email.txt msgid "" @@ -26250,14 +26239,10 @@ msgid "" " any more email from us. Please do not reply to this e-mail; if you require " "assistance, check the help section of the {studio_name} web site." msgstr "" -"Si usted no solicitó este cambio, no necesita hacer nada; no recibirá ningún" -" correo adicional por parte de nosotros. Por favor no responda a este " -"correo; si requiere mayor asistencia, visite la sección de Ayuda en la " -"página web de {studio_name} ." #: cms/templates/emails/activation_email_subject.txt msgid "Your account for {studio_name}" -msgstr "Su cuenta de {studio_name}" +msgstr "" #: cms/templates/emails/course_creator_admin_subject.txt msgid "{email} has requested {studio_name} course creator privileges on edge" @@ -26421,16 +26406,6 @@ msgstr "Solicitud de Acomodación de accesibilidad" msgid "LMS" msgstr "LMS" -#. Translators: 'EdX', 'edX', 'Studio', and 'Open edX' are trademarks of 'edX -#. Inc.'. Please do not translate any of these trademarks and company names. -#: cms/templates/widgets/footer.html -msgid "" -"EdX, Open edX, Studio, and the edX and Open edX logos are registered " -"trademarks or trademarks of {link_start}edX Inc.{link_end}" -msgstr "" -"EdX, Open edX, Studio y los logos de edX y Open edX son marcas registradas " -"de {link_start}edX Inc.{link_end}" - #: cms/templates/widgets/header.html msgid "Current Course:" msgstr "Curso activo:" diff --git a/conf/locale/es_419/LC_MESSAGES/djangojs.mo b/conf/locale/es_419/LC_MESSAGES/djangojs.mo index 04f7e45a0ce4ae71c97fcc4bba8f38f267917419..bfe686f956fb4491b5eaeb44a21492ca73aa78e8 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 c9de1806f6abdc848b8698ad6581514b97691439..0bea23e3a7281d08f534d3839f1369b0a4d1e7fc 100644 --- a/conf/locale/es_419/LC_MESSAGES/djangojs.po +++ b/conf/locale/es_419/LC_MESSAGES/djangojs.po @@ -161,7 +161,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2019-04-22 10:49+0000\n" +"POT-Creation-Date: 2019-06-09 20:42+0000\n" "PO-Revision-Date: 2019-02-27 22:36+0000\n" "Last-Translator: Albeiro Gonzalez <albeiro.gonzalez@edunext.co>\n" "Language-Team: Spanish (Latin America) (http://www.transifex.com/open-edx/edx-platform/language/es_419/)\n" @@ -8033,6 +8033,10 @@ msgstr "Verificar ahora" msgid "Mark Exam As Completed" msgstr "Marcar el examen como completado" +#: lms/templates/courseware/proctored-exam-status.underscore +msgid "You are taking \"{exam_link}\" as {exam_type}. " +msgstr "" + #: lms/templates/courseware/proctored-exam-status.underscore msgid "a timed exam" msgstr "Un examen cronometrado" @@ -8852,8 +8856,9 @@ msgid "Register with Institution/Campus Credentials" msgstr "Registrarse con las credenciales de la institución o el Campus" #: lms/templates/student_account/institution_register.underscore -msgid "Register through edX" -msgstr "Registrarse a través de edX" +#: lms/templates/student_account/register.underscore +msgid "Create an Account" +msgstr "Crear una cuenta" #: lms/templates/student_account/login.underscore msgid "First time here?" @@ -8974,10 +8979,6 @@ msgstr "Crear una cuenta usando %(providerName)s" msgid "or create a new one here" msgstr "o crear una nueva aquÃ" -#: lms/templates/student_account/register.underscore -msgid "Create an Account" -msgstr "Crear una cuenta" - #: lms/templates/student_account/register.underscore msgid "Support education research by providing additional information" msgstr "Ayuda a la investigación académica brindando más información" diff --git a/conf/locale/eu_ES/LC_MESSAGES/django.mo b/conf/locale/eu_ES/LC_MESSAGES/django.mo index 2f1b2241ec6193bd37ba1cec5ec4620a6f8035fa..f807fed4227a3903e46dffc6f4e0596f5419a0af 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 629a7cf02b2d4c60a9e428adc74748b12c0c9994..84d49fd0525f4418bac6496fdabf1656c80f6ac9 100644 --- a/conf/locale/eu_ES/LC_MESSAGES/django.po +++ b/conf/locale/eu_ES/LC_MESSAGES/django.po @@ -27,6 +27,7 @@ # Abel Camacho <abelcama@gmail.com>, 2015-2016 # Abel Camacho <abelcama@gmail.com>, 2017 # Abel Camacho <abelcama@gmail.com>, 2015 +# Muhammad Adeel Khan <adeel@edx.org>, 2019 # Pedro Lonbide <plonbide@gmail.com>, 2015 # #-#-#-#-# mako-studio.po (edx-platform) #-#-#-#-# # edX community translations have been downloaded from Basque (Spain) (http://www.transifex.com/open-edx/edx-platform/language/eu_ES/) @@ -61,7 +62,7 @@ msgid "" msgstr "" "Project-Id-Version: 0.1a\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2019-04-22 10:50+0000\n" +"POT-Creation-Date: 2019-06-09 20:42+0000\n" "PO-Revision-Date: 2019-01-20 20:43+0000\n" "Last-Translator: Waheed Ahmed <waheed@edx.org>, 2019\n" "Language-Team: Basque (Spain) (https://www.transifex.com/open-edx/teams/6205/eu_ES/)\n" @@ -372,28 +373,6 @@ msgstr "Aukeratutako kopurua ez da baliagarria." msgid "No selected price or selected price is too low." msgstr "Ez da preziorik aukeratu edo aukeratutakoa oso txikia da." -#: common/djangoapps/django_comment_common/models.py -msgid "Administrator" -msgstr "Kudeatzailea" - -#: common/djangoapps/django_comment_common/models.py -msgid "Moderator" -msgstr "Moderatzailea" - -#: common/djangoapps/django_comment_common/models.py -msgid "Group Moderator" -msgstr "" - -#: common/djangoapps/django_comment_common/models.py -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Community TA" -msgstr "Eztabaida-laguntzailea" - -#: common/djangoapps/django_comment_common/models.py -#: lms/djangoapps/instructor/paidcourse_enrollment_report.py -msgid "Student" -msgstr "Ikaslea" - #: common/djangoapps/student/admin.py msgid "User profile" msgstr "Erabiltzaile-profila" @@ -451,8 +430,8 @@ msgid "A properly formatted e-mail is required" msgstr "Formatu egokia duen e-posta behar da" #: common/djangoapps/student/forms.py -msgid "Your legal name must be a minimum of two characters long" -msgstr "Zure legezko izenak gutxienez bi karaktere izan behar du" +msgid "Your legal name must be a minimum of one character long" +msgstr "" #: common/djangoapps/student/forms.py #, python-format @@ -835,7 +814,7 @@ msgstr "" #: common/djangoapps/student/views/management.py msgid "Unable to send reactivation email" -msgstr "Ezin da berraktibatzeko e-postarik bidali" +msgstr "" #: common/djangoapps/student/views/management.py msgid "Course id not specified" @@ -982,6 +961,12 @@ msgid "" "\"Institution\" login providers." msgstr "" +#: common/djangoapps/third_party_auth/models.py +msgid "" +"optional. If this provider is an Organization, this attribute can be used " +"reference users in that Organization" +msgstr "" + #: common/djangoapps/third_party_auth/models.py msgid "The Site that this provider configuration belongs to." msgstr "" @@ -2756,13 +2741,13 @@ msgstr "" msgid "" "Enter discussion categories in the following format: \"CategoryName\": " "{\"id\": \"i4x-InstitutionName-CourseNumber-course-CourseRun\"}. For " -"example, one discussion category may be \"Lydian Mode\": {\"id\": \"i4x-" -"UniversityX-MUS101-course-2015_T1\"}. The \"id\" value for each category " -"must be unique. In \"id\" values, the only special characters that are " -"supported are underscore, hyphen, and period. You can also specify a " +"example, one discussion category may be \"Lydian Mode\": {\"id\": " +"\"i4x-UniversityX-MUS101-course-2015_T1\"}. The \"id\" value for each " +"category must be unique. In \"id\" values, the only special characters that " +"are supported are underscore, hyphen, and period. You can also specify a " "category as the default for new posts in the Discussion page by setting its " -"\"default\" attribute to true. For example, \"Lydian Mode\": {\"id\": \"i4x-" -"UniversityX-MUS101-course-2015_T1\", \"default\": true}." +"\"default\" attribute to true. For example, \"Lydian Mode\": {\"id\": " +"\"i4x-UniversityX-MUS101-course-2015_T1\", \"default\": true}." msgstr "" #: common/lib/xmodule/xmodule/course_module.py @@ -4934,17 +4919,17 @@ msgstr "" msgid "Take free online courses at edX.org" msgstr "" -#. Translators: 'EdX', 'edX', and 'Open edX' are trademarks of 'edX Inc.'. +#. Translators: 'edX' and 'Open edX' are trademarks of 'edX Inc.'. #. Please do not translate any of these trademarks and company names. #: lms/djangoapps/branding/api.py #, python-brace-format msgid "" -"© {org_name}. All rights reserved except where noted. EdX, Open edX and " -"their respective logos are trademarks or registered trademarks of edX Inc." +"© {org_name}. All rights reserved except where noted. edX, Open edX and " +"their respective logos are registered trademarks of edX Inc." msgstr "" #. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# -#. Translators: 'Open edX' is a brand, please keep this untranslated. +#. Translators: 'Open edX' is a trademark, please keep this untranslated. #. See http://openedx.org for more information. #. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# #. Translators: 'Open edX' is a brand, please keep this untranslated. See @@ -6000,6 +5985,20 @@ msgstr "Zure ziurtagiria eskuragarri dago" msgid "To see course content, {sign_in_link} or {register_link}." msgstr "" +#: lms/djangoapps/courseware/views/views.py +#: openedx/features/course_experience/views/course_home_messages.py +#, python-brace-format +msgid "{sign_in_link} or {register_link}." +msgstr "" + +#: lms/djangoapps/courseware/views/views.py +#: openedx/features/course_experience/views/course_home_messages.py +#: lms/templates/header/navbar-not-authenticated.html +#: lms/templates/navigation/navbar-not-authenticated.html +#: themes/edx.org/lms/templates/header/navbar-not-authenticated.html +msgid "Sign in" +msgstr "Hasi saioa" + #: lms/djangoapps/courseware/views/views.py #, python-brace-format msgid "" @@ -6102,7 +6101,7 @@ msgstr "" #: lms/djangoapps/dashboard/git_import.py msgid "" "Non usable git url provided. Expecting something like: " -"git@github.com:mitocw/edx4edx_lite.git" +"git@github.com:edx/edx4edx_lite.git" msgstr "" #: lms/djangoapps/dashboard/git_import.py @@ -6285,49 +6284,49 @@ msgstr "rola" msgid "full_name" msgstr "full_name" -#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.html -#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.txt -#, python-format -msgid "%(comment_username)s replied to <b>%(thread_title)s</b>:" -msgstr "" - -#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.html -#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.txt -msgid "View discussion" -msgstr "" - -#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/subject.txt -#, python-format -msgid "Response to %(thread_title)s" -msgstr "" - -#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/discussion/django_comment_client/base/views.py msgid "Title can't be empty" msgstr "Izenburua ezin da hutsik egon" -#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/discussion/django_comment_client/base/views.py msgid "Body can't be empty" msgstr "Gorputza ezin da hutsik egon" -#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/discussion/django_comment_client/base/views.py msgid "Topic doesn't exist" msgstr "Ez dago gairik" -#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/discussion/django_comment_client/base/views.py msgid "Comment level too deep" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/discussion/django_comment_client/base/views.py msgid "" "Error uploading file. Please contact the site administrator. Thank you." msgstr "" "Errorea fitxategia igotzean. Mesedez, jarri harremanetan gunearen " "kudeatzailearekin. Eskerrik asko." -#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/discussion/django_comment_client/base/views.py msgid "Good" msgstr "Ona" +#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.html +#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.txt +#, python-format +msgid "%(comment_username)s replied to <b>%(thread_title)s</b>:" +msgstr "" + +#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.html +#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.txt +msgid "View discussion" +msgstr "" + +#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/subject.txt +#, python-format +msgid "Response to %(thread_title)s" +msgstr "" + #: lms/djangoapps/edxnotes/helpers.py msgid "EdxNotes Service is unavailable. Please try again in a few minutes." msgstr "" @@ -6442,6 +6441,11 @@ msgstr "{platform_name} -eko arduradunak" msgid "Course Staff" msgstr "Ikastaroko arduradunak" +#: lms/djangoapps/instructor/paidcourse_enrollment_report.py +#: openedx/core/djangoapps/django_comment_common/models.py +msgid "Student" +msgstr "Ikaslea" + #: lms/djangoapps/instructor/paidcourse_enrollment_report.py #: lms/templates/preview_menu.html #: lms/templates/instructor/instructor_dashboard_2/membership.html @@ -7234,11 +7238,6 @@ msgstr "" "Luzatutako entregatze-datak hasierako entregatze-data baino beranduagokoa " "izan behar du." -#: lms/djangoapps/instructor/views/tools.py -msgid "No due date extension is set for that student and unit." -msgstr "" -"Ez da luzatutako entregatze-datarik ezarri ikasle eta unitate honetarako." - #. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# #. Translators: This label appears above a field on the registration form #. meant to hold the user's full name. @@ -7685,6 +7684,10 @@ msgstr "" msgid "My Notes" msgstr "Nire oharrak" +#: lms/djangoapps/program_enrollments/models.py +msgid "One of user or external_user_key must not be null." +msgstr "" + #: lms/djangoapps/shoppingcart/models.py msgid "Order Payment Confirmation" msgstr "Ordainketa-aginduaren konfirmazioa" @@ -8698,8 +8701,8 @@ msgstr "Ez da profilik aurkitu erabiltzailearentzat" #: lms/djangoapps/verify_student/views.py #, python-brace-format -msgid "Name must be at least {min_length} characters long." -msgstr "Izenak gutxienez {min_length} karaktere izan behar du." +msgid "Name must be at least {min_length} character long." +msgstr "" #: lms/djangoapps/verify_student/views.py msgid "Image data is not valid." @@ -9128,8 +9131,9 @@ msgid "Hello %(full_name)s," msgstr "" #: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt #, python-format -msgid "Your %(platform_name)s ID verification has expired.\" " +msgid "Your %(platform_name)s ID verification has expired. " msgstr "" #: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html @@ -9180,11 +9184,6 @@ msgstr "" msgid "Hello %(full_name)s, " msgstr "" -#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt -#, python-format -msgid "Your %(platform_name)s ID verification has expired. " -msgstr "" - #: lms/templates/verify_student/edx_ace/verificationexpiry/email/subject.txt #, python-format msgid "Your %(platform_name)s Verification has Expired" @@ -9743,15 +9742,6 @@ msgstr "" msgid "The reason this user wants to access the API." msgstr "" -#: openedx/core/djangoapps/api_admin/models.py -#, python-brace-format -msgid "API access request from {company}" -msgstr "" - -#: openedx/core/djangoapps/api_admin/models.py -msgid "API access request" -msgstr "" - #: openedx/core/djangoapps/api_admin/widgets.py #, python-brace-format msgid "" @@ -10078,6 +10068,23 @@ msgstr "" msgid "This is a test error" msgstr "" +#: openedx/core/djangoapps/django_comment_common/models.py +msgid "Administrator" +msgstr "Kudeatzailea" + +#: openedx/core/djangoapps/django_comment_common/models.py +msgid "Moderator" +msgstr "Moderatzailea" + +#: openedx/core/djangoapps/django_comment_common/models.py +msgid "Group Moderator" +msgstr "" + +#: openedx/core/djangoapps/django_comment_common/models.py +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Community TA" +msgstr "Eztabaida-laguntzailea" + #: openedx/core/djangoapps/embargo/forms.py #: openedx/core/djangoapps/verified_track_content/forms.py msgid "COURSE NOT FOUND. Please check that the course ID is valid." @@ -10636,8 +10643,11 @@ msgid "Specialty" msgstr "" #: openedx/core/djangoapps/user_api/accounts/utils.py +#, python-brace-format msgid "" -" Make sure that you are providing a valid username or a URL that contains \"" +"Make sure that you are providing a valid username or a URL that contains " +"\"{url_stub}\". To remove the link from your edX profile, leave this field " +"blank." msgstr "" #: openedx/core/djangoapps/user_api/accounts/views.py @@ -10779,11 +10789,11 @@ msgstr "" #: openedx/core/djangoapps/user_api/api.py #, python-brace-format msgid "" -"By creating an account with {platform_name}, you agree to " -"abide by our {platform_name} " +"By creating an account, you agree to the " "{terms_of_service_link_start}{terms_of_service}{terms_of_service_link_end}" -" and agree to our {privacy_policy_link_start}Privacy " -"Policy{privacy_policy_link_end}." +" and you acknowledge that {platform_name} and each Member " +"process your personal data in accordance with the " +"{privacy_policy_link_start}Privacy Policy{privacy_policy_link_end}." msgstr "" #. Translators: "Terms of service" is a legal document users must agree to @@ -11216,18 +11226,18 @@ msgstr "Eguneraketak" msgid "Reviews" msgstr "Berrikusketak" +#: openedx/features/course_experience/utils.py +#, no-python-format, python-brace-format +msgid "" +"{banner_open}{percentage}% off your first upgrade.{span_close} Discount " +"automatically applied.{div_close}" +msgstr "" + #: openedx/features/course_experience/views/course_home_messages.py #, python-brace-format msgid "{sign_in_link} or {register_link} and then enroll in this course." msgstr "" -#: openedx/features/course_experience/views/course_home_messages.py -#: lms/templates/header/navbar-not-authenticated.html -#: lms/templates/navigation/navbar-not-authenticated.html -#: themes/edx.org/lms/templates/header/navbar-not-authenticated.html -msgid "Sign in" -msgstr "Hasi saioa" - #: openedx/features/course_experience/views/course_home_messages.py #, python-brace-format msgid "Welcome to {course_display_name}" @@ -11267,6 +11277,29 @@ msgstr "" msgid "Set goal to: {goal_text}" msgstr "" +#: openedx/features/discounts/admin.py +msgid "" +"These define the context to disable lms-controlled discounts on. If no " +"values are set, then the configuration applies globally. If a single value " +"is set, then the configuration applies to all courses within that context. " +"At most one value can be set at a time.<br>If multiple contexts apply to a " +"course (for example, if configuration is specified for the course " +"specifically, and for the org that the course is in, then the more specific " +"context overrides the more general context." +msgstr "" + +#: openedx/features/discounts/admin.py +msgid "" +"If any of these values is left empty or \"Unknown\", then their value at " +"runtime will be retrieved from the next most specific context that applies. " +"For example, if \"Disabled\" is left as \"Unknown\" in the course context, " +"then that course will be Disabled only if the org that it is in is Disabled." +msgstr "" + +#: openedx/features/discounts/models.py +msgid "Disabled" +msgstr "" + #: openedx/features/enterprise_support/api.py #, python-brace-format msgid "Enrollment in {course_title} was not complete." @@ -11376,7 +11409,7 @@ msgstr "" #: cms/djangoapps/contentstore/git_export_utils.py msgid "" "Non writable git url provided. Expecting something like: " -"git@github.com:mitocw/edx4edx_lite.git" +"git@github.com:edx/edx4edx_lite.git" msgstr "" #: cms/djangoapps/contentstore/git_export_utils.py @@ -12202,6 +12235,15 @@ msgstr "Berrabiarazi" msgid "Legal" msgstr "Legala" +#. Translators: 'edX' and 'Open edX' are trademarks of 'edX Inc.'. Please do +#. not translate any of these trademarks and company names. +#: cms/templates/widgets/footer.html +#: themes/red-theme/lms/templates/footer.html +msgid "" +"edX, Open edX, and the edX and Open edX logos are registered trademarks of " +"{link_start}edX Inc.{link_end}" +msgstr "" + #: cms/templates/widgets/header.html lms/templates/header/header.html #: lms/templates/navigation/navigation.html #: lms/templates/widgets/footer-language-selector.html @@ -12590,6 +12632,10 @@ msgstr "Araztu:" msgid "External Authentication failed" msgstr "Kanpoko autentifikazioak kale egin du" +#: lms/templates/footer.html +msgid "organization logo" +msgstr "" + #: lms/templates/forgot_password_modal.html msgid "" "Please enter your e-mail address below, and we will e-mail instructions for " @@ -12617,8 +12663,7 @@ msgstr "Zure e-posta helbidea" #: lms/templates/forgot_password_modal.html lms/templates/login.html msgid "This is the e-mail address you used to register with {platform}" msgstr "" -"Hau da {platform_name} plataforman erregistratzeko erabili duzun e-posta " -"helbidea" +"Hau da {platform} plataforman erregistratzeko erabili duzun e-posta helbidea" #: lms/templates/forgot_password_modal.html msgid "Reset My Password" @@ -12781,17 +12826,15 @@ msgstr "" msgid "Search for a course" msgstr "Bilatu ikastaro bat" -#. Translators: 'Open edX' is a registered trademark, please keep this -#. untranslated. See http://open.edx.org for more information. -#: lms/templates/index_overlay.html -msgid "Welcome to the Open edX{registered_trademark} platform!" -msgstr "" +#: lms/templates/index_overlay.html lms/templates/register-sidebar.html +msgid "Welcome to {platform_name}" +msgstr "Ongi etorri {platform_name}-ra" #. Translators: 'Open edX' is a registered trademark, please keep this #. untranslated. See http://open.edx.org for more information. #: lms/templates/index_overlay.html -msgid "It works! This is the default homepage for this Open edX instance." -msgstr "Badabil! Hau da berezko hasiera-orria Open edX instantziarako." +msgid "It works! Powered by Open edX{registered_trademark}" +msgstr "" #: lms/templates/invalid_email_key.html msgid "Invalid email change key" @@ -13078,6 +13121,10 @@ msgstr "Gorde erantzuna" msgid "Reset your answer" msgstr "" +#: lms/templates/problem.html +msgid "Answers are displayed within the problem" +msgstr "" + #: lms/templates/problem_notifications.html msgid "Next Hint" msgstr "" @@ -13278,10 +13325,6 @@ msgstr "Ba al zaude erregistratuta?" msgid "Log in" msgstr "Hasi saioa" -#: lms/templates/register-sidebar.html -msgid "Welcome to {platform_name}" -msgstr "Ongi etorri {platform_name}-ra" - #: lms/templates/register-sidebar.html msgid "" "Registering with {platform_name} gives you access to all of our current and " @@ -13635,11 +13678,6 @@ msgstr "" msgid "Delete course from site" msgstr "Ezabatu ikastaroa gunetik" -#. Translators: A version number appears after this string -#: lms/templates/sysadmin_dashboard.html -msgid "Platform Version" -msgstr "Plataformaren bertsioa" - #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Page {current_page} of {total_pages}" msgstr "{current_page} orri {total_pages}-tik" @@ -14895,6 +14933,20 @@ msgstr "" msgid "Please wait while we retrieve your order details." msgstr "" +#: lms/templates/course_modes/_upgrade_button.html +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/_upgrade_button.html +#: themes/edx.org/lms/templates/course_modes/choose.html +msgid "Pursue the Verified Track" +msgstr "" + +#: lms/templates/course_modes/_upgrade_button.html +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/_upgrade_button.html +#: themes/edx.org/lms/templates/course_modes/choose.html +msgid "Pursue a Verified Certificate" +msgstr "Lortu egiaztatutako ziurtagiria" + #: lms/templates/course_modes/choose.html #: themes/edx.org/lms/templates/course_modes/choose.html msgid "Enroll In {course_name} | Choose Your Track" @@ -14980,16 +15032,6 @@ msgstr "" " {b_start}Partekatu modu errazean:{b_end} Gehitu ziurtagiria zure CVra, edo " "argitaratu zuzenean LinkedIn-en" -#: lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -msgid "Pursue a Verified Certificate" -msgstr "Lortu egiaztatutako ziurtagiria" - -#: lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -msgid "Pursue the Verified Track" -msgstr "" - #: lms/templates/course_modes/choose.html #: themes/edx.org/lms/templates/course_modes/choose.html msgid "" @@ -15098,6 +15140,10 @@ msgstr "" msgid "An error occurred. Please try again later." msgstr "Errorea gertatu da. Mesedez, saiatu berriz beranduago." +#: lms/templates/courseware/course_about.html +msgid "An error has occurred. Please ensure that you are logged in to enroll." +msgstr "" + #: lms/templates/courseware/course_about.html msgid "You are enrolled in this course" msgstr "Ikastaro honetan matrikulatuta zaude" @@ -15240,7 +15286,6 @@ msgstr "Findu zure bilaketa" #: lms/templates/courseware/courseware-chromeless.html #: lms/templates/courseware/courseware.html #: openedx/features/course_bookmarks/templates/course_bookmarks/course-bookmarks.html -#: openedx/features/learner_analytics/templates/learner_analytics/dashboard.html msgid "{course_number} Courseware" msgstr "{course_number} Ikasgunea" @@ -15470,8 +15515,8 @@ msgid "View Grading in studio" msgstr "Ikusi ebaluazioa studion" #: lms/templates/courseware/progress.html -msgid "Course Progress for Student '{username}' ({email})" -msgstr " '{username}' ({email}) ikaslearen ikastaroaren aurrerapena " +msgid "Course Progress for '{username}' ({email})" +msgstr "" #: lms/templates/courseware/progress.html msgid "View Certificate" @@ -17377,10 +17422,8 @@ msgstr "Jaisteko eskuragarri dauden txostenak" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The reports listed below are available for download. A link to every report " -"remains available on this page, identified by the UTC date and time of " -"generation. Reports are not deleted, so you will always be able to access " -"previously generated reports from this page." +"The reports listed below are available for download, identified by UTC date " +"and time of generation." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -17393,9 +17436,12 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"{strong_start}Note{strong_end}: To keep student data secure, you cannot save" -" or email these links for direct access. Copies of links expire within 5 " -"minutes." +"{strong_start}Note{strong_end}: {ul_start}{li_start}To keep student data " +"secure, you cannot save or email these links for direct access. Copies of " +"links expire within 5 minutes.{li_end}{li_start}Report files are deleted 90 " +"days after generation. If you will need access to old reports, download and " +"store the files, in accordance with your institution's data security " +"policies.{li_end}{ul_end}" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html @@ -17778,10 +17824,10 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "" -"In this section, you have the ability to grant extensions on specific units " -"to individual students. Please note that the latest date is always taken; " -"you cannot use this tool to make an assignment due earlier for a particular " -"student." +"In this section, you have the ability to grant extensions on specific " +"subsections to individual students. Please note that the latest date is " +"always taken; you cannot use this tool to make an assignment due earlier for" +" a particular student." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html @@ -17796,7 +17842,7 @@ msgid "Student Email or Username" msgstr "Ikaslearen e-posta edo erabiltzaile-izena" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -msgid "Choose the graded unit:" +msgid "Choose the graded subsection:" msgstr "" #. Translators: "format_string" is the string MM/DD/YYYY HH:MM, as that is the @@ -17807,6 +17853,10 @@ msgid "" "{format_string})." msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Reason for extension" +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Change due date for student" msgstr "Aldatu entregatze-data ikasleari" @@ -17817,14 +17867,14 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "" -"Here you can see what extensions have been granted on particular units or " -"for a particular student." +"Here you can see what extensions have been granted on particular subsection " +"or for a particular student." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "" -"Choose a graded unit and click the button to obtain a list of all students " -"who have extensions for the given unit." +"Choose a graded subsection and click the button to obtain a list of all " +"students who have extensions for the given subsection." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html @@ -17846,8 +17896,12 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "" "Resetting a problem's due date rescinds a due date extension for a student " -"on a particular unit. This will revert the due date for the student back to " -"the problem's original due date." +"on a particular subsection. This will revert the due date for the student " +"back to the problem's original due date." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Reason for reset" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html @@ -19175,8 +19229,8 @@ msgid "" "You're already enrolled for this course. Visit your " "{link_start}dashboard{link_end} to see the course." msgstr "" -"Dagoeneko matrikulatuta zaude ikastaro honetan. Hoan zure {link_start" -"}aginte-panelera{link_end} ikastaroa ikusteko." +"Dagoeneko matrikulatuta zaude ikastaro honetan. Hoan zure " +"{link_start}aginte-panelera{link_end} ikastaroa ikusteko." #: lms/templates/shoppingcart/registration_code_receipt.html msgid "The course you are enrolling for is full." @@ -19890,10 +19944,6 @@ msgstr "" msgid "Explore journals and courses" msgstr "" -#: openedx/features/learner_analytics/templates/learner_analytics/dashboard.html -msgid "My Stats (Beta)" -msgstr "" - #. Translators: this section lists all the third-party authentication #. providers #. (for example, Google and LinkedIn) the user can link with or unlink from @@ -19991,7 +20041,7 @@ msgid "© 2012–{year} edX Inc. " msgstr "" #: themes/edx.org/lms/templates/footer.html -msgid "EdX, Open edX, and MicroMasters are registered trademarks of edX Inc. " +msgid "edX, Open edX, and MicroMasters are registered trademarks of edX Inc. " msgstr "" #: themes/edx.org/lms/templates/certificates/_about-accomplishments.html @@ -20057,7 +20107,7 @@ msgstr "" #: themes/edx.org/lms/templates/certificates/_accomplishment-footer.html msgid "" "All rights reserved except where noted. edX, Open edX and the edX and Open " -"edX logos are registered trademarks or trademarks of edX Inc." +"edX logos are registered trademarks of edX Inc." msgstr "" #: themes/edx.org/lms/templates/course_modes/choose.html @@ -20080,14 +20130,6 @@ msgstr "Bilatu ikastaroak" msgid "Schools & Partners" msgstr "Eskolak eta partaideak" -#. Translators: 'EdX', 'edX', and 'Open edX' are trademarks of 'edX Inc.'. -#. Please do not translate any of these trademarks and company names. -#: themes/red-theme/lms/templates/footer.html -msgid "" -"EdX, Open edX, and the edX and Open edX logos are registered trademarks or " -"trademarks of {link_start}edX Inc.{link_end}" -msgstr "" - #: themes/red-theme/lms/templates/footer.html msgid "" "{tos_link_start}Terms of Service{tos_link_end} and {honor_link_start}Honor " @@ -23072,7 +23114,7 @@ msgstr "" #: cms/templates/emails/activation_email_subject.txt msgid "Your account for {studio_name}" -msgstr "Zure kontua {studio_name}-rako" +msgstr "" #: cms/templates/emails/course_creator_admin_subject.txt msgid "{email} has requested {studio_name} course creator privileges on edge" @@ -23213,16 +23255,6 @@ msgstr "" msgid "LMS" msgstr "" -#. Translators: 'EdX', 'edX', 'Studio', and 'Open edX' are trademarks of 'edX -#. Inc.'. Please do not translate any of these trademarks and company names. -#: cms/templates/widgets/footer.html -msgid "" -"EdX, Open edX, Studio, and the edX and Open edX logos are registered " -"trademarks or trademarks of {link_start}edX Inc.{link_end}" -msgstr "" -"EdX, Open edX, Studio, eta edX eta Open edX logoak marka erregistratuak dira" -" edo {link_start}edX Inc.{link_end}-ren markak" - #: cms/templates/widgets/header.html msgid "Current Course:" msgstr "Oraingo ikastaroa:" diff --git a/conf/locale/eu_ES/LC_MESSAGES/djangojs.mo b/conf/locale/eu_ES/LC_MESSAGES/djangojs.mo index e24def9b13ff1313ab4e6af1cce329a9b6ce4866..a052b5251fb886713b15fe2a0126e458d18b86de 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 d95a176897754ce40a264850417b310d24fd4f80..aaab963054103cd955e28d76d2259856d95b239b 100644 --- a/conf/locale/eu_ES/LC_MESSAGES/djangojs.po +++ b/conf/locale/eu_ES/LC_MESSAGES/djangojs.po @@ -50,7 +50,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2019-04-22 10:49+0000\n" +"POT-Creation-Date: 2019-06-09 20:42+0000\n" "PO-Revision-Date: 2019-02-10 20:45+0000\n" "Last-Translator: edx_transifex_bot <i18n-working-group+edx-transifex-bot@edx.org>\n" "Language-Team: Basque (Spain) (http://www.transifex.com/open-edx/edx-platform/language/eu_ES/)\n" @@ -7303,6 +7303,10 @@ msgstr "Egiaztatu orain!" msgid "Mark Exam As Completed" msgstr "" +#: lms/templates/courseware/proctored-exam-status.underscore +msgid "You are taking \"{exam_link}\" as {exam_type}. " +msgstr "" + #: lms/templates/courseware/proctored-exam-status.underscore msgid "a timed exam" msgstr "" @@ -8062,7 +8066,8 @@ msgid "Register with Institution/Campus Credentials" msgstr "" #: lms/templates/student_account/institution_register.underscore -msgid "Register through edX" +#: lms/templates/student_account/register.underscore +msgid "Create an Account" msgstr "" #: lms/templates/student_account/login.underscore @@ -8169,10 +8174,6 @@ msgstr "" msgid "or create a new one here" msgstr "" -#: lms/templates/student_account/register.underscore -msgid "Create an Account" -msgstr "" - #: lms/templates/student_account/register.underscore msgid "Support education research by providing additional information" msgstr "" diff --git a/conf/locale/fr/LC_MESSAGES/django.mo b/conf/locale/fr/LC_MESSAGES/django.mo index 4d6a41f50d17693155df5921902cce25976f5972..fa4a9ba2ad149872c44547ea173c3f38f3a84c08 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/djangojs.mo b/conf/locale/fr/LC_MESSAGES/djangojs.mo index 49074a3e269367d114c3274ea3b76a2a67bfd414..3f90109c4b6f91bceef1e1c4abfd53060fc05d42 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 bd615f0eac5af689e12ee9697a2738deaf382df2..b01aaf9e0cd36f8a381a940fea211d4e888f5f73 100644 --- a/conf/locale/fr/LC_MESSAGES/djangojs.po +++ b/conf/locale/fr/LC_MESSAGES/djangojs.po @@ -106,6 +106,7 @@ # Pierre-Emmanuel Colas <pecolas44@gmail.com>, 2015 # Pierre Roland Bonvin <pierre@bonvin.name>, 2016 # rafcha <raphael.chay@gmail.com>, 2014-2016,2019 +# Régis Behmo <transifex.stuff@behmo.com>, 2019 # Richard Moch <richard.moch@gmail.com>, 2015-2016 # Robert R <rraposa@edx.org>, 2019 # SALHI Aissam <ais.salhy@gmail.com>, 2014 @@ -138,7 +139,7 @@ # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. # # Translators: -# ASSYASS Mahmoud <mahmoud.assyass@edu.uiz.ac.ma>, 2015 +# ASSYASS Mahmoud <mahmoud.assyass@gmail.com>, 2015 # Aurélien Croq <sysadmin@themoocagency.com>, 2017 # bekairi tahar <tahar48omar@gmail.com>, 2014 # natg94 <bgenson@voo.be>, 2015 @@ -197,7 +198,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2019-04-22 10:49+0000\n" +"POT-Creation-Date: 2019-06-09 20:42+0000\n" "PO-Revision-Date: 2019-04-12 15:54+0000\n" "Last-Translator: Margie Rosero <margie.rosero@fun-mooc.fr>\n" "Language-Team: French (http://www.transifex.com/open-edx/edx-platform/language/fr/)\n" @@ -6211,8 +6212,8 @@ msgid "" "problematic components and try again." msgstr "" "L'export XML de votre bibliothèque a échoué sans qu'il soit possible de " -"déterminer précieusement le problème, veuillez examiner cette bibliothèque " -"et corriger le composant fautif puis réessayer." +"déterminer précisément le problème, veuillez examiner cette bibliothèque et " +"corriger le composant fautif puis réessayer." #: cms/static/js/views/export.js msgid "Take me to the main course page" @@ -7941,6 +7942,10 @@ msgstr "Vérifier Maintenant" msgid "Mark Exam As Completed" msgstr "Marquer l'examen comme complété" +#: lms/templates/courseware/proctored-exam-status.underscore +msgid "You are taking \"{exam_link}\" as {exam_type}. " +msgstr "" + #: lms/templates/courseware/proctored-exam-status.underscore msgid "a timed exam" msgstr "" @@ -8743,8 +8748,9 @@ msgid "Register with Institution/Campus Credentials" msgstr "S'inscrire avec votre Institution/Campus" #: lms/templates/student_account/institution_register.underscore -msgid "Register through edX" -msgstr "S'inscrire avec edX" +#: lms/templates/student_account/register.underscore +msgid "Create an Account" +msgstr "Créer un compte" #: lms/templates/student_account/login.underscore msgid "First time here?" @@ -8854,10 +8860,6 @@ msgstr "Créer un compte avec %(providerName)s." msgid "or create a new one here" msgstr "ou en créer un nouveau ici" -#: lms/templates/student_account/register.underscore -msgid "Create an Account" -msgstr "Créer un compte" - #: lms/templates/student_account/register.underscore msgid "Support education research by providing additional information" msgstr "" diff --git a/conf/locale/he/LC_MESSAGES/django.mo b/conf/locale/he/LC_MESSAGES/django.mo index 948965e79fdf703485a0e8fa3010df50dc3b2a1c..29b48093b17851b22fe34831d12842964455e788 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/djangojs.mo b/conf/locale/he/LC_MESSAGES/djangojs.mo index 4b58f357546fa29e818d3b993a2dbc5419c1136d..f4beaae61d666eff355a2f79368d3fa8308644a4 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/hi/LC_MESSAGES/django.mo b/conf/locale/hi/LC_MESSAGES/django.mo index 5c977af016654f7518c7e8f32f99fd9e7459c037..672a593ea76e95f5feeb2daddb1c820fbd9f0fd6 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/djangojs.mo b/conf/locale/hi/LC_MESSAGES/djangojs.mo index d432f2e279d8038738ba2b20789dcbec12b6fa86..0ee2bf3c9d5448c8b0298f02fddcc2a81cc7bd4f 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/id/LC_MESSAGES/django.mo b/conf/locale/id/LC_MESSAGES/django.mo index 7d18d4469485eef046569e3c788c75ef96b79fe7..4011fd48b1cb2cb18d369712763e4130d04c3d26 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 834fc92f171e5584d8b66321d45a8374bf879cf3..0f4fced3873f7e5596e4f14d5f678fc3a9045f0b 100644 --- a/conf/locale/id/LC_MESSAGES/django.po +++ b/conf/locale/id/LC_MESSAGES/django.po @@ -11,6 +11,7 @@ # fizdoonk, 2013 # hafizhuddin amin, 2013 # ichs <ichsansp@outlook.com>, 2014 +# Muhammad Adeel Khan <adeel@edx.org>, 2019 # Muhammad Herdiansyah <herdiansyah@openmailbox.org>, 2016 # Rizky Ariestiyansyah <ariestiyansyah.rizky@gmail.com>, 2015,2018 # Sari Rahmawati <kusuma.rahmawati@gmail.com>, 2018 @@ -36,9 +37,10 @@ # Al Firdaus, 2014 # Anggun Dewara, 2014 # Anggun Dewara, 2014 -# Aprisa Chrysantina <aprisa.chrysantina@gmail.com>, 2018 +# Aprisa Chrysantina <aprisa.chrysantina@gmail.com>, 2018-2019 # Ahmad Sofyan <asofyan@niskala.net>, 2013 # cholif yulian <cholifyulian123@gmail.com>, 2015 +# Chris Pcplus <chrispcplus@yahoo.com>, 2019 # Dede Hamzah <dehamzah@gmail.com>, 2017 # dedy prasetya, 2015 # dedy prasetya, 2015 @@ -50,6 +52,7 @@ # Mardiyanto Saahi, 2016 # masrosid2 <masrosid@live.com>, 2014 # masrosid2 <masrosid@live.com>, 2014 +# Muhammad Adeel Khan <adeel@edx.org>, 2019 # Muhammad Herdiansyah <herdiansyah@openmailbox.org>, 2016 # Nanang Riyadi, 2015 # Nanang Riyadi, 2015 @@ -64,6 +67,7 @@ # Translators: # Ahmad Sofyan <asofyan@niskala.net>, 2013 # fizdoonk, 2013 +# Muhammad Adeel Khan <adeel@edx.org>, 2019 # Prita Ika Dewi <prita.tenda@gmail.com>, 2014 # Rizky Ariestiyansyah <ariestiyansyah.rizky@gmail.com>, 2014 # #-#-#-#-# wiki.po (edx-platform) #-#-#-#-# @@ -89,7 +93,7 @@ msgid "" msgstr "" "Project-Id-Version: 0.1a\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2019-04-22 10:50+0000\n" +"POT-Creation-Date: 2019-06-09 20:42+0000\n" "PO-Revision-Date: 2019-01-20 20:43+0000\n" "Last-Translator: Waheed Ahmed <waheed@edx.org>, 2019\n" "Language-Team: Indonesian (https://www.transifex.com/open-edx/teams/6205/id/)\n" @@ -154,19 +158,19 @@ msgstr "Kosong" #: common/lib/xmodule/xmodule/video_module/video_handlers.py #, python-brace-format msgid "The following parameters are required: {missing}." -msgstr "" +msgstr "Parameter berikut ini dibutuhkan: {missing}" #: cms/djangoapps/contentstore/views/transcript_settings.py #: common/lib/xmodule/xmodule/video_module/video_handlers.py #, python-brace-format msgid "A transcript with the \"{language_code}\" language code already exists." -msgstr "" +msgstr "Salinan dengan kode bahasa \"{language_code}\" sudah tersedia." #: cms/djangoapps/contentstore/views/transcript_settings.py #: cms/djangoapps/contentstore/views/transcripts_ajax.py #: common/lib/xmodule/xmodule/video_module/video_handlers.py msgid "A transcript file is required." -msgstr "" +msgstr "File transkrip dibutuhkan." #: cms/djangoapps/contentstore/views/transcript_settings.py #: cms/djangoapps/contentstore/views/transcripts_ajax.py @@ -175,6 +179,7 @@ msgid "" "There is a problem with this transcript file. Try to upload a different " "file." msgstr "" +"Terjadi masalah dengan salinan berkas ini. Coba untuk unggah berkas berbeda." #: cms/djangoapps/contentstore/views/videos.py #: lms/djangoapps/class_dashboard/dashboard_data.py @@ -208,24 +213,23 @@ msgstr "Ditunda" #: cms/templates/admin/base_site.html lms/templates/admin/base_site.html msgid "Django site admin" -msgstr "" +msgstr "Site admin Django" #: cms/templates/admin/base_site.html lms/templates/admin/base_site.html msgid "Django administration" -msgstr "" +msgstr "Administrasi Django" #: cms/templates/admin/base_site.html lms/templates/admin/base_site.html msgid "View site" -msgstr "" +msgstr "Lihat situs" #: cms/templates/admin/base_site.html lms/templates/admin/base_site.html msgid "Documentation" -msgstr "" +msgstr "Dokumentasi" #: cms/templates/admin/base_site.html lms/templates/admin/base_site.html -#: wiki/templates/wiki/base.html msgid "Log out" -msgstr "" +msgstr "Log out" #: common/djangoapps/course_modes/admin.py #: common/djangoapps/course_modes/models.py @@ -360,6 +364,8 @@ msgid "" "The {course_mode} course mode has a minimum price of {min_price}. You must " "set a price greater than or equal to {min_price}." msgstr "" +"Mode kursus {course_mode} memiliki harga minimum {min_price}. Anda harus " +"memberikan harga lebih tinggi atau sama dengan {min_price}." #. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# #. Translators: This will look like '$50', where {currency_symbol} is a symbol @@ -410,35 +416,13 @@ msgstr "Jumlah yang tidak valid dipilih." msgid "No selected price or selected price is too low." msgstr "Harga belum dipilih atau harga pilihan terlalu rendah." -#: common/djangoapps/django_comment_common/models.py -msgid "Administrator" -msgstr "Administrator" - -#: common/djangoapps/django_comment_common/models.py -msgid "Moderator" -msgstr "Moderator" - -#: common/djangoapps/django_comment_common/models.py -msgid "Group Moderator" -msgstr "Moderator Grup" - -#: common/djangoapps/django_comment_common/models.py -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Community TA" -msgstr "Komunitas Asisten-Pengajar" - -#: common/djangoapps/django_comment_common/models.py -#: lms/djangoapps/instructor/paidcourse_enrollment_report.py -msgid "Student" -msgstr "Siswa" - #: common/djangoapps/student/admin.py msgid "User profile" msgstr "Profil pengguna" #: common/djangoapps/student/admin.py msgid "Account recovery" -msgstr "" +msgstr "Pemulihan Akun" #. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# #. Translators: This label appears above a field on the login form @@ -460,12 +444,13 @@ msgid "" "Raw passwords are not stored, so there is no way to see this user's " "password." msgstr "" +"Sandi asli tidak disimpan, sehingga sandi pengguna ini tidak dapat dilihat." #: common/djangoapps/student/admin.py #, python-format msgid "%(count)d student account was unlocked." msgid_plural "%(count)d student accounts were unlocked." -msgstr[0] "" +msgstr[0] "%(count)d akun siswa sudah tidak terkunci." #: common/djangoapps/student/forms.py msgid "" @@ -492,8 +477,8 @@ msgid "A properly formatted e-mail is required" msgstr "E-mail dengan format yang benar dibutuhkan" #: common/djangoapps/student/forms.py -msgid "Your legal name must be a minimum of two characters long" -msgstr "Nama legal Anda harus mempunyai minimal dua karakter" +msgid "Your legal name must be a minimum of one character long" +msgstr "" #: common/djangoapps/student/forms.py #, python-format @@ -809,11 +794,11 @@ msgstr "Nilai atribut pengguna ini" #: common/djangoapps/student/models.py msgid "Secondary email address" -msgstr "" +msgstr "Alamat email sekunder" #: common/djangoapps/student/models.py msgid "Secondary email address to recover linked account." -msgstr "" +msgstr "Alamat email sekunder digunakan untuk memulihkan akun yang terhubung" #: common/djangoapps/student/views/dashboard.py msgid " and " @@ -858,6 +843,9 @@ msgid "" "link from {platform_name}. If you need help, contact " "{link_start}{platform_name} Support{link_end}." msgstr "" +"Periksa kotak masuk {email_start} {email} {email_end} untuk melihat link " +"aktivasi akun dari {platform_name}. Jika Anda membutuhkan bantuan, hubungi " +"{link_start} {platform_name} Dukungan {link_end}." #: common/djangoapps/student/views/dashboard.py #, python-brace-format @@ -865,12 +853,16 @@ msgid "" "Add a recovery email to retain access when single-sign on is not available. " "Go to {link_start}your Account Settings{link_end}." msgstr "" +"Tambahkan email pemulihan untuk mengembalikan akses ketika opsi single-sign " +"on tidak tersedia. Atur di {link_start}Pengaturan Akun Anda{link_end}." #: common/djangoapps/student/views/dashboard.py msgid "" "Recovery email is not activated yet. Kindly visit your email and follow the " "instructions to activate it." msgstr "" +"Email pemulihan belum diaktifkan. Silakan buka email Anda dan ikuti petunjuk" +" untuk mengaktifkannya." #: common/djangoapps/student/views/dashboard.py #, python-brace-format @@ -977,11 +969,11 @@ msgstr "" #: common/djangoapps/student/views/management.py msgid "Some error occured during password change. Please try again" -msgstr "" +msgstr "Terjadi kesalahan saat mengubah sandi. Silakan coba kembali." #: common/djangoapps/student/views/management.py msgid "No email address provided." -msgstr "" +msgstr "Email belum dimasukkan." #: common/djangoapps/student/views/management.py msgid "Password reset unsuccessful" @@ -989,7 +981,7 @@ msgstr "Reset Kata sandi tidak berhasil" #: common/djangoapps/student/views/management.py msgid "Error in resetting your password." -msgstr "" +msgstr "Gagal mereset password anda." #: common/djangoapps/student/views/management.py msgid "Error in resetting your password. Please try again." @@ -1001,6 +993,8 @@ msgid "" "{html_start}Password Creation Complete{html_end}Your password has been " "created. {bold_start}{email}{bold_end} is now your primary login email." msgstr "" +"{html_start}Sandi Anda telah Dibuat{html_end}Sandi Anda telah dibuat. " +"{bold_start}{email}{bold_end} adalah email login utama Anda." #: common/djangoapps/student/views/management.py msgid "Valid e-mail address required." @@ -1012,7 +1006,7 @@ msgstr "Email lama sama dengan email baru." #: common/djangoapps/student/views/management.py msgid "Cannot be same as your sign in email address." -msgstr "" +msgstr "Tidak boleh sama dengan alamat email sign in Anda." #: common/djangoapps/student/views/management.py msgid "Unable to send email activation link. Please try again later." @@ -1030,6 +1024,7 @@ msgstr "Hapus konfigurasi yang dipilih" #: common/djangoapps/third_party_auth/middleware.py msgid "Unable to connect with the external provider, please try again" msgstr "" +"Tidak dapat terhubung dengan provider eksternal, silahkan coba kembali" #: common/djangoapps/third_party_auth/models.py msgid "Authentication with {} is currently unavailable." @@ -1043,6 +1038,14 @@ msgstr "" "Penyedia sekunder ditampilkan tidak terlalu menonjol, terdapat dalam daftar " "terpisah penyedia login \"Institusi\"." +#: common/djangoapps/third_party_auth/models.py +msgid "" +"optional. If this provider is an Organization, this attribute can be used " +"reference users in that Organization" +msgstr "" +"opsional. Jika penyedia ini adalah Organisasi, atribut ini dapat digunakan " +"untuk merujuk kepada pengguna di Organisasi tersebut" + #: common/djangoapps/third_party_auth/models.py msgid "The Site that this provider configuration belongs to." msgstr "Situs di mana konfigurasi penyedia layanan ini berada." @@ -1083,6 +1086,8 @@ msgid "" "If this option is selected, users will be sent a welcome email upon " "registration." msgstr "" +"Jika pilihan ini dipilih, pengguna akan dikirimi email selamat datang saat " +"pendaftaran." #: common/djangoapps/third_party_auth/models.py msgid "" @@ -1523,21 +1528,23 @@ msgid "" "Your password must contain {length_instruction}, including " "{complexity_instructions}." msgstr "" +"Sandi Anda harus berisi {length_instruction}, termasuk " +"{complexity_instructions}." #: common/djangoapps/util/password_policy_validators.py #, python-brace-format msgid "Your password must contain {length_instruction}." -msgstr "" +msgstr "Sandi Anda harus berisi {length_instruction}." #: common/djangoapps/util/password_policy_validators.py msgid "Invalid password." -msgstr "" +msgstr "Kata Sandi Tidak Valid." #: common/djangoapps/util/password_policy_validators.py #, python-format msgid "at least %(min_length)d character" msgid_plural "at least %(min_length)d characters" -msgstr[0] "" +msgstr[0] "setidaknya %(min_length)d karakter" #: common/djangoapps/util/password_policy_validators.py #, python-format @@ -1548,6 +1555,8 @@ msgid_plural "" "This password is too long. It must contain no more than %(max_length)d " "characters." msgstr[0] "" +"Sandi ini terlalu panjang. Sandi harus berisi tidak lebih dari " +"%(max_length)d karakter." #: common/djangoapps/util/password_policy_validators.py #, python-format @@ -1555,82 +1564,83 @@ msgid "Your password must contain no more than %(max_length)d character." msgid_plural "" "Your password must contain no more than %(max_length)d characters." msgstr[0] "" +"Sandi Anda tidak boleh mengandung lebih dari %(max_length)d karakter." #: common/djangoapps/util/password_policy_validators.py #, python-format msgid "This password must contain at least %(min_alphabetic)d letter." msgid_plural "This password must contain at least %(min_alphabetic)d letters." -msgstr[0] "" +msgstr[0] "Sandi harus mengandung setidaknya %(min_alphabetic)dhuruf ." #: common/djangoapps/util/password_policy_validators.py #, python-format msgid "Your password must contain at least %(min_alphabetic)d letter." msgid_plural "Your password must contain at least %(min_alphabetic)d letters." -msgstr[0] "" +msgstr[0] "Sandi Anda harus mengandung setidaknya %(min_alphabetic)d huruf." #: common/djangoapps/util/password_policy_validators.py #, python-format msgid "%(num)d letter" msgid_plural "%(num)d letters" -msgstr[0] "" +msgstr[0] "%(num)d huruf" #: common/djangoapps/util/password_policy_validators.py #, python-format msgid "This password must contain at least %(min_numeric)d number." msgid_plural "This password must contain at least %(min_numeric)d numbers." -msgstr[0] "" +msgstr[0] "Sandi harus mengandung setidaknya %(min_numeric)d angka." #: common/djangoapps/util/password_policy_validators.py #, python-format msgid "Your password must contain at least %(min_numeric)d number." msgid_plural "Your password must contain at least %(min_numeric)d numbers." -msgstr[0] "" +msgstr[0] "Sandi harus mengandung setidaknya %(min_numeric)d angka." #: common/djangoapps/util/password_policy_validators.py #, python-format msgid "%(num)d number" msgid_plural "%(num)d numbers" -msgstr[0] "" +msgstr[0] "%(num)d angka" #: common/djangoapps/util/password_policy_validators.py #, python-format msgid "This password must contain at least %(min_upper)d uppercase letter." msgid_plural "" "This password must contain at least %(min_upper)d uppercase letters." -msgstr[0] "" +msgstr[0] "Sandi harus mengandung setidaknya %(min_upper)d huruf besar." #: common/djangoapps/util/password_policy_validators.py #, python-format msgid "Your password must contain at least %(min_upper)d uppercase letter." msgid_plural "" "Your password must contain at least %(min_upper)d uppercase letters." -msgstr[0] "" +msgstr[0] "Sandi Anda harus mengandung setidaknya %(min_upper)d huruf besar." #: common/djangoapps/util/password_policy_validators.py #, python-format msgid "%(num)d uppercase letter" msgid_plural "%(num)d uppercase letters" -msgstr[0] "" +msgstr[0] "%(num)d huruf besar" #: common/djangoapps/util/password_policy_validators.py #, python-format msgid "This password must contain at least %(min_lower)d lowercase letter." msgid_plural "" "This password must contain at least %(min_lower)d lowercase letters." -msgstr[0] "" +msgstr[0] "Sandi harus mengandung setidaknya %(min_lower)d huruf kecil." #: common/djangoapps/util/password_policy_validators.py #, python-format msgid "Your password must contain at least %(min_lower)d lowercase letter." msgid_plural "" "Your password must contain at least %(min_lower)d lowercase letters." -msgstr[0] "" +msgstr[0] "Sandi harus mengandung setidaknya %(min_lower)d huruf kecil." #: common/djangoapps/util/password_policy_validators.py #, python-format msgid "%(num)d lowercase letter" msgid_plural "%(num)d lowercase letters" -msgstr[0] "" +msgstr[0] "%(num)d huruf kecil" #: common/djangoapps/util/password_policy_validators.py #, python-format @@ -1638,7 +1648,7 @@ msgid "" "This password must contain at least %(min_punctuation)d punctuation mark." msgid_plural "" "This password must contain at least %(min_punctuation)d punctuation marks." -msgstr[0] "" +msgstr[0] "Sandi harus mengandung setidaknya %(min_punctuation)d tanda baca." #: common/djangoapps/util/password_policy_validators.py #, python-format @@ -1646,31 +1656,31 @@ msgid "" "Your password must contain at least %(min_punctuation)d punctuation mark." msgid_plural "" "Your password must contain at least %(min_punctuation)d punctuation marks." -msgstr[0] "" +msgstr[0] "Sandi harus mengandung setidaknya %(min_punctuation)d tanda baca." #: common/djangoapps/util/password_policy_validators.py #, python-format msgid "%(num)d punctuation mark" msgid_plural "%(num)d punctuation marks" -msgstr[0] "" +msgstr[0] "%(num)d tanda baca" #: common/djangoapps/util/password_policy_validators.py #, python-format msgid "This password must contain at least %(min_symbol)d symbol." msgid_plural "This password must contain at least %(min_symbol)d symbols." -msgstr[0] "" +msgstr[0] "Sandi harus mengandung setidaknya %(min_symbol)d simbol." #: common/djangoapps/util/password_policy_validators.py #, python-format msgid "Your password must contain at least %(min_symbol)d symbol." msgid_plural "Your password must contain at least %(min_symbol)d symbols." -msgstr[0] "" +msgstr[0] "Sandi harus mengandung setidaknya %(min_symbol)d simbol." #: common/djangoapps/util/password_policy_validators.py #, python-format msgid "%(num)d symbol" msgid_plural "%(num)d symbols" -msgstr[0] "" +msgstr[0] "%(num)d simbol" #: common/djangoapps/xblock_django/admin.py msgid "" @@ -1738,7 +1748,7 @@ msgstr "Tidak dapat menilai ulang permasalahan dengan kiriman berkas yang ada" #: common/lib/capa/capa/capa_problem.py #, python-brace-format msgid "Question {0}" -msgstr "" +msgstr "Pertanyaan {0}" #: common/lib/capa/capa/capa_problem.py #: common/lib/xmodule/xmodule/capa_base.py @@ -2112,20 +2122,24 @@ msgid "" "Factorial function not permitted in answer for this problem. Provided answer" " was: {bad_input}" msgstr "" +"Fungsi faktorial tidak diizinkan menjawab untuk masalah ini. Jawaban yang " +"diberikan adalah: {bad_input}" #: common/lib/capa/capa/responsetypes.py #, python-brace-format msgid "Invalid input: Could not parse '{bad_input}' as a formula." msgstr "" +"Masukan tidak valid: Tidak dapat menguraikan '{bad_input}' sebagai rumus." #: common/lib/capa/capa/responsetypes.py #, python-brace-format msgid "Invalid input: Could not parse '{bad_input}' as a formula" msgstr "" +"Masukan tidak valid: Tidak dapat menguraikan '{bad_input}' sebagai rumus." #: common/lib/capa/capa/responsetypes.py msgid "Circuit Schematic Builder" -msgstr "" +msgstr "Pembangun Skema Sirkuit" #. Translators: 'SchematicResponse' is a problem type and should not be #. translated. @@ -2133,43 +2147,47 @@ msgstr "" #, python-brace-format msgid "Error in evaluating SchematicResponse. The error was: {error_msg}" msgstr "" +"Kesalahan dalam mengevaluasi Respons Berskema. Kesalahannya yaitu: " +"{error_msg}" #: common/lib/capa/capa/responsetypes.py msgid "Image Mapped Input" -msgstr "" +msgstr "Input Gambar yang Dipetakan" #: common/lib/capa/capa/responsetypes.py #, python-brace-format msgid "error grading {image_input_id} (input={user_input})" -msgstr "" +msgstr "Penilaian error {image_input_id} (input={user_input})" #. Translators: {sr_coords} are the coordinates of a rectangle #: common/lib/capa/capa/responsetypes.py #, python-brace-format msgid "Error in problem specification! Cannot parse rectangle in {sr_coords}" msgstr "" +"Kesalahan pada spesifikasi problem! Tidak dapat menguraikan rectangle di " +"{sr_coords}" #: common/lib/capa/capa/responsetypes.py msgid "Annotation Input" -msgstr "" +msgstr "Anotasi Input" #: common/lib/capa/capa/responsetypes.py msgid "Checkboxes With Text Input" -msgstr "" +msgstr "Centangan dengan Input Teks" #: common/lib/capa/capa/responsetypes.py #, python-brace-format msgid "Answer not provided for {input_type}" -msgstr "" +msgstr "Jawaban tidak diberikan untuk {input_type}" #: common/lib/capa/capa/responsetypes.py msgid "The Staff answer could not be interpreted as a number." -msgstr "" +msgstr "Jawaban Staf tidak dapat diinterpretasikan sebagai angka." #: common/lib/capa/capa/responsetypes.py #, python-brace-format msgid "Could not interpret '{given_answer}' as a number." -msgstr "" +msgstr "Tidak dapat menafsirkan '{given_answer}' sebagai angka." #: common/lib/xmodule/xmodule/annotatable_module.py msgid "XML data for the annotation" @@ -2283,17 +2301,19 @@ msgstr "Benar atau Terlambat" #: common/lib/xmodule/xmodule/capa_base.py msgid "After Some Number of Attempts" -msgstr "" +msgstr "Setelah Beberapa Kali Percobaan" #: common/lib/xmodule/xmodule/capa_base.py msgid "Show Answer: Number of Attempts" -msgstr "" +msgstr "Tunjukkan Jawaban: Jumlah Percobaan" #: common/lib/xmodule/xmodule/capa_base.py msgid "" "Number of times the student must attempt to answer the question before the " "Show Answer button appears." msgstr "" +"Berapa kali siswa harus mencoba menjawab pertanyaan sebelum tombol Tunjukkan" +" Jawaban muncul." #: common/lib/xmodule/xmodule/capa_base.py msgid "Whether to force the save button to appear on the page" @@ -2617,15 +2637,15 @@ msgstr "" #: common/lib/xmodule/xmodule/capa_module.py msgid "Answer ID" -msgstr "" +msgstr "ID Jawaban" #: common/lib/xmodule/xmodule/capa_module.py msgid "Question" -msgstr "" +msgstr "Pertanyaan" #: common/lib/xmodule/xmodule/capa_module.py msgid "Correct Answer" -msgstr "" +msgstr "Jawaban Benar" #: common/lib/xmodule/xmodule/conditional_module.py msgid "Conditional" @@ -2711,6 +2731,8 @@ msgid "" "The selected proctoring provider, {proctoring_provider}, is not a valid " "provider. Please select from one of {available_providers}." msgstr "" +"Proctor provider yang dipilih, {proctoring_provider}, bukan provider yang " +"valid. Silakan pilih salah satu dari {available_providers}." #: common/lib/xmodule/xmodule/course_module.py msgid "LTI Passports" @@ -2875,18 +2897,27 @@ msgstr "Pemetaan Topik Diskusi" msgid "" "Enter discussion categories in the following format: \"CategoryName\": " "{\"id\": \"i4x-InstitutionName-CourseNumber-course-CourseRun\"}. For " -"example, one discussion category may be \"Lydian Mode\": {\"id\": \"i4x-" -"UniversityX-MUS101-course-2015_T1\"}. The \"id\" value for each category " -"must be unique. In \"id\" values, the only special characters that are " -"supported are underscore, hyphen, and period. You can also specify a " +"example, one discussion category may be \"Lydian Mode\": {\"id\": " +"\"i4x-UniversityX-MUS101-course-2015_T1\"}. The \"id\" value for each " +"category must be unique. In \"id\" values, the only special characters that " +"are supported are underscore, hyphen, and period. You can also specify a " "category as the default for new posts in the Discussion page by setting its " -"\"default\" attribute to true. For example, \"Lydian Mode\": {\"id\": \"i4x-" -"UniversityX-MUS101-course-2015_T1\", \"default\": true}." -msgstr "" +"\"default\" attribute to true. For example, \"Lydian Mode\": {\"id\": " +"\"i4x-UniversityX-MUS101-course-2015_T1\", \"default\": true}." +msgstr "" +"Masukkan kategori diskusi dalam format berikut: \"CategoryName\": {\"id\": " +"\"i4x-InstitutionName-CourseNumber-course-CourseRun\"}. Misalnya, satu " +"kategori diskusi mungkin \"Lydian Mode\": {\"id\": \"i4x-UniversityX-" +"MUS101-course-2015_T1\"}. Nilai \"id\" untuk setiap kategori harus unik. " +"Dalam nilai \"id\", hanya karakter khusus yang didukung, yaitu garis bawah, " +"tanda hubung, dan titik. Anda juga dapat menentukan kategori sebagai default" +" untuk posting baru di halaman Diskusi dengan mengatur atribut \"default\" " +"ke true. Misalnya, \"Lydian Mode\": {\"id\": \"i4x-UniversityX-" +"MUS101-course-2015_T1\", \"default\": true}." #: common/lib/xmodule/xmodule/course_module.py msgid "Discussion Sorting Alphabetical" -msgstr "" +msgstr "Diskusi Memilah Abjad" #: common/lib/xmodule/xmodule/course_module.py msgid "" @@ -2894,18 +2925,21 @@ msgid "" "sorted alphabetically. If false, they are sorted chronologically by creation" " date and time." msgstr "" +"Masukkan benar atau salah. Jika benar, kategori diskusi dan subkategori " +"diurutkan sesuai abjad. Jika salah, mereka diurutkan secara kronologis " +"berdasarkan tanggal dan waktu pembuatan." #: common/lib/xmodule/xmodule/course_module.py msgid "Course Announcement Date" -msgstr "" +msgstr "Tanggal Pengumuman Pelatihan" #: common/lib/xmodule/xmodule/course_module.py msgid "Enter the date to announce your course." -msgstr "" +msgstr "Masukkan tanggal untuk mengumumkan pelatihan Anda." #: common/lib/xmodule/xmodule/course_module.py msgid "Cohort Configuration" -msgstr "" +msgstr "Konfigurasi Kohort" #: common/lib/xmodule/xmodule/course_module.py msgid "" @@ -2913,63 +2947,75 @@ msgid "" "student assignment to groups, or identify any course-wide discussion topics " "as private to cohort members." msgstr "" +"Masukkan kunci dan nilai kebijakan untuk mengaktifkan fitur kohort, tentukan" +" penetapan siswa secara otomatis ke grup, atau identifikasi topik dsikusi " +"course-wide tersendiri untuk anggota kohort." #: common/lib/xmodule/xmodule/course_module.py msgid "Course Is New" -msgstr "" +msgstr "Pelatihan ini baru" #: common/lib/xmodule/xmodule/course_module.py msgid "" "Enter true or false. If true, the course appears in the list of new courses " "on edx.org, and a New! badge temporarily appears next to the course image." msgstr "" +"Masukkan benar atau salah. Jika benar, pelatihan muncul dalam daftar " +"pelatihan baru di edx.org, dan lambang Baru! lencana secara temporer muncul " +"di sebelah gambar pelatihan." #: common/lib/xmodule/xmodule/course_module.py msgid "Mobile Course Available" -msgstr "" +msgstr "Pelatihan Secara Mobile Tersedia" #: common/lib/xmodule/xmodule/course_module.py msgid "" "Enter true or false. If true, the course will be available to mobile " "devices." msgstr "" +"Masukkan benar atau salah. Jika benar, pelatihan akan tersedia untuk " +"perangkat seluler." #: common/lib/xmodule/xmodule/course_module.py msgid "Video Upload Credentials" -msgstr "" +msgstr "Kredensial Unggah Video" #: common/lib/xmodule/xmodule/course_module.py msgid "" "Enter the unique identifier for your course's video files provided by edX." msgstr "" +"Masukkan identifier yang unik untuk file video pelatihan Anda yang " +"disediakan oleh edX." #: common/lib/xmodule/xmodule/course_module.py msgid "Course Not Graded" -msgstr "" +msgstr "Kursus ini tidak dinilai" #: common/lib/xmodule/xmodule/course_module.py msgid "Enter true or false. If true, the course will not be graded." -msgstr "" +msgstr "Masukkan benar atau salah. Jika benar, pelatihan tidak akan dinilai." #: common/lib/xmodule/xmodule/course_module.py msgid "Disable Progress Graph" -msgstr "" +msgstr "Grafik Kemajuan Dinonaktifkan" #: common/lib/xmodule/xmodule/course_module.py msgid "Enter true or false. If true, students cannot view the progress graph." msgstr "" +"Masukkan benar atau salah. Jika benar, siswa tidak dapat melihat grafik " +"kemajuan." #: common/lib/xmodule/xmodule/course_module.py msgid "PDF Textbooks" -msgstr "" +msgstr "Buku Teks PDF" #: common/lib/xmodule/xmodule/course_module.py msgid "List of dictionaries containing pdf_textbook configuration" -msgstr "" +msgstr "Daftar kamus yang berisi konfigurasi pdf_textbook" #: common/lib/xmodule/xmodule/course_module.py msgid "HTML Textbooks" -msgstr "" +msgstr "Buku Teks HTML" #: common/lib/xmodule/xmodule/course_module.py msgid "" @@ -2977,16 +3023,21 @@ msgid "" "name of the tab (usually the title of the book) as well as the URLs and " "titles of each chapter in the book." msgstr "" +"Untuk buku teks HTML yang muncul sebagai tab terpisah dalam kursus, masukkan" +" nama tab (biasanya judul buku) serta URL dan judul setiap chapter dalam " +"buku." #: common/lib/xmodule/xmodule/course_module.py msgid "Remote Gradebook" -msgstr "" +msgstr "Buku Nilai Jarak Jauh" #: common/lib/xmodule/xmodule/course_module.py msgid "" "Enter the remote gradebook mapping. Only use this setting when " "REMOTE_GRADEBOOK_URL has been specified." msgstr "" +"Masukkan pemetaan buku penilaian jarak jauh. Hanya gunakan pengaturan ini " +"ketika REMOTE_GRADEBOOK_URL telah ditentukan." #. Translators: Custom Courses for edX (CCX) is an edX feature for re-using #. course content. CCX Coach is @@ -2995,7 +3046,7 @@ msgstr "" #. his students. #: common/lib/xmodule/xmodule/course_module.py msgid "Enable CCX" -msgstr "" +msgstr "Aktifkan CCX" #. Translators: Custom Courses for edX (CCX) is an edX feature for re-using #. course content. CCX Coach is @@ -3008,32 +3059,40 @@ msgid "" "manage Custom Courses on edX. When false, Custom Courses cannot be created, " "but existing Custom Courses will be preserved." msgstr "" +"Izinkan instruktur pelatihan untuk menentukan peran Pelatih CCX, dan " +"mengizinkan pelatih untuk mengelola Kursus Kustom pada edX. Jika salah, " +"Kursus Kustom tidak dapat dibuat, tetapi Kursus Kustom yang ada akan " +"dipertahankan." #. Translators: Custom Courses for edX (CCX) is an edX feature for re-using #. course content. #: common/lib/xmodule/xmodule/course_module.py msgid "CCX Connector URL" -msgstr "" +msgstr "URL Konektor CCX" #: common/lib/xmodule/xmodule/course_module.py msgid "" "URL for CCX Connector application for managing creation of CCXs. (optional)." " Ignored unless 'Enable CCX' is set to 'true'." msgstr "" +"URL aplikasi Konektor CCX untuk mengelola pembuatan CCX. (pilihan). Abaikan " +"saja kecuali jika 'Aktifkan CCX' diatur ke 'benar'." #: common/lib/xmodule/xmodule/course_module.py msgid "Allow Anonymous Discussion Posts" -msgstr "" +msgstr "Izinkan Posting Diskusi Anonim" #: common/lib/xmodule/xmodule/course_module.py msgid "" "Enter true or false. If true, students can create discussion posts that are " "anonymous to all users." msgstr "" +"Masukkan benar atau salah. Jika benar, siswa dapat membuat posting diskusi " +"bersifat anonim bagi semua pengguna." #: common/lib/xmodule/xmodule/course_module.py msgid "Allow Anonymous Discussion Posts to Peers" -msgstr "" +msgstr "Izinkan Posting Diskusi Anonim ke Sebaya" #: common/lib/xmodule/xmodule/course_module.py msgid "" @@ -3041,19 +3100,24 @@ msgid "" "anonymous to other students. This setting does not make posts anonymous to " "course staff." msgstr "" +"Masukkan benar atau salah. Jika benar, siswa dapat membuat posting diskusi " +"yang bersifat anonim kepada siswa lain. Pengaturan ini tidak membuat posting" +" bersifat anonim untuk staf pelatihan." #: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/library_root_xblock.py msgid "Advanced Module List" -msgstr "" +msgstr "Daftar Modul Tingkat Lanjut" #: common/lib/xmodule/xmodule/course_module.py msgid "Enter the names of the advanced modules to use in your course." msgstr "" +"Masukkan nama-nama modul tingkat lanjut untuk digunakan dalam pelatihan " +"Anda." #: common/lib/xmodule/xmodule/course_module.py msgid "Course Home Sidebar Name" -msgstr "" +msgstr "Nama Sidebar Beranda Pelatihan" #: common/lib/xmodule/xmodule/course_module.py msgid "" @@ -3061,6 +3125,9 @@ msgid "" "on the Course Home page. Your course handouts appear in the right panel of " "the page." msgstr "" +"Masukkan judul yang Anda inginkan agar siswa melihat di atas materi " +"pelatihan Anda di Halaman Beranda Pelatihan. Materi pelatihan Anda muncul di" +" panel sebelah kanan halaman." #: common/lib/xmodule/xmodule/course_module.py #: lms/templates/courseware/info.html @@ -3073,10 +3140,12 @@ msgid "" "True if timezones should be shown on dates in the course. Deprecated in " "favor of due_date_display_format." msgstr "" +"Benar jika zona waktu harus ditampilkan pada tanggal dalam pelatihan. Tidak " +"berlaku lagi karena adanya due_date_display_format" #: common/lib/xmodule/xmodule/course_module.py msgid "Due Date Display Format" -msgstr "" +msgstr "Format Tampilan Tanggal Berakhir" #: common/lib/xmodule/xmodule/course_module.py msgid "" @@ -3084,28 +3153,35 @@ msgid "" "\"%m-%d-%Y\" for MM-DD-YYYY, \"%d-%m-%Y\" for DD-MM-YYYY, \"%Y-%m-%d\" for " "YYYY-MM-DD, or \"%Y-%d-%m\" for YYYY-DD-MM." msgstr "" +"Masukkan format untuk tanggal berakhir. Default sistem adalah Mon DD, YYYY. " +"Tekan \"%m-%d-%Y\" for MM-DD-YYYY, \"%d-%m-%Y\" untuk DD-MM-YYYY, " +"\"%Y-%m-%d\" untuk YYYY-MM-DD, atau \"%Y-%d-%m\" untuk YYYY-DD-MM." #: common/lib/xmodule/xmodule/course_module.py msgid "External Login Domain" -msgstr "" +msgstr "Domain Login Eksternal" #: common/lib/xmodule/xmodule/course_module.py msgid "Enter the external login method students can use for the course." msgstr "" +"Masukkan metode login eksternal yang dapat digunakan siswa untuk pelatihan." #: common/lib/xmodule/xmodule/course_module.py msgid "Certificates Downloadable Before End" -msgstr "" +msgstr "Sertifikat Dapat Diunduh Sebelum Berakhir" #: common/lib/xmodule/xmodule/course_module.py msgid "" "Enter true or false. If true, students can download certificates before the " "course ends, if they've met certificate requirements." msgstr "" +"Masukkan benar atau salah. Jika benar, siswa dapat mengunduh sertifikat " +"sebelum pelatihan berakhir, jika mereka telah memenuhi persyaratan untuk " +"mendapatkan sertifikat." #: common/lib/xmodule/xmodule/course_module.py msgid "Certificates Display Behavior" -msgstr "" +msgstr "Tampilan Sertifikat Sikap" #: common/lib/xmodule/xmodule/course_module.py msgid "" @@ -3118,10 +3194,19 @@ msgid "" "early_with_info. To display only the links to passing students as soon as " "certificates are generated, enter early_no_info." msgstr "" +"Masukkan end, early_with_info, atau early_no_info. Setelah pembuatan " +"sertifikat, siswa yang lulus dapat melihat tautan ke sertifikatnya di " +"dashboard dan siswa yang belum lulus akan melihat informasi tentang nilai " +"mereka. Pengaturan default adalah end, di mana informasi sertifikat " +"ditampilkan kepada semua siswa setelah akhir tanggal kursus. Untuk " +"menampilkan informasi sertifikat kepada semua siswa segera setelah " +"sertifikat dibuat, masukkan early_with_info. Untuk menampilkan hanya tautan " +"kepada siswa yang lulus segera setelah sertifikat dibuat, masukkan " +"early_no_info." #: common/lib/xmodule/xmodule/course_module.py msgid "Course About Page Image" -msgstr "" +msgstr "Gambar Laman Tentang Kursus" #: common/lib/xmodule/xmodule/course_module.py msgid "" @@ -3129,8 +3214,11 @@ msgid "" "Files & Uploads page. You can also set the course image on the Settings & " "Details page." msgstr "" +"Edit nama file gambar pelatihan saja. Anda harus mengunggah file ini di " +"halaman File & Unggah. Anda juga dapat mengatur gambar pelatihan pada " +"halaman Pengaturan & Detail." -#: cms/templates/settings.html +#: common/lib/xmodule/xmodule/course_module.py cms/templates/settings.html msgid "Course Banner Image" msgstr "Gambar Banner Pelatihan" @@ -3139,8 +3227,10 @@ msgid "" "Edit the name of the banner image file. You can set the banner image on the " "Settings & Details page." msgstr "" +"Edit nama file gambar banner. Anda dapat mengatur gambar banner di halaman " +"Pengaturan & Detail." -#: cms/templates/settings.html +#: common/lib/xmodule/xmodule/course_module.py cms/templates/settings.html msgid "Course Video Thumbnail Image" msgstr "Gambar Thumbnail Video Pelatihan" @@ -3149,16 +3239,20 @@ msgid "" "Edit the name of the video thumbnail image file. You can set the video " "thumbnail image on the Settings & Details page." msgstr "" +"Edit nama file gambar thumbnail video. Anda dapat mengatur gambar thumbnail " +"video pada halaman Pengaturan & Detail." #: common/lib/xmodule/xmodule/course_module.py msgid "Issue Open Badges" -msgstr "" +msgstr "Issue Open Badges" #: common/lib/xmodule/xmodule/course_module.py msgid "" "Issue Open Badges badges for this course. Badges are generated when " "certificates are created." msgstr "" +"Terbitkan badge Open Badges untuk kursus ini. Badge diberikan setelah " +"sertifikat dibuat." #: common/lib/xmodule/xmodule/course_module.py msgid "" @@ -3166,10 +3260,13 @@ msgid "" "marks, enter the short name of the type of certificate that students receive" " when they complete the course. For instance, \"Certificate\"." msgstr "" +"Gunakan pengaturan ini hanya ketika menghasilkan sertifikat PDF. Di antara " +"tanda kutip, masukkan nama pendek dari jenis sertifikat yang diterima siswa " +"ketika mereka menyelesaikan pelatihan. Misalnya, \"Sertifikat\"." #: common/lib/xmodule/xmodule/course_module.py msgid "Certificate Name (Short)" -msgstr "" +msgstr "Nama Sertifikat (Pendek)" #: common/lib/xmodule/xmodule/course_module.py msgid "" @@ -3177,24 +3274,29 @@ msgid "" "marks, enter the long name of the type of certificate that students receive " "when they complete the course. For instance, \"Certificate of Achievement\"." msgstr "" +"Gunakan pengaturan ini hanya ketika menghasilkan sertifikat PDF. Di antara " +"tanda kutip, masukkan nama panjang jenis sertifikat yang diterima siswa " +"ketika mereka menyelesaikan pelatihan. Misalnya, \"Sertifikat Prestasi\"." #: common/lib/xmodule/xmodule/course_module.py msgid "Certificate Name (Long)" -msgstr "" +msgstr "Nama Sertifikat (Panjang)" #: common/lib/xmodule/xmodule/course_module.py msgid "Certificate Web/HTML View Enabled" -msgstr "" +msgstr "Tampilan Web/HTML Certificate Dinonaktifkan" #: common/lib/xmodule/xmodule/course_module.py msgid "If true, certificate Web/HTML views are enabled for the course." msgstr "" +"Jika benar, fungsi tampilan Web/HTML certificate dinonaktifkan untuk " +"pelatihan ini." #. Translators: This field is the container for course-specific certificate #. configuration values #: common/lib/xmodule/xmodule/course_module.py msgid "Certificate Web/HTML View Overrides" -msgstr "" +msgstr "Tampilan Web/HTML Certificate Dibatalkan" #. Translators: These overrides allow for an alternative configuration of the #. certificate web view @@ -3203,48 +3305,54 @@ msgid "" "Enter course-specific overrides for the Web/HTML template parameters here " "(JSON format)" msgstr "" +"Masukkan pengaturan override spesifik kursus untuk parameter template " +"Web/HTML di sini (format JSON)" #. Translators: This field is the container for course-specific certificate #. configuration values #: common/lib/xmodule/xmodule/course_module.py msgid "Certificate Configuration" -msgstr "" +msgstr "Konfigurasi Sertifikat" #. Translators: These overrides allow for an alternative configuration of the #. certificate web view #: common/lib/xmodule/xmodule/course_module.py msgid "Enter course-specific configuration information here (JSON format)" msgstr "" +"Masukkan informasi konfigurasi spesifik pelatihan disini (format JSON)" #: common/lib/xmodule/xmodule/course_module.py msgid "CSS Class for Course Reruns" -msgstr "" +msgstr "Kelas CSS untuk Tayangan Ulang Pelatihan" #: common/lib/xmodule/xmodule/course_module.py msgid "" "Allows courses to share the same css class across runs even if they have " "different numbers." msgstr "" +"Izinkan pelatihan untuk berbagi kelas css yang sama di seluruh jalur bahkan " +"jika mereka memiliki nomor yang berbeda." #: common/lib/xmodule/xmodule/course_module.py msgid "Discussion Forum External Link" -msgstr "" +msgstr "Tautan Eksternal Forum Diskusi" #: common/lib/xmodule/xmodule/course_module.py msgid "Allows specification of an external link to replace discussion forums." msgstr "" +"Izinkan spesifikasi dari tautan eksteral untuk mengganti forum diskusi." #: common/lib/xmodule/xmodule/course_module.py msgid "Hide Progress Tab" -msgstr "" +msgstr "Sembunyikan Tab Kemajuan" #: common/lib/xmodule/xmodule/course_module.py msgid "Allows hiding of the progress tab." -msgstr "" +msgstr "Izinkan penyembunyian tab kemajuan." #: common/lib/xmodule/xmodule/course_module.py msgid "Course Organization Display String" -msgstr "" +msgstr "String Tampilan Organisasi Pelatihan" #: common/lib/xmodule/xmodule/course_module.py msgid "" @@ -3253,10 +3361,14 @@ msgid "" "course. To use the organization that you entered when you created the " "course, enter null." msgstr "" +"Masukkan organisasi pelatihan yang ingin Anda tampilkan dalam kursus. " +"Pengaturan ini membatalkan organisasi yang Anda masukkan ketika Anda membuat" +" pelatihan. Untuk menggunakan organisasi yang Anda masukkan saat membuat " +"pelatihan, masukkan null." #: common/lib/xmodule/xmodule/course_module.py msgid "Course Number Display String" -msgstr "" +msgstr "String Tampilan Nomer Kursus" #: common/lib/xmodule/xmodule/course_module.py msgid "" @@ -3265,46 +3377,55 @@ msgid "" " use the course number that you entered when you created the course, enter " "null." msgstr "" +"Masukkan nomer kursus yang ingin Anda tampakkan di kursus. Setelan ini " +"menggantikan nomer kursus yang Anda masukkan ketika Anda membuat kursus. " +"Untuk menggunakan nomer kursus yang Anda masukkan ketika Anda membuat " +"kursus, masukkan null." #: common/lib/xmodule/xmodule/course_module.py msgid "Course Maximum Student Enrollment" -msgstr "" +msgstr "Kepesertaan Siswa Maksimum" #: common/lib/xmodule/xmodule/course_module.py msgid "" "Enter the maximum number of students that can enroll in the course. To allow" " an unlimited number of students, enter null." msgstr "" +"Masukkan jumlah maksimal siswa yang dapat mengikuti kursus. Untuk menerima " +"jumlah siswa yang tak terbatas, masukkan null." #: common/lib/xmodule/xmodule/course_module.py msgid "Allow Public Wiki Access" -msgstr "" +msgstr "Buka Akses Wiki Publik" #: common/lib/xmodule/xmodule/course_module.py msgid "" "Enter true or false. If true, edX users can view the course wiki even if " "they're not enrolled in the course." msgstr "" +"Masukkan true atau false. Jika true, pengguna edX dapat melihat wiki kursus " +"meskipun mereka tidak masuk ke dalam kursus." #: common/lib/xmodule/xmodule/course_module.py msgid "Invitation Only" -msgstr "" +msgstr "Dengan Undangan" #: common/lib/xmodule/xmodule/course_module.py msgid "Whether to restrict enrollment to invitation by the course staff." -msgstr "" +msgstr "Pembatasan kepesertaan berdasarkan undangan dari staf kursus." #: common/lib/xmodule/xmodule/course_module.py msgid "Pre-Course Survey Name" -msgstr "" +msgstr "Nama Survei Pre-Kursus" #: common/lib/xmodule/xmodule/course_module.py msgid "Name of SurveyForm to display as a pre-course survey to the user." msgstr "" +"Nama SurveyForm yang ditampilkan sebagai survei pre-kursus kepada pengguna." #: common/lib/xmodule/xmodule/course_module.py msgid "Pre-Course Survey Required" -msgstr "" +msgstr "Survei Pre-Kursus Wajib Diisi" #: common/lib/xmodule/xmodule/course_module.py msgid "" @@ -3312,10 +3433,13 @@ msgid "" "course content. If you set this value to true, you must add a name for the " "survey to the Course Survey Name setting above." msgstr "" +"Tentukan apakah siswa harus melengkapi survei sebelum mereka dapat melihat " +"isi kursus Anda. Jika Anda mengisi true, maka Anda harus menambahkan nama " +"survei di setelan Nama Survei Kursus di atas." #: common/lib/xmodule/xmodule/course_module.py msgid "Course Visibility In Catalog" -msgstr "" +msgstr "Visibilitas Kursus dalam Katalog" #. Translators: the quoted words 'both', 'about', and 'none' must be #. left untranslated. Leave them as English words. @@ -3326,10 +3450,14 @@ msgid "" "access to about page), 'about' (only allow access to about page), 'none' (do" " not show in catalog and do not allow access to an about page)." msgstr "" +"Mendefinisikan ijin akses untuk menampilkan kursus dalam katalog kursus. " +"Dapat diisi dengan 'both' (tampilkan di katalog dan berikan akses ke about " +"page), 'about' (hanya berikan akses ke about page), 'none' (tidak " +"ditampilkan dalam katalog dan tidak diberikan akses ke about page)." #: common/lib/xmodule/xmodule/course_module.py msgid "Entrance Exam Enabled" -msgstr "" +msgstr "Ujian Masuk Diaktifkan" #: common/lib/xmodule/xmodule/course_module.py msgid "" @@ -3337,10 +3465,13 @@ msgid "" " your course content. Note, you must enable Entrance Exams for this course " "setting to take effect." msgstr "" +"Tentukan apakah siswa harus menyelesaikan ujian masuk sebelum mereka dapat " +"melihat isi kursus Anda. Perhatikan bahwa Anda harus mengaktifkan Ujian " +"Masuk supaya setelan ini dapat bekerja." #: common/lib/xmodule/xmodule/course_module.py msgid "Entrance Exam Minimum Score (%)" -msgstr "" +msgstr "Nilai Minimum Ujian Masuk (%)" #: common/lib/xmodule/xmodule/course_module.py msgid "" @@ -3348,18 +3479,21 @@ msgid "" "view your course content. Note, you must enable Entrance Exams for this " "course setting to take effect." msgstr "" +"Tentukan nilai persentase minimum ujian masuk supaya siswa dapat melihat isi" +" kursus Anda. Perhatikan bahwa Anda harus mengaktifkan Ujian Masuk supaya " +"setelan ini dapat bekerja." #: common/lib/xmodule/xmodule/course_module.py msgid "Entrance Exam ID" -msgstr "" +msgstr "ID Ujian Masuk" #: common/lib/xmodule/xmodule/course_module.py msgid "Content module identifier (location) of entrance exam." -msgstr "" +msgstr "ID (lokasi) modul isi ujian masuk." #: common/lib/xmodule/xmodule/course_module.py msgid "Social Media Sharing URL" -msgstr "" +msgstr "URL untuk Membagikan ke Media Sosial " #: common/lib/xmodule/xmodule/course_module.py msgid "" @@ -3368,18 +3502,22 @@ msgid "" "sites can link to. URLs must be fully qualified. For example: " "http://www.edx.org/course/Introduction-to-MOOCs-ITM001" msgstr "" +"Jika URL kursus untuk membagikan ke sosial dasbor dan kustom diaktifkan, " +"Anda dapat memberikan URL (seperti URL ke halaman Tentang) yang dapat " +"ditautkan oleh situs media sosial. URL harus valid. Contoh: " +"http://www.edx.org/course/Introduction-to-MOOCs-ITM001" -#: cms/templates/settings.html +#: common/lib/xmodule/xmodule/course_module.py cms/templates/settings.html msgid "Course Language" msgstr "Bahasa Kursus" #: common/lib/xmodule/xmodule/course_module.py msgid "Specify the language of your course." -msgstr "" +msgstr "Tentukan bahasa kursus Anda" #: common/lib/xmodule/xmodule/course_module.py msgid "Teams Configuration" -msgstr "" +msgstr "Konfigurasi Tim" #: common/lib/xmodule/xmodule/course_module.py #, python-brace-format @@ -3393,10 +3531,17 @@ msgid "" "{example_format}. In \"id\" values, the only supported special characters " "are underscore, hyphen, and period." msgstr "" +"Tentukan ukuran maksimum tim dan topik maksimum untuk tim di dalam tanda " +"kurung kurawal. Pastikan bahwa Anda telah memasukkan semua set nilai topik " +"dalam tanda kurung siku, dengan koma setelah kurung kurawal untuk masing-" +"masing topik, dan koma lagi setelah kurung siku tutup. Contoh, untuk " +"menentukan bahwa tim harus memiliki maksimum 5 partisipan dan memberikan 2 " +"topik, masukkan konfigurasi sebagai berikut: {example_format}. Dalam nilai " +"\"id\", karakter khusus yang dukung hanyalah garis bawah, garis, dan titik." #: common/lib/xmodule/xmodule/course_module.py msgid "Enable Proctored Exams" -msgstr "" +msgstr "Aktifkan Ujian Tersupervisi" #: common/lib/xmodule/xmodule/course_module.py msgid "" @@ -3404,10 +3549,13 @@ msgid "" "your course. Note that enabling proctored exams will also enable timed " "exams." msgstr "" +"Masukkan true atau false. Jika nilai yang dimasukkan true, ujian " +"tersupervisi diaktifkan dalam kursus Anda. Perhatikan bahwa mengaktifkan " +"ujian tersupervisi berarti mengaktifkan ujian berjangka waktu." #: common/lib/xmodule/xmodule/course_module.py msgid "Proctoring Provider" -msgstr "" +msgstr "Provider Proctor" #: common/lib/xmodule/xmodule/course_module.py #, python-brace-format @@ -3415,10 +3563,12 @@ msgid "" "Enter the proctoring provider you want to use for this course run. Choose " "from the following options: {available_providers}." msgstr "" +"Masukkan provider proctor yang ingin Anda gunakan untuk menjalankan kursus " +"ini. PIlih dari opsi berikut: {available_providers}." #: common/lib/xmodule/xmodule/course_module.py msgid "Allow Opting Out of Proctored Exams" -msgstr "" +msgstr "Ijinkan Tidak Mengikuti Ujian Tersupervisi" #: common/lib/xmodule/xmodule/course_module.py msgid "" @@ -3427,20 +3577,26 @@ msgid "" "must take the exam with proctoring. This setting only applies if proctored " "exams are enabled for the course." msgstr "" +"Masukkan true atau false. Jika nilai yang dimasukkan true, siswa dapat " +"memilih untuk mengambilkan ujian tersupervisi tanpa supervisi. Jika diisi " +"false, maka semua siswa harus melakukan ujian dengan supervisi. Setelan ini " +"hanya berlaku jika ujian tersupervisi diaktifkan." #: common/lib/xmodule/xmodule/course_module.py msgid "Create Zendesk Tickets For Suspicious Proctored Exam Attempts" -msgstr "" +msgstr "Buat Tiket Zendesk untuk Upaya Ujian Tersupervisi yang Mencurigakan" #: common/lib/xmodule/xmodule/course_module.py msgid "" "Enter true or false. If this value is true, a Zendesk ticket will be created" " for suspicious attempts." msgstr "" +"Masukkan true atau false. Jika nilai yang dimasukkan true, tiket Zendesk " +"akan dibuat untuk upaya yang mencurigakan." #: common/lib/xmodule/xmodule/course_module.py msgid "Enable Timed Exams" -msgstr "" +msgstr "Aktifkan Ujian Berjangka Waktu" #: common/lib/xmodule/xmodule/course_module.py msgid "" @@ -3448,21 +3604,27 @@ msgid "" "course. Regardless of this setting, timed exams are enabled if Enable " "Proctored Exams is set to true." msgstr "" +"Masukkan true atau false. Jika nilai yang dimasukkan true, ujian berjangka " +"waktu diaktifkan. Apapun setelan ini, jika Aktifkan Ujian Tersupervisi diisi" +" true, maka ujian berjangka waktu akan aktif." #: common/lib/xmodule/xmodule/course_module.py msgid "Minimum Grade for Credit" -msgstr "" +msgstr "Nilai Minimum untuk Kredit" #: common/lib/xmodule/xmodule/course_module.py msgid "" "The minimum grade that a learner must earn to receive credit in the course, " "as a decimal between 0.0 and 1.0. For example, for 75%, enter 0.75." msgstr "" +"Nilai minimum yang harus dicapai siswa untuk mendapatkan kredit kursus, " +"dalam bentuk desimal antara 0,0 dan 1,0. Sebagai contoh, untuk 75%, masukkan" +" 0,75." #: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/modulestore/inheritance.py msgid "Self Paced" -msgstr "" +msgstr "Belajar Mandiri" #: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/modulestore/inheritance.py @@ -3471,38 +3633,46 @@ msgid "" "do not have due dates for assignments, and students can progress through the" " course at any rate before the course ends." msgstr "" +"Masukkan \"true\" untuk menandai kursus ini sebagai belajar mandiri. Kursus " +"belajar mandiri tidak memiliki tanggal akhir pengumpulan tugas, dan siswa " +"dapat belajar dengan kecepatannya sendiri sebelum kursus berakhir." #: common/lib/xmodule/xmodule/course_module.py msgid "Bypass Course Home" -msgstr "" +msgstr "Lewati Beranda Kursus" #: common/lib/xmodule/xmodule/course_module.py msgid "" "Bypass the course home tab when students arrive from the dashboard, sending " "them directly to course content." msgstr "" +"Lewati tab beranda kursus ketika siswa datang dari dasboar, sehingga mereka " +"langsung melihat isi kursus." #: common/lib/xmodule/xmodule/course_module.py msgid "Enable Subsection Prerequisites" -msgstr "" +msgstr "Aktifkan Persyaratan Subseksi" #: common/lib/xmodule/xmodule/course_module.py msgid "" "Enter true or false. If this value is true, you can hide a subsection until " "learners earn a minimum score in another, prerequisite subsection." msgstr "" +"Masukkan true atau false. Jika nilai yang dimasukkan true, Anda dapat " +"menyembunyikan subseksi sampai siswa mencapai nilai minimum dalam subseksi " +"syarat lainnya." #: common/lib/xmodule/xmodule/course_module.py msgid "Course Learning Information" -msgstr "" +msgstr "Informasi Pembelajaran Kursus" #: common/lib/xmodule/xmodule/course_module.py msgid "Specify what student can learn from the course." -msgstr "" +msgstr "Sebutkan apa yang dapat dipelajari oleh siswa dari kursus." #: common/lib/xmodule/xmodule/course_module.py msgid "Course Visibility For Unenrolled Learners" -msgstr "" +msgstr "Visibilitas Kursus untuk Siswa yang Tidak Terdaftar" #. Translators: the quoted words 'private', 'public_outline', and 'public' #. must be left untranslated. Leave them as English words. @@ -3513,18 +3683,22 @@ msgid "" "enrolled students), 'public_outline' (allow access to course outline) and " "'public' (allow access to both outline and course content)." msgstr "" +"Mendefinisikan izin akses untuk siswa yang tidak terdaftar. Terdapat tiga " +"pilihan: 'private' (visibilitas default, hanya tampak bagi siswa yang " +"terdaftar), 'public_outline' (akses terhadap garis besar kursus) dan " +"'public' (akses garis besar dan isi kursus)." #: common/lib/xmodule/xmodule/course_module.py msgid "Course Instructor" -msgstr "" +msgstr "Instruktur Kursus" #: common/lib/xmodule/xmodule/course_module.py msgid "Enter the details for Course Instructor" -msgstr "" +msgstr "Masukkan rincian Instruktur Kursus" #: common/lib/xmodule/xmodule/course_module.py msgid "Add Unsupported Problems and Tools" -msgstr "" +msgstr "Tambahkan Permasalahan dan Alat Bantu yang Tidak Didukung" #: common/lib/xmodule/xmodule/course_module.py msgid "" @@ -3534,20 +3708,29 @@ msgid "" "requirements, such as testing, accessibility, internationalization, and " "documentation." msgstr "" +"Masukkan true atau false. Jika nilai yang dimasukkan true, Anda dapat " +"menambahkan permasalahan dan alat bantu yang tidak didukung ke dalam kursus " +"Anda melalui Studio. Permasalahn dan alat bantu yang tidak didukung tidak " +"direkomendasikan untuk digunakan dalam kursus karena mungkin tidak " +"kompatibel dengan satu atau lebih kebutuhan mendasar dalam kursus, seperti " +"testing, aksesibilitas, internasionalisasi, atau dokumentasi." #: common/lib/xmodule/xmodule/course_module.py msgid "Highlights Enabled for Messaging" -msgstr "" +msgstr "Aktifkan Sorotan untuk Pengiriman Pesan" #: common/lib/xmodule/xmodule/course_module.py msgid "" "Enter true or false. If true, any highlights associated with content in the " "course will be messaged to learners at their scheduled time." msgstr "" +"Masukkan true atau false. Jika nilai yang dimasukkan true, maka sorotan " +"apapun yang berhubungan dengan isi kursus Anda akan dikirimkan melalui pesan" +" ke siswa pada waktu yang terjadwal." -#: cms/templates/certificates.html cms/templates/group_configurations.html -#: cms/templates/settings.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html +#: common/lib/xmodule/xmodule/course_module.py cms/templates/certificates.html +#: cms/templates/group_configurations.html cms/templates/settings.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html msgid "Other Course Settings" msgstr "Setelan Kursus Lainnya" @@ -3558,6 +3741,10 @@ msgid "" "dictionary of values in JSON format, such as { \"my_custom_setting\": " "\"value\", \"other_setting\": \"value\" }" msgstr "" +"Informasi apapun mengenai kursus yang diperlukan atau memungkinkan integrasi" +" dengan sistem eksternal seperti software CRM. Masukkan dictionary value " +"dalam format JSON, seperti { \"my_custom_setting\": \"value\", " +"\"other_setting\": \"value\" }" #: common/lib/xmodule/xmodule/course_module.py msgid "General" @@ -3566,35 +3753,35 @@ msgstr "Umum" #: common/lib/xmodule/xmodule/graders.py #, python-brace-format msgid "{assignment_type} = {weighted_percent:.2%} of a possible {weight:.2%}" -msgstr "" +msgstr "{assignment_type} = {weighted_percent:.2%} dari maksimal {weight:.2%}" #: common/lib/xmodule/xmodule/graders.py msgid "Generated" -msgstr "" +msgstr "Dihasilkan" #. Translators: "Homework 1 - Unreleased - 0% (?/?)" The section has not been #. released for viewing. #: common/lib/xmodule/xmodule/graders.py #, python-brace-format msgid "{section_type} {index} Unreleased - 0% (?/?)" -msgstr "" +msgstr "{section_type} {index} Unreleased - 0% (?/?)" #: common/lib/xmodule/xmodule/graders.py #, python-brace-format msgid "The lowest {drop_count} {section_type} scores are dropped." -msgstr "" +msgstr "Nilai terendah {drop_count} {section_type} tidak digunakan." #. Translators: "Homework Average = 0%" #: common/lib/xmodule/xmodule/graders.py #, python-brace-format msgid "{section_type} Average = {percent:.0%}" -msgstr "" +msgstr "{section_type} Rerata = {percent:.0%}" #. Translators: Avg is short for Average #: common/lib/xmodule/xmodule/graders.py #, python-brace-format msgid "{short_label} Avg" -msgstr "" +msgstr "{short_label} Rerata" #: common/lib/xmodule/xmodule/html_module.py msgid "Text" @@ -3602,11 +3789,12 @@ msgstr "Teks" #: common/lib/xmodule/xmodule/html_module.py msgid "Html contents to display for this module" -msgstr "" +msgstr "Konten HTML ditampilkan untuk modul ini" #: common/lib/xmodule/xmodule/html_module.py msgid "Source code for LaTeX documents. This feature is not well-supported." msgstr "" +"Kode sumber untuk dokumen LaTeX. Fitur ini tidak terdukung dengan baik" #: common/lib/xmodule/xmodule/html_module.py msgid "" @@ -3614,6 +3802,10 @@ msgid "" "HTML. Select Raw to edit HTML directly. If you change this setting, you must" " save the component and then re-open it for editing." msgstr "" +"Pilih Visual untuk memasukkan isi dan memampukan editor untuk membuat HTML " +"secara otomatis. Pilih Raw untuk mengedit HTML secara langsung. Jika Anda " +"mengubah setelan ini, Anda harus menyimpan komponen dan membukanya kembali " +"untuk mengedit." #: common/lib/xmodule/xmodule/html_module.py msgid "Editor" @@ -3625,49 +3817,52 @@ msgstr "Visual" #: common/lib/xmodule/xmodule/html_module.py msgid "Raw" -msgstr "" +msgstr "Raw" #: common/lib/xmodule/xmodule/html_module.py msgid "Hide Page From Learners" -msgstr "" +msgstr "Sembunyi Halaman Dari Siswa" #: common/lib/xmodule/xmodule/html_module.py msgid "" "If you select this option, only course team members with the Staff or Admin " "role see this page." msgstr "" +"Jika Anda memilih opsi ini, hanya anggota tim kursus dan peran Staf atau " +"Admin yang dapat melihat halaman ini" #: common/lib/xmodule/xmodule/html_module.py msgid "HTML for the additional pages" -msgstr "" +msgstr "HTML untuk halaman tambahan" #: common/lib/xmodule/xmodule/html_module.py msgid "List of course update items" -msgstr "" +msgstr "Daftar item kursus yang dimutakhirkan" #: common/lib/xmodule/xmodule/library_content_module.py msgid "Any Type" -msgstr "" +msgstr "Jenis Apapun" +#: common/lib/xmodule/xmodule/library_content_module.py #: cms/templates/widgets/header.html msgid "Library" msgstr "Library" #: common/lib/xmodule/xmodule/library_content_module.py msgid "Select the library from which you want to draw content." -msgstr "" +msgstr "Pilih library yang ingin Anda tarik" #: common/lib/xmodule/xmodule/library_content_module.py msgid "Library Version" -msgstr "" +msgstr "Versi Library" #: common/lib/xmodule/xmodule/library_content_module.py msgid "Determines how content is drawn from the library" -msgstr "" +msgstr "Tentukan bagaimana konten ditarik dari library" #: common/lib/xmodule/xmodule/library_content_module.py msgid "Choose n at random" -msgstr "" +msgstr "Pilih n secara acak" #: common/lib/xmodule/xmodule/library_content_module.py msgid "Count" @@ -3675,100 +3870,106 @@ msgstr "Jumlah" #: common/lib/xmodule/xmodule/library_content_module.py msgid "Enter the number of components to display to each student." -msgstr "" +msgstr "Pilih jumlah komponen yang disajikan ke masing-masing siswa" #: common/lib/xmodule/xmodule/library_content_module.py msgid "Problem Type" -msgstr "" +msgstr "Jenis Soal" #: common/lib/xmodule/xmodule/library_content_module.py msgid "" "Choose a problem type to fetch from the library. If \"Any Type\" is selected" " no filtering is applied." msgstr "" +"Pilih jenis soal untuk ditarik dari library. Jika Anda memilih \"Jenis " +"Apapun\" maka filter tidak diaktifkan" #: common/lib/xmodule/xmodule/library_content_module.py msgid "This component is out of date. The library has new content." -msgstr "" +msgstr "Komponen ini telah kadaluarsa. Library telah memiliki konten baru" #. Translators: {refresh_icon} placeholder is substituted to "↻" (without #. double quotes) #: common/lib/xmodule/xmodule/library_content_module.py #, python-brace-format msgid "{refresh_icon} Update now." -msgstr "" +msgstr "{refresh_icon} Mutakhirkan sekarang." #: common/lib/xmodule/xmodule/library_content_module.py msgid "Library is invalid, corrupt, or has been deleted." -msgstr "" +msgstr "Library tidak valid, rusak, atau telah dihapus." #: common/lib/xmodule/xmodule/library_content_module.py msgid "Edit Library List." -msgstr "" +msgstr "Edit Daftar Library." #: common/lib/xmodule/xmodule/library_content_module.py msgid "" "This course does not support content libraries. Contact your system " "administrator for more information." msgstr "" +"Kursus ini tidak mendukung library konten. Hubungi administrator sistem Anda" +" untuk informasi lebih lanjut." #: common/lib/xmodule/xmodule/library_content_module.py msgid "A library has not yet been selected." -msgstr "" +msgstr "Library belum dipilih." #: common/lib/xmodule/xmodule/library_content_module.py msgid "Select a Library." -msgstr "" +msgstr "Pilih Library." #: common/lib/xmodule/xmodule/library_content_module.py msgid "There are no matching problem types in the specified libraries." -msgstr "" +msgstr "Tidak ditemukan jenis soal yang sesuai untuk library yang dipilih." #: common/lib/xmodule/xmodule/library_content_module.py msgid "Select another problem type." -msgstr "" +msgstr "Pilih jenis soal yang lain." #: common/lib/xmodule/xmodule/library_content_module.py #, python-brace-format msgid "The specified library is configured to fetch {count} problem, " msgid_plural "The specified library is configured to fetch {count} problems, " -msgstr[0] "" +msgstr[0] "Library yang dipilih dikonfigurasi untuk menarik {count} soal," #: common/lib/xmodule/xmodule/library_content_module.py #, python-brace-format msgid "but there is only {actual} matching problem." msgid_plural "but there are only {actual} matching problems." -msgstr[0] "" +msgstr[0] "namun hanya terdapat {actual} soal yang cocok." #: common/lib/xmodule/xmodule/library_content_module.py msgid "Edit the library configuration." -msgstr "" +msgstr "Edit konfigurasi library." #: common/lib/xmodule/xmodule/library_content_module.py msgid "Invalid Library" -msgstr "" +msgstr "Library tidak valid" #: common/lib/xmodule/xmodule/library_content_module.py msgid "No Library Selected" -msgstr "" +msgstr "Tidak Ada Library yang Dipilih" #: common/lib/xmodule/xmodule/library_root_xblock.py msgid "Library Display Name" -msgstr "" +msgstr "Nama Tampilan Library" #: common/lib/xmodule/xmodule/library_root_xblock.py msgid "Enter the names of the advanced components to use in your library." -msgstr "" +msgstr "Masukkan nama komponen lanjutan untuk digunakan di perpustakaan Anda." #: common/lib/xmodule/xmodule/lti_module.py msgid "" "The display name for this component. Analytics reports may also use the " "display name to identify this component." msgstr "" +"Nama tampilan untuk komponen ini. Laporan analisis juga dapat menggunakan " +"nama tampilan untuk mengidentifikasi komponen ini." #: common/lib/xmodule/xmodule/lti_module.py msgid "LTI ID" -msgstr "" +msgstr "ID LTI" #: common/lib/xmodule/xmodule/lti_module.py #, python-brace-format @@ -3778,10 +3979,14 @@ msgid "" "Settings page.<br />See {docs_anchor_open}the edX LTI " "documentation{anchor_close} for more details on this setting." msgstr "" +"Masukkan ID LTI untuk penyedia LTI eksternal. Nilai ini harus sama dengan ID" +" LTI yang Anda masukkan dalam pengaturan Paspor LTI pada halaman Pengaturan " +"Lanjutan.<br />Lihat {docs_anchor_open} dokumentasi edX LTI {anchor_close} " +"untuk detail lebih lanjut tentang pengaturan ini." #: common/lib/xmodule/xmodule/lti_module.py msgid "LTI URL" -msgstr "" +msgstr "URL LTI" #: common/lib/xmodule/xmodule/lti_module.py #, python-brace-format @@ -3791,10 +3996,13 @@ msgid "" "{docs_anchor_open}the edX LTI documentation{anchor_close} for more details " "on this setting." msgstr "" +"Masukkan URL tool eksternal yang dilaunch oleh koponen ini.<br />Lihat " +"{docs_anchor_open}dokumentasi edX LTI{anchor_close} untuk detail penyetelan " +"lebih lanjut." #: common/lib/xmodule/xmodule/lti_module.py msgid "Custom Parameters" -msgstr "" +msgstr "Parameter Kustom" #: common/lib/xmodule/xmodule/lti_module.py #, python-brace-format @@ -3804,10 +4012,14 @@ msgid "" "{docs_anchor_open}the edX LTI documentation{anchor_close} for more details " "on this setting." msgstr "" +"Tambahkan pasangan kunci / nilai untuk parameter khusus apa pun, seperti " +"halaman yang akan dibuka oleh e-book Anda atau warna latar belakang untuk " +"komponen ini.<br />Lihat {docs_anchor_open} dokumentasi edX LTI " +"{anchor_close} untuk detail lebih lanjut tentang pengaturan ini." #: common/lib/xmodule/xmodule/lti_module.py msgid "Open in New Page" -msgstr "" +msgstr "Buka di Halaman Baru" #: common/lib/xmodule/xmodule/lti_module.py msgid "" @@ -3816,40 +4028,50 @@ msgid "" "in the current page. This setting is only used when Hide External Tool is " "set to False. " msgstr "" +"Pilih Benar jika Anda ingin siswa mengklik tautan yang membuka alat bantu " +"LTI di jendela baru. Pilih Salah jika Anda ingin konten LTI dibuka di IFrame" +" di halaman saat ini. Pengaturan ini hanya digunakan ketika Sembunyikan Alat" +" Bantu Eksternal diatur ke Salah." #: common/lib/xmodule/xmodule/lti_module.py msgid "Scored" -msgstr "" +msgstr "Skor" #: common/lib/xmodule/xmodule/lti_module.py msgid "" "Select True if this component will receive a numerical score from the " "external LTI system." msgstr "" +"Pilih Benar jika komponen ini kan menerima skor numerik dari sistem LTI " +"eksternal." #: common/lib/xmodule/xmodule/lti_module.py msgid "Weight" -msgstr "" +msgstr "Bobot" #: common/lib/xmodule/xmodule/lti_module.py msgid "" "Enter the number of points possible for this component. The default value " "is 1.0. This setting is only used when Scored is set to True." msgstr "" +"Masukkan jumlah poin yang mungkin untuk komponen ini. Nilai defaultnya " +"adalah 1.0. Pengaturan ini hanya digunakan ketika Scored diatur ke Benar." #: common/lib/xmodule/xmodule/lti_module.py msgid "" "The score kept in the xblock KVS -- duplicate of the published score in " "django DB" msgstr "" +"Skor disimpan di KVS xblock -- duplikat dari skor yang dipublikasikan dalam " +"DB Django" #: common/lib/xmodule/xmodule/lti_module.py msgid "Comment as returned from grader, LTI2.0 spec" -msgstr "" +msgstr "Komentar sebagai hasil dari grader, spesifikasi LTI2.0" #: common/lib/xmodule/xmodule/lti_module.py msgid "Hide External Tool" -msgstr "" +msgstr "Sembunyikan Alat Bantu Eksternal" #: common/lib/xmodule/xmodule/lti_module.py msgid "" @@ -3857,30 +4079,34 @@ msgid "" "with an external grading system rather than launch an external tool. This " "setting hides the Launch button and any IFrames for this component." msgstr "" +"Pilih Benar jika Anda ingin menggunakan komponen ini sebagai placeholder " +"untuk menyinkronkan dengan sistem penilaian eksternal daripada meluncurkan " +"alat bantu eksternal. Pengaturan ini menyembunyikan tombol Luncurkan dan " +"IFrame apa pun untuk komponen ini" #: common/lib/xmodule/xmodule/lti_module.py msgid "Request user's username" -msgstr "" +msgstr "Meminta nama pengguna" #. Translators: This is used to request the user's username for a third party #. service. #: common/lib/xmodule/xmodule/lti_module.py msgid "Select True to request the user's username." -msgstr "" +msgstr "Pilih Benar untuk meminta nama pengguna." #: common/lib/xmodule/xmodule/lti_module.py msgid "Request user's email" -msgstr "" +msgstr "Minta email pengguna" #. Translators: This is used to request the user's email for a third party #. service. #: common/lib/xmodule/xmodule/lti_module.py msgid "Select True to request the user's email address." -msgstr "" +msgstr "Pilih Benar untuk meminta alamat email pengguna." #: common/lib/xmodule/xmodule/lti_module.py msgid "LTI Application Information" -msgstr "" +msgstr "Informasi Aplikasi LTI" #: common/lib/xmodule/xmodule/lti_module.py msgid "" @@ -3888,24 +4114,31 @@ msgid "" "and/or email, use this text box to inform users why their username and/or " "email will be forwarded to a third party application." msgstr "" +"Masukkan deskripsi aplikasi pihak ketiga. Jika meminta nama pengguna dan / " +"atau email, gunakan kotak teks ini untuk memberi tahu pengguna mengapa nama " +"pengguna dan / atau email mereka akan diteruskan ke aplikasi pihak ketiga." #: common/lib/xmodule/xmodule/lti_module.py msgid "Button Text" -msgstr "" +msgstr "Button Text" #: common/lib/xmodule/xmodule/lti_module.py msgid "" "Enter the text on the button used to launch the third party application." msgstr "" +"Masukkan teks ke tombol yang digunakan untuk meluncurkan aplikasi pihak " +"ketiga." #: common/lib/xmodule/xmodule/lti_module.py msgid "Accept grades past deadline" -msgstr "" +msgstr "Terima nilai melewati batas waktu" #: common/lib/xmodule/xmodule/lti_module.py msgid "" "Select True to allow third party systems to post grades past the deadline." msgstr "" +"Pilih Benar untuk mengizinkan sistem pihak ketiga untuk mengirim nilai " +"melewati batas waktu." #: common/lib/xmodule/xmodule/lti_module.py #, python-brace-format @@ -3913,6 +4146,8 @@ msgid "" "Could not parse custom parameter: {custom_parameter}. Should be \"x=y\" " "string." msgstr "" +"Tidak dapat menguraikan parameter kustom: {custom_parameter}. Harus berupa " +"string \"x = y\"." #: common/lib/xmodule/xmodule/lti_module.py #, python-brace-format @@ -3920,6 +4155,8 @@ msgid "" "Could not parse LTI passport: {lti_passport}. Should be \"id:key:secret\" " "string." msgstr "" +"Tidak dapat menguraikan paspor LTI: {lti_passport}. Harus berupa string " +"\"id: key: secret\"." #: common/lib/xmodule/xmodule/modulestore/inheritance.py #: common/lib/xmodule/xmodule/seq_module.py lms/templates/ccx/schedule.html @@ -3929,31 +4166,34 @@ msgstr "Tanggal Berakhir" #: common/lib/xmodule/xmodule/modulestore/inheritance.py msgid "Enter the default date by which problems are due." msgstr "" +"Masukkan tanggal default berdasarkan problem mana yang sudah jatuh tempo." #: common/lib/xmodule/xmodule/modulestore/inheritance.py #: lms/djangoapps/lms_xblock/mixin.py msgid "If true, can be seen only by course staff, regardless of start date." msgstr "" +"Jika benar, hanya dapat dilihat oleh staf pelatihan, terlepas dari tanggal " +"mulai." #: common/lib/xmodule/xmodule/modulestore/inheritance.py msgid "GIT URL" -msgstr "" +msgstr "URL GIT" #: common/lib/xmodule/xmodule/modulestore/inheritance.py msgid "Enter the URL for the course data GIT repository." -msgstr "" +msgstr "Masukkan URL untuk tempat penyimpanan GIT data pelatihan." #: common/lib/xmodule/xmodule/modulestore/inheritance.py msgid "XQA Key" -msgstr "" +msgstr "Kunci XQA" #: common/lib/xmodule/xmodule/modulestore/inheritance.py msgid "This setting is not currently supported." -msgstr "" +msgstr "Pengaturan ini tidak didukung saati ini." #: common/lib/xmodule/xmodule/modulestore/inheritance.py msgid "Enter the ids for the content groups this problem belongs to." -msgstr "" +msgstr "Masukkan ids dari kelompok konten yang menjadi masalah ini." #. Translators: DO NOT translate the words in quotes here, they are #. specific words for the acceptable values. @@ -3963,6 +4203,9 @@ msgid "" "are \"always\", \"answered\", \"attempted\", \"closed\", \"finished\", " "\"past_due\", \"correct_or_past_due\", and \"never\"." msgstr "" +"Tentukan ketika tombol Tampilkan Jawaban muncul untuk setiap problem. Nilai " +"yang valid adalah \"selalu, \"dijawab\", \"dicoba\", \"ditutup\", " +"\"selesai\", \"past_due\", \"correct_or_past_due\", dan \"tidak pernah\"." #. Translators: DO NOT translate the words in quotes here, they are #. specific words for the acceptable values. @@ -3971,6 +4214,9 @@ msgid "" "Specify when to show answer correctness and score to learners. Valid values " "are \"always\", \"never\", and \"past_due\"." msgstr "" +"Tentukan kapan harus menunjukkan kebenaran jawaban dan skor untuk peserta " +"didik. Nilai yang valid adalah \"selalu\", \"tidak pernah\", dan " +"\"past_due\"." #. Translators: DO NOT translate the words in quotes here, they are #. specific words for the acceptable values. @@ -3982,36 +4228,47 @@ msgid "" "problems in your course. Valid values are \"always\", \"onreset\", " "\"never\", and \"per_student\"." msgstr "" +"Tentukan default untuk seberapa sering nilai variabel dalam suatu masalah " +"diacak. Pengaturan ini harus diatur ke \"tidak pernah\" kecuali Anda " +"berencana menyediakan skrip Python untuk mengidentifikasi dan mengacak nilai" +" dalam sebagian besar problem dalam pelatihan Anda. Nilai yang valid adalah " +"\"selalu\", \"onretet\", \"tidak pernah\", dan \"per_student\"." #: common/lib/xmodule/xmodule/modulestore/inheritance.py msgid "Days Early for Beta Users" -msgstr "" +msgstr "Hari-hari Awal untuk Pengguna Beta" #: common/lib/xmodule/xmodule/modulestore/inheritance.py msgid "" "Enter the number of days before the start date that beta users can access " "the course." msgstr "" +"Masukkan jumlah hari sebelum tanggal mulai sehingga pengguna beta dapat " +"mengakses pelatihan." #: common/lib/xmodule/xmodule/modulestore/inheritance.py msgid "Static Asset Path" -msgstr "" +msgstr "Path/Jalur Aset Statis" #: common/lib/xmodule/xmodule/modulestore/inheritance.py msgid "" "Enter the path to use for files on the Files & Uploads page. This value " "overrides the Studio default, c4x://." msgstr "" +"Masukkan path/jalur yang digunakan untuk file di halaman File & Unggah. " +"Nilai ini menimpa default Studio, c4x: //." #: common/lib/xmodule/xmodule/modulestore/inheritance.py msgid "Enable LaTeX Compiler" -msgstr "" +msgstr "Aktifkan LaTeX Compiler" #: common/lib/xmodule/xmodule/modulestore/inheritance.py msgid "" "Enter true or false. If true, you can use the LaTeX templates for HTML " "components and advanced Problem components." msgstr "" +"Masukkan benar atau salah. Jika benar, Anda dapat menggunakan template LaTeX" +" untuk komponen HTML dan komponen problem tingkat lanjut." #: common/lib/xmodule/xmodule/modulestore/inheritance.py msgid "" @@ -4022,6 +4279,12 @@ msgid "" "specific number, you cannot set the Maximum Attempts for individual problems" " to unlimited." msgstr "" +"Masukkan jumlah maksimum berapa kali siswa dapat mencoba menjawab problem. " +"Secara default, Upaya Maksimum diatur ke nol, yang berarti bahwa siswa " +"memiliki upaya yang tidak terbatas untuk menyelesaikan problem. Anda dapat " +"mengganti pengaturan course-wide ini untuk problem individual. Namun, jika " +"pengaturan course-wide adalah nomor spesifik, Anda tidak dapat mengatur " +"Upaya Maksimum untuk masalah individual menjadi tidak terbatas." #: common/lib/xmodule/xmodule/modulestore/inheritance.py msgid "" @@ -4032,31 +4295,38 @@ msgid "" "obtain a key for your course, or to report an issue, please contact " "moocsupport@mathworks.com" msgstr "" +"Masukkan kunci API yang diberikan oleh MathWorks untuk mengakses MathWorks " +"Hosted Service. Kunci ini diberikan untuk penggunaan eksklusif oleh kursus " +"ini untuk durasi waktu yang terbatas. Mohon untuk tidak membagikan kunci API" +" dengan kursus lain dan memberitahukan MathWorks segera jika Anda merasa " +"kunci ini telah terpapar atau terinformasikan ke pihak lain. Untuk " +"memperoleh kunci untuk kursus Anda, atau untuk melaporkan permasalahan, " +"silakan hubungi moocsupport@mathworks.com. " #: common/lib/xmodule/xmodule/modulestore/inheritance.py -#: cms/templates/certificates.html cms/templates/group_configurations.html -#: cms/templates/settings.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html msgid "Group Configurations" -msgstr "" +msgstr "Konfigurasi Grup" #: common/lib/xmodule/xmodule/modulestore/inheritance.py msgid "" "Enter the configurations that govern how students are grouped together." msgstr "" +"Masukkan konfigurasi yang mengatur bagaimana siswa dikelompokkan bersama." #: common/lib/xmodule/xmodule/modulestore/inheritance.py msgid "Enable video caching system" -msgstr "" +msgstr "Aktifkan Sistem Caching Video" #: common/lib/xmodule/xmodule/modulestore/inheritance.py msgid "" "Enter true or false. If true, video caching will be used for HTML5 videos." msgstr "" +"Masukkan benar atau salah. Jika benar, caching video akan digunakan untuk " +"video HTML5." #: common/lib/xmodule/xmodule/modulestore/inheritance.py msgid "Enable video auto-advance" -msgstr "" +msgstr "Aktifkan auto-advance video" #: common/lib/xmodule/xmodule/modulestore/inheritance.py msgid "" @@ -4064,10 +4334,13 @@ msgid "" "clicks it, when the last video in a unit finishes it will automatically move" " to the next unit and autoplay the first video." msgstr "" +"Jelaskan apabila ingin menampilkan tombol auto-advance pada video. Jika " +"pengguna mengklik, saat video selesai akan bergerak ke unit selanjutnya dan" +" memainkannya secara otomatis." #: common/lib/xmodule/xmodule/modulestore/inheritance.py msgid "Video Pre-Roll" -msgstr "" +msgstr "Pre-Roll Video" #: common/lib/xmodule/xmodule/modulestore/inheritance.py #, python-brace-format @@ -4077,10 +4350,14 @@ msgid "" "files in the following format: {format}. For example, an entry for a video " "with two transcripts looks like this: {example}" msgstr "" +"Pilih video, sepanjang 5-10 detik, untuk dimainkan sebelum video kursus. " +"Masukkan ID video dari laman Upload Video dan satu atau lebih file transkrip" +" dengan format berikut: {format}. Sebagai contoh, sebuah video dengan dua " +"transcrip tampak sebagai berikut: {example}" #: common/lib/xmodule/xmodule/modulestore/inheritance.py msgid "Show Reset Button for Problems" -msgstr "" +msgstr "Tampilkan Tombol Reset untuk Problem" #: common/lib/xmodule/xmodule/modulestore/inheritance.py msgid "" @@ -4089,175 +4366,206 @@ msgid "" "settings. All existing problems are affected when this course-wide setting " "is changed." msgstr "" +"Masukkan true atau false. Jika true, masalah pada kursus ini akan selalu " +"menampikan tombol 'Ulang'. Anda dapat ambil alih ini pada setiap pengaturan " +"masalah. Semua masalah yang ada akan terpengaruhi ketika pengaturan ini " +"berubah." #: common/lib/xmodule/xmodule/modulestore/inheritance.py msgid "Enable Student Notes" -msgstr "" +msgstr "Aktifkan Catatan Siswa" #: common/lib/xmodule/xmodule/modulestore/inheritance.py msgid "" "Enter true or false. If true, students can use the Student Notes feature." msgstr "" +"Masukkan benar atau salah. Jika benar, siswa dapat menggunakan fitur Catatan" +" Siswa." #: common/lib/xmodule/xmodule/modulestore/inheritance.py msgid "" "Indicates whether Student Notes are visible in the course. Students can also" " show or hide their notes in the courseware." msgstr "" +"Menunjukkan apakah Catatan Siswa ditampilkan dalam kursus. Siswa dapat " +"menampilkan atau menyembunyikan catatan mereka dalam kursus." #: common/lib/xmodule/xmodule/modulestore/inheritance.py msgid "Tag this module as part of an Entrance Exam section" -msgstr "" +msgstr "Tandai modul ini sebagai bagian dari Ujian Masuk" #: common/lib/xmodule/xmodule/modulestore/inheritance.py msgid "" "Enter true or false. If true, answer submissions for problem modules will be" " considered in the Entrance Exam scoring/gating algorithm." msgstr "" +"Masukkan benar atau salah. Jika benar, jawab kiriman untuk modul problem " +"akan dipertimbangkan dalam algoritma penentuan skor / gating Ujian Masuk." +#: common/lib/xmodule/xmodule/partitions/partitions_service.py #: cms/templates/group_configurations.html msgid "Enrollment Track Groups" -msgstr "Grup Trek Pendaftaran" +msgstr "Grup Jalur Pendaftaran" #: common/lib/xmodule/xmodule/partitions/partitions_service.py msgid "Partition for segmenting users by enrollment track" -msgstr "" +msgstr "Partisi untuk mengelompokkan pengguna berdasarkan jalur pendaftaran" #: common/lib/xmodule/xmodule/poll_module.py msgid "Whether this student has voted on the poll" -msgstr "" +msgstr "Apakah siswa ini telah memberikan suara pada pemungutan/polling" #: common/lib/xmodule/xmodule/poll_module.py msgid "Student answer" -msgstr "" +msgstr "Jawaban Siswa" #: common/lib/xmodule/xmodule/poll_module.py msgid "Poll answers from all students" -msgstr "" +msgstr "Tanyakan jawaban semua siswa" #: common/lib/xmodule/xmodule/poll_module.py msgid "Poll answers from xml" -msgstr "" +msgstr "Tanyakan jawaban dari xml" #: common/lib/xmodule/xmodule/poll_module.py msgid "Poll question" -msgstr "" +msgstr "Tanyakan pertanyaan" #: common/lib/xmodule/xmodule/seq_module.py msgid "Enter the date by which problems are due." -msgstr "" +msgstr "Masukkan tanggal berdasarkan problem mana yang sudah jatuh tempo." #: common/lib/xmodule/xmodule/seq_module.py msgid "Hide sequence content After Due Date" -msgstr "" +msgstr "Sembunyikan isi urutan Setelah Tanggal Berakhir" #: common/lib/xmodule/xmodule/seq_module.py msgid "" "If set, the sequence content is hidden for non-staff users after the due " "date has passed." msgstr "" +"Jika diatur, isi urutan disembunyikan untuk pengguna non-staf setelah " +"tanggal berakhir telah berlalu." #: common/lib/xmodule/xmodule/seq_module.py msgid "Is Entrance Exam" -msgstr "" +msgstr "Ujian Masuk" #: common/lib/xmodule/xmodule/seq_module.py msgid "" "Tag this course module as an Entrance Exam. Note, you must enable Entrance " "Exams for this course setting to take effect." msgstr "" +"Tandai modul pelatihan ini sebagai Ujian Masuk. Catatan, Anda harus " +"mengaktifkan Ujian Masuk untuk pengaturan pelatihan ini agar berfungsi." #: common/lib/xmodule/xmodule/seq_module.py msgid "Is Time Limited" -msgstr "" +msgstr "Batas Waktu" #: common/lib/xmodule/xmodule/seq_module.py msgid "" "This setting indicates whether students have a limited time to view or " "interact with this courseware component." msgstr "" +"Pengaturan ini menunjukkan apakah siswa memiliki batas waktu untuk melihat " +"atau berinteraksi dengan komponen perangkat pelatihan ini." #: common/lib/xmodule/xmodule/seq_module.py msgid "Time Limit in Minutes" -msgstr "" +msgstr "Batas Waktu dalam Menit" #: common/lib/xmodule/xmodule/seq_module.py msgid "" "The number of minutes available to students for viewing or interacting with " "this courseware component." msgstr "" +"Jumlah menit yang tersedia bagi siswa untuk melihat atau berinteraksi dengan" +" komponen perangkat pelatihan ini." #: common/lib/xmodule/xmodule/seq_module.py msgid "Is Proctoring Enabled" -msgstr "" +msgstr "Pengaktifan Supervisi" #: common/lib/xmodule/xmodule/seq_module.py msgid "This setting indicates whether this exam is a proctored exam." -msgstr "" +msgstr "Pengaturan ini menunjukkan apakah ujian ini adalah ujian supervisi." #: common/lib/xmodule/xmodule/seq_module.py msgid "Software Secure Review Rules" -msgstr "" +msgstr "Aturan Peninjauan Keamanan Perangkat Lunak" #: common/lib/xmodule/xmodule/seq_module.py msgid "" "This setting indicates what rules the proctoring team should follow when " "viewing the videos." msgstr "" +"Pengaturan ini menunjukkan aturan apa yang harus diikuti oleh tim pengawas " +"saat melihat video." #: common/lib/xmodule/xmodule/seq_module.py msgid "Is Practice Exam" -msgstr "" +msgstr "Uji Coba" #: common/lib/xmodule/xmodule/seq_module.py msgid "" "This setting indicates whether this exam is for testing purposes only. " "Practice exams are not verified." msgstr "" +"Pengaturan ini menandakan ujian ini untuk uji coba. Uji coba tidak " +"terverifikasi." #: common/lib/xmodule/xmodule/seq_module.py msgid "Is Onboarding Exam" -msgstr "" +msgstr "Ujian Orientasi" #: common/lib/xmodule/xmodule/seq_module.py msgid "This setting indicates whether this exam is an onboarding exam." msgstr "" +"Pengaturan ini menunjukkan apakah sebuah ujian adalah ujian orientasi." #: common/lib/xmodule/xmodule/seq_module.py msgid "" "This subsection is unlocked for learners when they meet the prerequisite " "requirements." msgstr "" +"Sub bagian ini tidak dikunci untuk peserta didik ketika mereka memenuhi " +"persyaratan prasyarat." #: common/lib/xmodule/xmodule/seq_module.py msgid "This exam is hidden from the learner." -msgstr "" +msgstr "Ujian ini disembunyikan dari peserta didik." #: common/lib/xmodule/xmodule/seq_module.py msgid "" "Because the course has ended, this assignment is hidden from the learner." msgstr "" +"Karena pelatihan telah berakhir, tugas ini disembunyikan dari peserta didik." #: common/lib/xmodule/xmodule/seq_module.py msgid "" "Because the due date has passed, this assignment is hidden from the learner." msgstr "" +"Karena tanggal berakhir telah lewat, tugas ini disembunyikan dari peserta " +"didik." #: common/lib/xmodule/xmodule/seq_module.py msgid "" "This section is a prerequisite. You must complete this section in order to " "unlock additional content." msgstr "" +"Bagian ini merupakan prasyarat. Anda harus menyelesaikan bagian ini untuk " +"membuka kunci konten tambahan." #: common/lib/xmodule/xmodule/seq_module.py msgid "" "A list summarizing what students should look forward to in this section." -msgstr "" +msgstr "Daftar yang merangkum apa yang diharapkan oleh siswa di bagian ini." #: common/lib/xmodule/xmodule/split_test_module.py #, python-brace-format msgid "Group ID {group_id}" -msgstr "" +msgstr "ID Grup {group_id}" #: common/lib/xmodule/xmodule/split_test_module.py msgid "Not Selected" @@ -4266,17 +4574,18 @@ msgstr "Tak Terpilih" #: common/lib/xmodule/xmodule/split_test_module.py msgid "The display name for this component. (Not shown to learners)" msgstr "" +"Nama tampilan untuk komponen ini. (Tidak ditunjukkan kepada peserta didik)" #: common/lib/xmodule/xmodule/split_test_module.py msgid "Content Experiment" -msgstr "" +msgstr "Percobaan Konten" #: common/lib/xmodule/xmodule/split_test_module.py #: lms/djangoapps/lms_xblock/mixin.py msgid "" "The list of group configurations for partitioning students in content " "experiments." -msgstr "" +msgstr "Daftar Konfigurasi Grup untuk membagi siswa dalam percobaan konten." #: common/lib/xmodule/xmodule/split_test_module.py msgid "" @@ -4284,62 +4593,72 @@ msgid "" " Caution: Changing the group configuration of a student-visible experiment " "will impact the experiment data." msgstr "" +"Konfigurasi menentukan bagaimana pengguna dikelompokkan untuk percobaan " +"konten ini. Perhatian: Mengubah konfigurasi grup dari percobaan yang " +"terlihat oleh siswa akan mempengaruhi data percobaan." #: common/lib/xmodule/xmodule/split_test_module.py msgid "Group Configuration" -msgstr "" +msgstr "Konfigurasi Grup" #: common/lib/xmodule/xmodule/split_test_module.py msgid "Which child module students in a particular group_id should see" -msgstr "" +msgstr "Modul child yang dapat dilihat siswa dengan group_id tertentu" #: common/lib/xmodule/xmodule/split_test_module.py #, python-brace-format msgid "{group_name} (inactive)" -msgstr "" +msgstr "{group_name} (inactive)" #: common/lib/xmodule/xmodule/split_test_module.py msgid "The experiment is not associated with a group configuration." -msgstr "" +msgstr "Percobaab tidak terkait dengan konfigurasi grup." #: common/lib/xmodule/xmodule/split_test_module.py msgid "Select a Group Configuration" -msgstr "" +msgstr "Pilih Konfigurasi Grup" #: common/lib/xmodule/xmodule/split_test_module.py msgid "" "The experiment uses a deleted group configuration. Select a valid group " "configuration or delete this experiment." msgstr "" +"Percobaan menggunakan konfigurasi grup yang dihapus. Pilih konfigurasi grup " +"yang valid atau hapus percobaan ini." #: common/lib/xmodule/xmodule/split_test_module.py msgid "" "The experiment uses a group configuration that is not supported for " "experiments. Select a valid group configuration or delete this experiment." msgstr "" +"Pecobaan menggunakan konfigurasi grup yang tidak didukung untuk percobaan. " +"Pilih konfigurasi grup yang valid atau hapus percobaan ini." #: common/lib/xmodule/xmodule/split_test_module.py msgid "" "The experiment does not contain all of the groups in the configuration." -msgstr "" +msgstr "Percobaan tidak mengandung semua grup di konfigurasi." #: common/lib/xmodule/xmodule/split_test_module.py msgid "Add Missing Groups" -msgstr "" +msgstr "Tambahkan Grup yang Hilang" #: common/lib/xmodule/xmodule/split_test_module.py msgid "" "The experiment has an inactive group. Move content into active groups, then " "delete the inactive group." msgstr "" +"Percobaan memiliki grup non-aktif. Pindah konten ke grup aktif, kemudian " +"hapus grup non-aktif." #: common/lib/xmodule/xmodule/split_test_module.py msgid "This content experiment has issues that affect content visibility." msgstr "" +"Percobaan konten ini memiliki masalah yang mempengaruhi visibilitas konten." #: common/lib/xmodule/xmodule/tabs.py msgid "External Discussion" -msgstr "" +msgstr "Diskusi Eksternal" #: common/lib/xmodule/xmodule/tabs.py lms/djangoapps/courseware/tabs.py msgid "Home" @@ -4362,10 +4681,12 @@ msgid "" "Can't receive transcripts from Youtube for {youtube_id}. Status code: " "{status_code}." msgstr "" +"Tidak dapat menerima transkrip dari Youtube untuk {youtube_id}. Kode status:" +" {status_code}." #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py msgid "We support only SubRip (*.srt) transcripts format." -msgstr "" +msgstr "Kami hanya mendukung format trasnskrip SubRip (*.srt)." #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py #, python-brace-format @@ -4373,82 +4694,94 @@ msgid "" "Something wrong with SubRip transcripts file during parsing. Inner message " "is {error_message}" msgstr "" +"Kesalahan pada transkrip SubRip saat parsing. Pesannya adalah " +"{error_message}" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py msgid "Something wrong with SubRip transcripts file during parsing." -msgstr "" +msgstr "Kesalahan terjadi dengan file transkrip SubRip selama parsing." #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py #, python-brace-format msgid "{exception_message}: Can't find uploaded transcripts: {user_filename}" msgstr "" +"{exception_message}: Tidak dapat menemukan transkrip yang telah diunggah: " +"{user_filename}" #: common/lib/xmodule/xmodule/video_module/video_handlers.py msgid "Language is required." -msgstr "" +msgstr "Bahasa dibutuhkan." #: common/lib/xmodule/xmodule/video_module/video_module.py msgid "Basic" -msgstr "" +msgstr "Dasar" #: common/lib/xmodule/xmodule/video_module/video_module.py #, python-brace-format msgid "There is no transcript file associated with the {lang} language." msgid_plural "" "There are no transcript files associated with the {lang} languages." -msgstr[0] "" +msgstr[0] "Tidak ada file transkrip yang terkait dengan bahasa {lang}." #: common/lib/xmodule/xmodule/video_module/video_module.py msgid "" "The URL for your video. This can be a YouTube URL or a link to an .mp4, " ".ogg, or .webm video file hosted elsewhere on the Internet." msgstr "" +"URL untuk video Anda. Ini bisa berupa URL YouTube atau tautan ke file video " +".mp4, .ogg, atau .webm yang dihosting di mana saja di Internet." #: common/lib/xmodule/xmodule/video_module/video_module.py msgid "Default Video URL" -msgstr "" +msgstr "URL Video Default" #: common/lib/xmodule/xmodule/video_module/video_xfields.py msgid "Component Display Name" -msgstr "" +msgstr "Nama Tampilan Komponen" #: common/lib/xmodule/xmodule/video_module/video_xfields.py msgid "Current position in the video." -msgstr "" +msgstr "Posisi Saat Ini di video." #: common/lib/xmodule/xmodule/video_module/video_xfields.py msgid "" "Optional, for older browsers: the YouTube ID for the normal speed video." msgstr "" +"Pilihan, untuk browser yang lama: ID Youtube untuk video berkecepatan " +"normal." #: common/lib/xmodule/xmodule/video_module/video_xfields.py msgid "YouTube ID" -msgstr "" +msgstr "ID Youtube" #: common/lib/xmodule/xmodule/video_module/video_xfields.py msgid "Optional, for older browsers: the YouTube ID for the .75x speed video." msgstr "" +"Pilihan, untuk browser yang lama: ID Youtube untuk video berkecepatan .75x." #: common/lib/xmodule/xmodule/video_module/video_xfields.py msgid "YouTube ID for .75x speed" -msgstr "" +msgstr "ID Youtube untuk kecepatan .75x" #: common/lib/xmodule/xmodule/video_module/video_xfields.py msgid "" "Optional, for older browsers: the YouTube ID for the 1.25x speed video." msgstr "" +"Pilihan, untuk browser yang lama: ID Youtube untuk video berkecepatan 1.25x." #: common/lib/xmodule/xmodule/video_module/video_xfields.py msgid "YouTube ID for 1.25x speed" -msgstr "" +msgstr "ID Youtube untuk kecepatan 1.25x" #: common/lib/xmodule/xmodule/video_module/video_xfields.py msgid "Optional, for older browsers: the YouTube ID for the 1.5x speed video." msgstr "" +"Pilihan, untuk browser yang lebih lama: ID Youtube untuk video berkecepatan " +"1.5x." #: common/lib/xmodule/xmodule/video_module/video_xfields.py msgid "YouTube ID for 1.5x speed" -msgstr "" +msgstr "ID Youtube untuk kecepatan 1.5x" #: common/lib/xmodule/xmodule/video_module/video_xfields.py msgid "" @@ -4456,10 +4789,14 @@ msgid "" " Not supported in the native mobile app: the full video file will play. " "Formatted as HH:MM:SS. The maximum value is 23:59:59." msgstr "" +"Pilih waktu saat Anda ingin video dimulai jika Anda tidak ingin seluruh " +"video diputar. Tidak didukung di aplikasi seluler bawaan: file video lengkap" +" akan diputar. Diformat sebagai HH: MM: SS. Nilai maksimumnya adalah " +"23:59:59." #: common/lib/xmodule/xmodule/video_module/video_xfields.py msgid "Video Start Time" -msgstr "" +msgstr "Waktu Dimulai Video" #: common/lib/xmodule/xmodule/video_module/video_xfields.py msgid "" @@ -4467,18 +4804,22 @@ msgid "" "Not supported in the native mobile app: the full video file will play. " "Formatted as HH:MM:SS. The maximum value is 23:59:59." msgstr "" +"Pilih waktu saat Anda ingin video berhenti jika Anda tidak ingin seluruh " +"video diputar. Tidak didukung di aplikasi seluler bawaan: file video lengkap" +" akan diputar. Diformat sebagai HH: MM: SS. Nilai maksimumnya adalah " +"23:59:59." #: common/lib/xmodule/xmodule/video_module/video_xfields.py msgid "Video Stop Time" -msgstr "" +msgstr "Waktu Berhenti Video" #: common/lib/xmodule/xmodule/video_module/video_xfields.py msgid "The external URL to download the video." -msgstr "" +msgstr "URL eksternal untuk unduh video." #: common/lib/xmodule/xmodule/video_module/video_xfields.py msgid "Download Video" -msgstr "" +msgstr "Unduh Video" #: common/lib/xmodule/xmodule/video_module/video_xfields.py msgid "" @@ -4486,10 +4827,14 @@ msgid "" "they cannot use the edX video player or do not have access to YouTube. You " "must add at least one non-YouTube URL in the Video File URLs field." msgstr "" +"Izinkan siswa unduh versi video ini dalam berbagai format jika mereka tidak " +"dapat menggunakan pemutar video EDX atau tidak memiliki akses ke YouTube. " +"Anda harus menambahkan setidaknya satu URL non-YouTube di bidang URL File " +"Video." #: common/lib/xmodule/xmodule/video_module/video_xfields.py msgid "Video Download Allowed" -msgstr "" +msgstr "Unduh Video Dimungkinkan" #: common/lib/xmodule/xmodule/video_module/video_xfields.py msgid "" @@ -4500,10 +4845,16 @@ msgid "" "the student's computer. To allow students to download these videos, set " "Video Download Allowed to True." msgstr "" +"URL untuk versi video non-Youtube yang Anda post. Setiap URL harus berakhir " +"dengan .mpeg, .mp4, .ogg, atau .webm dan tidak boleh berupa URL YouTube. " +"(Untuk kesesuaian peramban, kami merekomendasikan .mp4 dan .webm format). " +"Siswa dapat melihat video pertama yang sesuai dengan perangkatnya. Untuk " +"memampukan siswa mengunduh video ini, set Pengunduhan Video Diijinkan ke " +"True." #: common/lib/xmodule/xmodule/video_module/video_xfields.py msgid "Video File URLs" -msgstr "" +msgstr "URLs File Video" #: common/lib/xmodule/xmodule/video_module/video_xfields.py msgid "" @@ -4518,7 +4869,7 @@ msgstr "" #: common/lib/xmodule/xmodule/video_module/video_xfields.py msgid "Downloadable Transcript URL" -msgstr "" +msgstr "URL Transkrip yang dapat Diunduh" #: common/lib/xmodule/xmodule/video_module/video_xfields.py msgid "" @@ -4530,7 +4881,7 @@ msgstr "" #: common/lib/xmodule/xmodule/video_module/video_xfields.py msgid "Download Transcript Allowed" -msgstr "" +msgstr "Unduh Transkrip Diizinkan" #: common/lib/xmodule/xmodule/video_module/video_xfields.py msgid "" @@ -4538,6 +4889,9 @@ msgid "" "field on the Basic tab. This transcript should be in English. You don't have" " to change this setting." msgstr "" +"Transkrip default untuk video, dari bidang Transkrip Waktu Default pada tab " +"Dasar. Transkrip ini harus dalam bahasa Inggris. Anda tidak perlu mengubah " +"pengaturan ini." #: common/lib/xmodule/xmodule/video_module/video_xfields.py msgid "Default Timed Transcript" @@ -4545,81 +4899,89 @@ msgstr "Transkrip Default" #: common/lib/xmodule/xmodule/video_module/video_xfields.py msgid "Specify whether the transcripts appear with the video by default." -msgstr "" +msgstr "Tentukan apakah transkrip muncul dengan video secara default." #: common/lib/xmodule/xmodule/video_module/video_xfields.py msgid "Show Transcript" -msgstr "" +msgstr "Tampilkan Transkrip" #: common/lib/xmodule/xmodule/video_module/video_xfields.py msgid "" "Add transcripts in different languages. Click below to specify a language " "and upload an .srt transcript file for that language." msgstr "" +"Tambahkan transkrip dalam bahasa yang berbeda. Klik dibawah ini untuk " +"menentukan bahasa dan menunggah file transkrip .srt untuk bahasa tersebut." #: common/lib/xmodule/xmodule/video_module/video_xfields.py msgid "Transcript Languages" -msgstr "" +msgstr "Bahasa Transkrip" #: common/lib/xmodule/xmodule/video_module/video_xfields.py msgid "Preferred language for transcript." -msgstr "" +msgstr "Bahasa yang disukai untuk transkrip." #: common/lib/xmodule/xmodule/video_module/video_xfields.py msgid "Preferred language for transcript" -msgstr "" +msgstr "Bahasa yang disukai untuk transkrip" #: common/lib/xmodule/xmodule/video_module/video_xfields.py msgid "Transcript file format to download by user." -msgstr "" +msgstr "Format file transkrip untuk diunduh oleh pengguna." #. Translators: This is a type of file used for captioning in the video #. player. #: common/lib/xmodule/xmodule/video_module/video_xfields.py msgid "SubRip (.srt) file" -msgstr "" +msgstr "File SubRip (.srt)" #: common/lib/xmodule/xmodule/video_module/video_xfields.py msgid "Text (.txt) file" -msgstr "" +msgstr "File Teks (.txt)" #: common/lib/xmodule/xmodule/video_module/video_xfields.py msgid "The last speed that the user specified for the video." -msgstr "" +msgstr "Kecepatan terakhir yang ditentukan pengguna untuk video." #: common/lib/xmodule/xmodule/video_module/video_xfields.py msgid "The default speed for the video." -msgstr "" +msgstr "Kecepatan default untuk video." #: common/lib/xmodule/xmodule/video_module/video_xfields.py msgid "" "Specify whether to advance automatically to the next unit when the video " "ends." msgstr "" +"Tentukan apakah akan melanjutkan secara otomatis ke unit berikutnya ketika " +"video berakhir." #: common/lib/xmodule/xmodule/video_module/video_xfields.py msgid "Specify whether YouTube is available for the user." -msgstr "" +msgstr "Tentukan apakah Youtube tersedia bagi pengguna." #: common/lib/xmodule/xmodule/video_module/video_xfields.py msgid "" "Upload a handout to accompany this video. Students can download the handout " "by clicking Download Handout under the video." msgstr "" +"Unggah handout untuk mengiringi video. Siswa dapat mengunduh handout dengan " +"mengklik Unduh Handout dibawah video." #: common/lib/xmodule/xmodule/video_module/video_xfields.py msgid "Upload Handout" -msgstr "" +msgstr "Unggah Handout" #: common/lib/xmodule/xmodule/video_module/video_xfields.py msgid "" "Specify whether access to this video is limited to browsers only, or if it " "can be accessed from other applications including mobile apps." msgstr "" +"Tentukan apakah akses ke video ini terbatas hanya untuk browser, atau apakah" +" dapat diakses dari aplikasi lain termasuk aplikasi seluler." #: common/lib/xmodule/xmodule/video_module/video_xfields.py msgid "Video Available on Web Only" -msgstr "" +msgstr "Video hanya Tersedia di Web" #: common/lib/xmodule/xmodule/video_module/video_xfields.py msgid "" @@ -4629,14 +4991,18 @@ msgid "" "were not assigned a Video ID, enter values in those other fields and ignore " "this field." msgstr "" +"Jika Anda diberi ID Video oleh edX untuk memutar video dalam komponen ini, " +"masukkan ID di sini. Dalam hal ini, jangan masukkan nilai dalam URL Video " +"Default, URL File Video, dan bidang ID YouTube. Jika Anda tidak diberi ID " +"Video, masukkan nilai di bidang lain dan abaikan bidang ini." #: common/lib/xmodule/xmodule/video_module/video_xfields.py msgid "Date of the last view of the bumper" -msgstr "" +msgstr "Tanggal tampilan terakhir bumper" #: common/lib/xmodule/xmodule/video_module/video_xfields.py msgid "Do not show bumper again" -msgstr "" +msgstr "Jangan tampilkan bumper lagi" #: common/lib/xmodule/xmodule/word_cloud_module.py #: lms/templates/annotatable.html lms/templates/peer_grading/peer_grading.html @@ -4649,43 +5015,49 @@ msgid "" "Clear instructions are important, especially for learners who have " "accessibility requirements." msgstr "" +"Tambahkan petunjuk untuk membantu peserta memahami bagaimana cara " +"menggunakan cloud kata. Petunjuk yang jelas adalah suatu hal yang penting, " +"terutama bagi peserta yang memiliki persyaratan aksesibilitas." #: common/lib/xmodule/xmodule/word_cloud_module.py msgid "Inputs" -msgstr "" +msgstr "Input" #: common/lib/xmodule/xmodule/word_cloud_module.py msgid "" "The number of text boxes available for learners to add words and sentences." msgstr "" +"Jumlah kotak teks yang tersedia bagi peserta untuk menambahkan kata dan " +"kalimat." #: common/lib/xmodule/xmodule/word_cloud_module.py msgid "Maximum Words" -msgstr "" +msgstr "Kata-kata Maksimum" #: common/lib/xmodule/xmodule/word_cloud_module.py msgid "The maximum number of words displayed in the generated word cloud." -msgstr "" +msgstr "Angka maksimum kata yang ditampilkan di cloud kata yang telah dibuat." #: common/lib/xmodule/xmodule/word_cloud_module.py msgid "Show Percents" -msgstr "" +msgstr "Tampilkan Persen" #: common/lib/xmodule/xmodule/word_cloud_module.py msgid "Statistics are shown for entered words near that word." msgstr "" +"Statistik ditampilkan untuk memasukkan kata-kata yang ada di dekat kata itu." #: common/lib/xmodule/xmodule/word_cloud_module.py msgid "Whether this learner has posted words to the cloud." -msgstr "" +msgstr "Apakah peserta ini telah memposting kata-kata ke cloud." #: common/lib/xmodule/xmodule/word_cloud_module.py msgid "Student answer." -msgstr "" +msgstr "Jawaban siswa." #: common/lib/xmodule/xmodule/word_cloud_module.py msgid "All possible words from all learners." -msgstr "" +msgstr "Semua kata-kata yang memungkinkan dari semua peserta," #: common/lib/xmodule/xmodule/word_cloud_module.py msgid "Top num_top_words words for word cloud." @@ -4700,7 +5072,7 @@ msgstr "" #: common/templates/admin/student/loginfailures/change_form_template.html msgid "Unlock Account" -msgstr "" +msgstr "Buka Kunci Akun" #. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# #. Translators: this is a control to allow users to exit out of this modal @@ -4725,7 +5097,7 @@ msgstr "Tutup" #: common/templates/student/edx_ace/accountrecovery/email/body.html msgid "Create Password" -msgstr "" +msgstr "Buka Sandi" #: common/templates/student/edx_ace/accountrecovery/email/body.html #: common/templates/student/edx_ace/accountrecovery/email/body.txt @@ -4734,6 +5106,8 @@ msgid "" "You're receiving this e-mail because you requested to create a password for " "your user account at %(platform_name)s." msgstr "" +"Anda menerima email ini karena Anda meminta sandi untuk akun pengguna Anda " +"di %(platform_name)s." #: common/templates/student/edx_ace/accountrecovery/email/body.html #: common/templates/student/edx_ace/accountrecovery/email/body.txt @@ -4742,6 +5116,8 @@ msgid "" "We've restored access to your %(platform_name)s account using the recovery " "email you provided at registration." msgstr "" +"Kami mengembalikan akses terhadap akun %(platform_name)s Anda menggunakan " +"email pemulihan yang Anda berikan saat registrasi." #: common/templates/student/edx_ace/accountrecovery/email/body.html #: common/templates/student/edx_ace/accountrecovery/email/body.txt @@ -4750,6 +5126,8 @@ msgid "" "Once you've created a password [below], you will be able to log in to " "%(platform_name)s with this email (%(email)s) and your new password." msgstr "" +"Setelah Anda membuat sandi [below], Anda akan dapat log in ke dalam " +"%(platform_name)s dengan email (%(email)s) dan sandi baru Anda." #: common/templates/student/edx_ace/accountrecovery/email/body.html #: common/templates/student/edx_ace/accountrecovery/email/body.txt @@ -4769,16 +5147,16 @@ msgstr "Terima kasih telah menggunakan situs kami!" #: common/templates/student/edx_ace/passwordreset/email/body.txt #, python-format msgid "The %(platform_name)s Team" -msgstr "" +msgstr "Tim %(platform_name)s " #: common/templates/student/edx_ace/accountrecovery/email/subject.txt #, python-format msgid "Password creation on %(platform_name)s" -msgstr "" +msgstr "Pembuatan sandi di %(platform_name)s" #: common/templates/student/edx_ace/emailchange/email/body.html msgid "Email Change" -msgstr "" +msgstr "Perubahan Email" #: common/templates/student/edx_ace/emailchange/email/body.html #: common/templates/student/edx_ace/emailchange/email/body.txt @@ -4788,10 +5166,13 @@ msgid "" "%(platform_name)s account from %(old_email)s to %(new_email)s. If this is " "correct, please confirm your new e-mail address by visiting:" msgstr "" +"Kami menerima permintaan untuk mengganti email yang terhubung dengan akun " +"%(platform_name)s Anda dari %(old_email)s ke %(new_email)s. Jika hal ini " +"benar, silakan konfirmasi email baru Anda dengan mengunjungi:" #: common/templates/student/edx_ace/emailchange/email/body.html msgid "Confirm Email Change" -msgstr "" +msgstr "Konfirmasi Perubahan Email" #: common/templates/student/edx_ace/emailchange/email/body.html #: common/templates/student/edx_ace/emailchange/email/body.txt @@ -4801,17 +5182,20 @@ msgid "" " any more email from us. Please do not reply to this e-mail; if you require " "assistance, check the help section of the %(platform_name)s web site." msgstr "" +"Jika Anda tidak meminta hal ini, Anda tidak perlu melakukan apapun; Anda " +"tidak akan menerima email dari kami. Jangan balas email ini; jika Anda " +"memerlukan bantuan, cek bagian bantuan di website %(platform_name)s. " #: common/templates/student/edx_ace/emailchange/email/subject.txt #, python-format msgid "Request to change %(platform_name)s account e-mail" -msgstr "" +msgstr "Meminta perubahan akun email %(platform_name)s " #: common/templates/student/edx_ace/emailchangeconfirmation/email/body.html #: common/templates/student/edx_ace/emailchangeconfirmation/email/subject.txt #, python-format msgid "Email Change Confirmation for %(platform_name)s" -msgstr "" +msgstr "Konfirmasi Perubahan Email untuk %(platform_name)s" #: common/templates/student/edx_ace/emailchangeconfirmation/email/body.html #: common/templates/student/edx_ace/emailchangeconfirmation/email/body.txt @@ -4823,6 +5207,8 @@ msgid "" "at:" msgstr "" +#: common/templates/student/edx_ace/emailchangeconfirmation/email/body.html +#: common/templates/student/edx_ace/emailchangeconfirmation/email/body.txt #: themes/stanford-style/lms/templates/emails/confirm_email_change.txt msgid "" "We keep a log of old e-mails, so if this request was unintentional, we can " @@ -4831,6 +5217,7 @@ msgstr "" "Kami menyimpan arsip dari email lama, sehingga jika permintaan ini tidak " "disengaja, kami dapat menelusuri kembali. " +#: common/templates/student/edx_ace/passwordreset/email/body.html #: lms/templates/forgot_password_modal.html msgid "Password Reset" msgstr "Ganti Sandi" @@ -4858,7 +5245,7 @@ msgstr "" #: common/templates/student/edx_ace/passwordreset/email/body.html msgid "Change my Password" -msgstr "" +msgstr "Ubah Sandi Saya" #: common/templates/student/edx_ace/passwordreset/email/body.txt msgid "Please go to the following page and choose a new password:" @@ -4891,7 +5278,7 @@ msgstr "" #: common/templates/student/edx_ace/recoveryemailcreate/email/body.html #: openedx/core/djangoapps/user_api/api.py msgid "Confirm Email" -msgstr "" +msgstr "Konfirmasi Email" #: common/templates/student/edx_ace/recoveryemailcreate/email/subject.txt #, python-format @@ -4904,32 +5291,38 @@ msgid "" "Completed the course \"{course_name}\" ({course_mode}, {start_date} - " "{end_date})" msgstr "" +"Selesaikan pelatihan \"{course_name}\" ({course_mode}, {start_date} - " +"{end_date})" #: lms/djangoapps/badges/events/course_complete.py #, python-brace-format msgid "Completed the course \"{course_name}\" ({course_mode})" -msgstr "" +msgstr "Selesaikan pelatihan \"{course_name}\" ({course_mode})" #: lms/djangoapps/badges/models.py msgid "The badge image must be square." -msgstr "" +msgstr "Gambar Pita/emblem harus berbentuk kotak." #: lms/djangoapps/badges/models.py msgid "The badge image file size must be less than 250KB." -msgstr "" +msgstr "Ukuran file gambar pita/emblem harus kurang dari 250KB. " #: lms/djangoapps/badges/models.py msgid "This value must be all lowercase." -msgstr "" +msgstr "Nilai ini harus semuanya huruf kecil." #: lms/djangoapps/badges/models.py msgid "The course mode for this badge image. For example, \"verified\" or \"honor\"." msgstr "" +"Mode pelatihan untuk gambar pita/emblem. Sebagai contoh, \"teruji\" atau " +"\"terhormat\"." #: lms/djangoapps/badges/models.py msgid "" "Badge images must be square PNG files. The file size should be under 250KB." msgstr "" +"Gambar pita/emblem harus dalam file PNG yang berbentuk kotak. Ukuran file " +"sebaiknya kurang dari 250KB." #: lms/djangoapps/badges/models.py msgid "" @@ -4937,10 +5330,13 @@ msgid "" "any course modes that do not have a specified badge image. You can have only" " one default image." msgstr "" +"Atur nilai ini ke Benar jika Anda ingin gambar ini menjadi gambar default " +"untuk mode pelatihan apa pun yang tidak memiliki gambar pita/emblem yang " +"ditentukan. Anda hanya dapat memiliki satu gambar default." #: lms/djangoapps/badges/models.py msgid "There can be only one default image." -msgstr "" +msgstr "Hanya boleh ada satu gambar default." #: lms/djangoapps/badges/models.py msgid "" @@ -4948,6 +5344,10 @@ msgid "" "comma, and the slug of a badge class you have created that has the issuing " "component 'openedx__course'. For example: 3,enrolled_3_courses" msgstr "" +"Di setiap baris, masukkan jumlah kursus yang telah diselesaikan untuk " +"memberikan pita/emblem untuk, koma, dan slug kelas pita/emblem yang Anda " +"buat yang memiliki komponen penerbitan 'openedx_course'. Misalnya: 3, " +"enrolled_3_courses" #: lms/djangoapps/badges/models.py msgid "" @@ -4955,6 +5355,10 @@ msgid "" "comma, and the slug of a badge class you have created that has the issuing " "component 'openedx__course'. For example: 3,enrolled_3_courses" msgstr "" +"Di setiap baris, masukkan jumlah pelatihan yang terdaftar untuk memberikan " +"pita/emblem kepada, koma, dan slug kelas pita/emblem yang Anda buat yang " +"memiliki komponen 'openx__course' yang diterbitkan. Misalnya: 3, " +"enrolled_3_courses" #: lms/djangoapps/badges/models.py msgid "" @@ -4967,23 +5371,23 @@ msgstr "" #: lms/djangoapps/badges/models.py msgid "Please check the syntax of your entry." -msgstr "" +msgstr "Tolong periksa kembali sintaksis dari catatan Anda." #: lms/djangoapps/branding/api.py msgid "Take free online courses at edX.org" -msgstr "" +msgstr "Ambil pelatihan online gratis di edX.org" -#. Translators: 'EdX', 'edX', and 'Open edX' are trademarks of 'edX Inc.'. +#. Translators: 'edX' and 'Open edX' are trademarks of 'edX Inc.'. #. Please do not translate any of these trademarks and company names. #: lms/djangoapps/branding/api.py #, python-brace-format msgid "" -"© {org_name}. All rights reserved except where noted. EdX, Open edX and " -"their respective logos are trademarks or registered trademarks of edX Inc." +"© {org_name}. All rights reserved except where noted. edX, Open edX and " +"their respective logos are registered trademarks of edX Inc." msgstr "" #. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# -#. Translators: 'Open edX' is a brand, please keep this untranslated. +#. Translators: 'Open edX' is a trademark, please keep this untranslated. #. See http://openedx.org for more information. #. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# #. Translators: 'Open edX' is a brand, please keep this untranslated. See @@ -5006,7 +5410,7 @@ msgstr "Hubungi Kami" #: lms/djangoapps/branding/api.py msgid "Help Center" -msgstr "" +msgstr "Pusat Bantuan" #: lms/djangoapps/branding/api.py #: lms/templates/static_templates/media-kit.html @@ -5028,7 +5432,7 @@ msgstr "Tentang" #: lms/djangoapps/branding/api.py #, python-brace-format msgid "{platform_name} for Business" -msgstr "" +msgstr "{platform_name} untuk Bisnis" #: lms/djangoapps/branding/api.py lms/templates/static_templates/contact.html #: themes/red-theme/lms/templates/footer.html @@ -5067,7 +5471,7 @@ msgstr "Kebijakan Privasi" #: lms/djangoapps/branding/api.py msgid "Accessibility Policy" -msgstr "" +msgstr "Kebijakan Aksesibilitas" #. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# #. Translators: This is a legal document users must agree to @@ -5082,64 +5486,70 @@ msgstr "Ketentuan Layanan" #: lms/djangoapps/branding/api.py msgid "Sitemap" -msgstr "" +msgstr "Sitemap" #: lms/djangoapps/branding/api.py msgid "Affiliates" -msgstr "" +msgstr "Afiliasi" #: lms/djangoapps/branding/api.py msgid "Open edX" -msgstr "" +msgstr "Open edX" #: lms/djangoapps/branding/api.py msgid "Trademark Policy" -msgstr "" +msgstr "Kebijakan Merek Dagang" #: lms/djangoapps/branding/api.py #, python-brace-format msgid "Download the {platform_name} mobile app from the Apple App Store" -msgstr "" +msgstr "Unduh app seluler {platform_name} dari Apple App Store" #: lms/djangoapps/branding/api.py #, python-brace-format msgid "Download the {platform_name} mobile app from Google Play" -msgstr "" +msgstr "Unduh app seluler {platform_name} dari Google Play" #. Translators: Bulk email from address e.g. ("Physics 101" Course Staff) #: lms/djangoapps/bulk_email/tasks.py #, python-brace-format msgid "\"{course_title}\" Course Staff" -msgstr "" +msgstr "Staf Pelatihan \"{course_title}\"" #: lms/djangoapps/ccx/plugins.py msgid "CCX Coach" -msgstr "" +msgstr "Pelatih CCX" #: lms/djangoapps/ccx/utils.py msgid "" "A CCX can only be created on this course through an external service. " "Contact a course admin to give you access." msgstr "" +"CCX hanya dapat dibuat pada pelatihan ini melalului layanan eksternal. " +"Kontak admin pelatihan untuk memberikan Anda akses." #: lms/djangoapps/ccx/utils.py #, python-brace-format msgid "The course is full: the limit is {max_student_enrollments_allowed}" msgstr "" +"Pelatihan sudah penuh: batas nya adalah {max_student_enrollments_allowed}" #: lms/djangoapps/ccx/views.py msgid "You must be a CCX Coach to access this view." -msgstr "" +msgstr "Anda harus menjadi Pelatih CCX untuk mengakses tampilan ini." #: lms/djangoapps/ccx/views.py msgid "You must be the coach for this ccx to access this view" -msgstr "" +msgstr "Anda harus menjadi pelatih untuk ccx ini untuk mengakses tampilan ini" #: lms/djangoapps/ccx/views.py msgid "" "You cannot create a CCX from a course using a deprecated id. Please create a" " rerun of this course in the studio to allow this action." msgstr "" +"Anda tidak dapat membuat CCX dari pelatihan menggunakan id yang tidak lagi " +"digunakan. Harap buat tayangan ulang pelatihan ini di studio untuk " +"mengizinkan tindakan ini." #: lms/djangoapps/certificates/models.py wiki/admin.py wiki/models/article.py msgid "created" @@ -5149,31 +5559,34 @@ msgstr "dibuat" #. messages. #: lms/djangoapps/certificates/models.py msgid "regenerated" -msgstr "" +msgstr "Diperbarui" #. Translators: This is a past-tense verb that is inserted into task progress #. messages as {action}. #: lms/djangoapps/certificates/models.py #: lms/djangoapps/instructor_task/tasks.py msgid "generated" -msgstr "" +msgstr "Dibuat" #. Translators: This string represents task was executed for all learners. #: lms/djangoapps/certificates/models.py msgid "All learners" -msgstr "" +msgstr "Semua Peserta" #. Translators: This string represents task was executed for students having #. exceptions. #: lms/djangoapps/certificates/models.py msgid "For exceptions" -msgstr "" +msgstr "Untuk pengecualian" #: lms/djangoapps/certificates/models.py msgid "" "A human-readable description of the example certificate. For example, " "'verified' or 'honor' to differentiate between two types of certificates." msgstr "" +"Deskripsi sertifikat contoh yang dapat dibaca manusia. Misalnya, " +"'terverifikasi' atau 'terhormat' untuk membedakan antara dua jenis " +"sertifikat." #: lms/djangoapps/certificates/models.py msgid "" @@ -5181,6 +5594,8 @@ msgid "" "receive a response from the queue to determine which example certificate was" " processed." msgstr "" +"Pengenal unik untuk sertifikat contoh. Ini digunakan ketika kami menerima " +"respons dari antrian untuk menentukan sertifikat contoh mana yang diproses." #: lms/djangoapps/certificates/models.py msgid "" @@ -5188,107 +5603,112 @@ msgid "" "response from the queue to validate that the sender is the same entity we " "asked to generate the certificate." msgstr "" +"Kunci akses untuk sertifikat contoh. Ini digunakan ketika kami menerima " +"respons dari antrian untuk memvalidasi bahwa pengirim adalah entitas yang " +"sama yang kami minta untuk membuat sertifikat." #: lms/djangoapps/certificates/models.py msgid "The full name that will appear on the certificate." -msgstr "" +msgstr "Nama panjang yang akan muncul di sertifikat." #: lms/djangoapps/certificates/models.py msgid "The template file to use when generating the certificate." -msgstr "" +msgstr "File template yang digunakan saat membuat sertifikat." #: lms/djangoapps/certificates/models.py msgid "The status of the example certificate." -msgstr "" +msgstr "Status Sertifikat Contoh" #: lms/djangoapps/certificates/models.py msgid "The reason an error occurred during certificate generation." -msgstr "" +msgstr "Alasan Eror yang terjadi selama pembuatan sertifikat." #: lms/djangoapps/certificates/models.py msgid "The download URL for the generated certificate." -msgstr "" +msgstr "URL unduhan untuk sertifikat yang dibuat." #: lms/djangoapps/certificates/models.py msgid "Name of template." -msgstr "" +msgstr "Nama Template" #: lms/djangoapps/certificates/models.py msgid "Description and/or admin notes." -msgstr "" +msgstr "Deskripsi dan/atau catatan admin." #: lms/djangoapps/certificates/models.py msgid "Django template HTML." -msgstr "" +msgstr "HTML template Django." #: lms/djangoapps/certificates/models.py msgid "Organization of template." -msgstr "" +msgstr "Penyusunan template." #: lms/djangoapps/certificates/models.py msgid "The course mode for this template." -msgstr "" +msgstr "Mode pelatihan untuk template ini." #: lms/djangoapps/certificates/models.py msgid "On/Off switch." -msgstr "" +msgstr "Tombil On/Off." #: lms/djangoapps/certificates/models.py msgid "Description of the asset." -msgstr "" +msgstr "Deskripsi dari Aset" #: lms/djangoapps/certificates/models.py msgid "Asset file. It could be an image or css file." -msgstr "" +msgstr "File Aset. Ini dapat berupa file gambar atau css." #: lms/djangoapps/certificates/models.py msgid "" "Asset's unique slug. We can reference the asset in templates using this " "value." msgstr "" +"Slug unik milik aset. Kami dapat mereferensikan aset dalam template " +"menggunakan nilai ini." #: lms/djangoapps/certificates/views/support.py msgid "user is not given." -msgstr "" +msgstr "Pengguna tidak diberikan." #: lms/djangoapps/certificates/views/support.py #, python-brace-format msgid "user '{user}' does not exist" -msgstr "" +msgstr "Pengguna '{user}' tidak ada" #: lms/djangoapps/certificates/views/support.py #, python-brace-format msgid "Course id '{course_id}' is not valid" -msgstr "" +msgstr "Id pelatihan '{course_id} tidak valid" #: lms/djangoapps/certificates/views/support.py #, python-brace-format msgid "The course does not exist against the given key '{course_key}'" -msgstr "" +msgstr "Pelatihan tidak ada terhadap kunci yang diberikan '{course_key}'" #: lms/djangoapps/certificates/views/support.py #, python-brace-format msgid "User {username} does not exist" -msgstr "" +msgstr "Pengguna {username} tidak ada" #: lms/djangoapps/certificates/views/support.py #, python-brace-format msgid "{course_key} is not a valid course key" -msgstr "" +msgstr "{course_key} adalah kunci pelatihan yang tidak valid" #: lms/djangoapps/certificates/views/support.py #, python-brace-format msgid "The course {course_key} does not exist" -msgstr "" +msgstr "Pelatihan {course_key} tidak ada" #: lms/djangoapps/certificates/views/support.py #, python-brace-format msgid "User {username} is not enrolled in the course {course_key}" -msgstr "" +msgstr "Pengguna {username} tidak di daftarkan pada pelatihan {course_key}" #: lms/djangoapps/certificates/views/support.py msgid "An unexpected error occurred while regenerating certificates." -msgstr "" +msgstr "Eror yang tidak terduga terjadi saat meregenerasi sertifikat. " #. Translators: This text describes the 'Honor' course certificate type. #: lms/djangoapps/certificates/views/webview.py @@ -5298,6 +5718,10 @@ msgid "" "the honor code established by {platform_name} and has completed all of the " "required tasks for this course under its guidelines." msgstr "" +"Sertifikat {cert_type} menandakan bahwa pelajar telah setuju untuk mematuhi " +"kode kehormatan yang ditetapkan oleh {platform_name} dan telah menyelesaikan" +" semua tugas yang dipersyaratkan untuk pelatihan ini berdasarkan pedoman " +"pelatihan." #. Translators: This text describes the 'ID Verified' course certificate #. type, which is a higher level of @@ -5312,6 +5736,11 @@ msgid "" "certificate also indicates that the identity of the learner has been checked" " and is valid." msgstr "" +"Sertifikat {cert_type} menandakan bahwa peserta telah setuju untuk mematuhi " +"kode kehormatan yang ditetapkan oleh {platform_name} dan telah menyelesaikan" +" semua tugas yang dipersyaratkan berdasarkan pedoman pelatihan. Sertifikat " +"{cert_type} juga menunjukkan bahwa identitas peserta telah diperiksa dan " +"valid." #. Translators: This text describes the 'XSeries' course certificate type. #. An XSeries is a collection of @@ -5323,11 +5752,13 @@ msgid "" "An {cert_type} certificate demonstrates a high level of achievement in a " "program of study, and includes verification of the student's identity." msgstr "" +"Sertifikat {cert_type} menunjukkan tingkat pencapaian yang tinggi dalam " +"program studi, dan termasuk verifikasi identitas siswa." #: lms/djangoapps/certificates/views/webview.py #, python-brace-format msgid "{month} {day}, {year}" -msgstr "" +msgstr "{month} {day}, {year}" #. Translators: This text represents the verification of the certificate #: lms/djangoapps/certificates/views/webview.py @@ -5336,13 +5767,15 @@ msgid "" "This is a valid {platform_name} certificate for {user_name}, who " "participated in {partner_short_name} {course_number}" msgstr "" +"Ini adalah sertifikat {platform_name} yang valid untuk {user_name}, yang " +"berpartisipasi dalam {partner_short_name} {course_number}" #. Translators: This text is bound to the HTML 'title' element of the page #. and appears in the browser title bar #: lms/djangoapps/certificates/views/webview.py #, python-brace-format msgid "{partner_short_name} {course_number} Certificate | {platform_name}" -msgstr "" +msgstr "{partner_short_name} {course_number} Sertifikat | {platform_name}" #. Translators: This text fragment appears after the student's name #. (displayed in a large font) on the certificate @@ -5354,6 +5787,8 @@ msgid "" "successfully completed, received a passing grade, and was awarded this " "{platform_name} {certificate_type} Certificate of Completion in " msgstr "" +"berhasil diselesaikan, menerima nilai kelulusan, dan diberikan Sertifikat " +"atas Penyelesaian {platform_name} {certificate_type} " #. Translators: This text describes the purpose (and therefore, value) of a #. course certificate @@ -5363,6 +5798,8 @@ msgid "" "{platform_name} acknowledges achievements through certificates, which are " "awarded for course activities that {platform_name} students complete." msgstr "" +"{platform_name} mengakui pencapaian melalui sertifikat, yang diberikan untuk" +" kegiatan pelatihan {platform_name} yang siswa selesaikan." #. Translators: 'All rights reserved' is a legal term used in copyrighting to #. protect published content @@ -5370,7 +5807,7 @@ msgstr "" #: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/base_body.html #: themes/red-theme/lms/templates/ace_common/edx_ace/common/base_body.html msgid "All rights reserved" -msgstr "" +msgstr "Seluruh hak cipta" #. Translators: This text is bound to the HTML 'title' element of the page #. and appears @@ -5378,32 +5815,32 @@ msgstr "" #. recognized #: lms/djangoapps/certificates/views/webview.py msgid "Invalid Certificate" -msgstr "" +msgstr "Sertifikat Tidak Valid" #. Translators: This line appears as a byline to a header image and describes #. the purpose of the page #: lms/djangoapps/certificates/views/webview.py msgid "Certificate Validation" -msgstr "" +msgstr "Validasi Sertifikat" #. Translators: Accomplishments describe the awards/certifications obtained by #. students on this platform #: lms/djangoapps/certificates/views/webview.py #, python-brace-format msgid "About {platform_name} Accomplishments" -msgstr "" +msgstr "Tentang Pencapaian {platform_name}" #. Translators: This line appears on the page just before the generation date #. for the certificate #: lms/djangoapps/certificates/views/webview.py msgid "Issued On:" -msgstr "" +msgstr "Diterbitkan pada:" #. Translators: The Certificate ID Number is an alphanumeric value unique to #. each individual certificate #: lms/djangoapps/certificates/views/webview.py msgid "Certificate ID Number" -msgstr "" +msgstr "Nomor ID Sertifikat" #: lms/djangoapps/certificates/views/webview.py #: lms/templates/certificates/invalid.html @@ -5414,7 +5851,7 @@ msgstr "Tentang Sertifikat {platform_name}" #: lms/djangoapps/certificates/views/webview.py #, python-brace-format msgid "How {platform_name} Validates Student Certificates" -msgstr "" +msgstr "Bagaimana {platform_name} memvalidasi sertifikat peserta" #. Translators: This text describes the validation mechanism for a #. certificate file (known as GPG security) @@ -5426,49 +5863,53 @@ msgid "" "key. For independent verification, {platform_name} uses what is called a " "\"detached signature\""\"." msgstr "" +"Sertifikat yang dikeluarkan oleh {platform_name} ditandatangani oleh kunci " +"gpg sehingga mereka dapat divalidasi secara independen oleh siapa pun dengan" +" kunci publik {platform_name}. Untuk verifikasi independen, {platform_name} " +"menggunakan apa yang disebut \"tanda tangan terpisah\" & quot; \"." #: lms/djangoapps/certificates/views/webview.py msgid "Validate this certificate for yourself" -msgstr "" +msgstr "Validasi Sertifikat ini untuk Anda sendiri" #. Translators: This text describes (at a high level) the mission and charter #. the edX platform and organization #: lms/djangoapps/certificates/views/webview.py #, python-brace-format msgid "{platform_name} offers interactive online classes and MOOCs." -msgstr "" +msgstr "{platform_name} menawarkan kelas online interaktif and MOOCs." #: lms/djangoapps/certificates/views/webview.py #, python-brace-format msgid "About {platform_name}" -msgstr "" +msgstr "Tentang {platform_name}" #: lms/djangoapps/certificates/views/webview.py #, python-brace-format msgid "Learn more about {platform_name}" -msgstr "" +msgstr "Pelajari lebih banyak tentang {platform_name}" #: lms/djangoapps/certificates/views/webview.py #, python-brace-format msgid "Learn with {platform_name}" -msgstr "" +msgstr "Belajar bersama {platform_name}" #: lms/djangoapps/certificates/views/webview.py #, python-brace-format msgid "Work at {platform_name}" -msgstr "" +msgstr "Bekerja pada {platform_name}" #: lms/djangoapps/certificates/views/webview.py #, python-brace-format msgid "Contact {platform_name}" -msgstr "" +msgstr "Kontak {platform_name}" #. Translators: This text appears near the top of the certficate and #. describes the guarantee provided by edX #: lms/djangoapps/certificates/views/webview.py #, python-brace-format msgid "{platform_name} acknowledges the following student accomplishment" -msgstr "" +msgstr "{platform_name} mengakui pencapaian siswa berikut" #. Translators: This text represents the description of course #: lms/djangoapps/certificates/views/webview.py @@ -5477,12 +5918,14 @@ msgid "" "a course of study offered by {partner_short_name}, an online learning " "initiative of {partner_long_name}." msgstr "" +"Program pembeljaran yang ditawarkan oleh {partner_short_name}, sebuah " +"inisiatif pembelajaran online dari {partner_long_name}." #. Translators: This text represents the description of course #: lms/djangoapps/certificates/views/webview.py #, python-brace-format msgid "a course of study offered by {partner_short_name}." -msgstr "" +msgstr "Pelatihan pembelajaran yang ditawarkan oleh {partner_short_name}." #: lms/djangoapps/certificates/views/webview.py #, python-brace-format @@ -5494,11 +5937,12 @@ msgstr "Saya menyelesaikan kursus {course_title} di {platform_name}." msgid "" "I completed a course at {platform_name}. Take a look at my certificate." msgstr "" +"Saya menyelesaikan pelatihan {platform_name}. Lihatlah sertifikat saya." #: lms/djangoapps/certificates/views/webview.py #, python-brace-format msgid "More Information About {user_name}'s Certificate:" -msgstr "" +msgstr "Informasi lebih lanjut tentang Sertifikat milik {user_name}:" #. Translators: This line is displayed to a user who has completed a course #. and achieved a certification @@ -5514,13 +5958,15 @@ msgid "" "Congratulations! This page summarizes what you accomplished. Show it off to " "family, friends, and colleagues in your social and professional networks." msgstr "" +"Selamat! Halaman ini merangkum apa yang Anda capai. Tunjukkan pada keluarga," +" teman, dan kolega di jaringan sosial dan profesional Anda." #. Translators: This line leads the reader to understand more about the #. certificate that a student has been awarded #: lms/djangoapps/certificates/views/webview.py #, python-brace-format msgid "More about {fullname}'s accomplishment" -msgstr "" +msgstr "Lebih lanjut tentang pencapaian milik {fullname}" #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py @@ -5546,19 +5992,19 @@ msgstr "Persen" #: lms/djangoapps/class_dashboard/dashboard_data.py msgid "Opened by this number of students" -msgstr "" +msgstr "Dibuka dengan jumlah siswa ini" #: lms/djangoapps/class_dashboard/dashboard_data.py msgid "subsections" -msgstr "" +msgstr "Sub bagian" #: lms/djangoapps/class_dashboard/dashboard_data.py msgid "Count of Students" -msgstr "" +msgstr "Jumlah Siswa" #: lms/djangoapps/class_dashboard/dashboard_data.py msgid "Percent of Students" -msgstr "" +msgstr "Persen Siswa" #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/templates/instructor/instructor_dashboard_2/student_admin.html @@ -5567,25 +6013,27 @@ msgstr "Skor" #: lms/djangoapps/class_dashboard/dashboard_data.py msgid "problems" -msgstr "" +msgstr "Problem/Masalah" #: lms/djangoapps/commerce/api/v1/serializers.py #, python-brace-format msgid "{course_id} is not a valid course key." -msgstr "" +msgstr "{course_id} bukanlah kunci pelatihan yang valid." #: lms/djangoapps/commerce/api/v1/serializers.py #, python-brace-format msgid "Course {course_id} does not exist." -msgstr "" +msgstr "Pelatihan {course_id} tidak ada." #: lms/djangoapps/commerce/models.py msgid "Use the checkout page hosted by the E-Commerce service." -msgstr "" +msgstr "Gunakan halaman checout yang dihosting oleh layanan E-Commerce." #: lms/djangoapps/commerce/models.py msgid "Path to course(s) checkout page hosted by the E-Commerce service." msgstr "" +"Jalur ke halaman checkout pelatihan(s) yang diselenggarakan oleh layanan " +"E-Commerce." #: lms/djangoapps/commerce/models.py openedx/core/djangoapps/catalog/models.py #: openedx/core/djangoapps/credentials/models.py @@ -5600,18 +6048,22 @@ msgid "" "Specified in seconds. Enable caching by setting this to a value greater than" " 0." msgstr "" +"Ditentukan dalam detik. Aktifkan caching dengan mengaturnya ke nilai yang " +"lebih besar dari 0." #: lms/djangoapps/commerce/models.py msgid "Path to order receipt page." -msgstr "" +msgstr "Jalur untuk meminta halaman tanda terima." #: lms/djangoapps/commerce/models.py msgid "Automatically approve valid refund requests, without manual processing" msgstr "" +"Secara otomatis menyetujui permintaan pengembalian uang yang valid, tanpa " +"pemrosesan manual" #: lms/djangoapps/commerce/utils.py lms/djangoapps/shoppingcart/models.py msgid "[Refund] User-Requested Refund" -msgstr "" +msgstr "[Refund] Pengembalian Dana yang Diminta Pengguna" #: lms/djangoapps/commerce/utils.py #, python-brace-format @@ -5619,6 +6071,8 @@ msgid "" "A refund request has been initiated for {username} ({email}). To process " "this request, please visit the link(s) below." msgstr "" +"Permintaan pengembalian dana telah diajukan untuk {username} ({email}). " +"Untuk memproses permintaan ini, silakan kunjungi tautan(s) di bawah ini." #: lms/djangoapps/commerce/views.py lms/djangoapps/shoppingcart/pdf.py msgid "Receipt" @@ -5630,32 +6084,36 @@ msgstr "Pembayaran Gagal" #: lms/djangoapps/commerce/views.py msgid "There was a problem with this transaction. You have not been charged." -msgstr "" +msgstr "Ada masalah dengan transaksi ini. Anda belum dikenakan biaya." #: lms/djangoapps/commerce/views.py msgid "" "Make sure your information is correct, or try again with a different card or" " another form of payment." msgstr "" +"Pastikan informasi Anda benar, atau coba lagi dengan kartu yang berbeda atau" +" bentuk pembayaran lain." #: lms/djangoapps/commerce/views.py msgid "" "A system error occurred while processing your payment. You have not been " "charged." msgstr "" +"Terjadi kesalahan sistem saat memproses pembayaran Anda. Anda belum dikenai " +"biaya." #: lms/djangoapps/commerce/views.py msgid "Please wait a few minutes and then try again." -msgstr "" +msgstr "Harap tunggu sebentar dan kemudian coba kembali." #: lms/djangoapps/commerce/views.py #, python-brace-format msgid "For help, contact {payment_support_link}." -msgstr "" +msgstr "Untuk bantuan, kontak {payment_support_link}." #: lms/djangoapps/commerce/views.py msgid "An error occurred while creating your receipt." -msgstr "" +msgstr "Eror terjadi saat membuat bukti pembayaran Anda." #: lms/djangoapps/commerce/views.py #, python-brace-format @@ -5663,22 +6121,24 @@ msgid "" "If your course does not appear on your dashboard, contact " "{payment_support_link}." msgstr "" +"Jika pelatihan tidak muncul di dasbor Anda, silahkan kontak " +"{payment_support_link}." #: lms/djangoapps/course_goals/models.py msgid "Earn a certificate" -msgstr "" +msgstr "Dapatkan sertifikat" #: lms/djangoapps/course_goals/models.py msgid "Complete the course" -msgstr "" +msgstr "Selesaikan Pelatihan" #: lms/djangoapps/course_goals/models.py msgid "Explore the course" -msgstr "" +msgstr "Eksplor Pelatihan" #: lms/djangoapps/course_goals/models.py msgid "Not sure yet" -msgstr "" +msgstr "Belum yakin" #: lms/djangoapps/course_wiki/tab.py lms/djangoapps/course_wiki/views.py #: lms/templates/wiki/base.html @@ -5691,40 +6151,40 @@ msgstr "Wiki" #: lms/djangoapps/course_wiki/views.py #, python-brace-format msgid "This is the wiki for **{organization}**'s _{course_name}_." -msgstr "" +msgstr "Ini adalah wiki untuk _ {course_name} _ milik ** {organization} **." #: lms/djangoapps/course_wiki/views.py msgid "Course page automatically created." -msgstr "" +msgstr "Halaman pelatihan dibuat secara otomatis." #: lms/djangoapps/course_wiki/views.py #, python-brace-format msgid "Welcome to the {platform_name} Wiki" -msgstr "" +msgstr "Selamat datang di Wiki {platform_name}" #: lms/djangoapps/course_wiki/views.py msgid "Visit a course wiki to add an article." -msgstr "" +msgstr "Kunjungi wiki pelatihan untuk menambahkan artikel." #: lms/djangoapps/courseware/access_response.py msgid "Course has not started" -msgstr "" +msgstr "Pelatiahn belum dimulai" #: lms/djangoapps/courseware/access_response.py msgid "Course does not start until {}" -msgstr "" +msgstr "Pelatihan tidak dimulai sampai {}" #: lms/djangoapps/courseware/access_response.py msgid "You have unfulfilled milestones" -msgstr "" +msgstr "Anda memiliki pencapaian yang tidak terpenuhi" #: lms/djangoapps/courseware/access_response.py msgid "You do not have access to this course" -msgstr "" +msgstr "Anda tidak memiliki akses terhadap pelatihan ini" #: lms/djangoapps/courseware/access_response.py msgid "You do not have access to this course on a mobile device" -msgstr "" +msgstr "Anda tidak memiliki akses ke pelatihan ini di perangkat seluler" #: lms/djangoapps/courseware/course_tools.py #: lms/templates/dashboard/_dashboard_course_listing.html @@ -5739,63 +6199,71 @@ msgstr "Tingkatkan ke Terverifikasi" #: lms/djangoapps/courseware/date_summary.py #, python-brace-format msgid "{relative} ago - {absolute}" -msgstr "" +msgstr "{relative} yang lalu - {absolute}" #: lms/djangoapps/courseware/date_summary.py #, python-brace-format msgid "in {relative} - {absolute}" -msgstr "" +msgstr "di {relative} - {absolute}" #: lms/djangoapps/courseware/date_summary.py msgid "Course Starts" -msgstr "" +msgstr "Awal Mulai Pelatihan" #: lms/djangoapps/courseware/date_summary.py msgid "Don't forget to add a calendar reminder!" -msgstr "" +msgstr "Jangan lupa untuk menambahkan pengingat tanggal!" #: lms/djangoapps/courseware/date_summary.py #, python-brace-format msgid "Course starts in {time_remaining_string} on {course_start_date}." msgstr "" +"Pelatihan mulai di {time_remaining_string} pada tanggal " +"{course_start_date}." #: lms/djangoapps/courseware/date_summary.py #, python-brace-format msgid "Course starts in {time_remaining_string} at {course_start_time}." -msgstr "" +msgstr "Pelatihan mulai di {time_remaining_string} pada {course_start_time}." #: lms/djangoapps/courseware/date_summary.py msgid "Course End" -msgstr "" +msgstr "Pelatihan Berakhir" #: lms/djangoapps/courseware/date_summary.py msgid "" "To earn a certificate, you must complete all requirements before this date." msgstr "" +"Untuk mendapatkan sertifikat, Anda harus menyelesaikan semua persyaratan " +"sebelum tanggal tersebut." #: lms/djangoapps/courseware/date_summary.py msgid "After this date, course content will be archived." -msgstr "" +msgstr "Setelah tanggal tersebut, konten pelatihan akan diarsipkan." #: lms/djangoapps/courseware/date_summary.py msgid "" "This course is archived, which means you can review course content but it is" " no longer active." msgstr "" +"Pelatihan ini diarsipkan, yang berarti Anda dapat meninjau kembali konten " +"pelatihan tetapi tidak lagi aktif." #: lms/djangoapps/courseware/date_summary.py #, python-brace-format msgid "This course is ending in {time_remaining_string} on {course_end_date}." msgstr "" +"Kursus ini berakhir di {time_remaining_string} pada tanggal " +"{course_end_date}." #: lms/djangoapps/courseware/date_summary.py #, python-brace-format msgid "This course is ending in {time_remaining_string} at {course_end_time}." -msgstr "" +msgstr "Pelatihan berakhir di {time_remaining_string} pada {course_end_time}." #: lms/djangoapps/courseware/date_summary.py msgid "Certificate Available" -msgstr "" +msgstr "Sertfikat Tersedia" #: lms/djangoapps/courseware/date_summary.py msgid "Day certificates will become available for passing verified learners." @@ -5808,6 +6276,9 @@ msgid "" "{time_remaining_string} from now. You will also be able to view your " "certificates on your {learner_profile_link}." msgstr "" +"Jika Anda telah mendapatkan sertifikat, Anda akan dapat mengaksesnya " +"{time_remaining_string} mulai sekarang. Anda juga akan dapat melihat " +"sertifikat Anda di {learner_profile_link} Anda." #: lms/djangoapps/courseware/date_summary.py #: openedx/features/learner_profile/templates/learner_profile/learner_profile.html @@ -5816,27 +6287,32 @@ msgstr "Profile Peserta" #: lms/djangoapps/courseware/date_summary.py msgid "We are working on generating course certificates." -msgstr "" +msgstr "Kami sedang mengerjakan pembuatan sertifikat pelatihan." #: lms/djangoapps/courseware/date_summary.py msgid "Upgrade to Verified Certificate" -msgstr "" +msgstr "Upgrade ke Sertifikat Terverifikasi" #: lms/djangoapps/courseware/date_summary.py msgid "Verification Upgrade Deadline" -msgstr "" +msgstr "Batas Waktu Upgrade Verifikasi" #: lms/djangoapps/courseware/date_summary.py msgid "" "Don't miss the opportunity to highlight your new knowledge and skills by " "earning a verified certificate." msgstr "" +"Jangan lewatkan kesempatan untuk menghighlight pengetahuan dan keterampilan " +"baru Anda dengan mendapatkan sertifikat terverifikasi." #: lms/djangoapps/courseware/date_summary.py msgid "" "You are still eligible to upgrade to a Verified Certificate! Pursue it to " "highlight the knowledge and skills you gain in this course." msgstr "" +"Anda masih berhak untuk mengupgrade ke Sertifikat Terverifikasi! " +"Lanjutkanlah untuk menghighlight pengetahuan dan keterampilan yang Anda " +"peroleh dalam pelatihan ini." #. Translators: This describes the time by which the user #. should upgrade to the verified track. 'date' will be @@ -5845,7 +6321,7 @@ msgstr "" #: lms/djangoapps/courseware/date_summary.py #, python-brace-format msgid "by {date}" -msgstr "" +msgstr "per {date}" #: lms/djangoapps/courseware/date_summary.py #, python-brace-format @@ -5853,11 +6329,15 @@ msgid "" "Don't forget, you have {time_remaining_string} left to upgrade to a Verified" " Certificate." msgstr "" +"Jangan lupa, Anda memiliki {time_remaining_string} tersisa untuk updgrade ke" +" Sertifikat Terverifikasi." #: lms/djangoapps/courseware/date_summary.py #, python-brace-format msgid "Don't forget to upgrade to a verified certificate by {localized_date}." msgstr "" +"Jangan lupa untuk upgrade ke sertifikat yang diverifikasi oleh " +"{localized_date}." #: lms/djangoapps/courseware/date_summary.py #, python-brace-format @@ -5867,41 +6347,50 @@ msgid "" "your identity on {platform_name} if you have not done so " "already.{button_panel}" msgstr "" +"Agar memenuhi syarat untuk mendapatkan sertifikat, Anda harus memenuhi semua" +" persyaratan penilaian pelatihan, upgrade sebelum batas waktu pelatihan, dan" +" berhasil memverifikasi identitas Anda di {platform_name} jika Anda belum " +"melakukannya. {button_panel}" #: lms/djangoapps/courseware/date_summary.py #, python-brace-format msgid "Upgrade ({upgrade_price})" -msgstr "" +msgstr "Upgrade ({upgrade_price})" +#: lms/djangoapps/courseware/date_summary.py #: cms/templates/group_configurations.html #: lms/templates/courseware/program_marketing.html #: openedx/features/course_experience/templates/course_experience/course-home-fragment.html msgid "Learn More" -msgstr "Belajarlah lagi" +msgstr "Belajarlah Lagi" #: lms/djangoapps/courseware/date_summary.py msgid "Retry Verification" -msgstr "" +msgstr "Coba Kembali Verifikasi" #: lms/djangoapps/courseware/date_summary.py msgid "Verify My Identity" -msgstr "" +msgstr "Verifikasi Identitas Saya" #: lms/djangoapps/courseware/date_summary.py msgid "Missed Verification Deadline" -msgstr "" +msgstr "Batas Waktu Verifikasi yang Terlewat" #: lms/djangoapps/courseware/date_summary.py msgid "" "Unfortunately you missed this course's deadline for a successful " "verification." msgstr "" +"Mohon maaf, Anda melewatkan batas waktu pelatihan ini sebagai syarat " +"berhasilnya proses verifikasi." #: lms/djangoapps/courseware/date_summary.py msgid "" "You must successfully complete verification before this date to qualify for " "a Verified Certificate." msgstr "" +"Anda harus menyelesaikan verifikasi dengan berhasil sebelum tanggal ini " +"untuk memenuhi syarat untuk mendapatkan Sertifikat Terverifikasi." #: lms/djangoapps/courseware/masquerade.py #, python-brace-format @@ -5921,19 +6410,23 @@ msgid "" "This type of component cannot be shown while viewing the course as a " "specific student." msgstr "" +"Tipe komponen ini tidak dapat ditampilkan ketika melihat pelatihan sebagai " +"siswa tertentu." #: lms/djangoapps/courseware/models.py msgid "" "Number of days a learner has to upgrade after content is made available" msgstr "" +"Jumlah hari yang harus di-upgrade oleh para peserta setelah konten yang " +"dibuat tersedia" #: lms/djangoapps/courseware/models.py msgid "Disable the dynamic upgrade deadline for this course run." -msgstr "" +msgstr "Nonaktifkan batas waktu upgrade dinamis untuk pelatihan ini berjalan." #: lms/djangoapps/courseware/models.py msgid "Disable the dynamic upgrade deadline for this organization." -msgstr "" +msgstr "Nonaktifkan batas waktu updgrade untuk organisasi ini." #: lms/djangoapps/courseware/tabs.py lms/templates/courseware/syllabus.html msgid "Syllabus" @@ -5959,39 +6452,45 @@ msgid "" "You are not signed in. To see additional course content, {sign_in_link} or " "{register_link}, and enroll in this course." msgstr "" +"Anda belum signed in. Untuk melihat konten pelatihan tambahan, " +"{sign_in_link} atau {register_link}, dan daftarkan diri dalam pelatihan ini." #: lms/djangoapps/courseware/views/index.py #: lms/djangoapps/courseware/views/views.py #: openedx/core/lib/xblock_builtin/xblock_discussion/xblock_discussion/__init__.py msgid "sign in" -msgstr "" +msgstr "sign in" #: lms/djangoapps/courseware/views/index.py #: lms/djangoapps/courseware/views/views.py #: openedx/core/lib/xblock_builtin/xblock_discussion/xblock_discussion/__init__.py #: openedx/features/course_experience/views/course_home_messages.py msgid "register" -msgstr "" +msgstr "Daftar/Register" #: lms/djangoapps/courseware/views/views.py msgid "Your enrollment: Audit track" -msgstr "" +msgstr "Pendaftaran Anda: Jalur Audit" #: lms/djangoapps/courseware/views/views.py msgid "" "You are enrolled in the audit track for this course. The audit track does " "not include a certificate." msgstr "" +"Anda terdaftar di jalur audit untuk pelatihan ini. Jalur audit tidak " +"termasuk sertifikat." #: lms/djangoapps/courseware/views/views.py msgid "Your enrollment: Honor track" -msgstr "" +msgstr "Pendaftaran Anda: Jalur Kehormatan" #: lms/djangoapps/courseware/views/views.py msgid "" "You are enrolled in the honor track for this course. The honor track does " "not include a certificate." msgstr "" +"Anda terdaftar di jalur kehormatan untuk pelatihan ini. Jalur kehormatan " +"tidak termasuk sertifikat." #: lms/djangoapps/courseware/views/views.py msgid "We're working on it..." @@ -6002,14 +6501,17 @@ msgid "" "We're creating your certificate. You can keep working in your courses and a " "link to it will appear here and on your Dashboard when it is ready." msgstr "" +"Kami sedang membuat sertifikat milik Anda. Anda dapat tetap mengikuti " +"pelatihan dan tautan ke pelatihan akan muncul di sini dan di Dasbor Anda " +"saat sudah siap." #: lms/djangoapps/courseware/views/views.py msgid "Your certificate has been invalidated" -msgstr "" +msgstr "Sertifikat Anda sudah tidak berlaku lagi" #: lms/djangoapps/courseware/views/views.py msgid "Please contact your course team if you have any questions." -msgstr "" +msgstr "Harap hubungi tim pelatihan Anda jika Anda memiliki pertanyaan." #: lms/djangoapps/courseware/views/views.py msgid "Congratulations, you qualified for a certificate!" @@ -6017,11 +6519,11 @@ msgstr "Selamat, Anda bisa mendapatkan sertifikat!" #: lms/djangoapps/courseware/views/views.py msgid "You've earned a certificate for this course." -msgstr "" +msgstr "Anda telah mendapatkan sertifikat untuk pelatihan ini." #: lms/djangoapps/courseware/views/views.py msgid "Certificate unavailable" -msgstr "" +msgstr "Sertifikat Tidak Tersedia" #: lms/djangoapps/courseware/views/views.py #, python-brace-format @@ -6029,6 +6531,8 @@ msgid "" "You have not received a certificate because you do not have a current " "{platform_name} verified identity." msgstr "" +"Anda belum menerima sertifikat karena Anda tidak memiliki identitas " +"terverifikasi {platform_name} saat ini." #: lms/djangoapps/courseware/views/views.py msgid "Your certificate is available" @@ -6037,49 +6541,65 @@ msgstr "Sertifikat Anda sudah tersedia" #: lms/djangoapps/courseware/views/views.py #, python-brace-format msgid "To see course content, {sign_in_link} or {register_link}." +msgstr "Untuk melihat konten pelatihan, {sign_in_link} atau {register_link}." + +#: lms/djangoapps/courseware/views/views.py +#: openedx/features/course_experience/views/course_home_messages.py +#, python-brace-format +msgid "{sign_in_link} or {register_link}." msgstr "" +#: lms/djangoapps/courseware/views/views.py +#: openedx/features/course_experience/views/course_home_messages.py +#: lms/templates/header/navbar-not-authenticated.html +#: lms/templates/navigation/navbar-not-authenticated.html +#: themes/edx.org/lms/templates/header/navbar-not-authenticated.html +msgid "Sign in" +msgstr "Masuk" + #: lms/djangoapps/courseware/views/views.py #, python-brace-format msgid "" "You must be enrolled in the course to see course content." " {enroll_link_start}Enroll now{enroll_link_end}." msgstr "" +"Anda harus terdaftar di pelatihan untuk melihat konten pelatihan. " +"{enroll_link_start}Daftar sekarang{enroll_link_end}." #: lms/djangoapps/courseware/views/views.py #: openedx/features/course_experience/views/course_home_messages.py msgid "You must be enrolled in the course to see course content." -msgstr "" +msgstr "Anda harus terdaftar di pelatihan untuk melihat konten pelatihan." #: lms/djangoapps/courseware/views/views.py msgid "Invalid location." -msgstr "" +msgstr "Lokasi tidak valid." #: lms/djangoapps/courseware/views/views.py #, python-brace-format msgid "User {username} has never accessed problem {location}" -msgstr "" +msgstr "Pengguna {username} belum pernah mengakses problem {location}" #: lms/djangoapps/courseware/views/views.py #, python-brace-format msgid "You must be signed in to {platform_name} to create a certificate." -msgstr "" +msgstr "Anda harus sign in ke {platform_name} untuk membuat sertifikat." #: lms/djangoapps/courseware/views/views.py msgid "Course is not valid" -msgstr "" +msgstr "Pelatihan tidak valid" #: lms/djangoapps/courseware/views/views.py msgid "Your certificate will be available when you pass the course." -msgstr "" +msgstr "Sertifikat Anda akan tersedia saat Anda lulus pelatihan." #: lms/djangoapps/courseware/views/views.py msgid "Certificate has already been created." -msgstr "" +msgstr "Sertifikat telah dibuat. " #: lms/djangoapps/courseware/views/views.py msgid "Certificate is being created." -msgstr "" +msgstr "Sertifikat sedang dibuat." #: lms/djangoapps/courseware/views/views.py #, python-brace-format @@ -6091,28 +6611,35 @@ msgstr "" #: lms/djangoapps/courseware/views/views.py msgid "Annual Household Income" -msgstr "" +msgstr "Pemasukan Rumah Tangga Tahunan" #: lms/djangoapps/courseware/views/views.py msgid "" "Tell us about your current financial situation. Why do you need assistance?" msgstr "" +"Beritahukan pada kami tentang situasi keuangan Anda saat ini. Mengapa Anda " +"memerlukan keringanan?" #: lms/djangoapps/courseware/views/views.py msgid "" "Tell us about your learning or professional goals. How will a Verified " "Certificate in this course help you achieve these goals?" msgstr "" +"Beritahukan kepada lami tentang tujuan pembelajaran atau profesional Anda. " +"Bagaimana Sertifikat Terverifikasi dalam pelatihan ini akan membantu Anda " +"mencapai tujuan tersebut?" #: lms/djangoapps/courseware/views/views.py msgid "" "Tell us about your plans for this course. What steps will you take to help " "you complete the course work and receive a certificate?" msgstr "" +"Beritahukan kepada kami tentang rencana akan Anda ambil untuk membantu Anda " +"menyelesaikan tugas-tugas pelatihan dan mendapatkan sertifikat? " #: lms/djangoapps/courseware/views/views.py msgid "Use between 250 and 500 words or so in your response." -msgstr "" +msgstr "Gunakan antara 250 hingga 500 kata atau lebih dalam respons Anda." #: lms/djangoapps/courseware/views/views.py msgid "" @@ -6120,16 +6647,21 @@ msgid "" "course does not appear in the list, make sure that you have enrolled in the " "audit track for the course." msgstr "" +"Pilih pelatihan yang Anda inginkan untuk mendapatkan sertifikat " +"terverifikasi. Jika pelatihan tidak muncul dalam daftar, pastikan Anda " +"mendaftar di jalur audit untuk pelatihan tersebut." #: lms/djangoapps/courseware/views/views.py msgid "Specify your annual household income in US Dollars." -msgstr "" +msgstr "Tentukan pendapatan rumah tangga tahunan Anda dalam US Dollars." #: lms/djangoapps/courseware/views/views.py msgid "" "I allow edX to use the information provided in this application (except for " "financial information) for edX marketing purposes." msgstr "" +"Saya mengizinkan edX untuk menggunakan informasi yang disediakan dalam " +"aplikasi ini (kecuali untuk informasi keuangan) untuk tujuan pemasaran edX." #: lms/djangoapps/dashboard/git_import.py #, python-brace-format @@ -6137,35 +6669,37 @@ msgid "" "Path {0} doesn't exist, please create it, or configure a different path with" " GIT_REPO_DIR" msgstr "" +"Jalur {0} tidak ada, harap buat terlebih dahulu, atau konfigurasikan jalur " +"yang berbeda dengan GIT_REPO_DIR" #: lms/djangoapps/dashboard/git_import.py msgid "" "Non usable git url provided. Expecting something like: " -"git@github.com:mitocw/edx4edx_lite.git" +"git@github.com:edx/edx4edx_lite.git" msgstr "" #: lms/djangoapps/dashboard/git_import.py msgid "Unable to get git log" -msgstr "" +msgstr "Tidak bisa mendapatkan git log" #: lms/djangoapps/dashboard/git_import.py msgid "git clone or pull failed!" -msgstr "" +msgstr "clone atau pull git gagal!" #: lms/djangoapps/dashboard/git_import.py msgid "Unable to run import command." -msgstr "" +msgstr "Tidak bisa menjalankan perintah impor." #: lms/djangoapps/dashboard/git_import.py msgid "The underlying module store does not support import." -msgstr "" +msgstr "Persediaan modul yang mendasari tidak mendukung impor." #. Translators: This is an error message when they ask for a #. particular version of a git repository and that version isn't #. available from the remote source they specified #: lms/djangoapps/dashboard/git_import.py msgid "The specified remote branch is not available." -msgstr "" +msgstr "Remote branch yang ditentukan tidak tersedia." #. Translators: Error message shown when they have asked for a git #. repository branch, a specific version within a repository, that @@ -6173,12 +6707,16 @@ msgstr "" #: lms/djangoapps/dashboard/git_import.py msgid "Unable to switch to specified branch. Please check your branch name." msgstr "" +"Tidak dapat beralih ke branch yang ditentukan. Silakan periksa nama branch " +"Anda." #: lms/djangoapps/dashboard/management/commands/git_add_course.py msgid "" "Import the specified git repository and optional branch into the modulestore" " and optionally specified directory." msgstr "" +"Impor repositori git yang telah ditentukan dan branch opsional ke " +"modulestore dan direktori spesifik secara opsional." #: lms/djangoapps/dashboard/sysadmin.py msgid "Must provide username" @@ -6199,27 +6737,27 @@ msgstr "Alamat email dibutuhkan (bukan username)" #: lms/djangoapps/dashboard/sysadmin.py #, python-brace-format msgid "Oops, failed to create user {user}, {error}" -msgstr "" +msgstr "Ups, gagal untuk membuat akun {user}, {error}" #: lms/djangoapps/dashboard/sysadmin.py #, python-brace-format msgid "User {user} created successfully!" -msgstr "" +msgstr "Berhasil membuat akun {user}!" #: lms/djangoapps/dashboard/sysadmin.py #, python-brace-format msgid "Cannot find user with email address {email_addr}" -msgstr "" +msgstr "Tidak dapat menemukan pengguna dengan alamat email {email_addr}" #: lms/djangoapps/dashboard/sysadmin.py #, python-brace-format msgid "Cannot find user with username {username} - {error}" -msgstr "" +msgstr "Tidak dapat menemukan pengguna dengan username {username} - {error}" #: lms/djangoapps/dashboard/sysadmin.py #, python-brace-format msgid "Deleted user {username}" -msgstr "" +msgstr "Hapus pengguna {username}" #: lms/djangoapps/dashboard/sysadmin.py msgid "Statistic" @@ -6248,19 +6786,20 @@ msgstr "Email" #: lms/djangoapps/dashboard/sysadmin.py msgid "Create User Results" -msgstr "" +msgstr "Buat Hasil Pengguna" #: lms/djangoapps/dashboard/sysadmin.py msgid "Delete User Results" -msgstr "" +msgstr "Hapus Hasil Pengguna" #: lms/djangoapps/dashboard/sysadmin.py msgid "The git repo location should end with '.git', and be a valid url" msgstr "" +"Lokasi repo git harus diakhiri dengna \".git\", dan menjadi URL yang valid" #: lms/djangoapps/dashboard/sysadmin.py msgid "Added Course" -msgstr "" +msgstr "Tambahkan Pelatihan" #: lms/djangoapps/dashboard/sysadmin.py cms/templates/course-create-rerun.html #: cms/templates/index.html lms/templates/shoppingcart/receipt.html @@ -6270,13 +6809,13 @@ msgstr "Nama Kursus" #: lms/djangoapps/dashboard/sysadmin.py msgid "Directory/ID" -msgstr "" +msgstr "Direktori/ID" #. Translators: "Git Commit" is a computer command; see #. http://gitref.org/basic/#commit #: lms/djangoapps/dashboard/sysadmin.py msgid "Git Commit" -msgstr "" +msgstr "Git Commit" #: lms/djangoapps/dashboard/sysadmin.py msgid "Last Change" @@ -6284,11 +6823,11 @@ msgstr "Perubahan terakhir" #: lms/djangoapps/dashboard/sysadmin.py msgid "Last Editor" -msgstr "" +msgstr "Editor Terakhir" #: lms/djangoapps/dashboard/sysadmin.py msgid "Information about all courses" -msgstr "" +msgstr "Informasi tentang semua pelatihan" #: lms/djangoapps/dashboard/sysadmin.py msgid "Deleted" @@ -6296,11 +6835,11 @@ msgstr "Terhapus" #: lms/djangoapps/dashboard/sysadmin.py msgid "course_id" -msgstr "" +msgstr "course_id" #: lms/djangoapps/dashboard/sysadmin.py msgid "# enrolled" -msgstr "" +msgstr "# enrolled" #: lms/djangoapps/dashboard/sysadmin.py msgid "# staff" @@ -6322,64 +6861,65 @@ msgstr "peran" msgid "full_name" msgstr "nama_lengkap" -#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.html -#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.txt -#, python-format -msgid "%(comment_username)s replied to <b>%(thread_title)s</b>:" -msgstr "" - -#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.html -#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.txt -msgid "View discussion" -msgstr "Lihat diskusi" - -#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/subject.txt -#, python-format -msgid "Response to %(thread_title)s" -msgstr "" - -#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/discussion/django_comment_client/base/views.py msgid "Title can't be empty" -msgstr "" +msgstr "Judul tidak dapat kosong" -#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/discussion/django_comment_client/base/views.py msgid "Body can't be empty" -msgstr "" +msgstr "Badan tidak dapat kosong" -#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/discussion/django_comment_client/base/views.py msgid "Topic doesn't exist" -msgstr "" +msgstr "Topik tidak ada" -#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/discussion/django_comment_client/base/views.py msgid "Comment level too deep" -msgstr "" +msgstr "Level comment terlalu dalam" -#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/discussion/django_comment_client/base/views.py msgid "" "Error uploading file. Please contact the site administrator. Thank you." msgstr "" "Terjadi kesalahan unggah berkas. Mohon kontak administrator situs. Terima " "kasih." -#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/discussion/django_comment_client/base/views.py msgid "Good" -msgstr "" +msgstr "Baik" + +#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.html +#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.txt +#, python-format +msgid "%(comment_username)s replied to <b>%(thread_title)s</b>:" +msgstr "%(comment_username)s balas ke <b>%(thread_title)s</b>:" + +#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.html +#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.txt +msgid "View discussion" +msgstr "Lihat diskusi" + +#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/subject.txt +#, python-format +msgid "Response to %(thread_title)s" +msgstr "Merespon terhadap %(thread_title)s" #: lms/djangoapps/edxnotes/helpers.py msgid "EdxNotes Service is unavailable. Please try again in a few minutes." msgstr "" +"Layanan EdxNotes tidak tersedia. Harap coba kembali dalam beberapa menit." #: lms/djangoapps/edxnotes/helpers.py msgid "Invalid JSON response received from notes api." -msgstr "" +msgstr "Respon JSON tidak valid diterima dari catatan api." #: lms/djangoapps/edxnotes/helpers.py msgid "Incorrect data received from notes api." -msgstr "" +msgstr "Data yang tidak benar diterima dari catatan api." #: lms/djangoapps/edxnotes/helpers.py msgid "No endpoint was provided for EdxNotes." -msgstr "" +msgstr "Tidak ada titik akhir yang disediakan oleh EdxNotes." #: lms/djangoapps/edxnotes/plugins.py lms/templates/edxnotes/edxnotes.html msgid "Notes" @@ -6387,40 +6927,46 @@ msgstr "Catatan" #: lms/djangoapps/email_marketing/models.py msgid "API key for accessing Sailthru. " -msgstr "" +msgstr "API key untuk mengakses Sailthru." #: lms/djangoapps/email_marketing/models.py msgid "API secret for accessing Sailthru. " -msgstr "" +msgstr "API secret untuk mengakses Sailthru." #: lms/djangoapps/email_marketing/models.py msgid "Sailthru list name to add new users to. " -msgstr "" +msgstr "Nama dari daftar Sailthru untuk menambahkan pengguna baru. " #: lms/djangoapps/email_marketing/models.py msgid "Sailthru connection retry interval (secs)." -msgstr "" +msgstr "Interval koneksi ulang Sailthru (secs)." #: lms/djangoapps/email_marketing/models.py msgid "Sailthru maximum retries." -msgstr "" +msgstr "Batas maksimum kesempatan mencoba kembali Sailthru." #: lms/djangoapps/email_marketing/models.py msgid "Sailthru template to use on welcome send." msgstr "" +"Template Sailthru untuk digunakan pada pengiriman ucapan selamat datang." #: lms/djangoapps/email_marketing/models.py msgid "Sailthru template to use on abandoned cart reminder. Deprecated." msgstr "" +"Template Sailthru untuk digunakan pada pengingat keranjang yang " +"ditinggalkan. Tidak berlaku lagi." #: lms/djangoapps/email_marketing/models.py msgid "" "Sailthru minutes to wait before sending abandoned cart message. Deprecated." msgstr "" +"Laporan Sailthru untuk menunggu sebelum mengirim pesan keranjang yang " +"ditinggalkan. Tidak berlaku lagi." #: lms/djangoapps/email_marketing/models.py msgid "Sailthru send template to use on enrolling for audit. " msgstr "" +"Template Pengiriman Sailthru yang digunakan pada pendaftaran untuk audit." #: lms/djangoapps/email_marketing/models.py msgid "Sailthru send template to use on passed ID verification." @@ -6433,49 +6979,65 @@ msgstr "" #: lms/djangoapps/email_marketing/models.py msgid "Sailthru send template to use on upgrading a course. Deprecated " msgstr "" +"Sailthru mengirim template untuk digunakan pada peningkatan pelatihan. Tidak" +" berlaku lagi" #: lms/djangoapps/email_marketing/models.py msgid "Sailthru send template to use on purchasing a course seat. Deprecated " msgstr "" +"Sailthru mengirim template untuk digunakan pada pembelian kursi pelatihan. " +"Tidak berlaku lagi" #: lms/djangoapps/email_marketing/models.py msgid "Use the Sailthru content API to fetch course tags." -msgstr "" +msgstr "Gunakan API konten Sailthru untuk mendapatkan label pelatihan. " #: lms/djangoapps/email_marketing/models.py msgid "Number of seconds to cache course content retrieved from Sailthru." msgstr "" +"Jumlah detik untuk menyembunyikan konten pelatihan yang diambil dari " +"Sailthru." #: lms/djangoapps/email_marketing/models.py msgid "Cost in cents to report to Sailthru for enrolls." -msgstr "" +msgstr "Biaya dalam sen untuk melapor ke Sailthru untuk mendaftar." #: lms/djangoapps/email_marketing/models.py msgid "" "Optional lms url scheme + host used to construct urls for content library, " "e.g. https://courses.edx.org." msgstr "" +"Skema url LMS opsional + host yang digunakan untuk membuat url untuk library" +" konten, misalnya https://courses.edx.org." #: lms/djangoapps/email_marketing/models.py msgid "" "Number of seconds to delay the sending of User Welcome email after user has " "been created" msgstr "" +"Jumlah waktu perlambatan dalam detik untuk mengirimkan email Sambutan " +"setelah pengguna terdaftar." #: lms/djangoapps/email_marketing/models.py msgid "" "The number of seconds to delay/timeout wait to get cookie values from " "sailthru." msgstr "" +"Jumlah waktu tunggu dalam detik untuk mendapatkan cookie dari sailthru." #: lms/djangoapps/instructor/paidcourse_enrollment_report.py #, python-brace-format msgid "{platform_name} Staff" -msgstr "" +msgstr "Staf {platform_name}" #: lms/djangoapps/instructor/paidcourse_enrollment_report.py msgid "Course Staff" -msgstr "" +msgstr "Staf Pelatihan" + +#: lms/djangoapps/instructor/paidcourse_enrollment_report.py +#: openedx/core/djangoapps/django_comment_common/models.py +msgid "Student" +msgstr "Siswa" #: lms/djangoapps/instructor/paidcourse_enrollment_report.py #: lms/templates/preview_menu.html @@ -6485,33 +7047,33 @@ msgstr "Staf" #: lms/djangoapps/instructor/paidcourse_enrollment_report.py msgid "Used Registration Code" -msgstr "" +msgstr "Gunakan Kode Registrasi" #: lms/djangoapps/instructor/paidcourse_enrollment_report.py msgid "Credit Card - Individual" -msgstr "" +msgstr "Kartu Kredit - Individual" #: lms/djangoapps/instructor/paidcourse_enrollment_report.py #, python-brace-format msgid "manually enrolled by username: {username}" -msgstr "" +msgstr "Didaftarkan secara manual oleh username: {username}" #: lms/djangoapps/instructor/paidcourse_enrollment_report.py msgid "Manually Enrolled" -msgstr "" +msgstr "Didaftarkan secara manual" #: lms/djangoapps/instructor/paidcourse_enrollment_report.py msgid "Data Integrity Error" -msgstr "" +msgstr "Kesalahan Integritas Data" #: lms/djangoapps/instructor/paidcourse_enrollment_report.py msgid "TBD" -msgstr "" +msgstr "TBD" #: lms/djangoapps/instructor/services.py #, python-brace-format msgid "Proctored Exam Review: {review_status}" -msgstr "" +msgstr "Ulasan Ujian Tersupervisi: {review_status}" #: lms/djangoapps/instructor/services.py #, python-brace-format @@ -6522,7 +7084,7 @@ msgstr "" #: lms/djangoapps/instructor/settings/common.py msgid "Your Platform Insights" -msgstr "" +msgstr "Wawasan Platform Anda" #: lms/djangoapps/instructor/views/api.py #, python-brace-format @@ -6530,6 +7092,8 @@ msgid "" "The {report_type} report is being created. To view the status of the report," " see Pending Tasks below." msgstr "" +"Laporan {report_type} telah dibuat. Untuk melihat status laporan, lihat " +"Tugas Tertunda dibawah ini." #: lms/djangoapps/instructor/views/api.py msgid "User does not exist." @@ -6539,16 +7103,20 @@ msgstr "Pengguna tidak ada." msgid "" "Found a conflict with given identifier. Please try an alternative identifier" msgstr "" +"Menemukan konflik pada penamaan yang diberikan. Silahkan coba penamaan " +"lainnya." #: lms/djangoapps/instructor/views/api.py msgid "" "Make sure that the file you upload is in CSV format with no extraneous " "characters or rows." msgstr "" +"Pastikan file yang Anda unggah dalam format CSV tanpa karakter atau baris " +"yang tidak ada hubungannya." #: lms/djangoapps/instructor/views/api.py msgid "Could not read uploaded file." -msgstr "" +msgstr "Tidak dapat membaca file yang diunggah." #: lms/djangoapps/instructor/views/api.py #, python-brace-format @@ -6556,11 +7124,13 @@ msgid "" "Data in row #{row_num} must have exactly four columns: email, username, full" " name, and country" msgstr "" +"Data di baris # {row_num} harus memiliki empat kolom tetap: email, username," +" nama lengkap, dan negara" #: lms/djangoapps/instructor/views/api.py #, python-brace-format msgid "Invalid email {email_address}." -msgstr "" +msgstr "Email Tidak Valid {email_address}." #: lms/djangoapps/instructor/views/api.py #, python-brace-format @@ -6568,15 +7138,17 @@ msgid "" "An account with email {email} exists but the provided username {username} is" " different. Enrolling anyway with {email}." msgstr "" +"Akun dengan email {email} ada tetapi username yang tersedia {username} " +"berbeda. Tetap mendaftar dengan {email}." #: lms/djangoapps/instructor/views/api.py msgid "File is not attached." -msgstr "" +msgstr "File tidak dilampirkan." #: lms/djangoapps/instructor/views/api.py #, python-brace-format msgid "Username {user} already exists." -msgstr "" +msgstr "Username {user} sudah ada." #: lms/djangoapps/instructor/views/api.py #, python-brace-format @@ -6585,64 +7157,67 @@ msgid "" "Without the email student would not be able to login. Please contact support" " for further information." msgstr "" +"Kesalahan '{error}' saat mengirim email ke pengguna baru (email pengguna = " +"{email}). Tanpa email siswa tidak akan bisa masuk. Silahkan hubungi bagian " +"support untuk informasi lebih lanjut." #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor_task/api_helper.py msgid "problem responses" -msgstr "" +msgstr "Tanggapan masalah" #: lms/djangoapps/instructor/views/api.py msgid "Could not find problem with this location." -msgstr "" +msgstr "Tidak dapat menemunkan problem dengan lokasi ini." #: lms/djangoapps/instructor/views/api.py #, python-brace-format msgid "Invoice number '{num}' does not exist." -msgstr "" +msgstr "Tagihan dengan nomor '{num}' tidak ada." #: lms/djangoapps/instructor/views/api.py msgid "The sale associated with this invoice has already been invalidated." -msgstr "" +msgstr "Penjualan yang terkait dengan tagihan ini telah dibatalkan." #: lms/djangoapps/instructor/views/api.py #, python-brace-format msgid "Invoice number {0} has been invalidated." -msgstr "" +msgstr "Tagihan dengan nomor {0} telah dibatalkan." #: lms/djangoapps/instructor/views/api.py msgid "This invoice is already active." -msgstr "" +msgstr "Tagihan ini suda aktif." #: lms/djangoapps/instructor/views/api.py #, python-brace-format msgid "The registration codes for invoice {0} have been re-activated." -msgstr "" +msgstr "Kode registrasi untuk tagihan {0} telah direaktivasi." #: lms/djangoapps/instructor/views/api.py msgid "CourseID" -msgstr "" +msgstr "ID Pelatihan" #: lms/djangoapps/instructor/views/api.py msgid "Certificate Type" -msgstr "" +msgstr "Tipe Sertifikat" #: lms/djangoapps/instructor/views/api.py msgid "Total Certificates Issued" -msgstr "" +msgstr "Total Penerbitan Sertifikat" #: lms/djangoapps/instructor/views/api.py msgid "Date Report Run" -msgstr "" +msgstr "Tanggal Laporan Dijalankan" #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor_task/api_helper.py msgid "enrolled learner profile" -msgstr "" +msgstr "Profil Peserta yang Terdaftar" #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor_task/tasks_helper/enrollments.py msgid "User ID" -msgstr "" +msgstr "ID Pengguna" #. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# #. Translators: This label appears above a field on the password reset @@ -6685,7 +7260,7 @@ msgstr "Jenis Kelamin" #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor_task/tasks_helper/enrollments.py msgid "Level of Education" -msgstr "" +msgstr "Level Pendidikan" #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor_task/tasks_helper/enrollments.py @@ -6701,19 +7276,19 @@ msgstr "Tujuan" #: lms/djangoapps/instructor/views/api.py msgid "Enrollment Mode" -msgstr "" +msgstr "Mode Pendaftaran" #: lms/djangoapps/instructor/views/api.py msgid "Verification Status" -msgstr "" +msgstr "Status Verifikasi" #: lms/djangoapps/instructor/views/api.py msgid "Cohort" -msgstr "" +msgstr "Kohort" #: lms/djangoapps/instructor/views/api.py msgid "Team" -msgstr "" +msgstr "Tim" #. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# #. Translators: This label appears above a field on the registration form @@ -6740,15 +7315,17 @@ msgstr "Negara" #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor_task/api_helper.py msgid "enrollment" -msgstr "" +msgstr "Pendaftaran" #: lms/djangoapps/instructor/views/api.py msgid "The file must contain a 'cohort' column containing cohort names." -msgstr "" +msgstr "File harus mengandung kolom 'kohort' yang mengandung nama kohort." #: lms/djangoapps/instructor/views/api.py msgid "The file must contain a 'username' column, an 'email' column, or both." msgstr "" +"File harus mengandung sebuah kolom 'username', sebuah kolom 'email', atau " +"keduanya." #: lms/djangoapps/instructor/views/api.py #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html @@ -6764,7 +7341,7 @@ msgstr "Id pelatihan" #: lms/djangoapps/instructor/views/api.py msgid "% Discount" -msgstr "" +msgstr "% Diskon" #: lms/djangoapps/instructor/views/api.py lms/djangoapps/shoppingcart/pdf.py #: lms/djangoapps/shoppingcart/reports.py @@ -6784,52 +7361,54 @@ msgstr "Tanggal Kadaluarsa" #: lms/djangoapps/instructor/views/api.py msgid "Is Active" -msgstr "" +msgstr "Aktif" #: lms/djangoapps/instructor/views/api.py msgid "Code Redeemed Count" -msgstr "" +msgstr "Jumlah Kode Tertebus" #: lms/djangoapps/instructor/views/api.py msgid "Total Discounted Seats" -msgstr "" +msgstr "Total Kursi yang Didiskon" #: lms/djangoapps/instructor/views/api.py msgid "Total Discounted Amount" -msgstr "" +msgstr "Total Jumlah yang Didiskon" #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor_task/api_helper.py msgid "detailed enrollment" -msgstr "" +msgstr "Pendaftaran terperinci" #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor_task/api_helper.py msgid "executive summary" -msgstr "" +msgstr "Ringkasan Eksekutif" #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor_task/api_helper.py msgid "survey" -msgstr "" +msgstr "Survei" #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor_task/api_helper.py msgid "proctored exam results" -msgstr "" +msgstr "Hasil Ujian Tersupervisi" #: lms/djangoapps/instructor/views/api.py msgid "Could not parse amount as a decimal" -msgstr "" +msgstr "Tidak dapat menguraikan jumlah sebagai desimal" #: lms/djangoapps/instructor/views/api.py msgid "Unable to generate redeem codes because of course misconfiguration." msgstr "" +"Tidak dapat menghasilkan kode yang diperoleh karena salah konfigurasi " +"pelatihan." #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/shoppingcart/models.py msgid "pdf download unavailable right now, please contact support." -msgstr "" +msgstr "Unduh pdf tidak tersedia saat ini, silahkan hubungi bagian support." #: lms/djangoapps/instructor/views/api.py #, python-brace-format @@ -6858,79 +7437,85 @@ msgstr "" #: lms/djangoapps/instructor/views/api.py msgid "Module does not exist." -msgstr "" +msgstr "Modul tidak ada." #: lms/djangoapps/instructor/views/api.py msgid "An error occurred while deleting the score." -msgstr "" +msgstr "Kesalahan terjadi saat menghapus skor." #: lms/djangoapps/instructor/views/api.py msgid "Course has no entrance exam section." -msgstr "" +msgstr "Pelatihan tidak memiliki bagian ujian masuk." #: lms/djangoapps/instructor/views/api.py msgid "all_students and unique_student_identifier are mutually exclusive." msgstr "" +"all_students dan unique_student_identifier bersifat ekslusif satu sama lain." #: lms/djangoapps/instructor/views/api.py msgid "all_students and delete_module are mutually exclusive." -msgstr "" +msgstr "all_students dan delete_module bersifat ekslusif satu sama lain." #: lms/djangoapps/instructor/views/api.py msgid "Requires instructor access." -msgstr "" +msgstr "Memerlukan akses instruktur." #: lms/djangoapps/instructor/views/api.py msgid "Course has no valid entrance exam section." -msgstr "" +msgstr "Pelatihan tidak memiliki bagian ujian masuk yang valid." #: lms/djangoapps/instructor/views/api.py msgid "All Students" -msgstr "" +msgstr "Semua Siswa" #: lms/djangoapps/instructor/views/api.py msgid "Cannot rescore with all_students and unique_student_identifier." msgstr "" +"Tidak dapat melakukan penilaian ulang dengan all_students dan " +"unique_student_identifier." #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor_task/api_helper.py msgid "ORA data" -msgstr "" +msgstr "Data ORA" #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor_task/api_helper.py msgid "grade" -msgstr "" +msgstr "Peringkat" #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor_task/api_helper.py msgid "problem grade" -msgstr "" +msgstr "Tingkat Masalah" #: lms/djangoapps/instructor/views/api.py #, python-brace-format msgid "Successfully changed due date for student {0} for {1} to {2}" -msgstr "" +msgstr "Berhasil mengubah batas waktu untuk siswa {0} untuk {1} ke {2}" #: lms/djangoapps/instructor/views/api.py msgid "" "Successfully removed invalid due date extension (unit has no due date)." msgstr "" +"Berhasil menghapus ekstensi batas waktu yang tidak valid (unit tidak " +"memiliki batas waktu)." #: lms/djangoapps/instructor/views/api.py #, python-brace-format msgid "Successfully reset due date for student {0} for {1} to {2}" msgstr "" +"Berhasil mengatur ulang tanggal berakhir untuk siswa {0} untuk {1} ke {2}" #: lms/djangoapps/instructor/views/api.py #, python-format msgid "This student (%s) will skip the entrance exam." -msgstr "" +msgstr "Siswa ini (%s) akan melewati ujian masuk." #: lms/djangoapps/instructor/views/api.py #, python-format msgid "This student (%s) is already allowed to skip the entrance exam." -msgstr "" +msgstr "Siswa ini (%s) telah diijinkan untuk melewati ujian masuk." #: lms/djangoapps/instructor/views/api.py msgid "" @@ -6938,27 +7523,35 @@ msgid "" "started. You can view the status of the generation task in the \"Pending " "Tasks\" section." msgstr "" +"Tugas pembuatan sertifikat untuk semua siswa dari pelatihan ini telah " +"dimulai. Anda dapat melihat status pembuatan di bagian \"Tugas Tertunda\"." #: lms/djangoapps/instructor/views/api.py msgid "" "Please select one or more certificate statuses that require certificate " "regeneration." msgstr "" +"Harap pilih satu atau beberapa status sertifikat yang memerlukan regenerasi " +"sertifikat." #: lms/djangoapps/instructor/views/api.py msgid "Please select certificate statuses from the list only." -msgstr "" +msgstr "Silahkan pilih status sertifikat hanya dari dftar." #: lms/djangoapps/instructor/views/api.py msgid "" "Certificate regeneration task has been started. You can view the status of " "the generation task in the \"Pending Tasks\" section." msgstr "" +"Tugas regenerasi sertifikat telah dimulai. Anda dapat melihat status " +"pembuatan di bagian \"Tugas Tertunda\"." #: lms/djangoapps/instructor/views/api.py #, python-brace-format msgid "Student (username/email={user}) already in certificate exception list." msgstr "" +"Siswa (nama pengguna / email = {user}) sudah ada dalam daftar pengecualian " +"sertifikat." #: lms/djangoapps/instructor/views/api.py #, python-brace-format @@ -6966,6 +7559,8 @@ msgid "" "Certificate exception (user={user}) does not exist in certificate white " "list. Please refresh the page and try again." msgstr "" +"Pengecualian sertifikat (pengguna = {user}) tidak ada dalam daftar putih " +"sertifikat. Refresh halaman dan coba lagi." #: lms/djangoapps/instructor/views/api.py msgid "" @@ -6980,36 +7575,41 @@ msgid "" "The record is not in the correct format. Please add a valid username or " "email address." msgstr "" +"Rekaman tidak dalam format yang benar. Silahkan tambahkan username atau " +"alamat email yang valid." #: lms/djangoapps/instructor/views/api.py #, python-brace-format msgid "" "{user} does not exist in the LMS. Please check your spelling and retry." -msgstr "" +msgstr "{user} tidak ada di LMS. Silahkan periksa ejaan dan coba lagi." #: lms/djangoapps/instructor/views/api.py #, python-brace-format msgid "" "{user} is not enrolled in this course. Please check your spelling and retry." msgstr "" +"{user} tidak terdaftar dalam pelatihan ini. Silakan periksa ejaan dan coba " +"lagi." #: lms/djangoapps/instructor/views/api.py msgid "Invalid data, generate_for must be \"new\" or \"all\"." -msgstr "" +msgstr "Data tidak valid, generate_for harus \"baru\" atau \"semua\"." #: lms/djangoapps/instructor/views/api.py msgid "Certificate generation started for white listed students." msgstr "" +"Pembuatan sertifikat dimulai untuk siswa yang terdapat dalam daftar putih." #: lms/djangoapps/instructor/views/api.py #, python-brace-format msgid "user \"{user}\" in row# {row}" -msgstr "" +msgstr "pengguna \"{user}\" in row# {row}" #: lms/djangoapps/instructor/views/api.py #, python-brace-format msgid "user \"{username}\" in row# {row}" -msgstr "" +msgstr "pengguna \"{username}\" in row# {row}" #: lms/djangoapps/instructor/views/api.py #, python-brace-format @@ -7017,6 +7617,8 @@ msgid "" "Certificate of {user} has already been invalidated. Please check your " "spelling and retry." msgstr "" +"Sertifikat dari {user} telah dibatalkan. Silahkan cek ejaan Anda dan coba " +"lagi." #: lms/djangoapps/instructor/views/api.py #, python-brace-format @@ -7024,6 +7626,9 @@ msgid "" "Certificate for student {user} is already invalid, kindly verify that " "certificate was generated for this student and then proceed." msgstr "" +"Sertifikat untuk siswa {user} sudah tidak valid, silahkan verifikasi bahwa " +"sertifikat tersebut yang dibuat untuk siswa ini dan kemudian lanjutkan " +"prosesnya." #: lms/djangoapps/instructor/views/api.py msgid "" @@ -7046,25 +7651,28 @@ msgid "" "Kindly verify student username/email and the selected course are correct and" " try again." msgstr "" +"Siswa {student} tidak memiliki sertifikat untuk pelatihan {course}. Mohon " +"verifikasi username/email siswa dan pelatihan yang dipilih apakah sudah " +"benar dan coba lagi." #: lms/djangoapps/instructor/views/coupons.py msgid "coupon id is None" -msgstr "" +msgstr "id kupon tidak ada" #: lms/djangoapps/instructor/views/coupons.py #, python-brace-format msgid "coupon with the coupon id ({coupon_id}) DoesNotExist" -msgstr "" +msgstr "kupon dengan id kupon ({coupon_id}) tidak ada" #: lms/djangoapps/instructor/views/coupons.py #, python-brace-format msgid "coupon with the coupon id ({coupon_id}) is already inactive" -msgstr "" +msgstr "kupon dengan id kupon ({coupon_id}) sudah tidak aktif" #: lms/djangoapps/instructor/views/coupons.py #, python-brace-format msgid "coupon with the coupon id ({coupon_id}) updated successfully" -msgstr "" +msgstr "kupon dengan id kupon ({coupon_id}) telah berhasil diperbarui" #: lms/djangoapps/instructor/views/coupons.py #, python-brace-format @@ -7072,18 +7680,20 @@ msgid "" "The code ({code}) that you have tried to define is already in use as a " "registration code" msgstr "" +"Kode ({code}) yang Anda telah coba definisikan telah digunakan sebagai kode" +" registrasi" #: lms/djangoapps/instructor/views/coupons.py msgid "Please Enter the Integer Value for Coupon Discount" -msgstr "" +msgstr "Silahkan masukkan Nilai Integer untuk Diskon Kupon" #: lms/djangoapps/instructor/views/coupons.py msgid "Please Enter the Coupon Discount Value Less than or Equal to 100" -msgstr "" +msgstr "Silahkan Masukkan Nilai Diskon Kupon kurang dari atau sama dengan 100" #: lms/djangoapps/instructor/views/coupons.py msgid "Please enter the date in this format i-e month/day/year" -msgstr "" +msgstr "Silahkan masukkan tanggal dengan format berikut bulan/hari/tahun" #: lms/djangoapps/instructor/views/coupons.py #, python-brace-format @@ -7093,16 +7703,16 @@ msgstr "" #: lms/djangoapps/instructor/views/coupons.py #, python-brace-format msgid "coupon with the coupon code ({code}) already exists for this course" -msgstr "" +msgstr "Kupon dengan kode kupon ({code}) sudah digunakan pada pelatihan ini" #: lms/djangoapps/instructor/views/coupons.py msgid "coupon id not found" -msgstr "" +msgstr "Kupon tidak dapat digunakan" #: lms/djangoapps/instructor/views/coupons.py #, python-brace-format msgid "coupon with the coupon id ({coupon_id}) updated Successfully" -msgstr "" +msgstr "Kupon dengan id kupon ({coupon_id}) berhasil diperbarui" #: lms/djangoapps/instructor/views/instructor_dashboard.py msgid "Instructor" @@ -7114,32 +7724,36 @@ msgid "" "To gain insights into student enrollment and participation {link_start}visit" " {analytics_dashboard_name}, our new course analytics product{link_end}." msgstr "" +"Untuk mendapatkan wawasan tentang pendaftaran dan partisipasi siswa " +"{link_start} kunjungi {analytics_dashboard_name}, produk analisis pelatihan " +"baru kami {link_end}." #: lms/djangoapps/instructor/views/instructor_dashboard.py msgid "E-Commerce" -msgstr "" +msgstr "E-Commerce" #: lms/djangoapps/instructor/views/instructor_dashboard.py msgid "Special Exams" -msgstr "" +msgstr "Ujian Khusus" -#: cms/templates/certificates.html cms/templates/export.html -#: cms/templates/widgets/header.html +#: lms/djangoapps/instructor/views/instructor_dashboard.py +#: lms/djangoapps/support/views/index.py cms/templates/certificates.html +#: cms/templates/export.html cms/templates/widgets/header.html msgid "Certificates" msgstr "Sertifikat" #: lms/djangoapps/instructor/views/instructor_dashboard.py msgid "Please Enter the numeric value for the course price" -msgstr "" +msgstr "Silahkan Masukkan nilai dalam bentuk angka untuk harga pelatihan" #: lms/djangoapps/instructor/views/instructor_dashboard.py #, python-brace-format msgid "CourseMode with the mode slug({mode_slug}) DoesNotExist" -msgstr "" +msgstr "Mode Pelatihan dengan slug mode ({mode_slug}) Tidak Ada" #: lms/djangoapps/instructor/views/instructor_dashboard.py msgid "CourseMode price updated successfully" -msgstr "" +msgstr "Harga Mode Pelatihan berhasil diperbarui " #: lms/djangoapps/instructor/views/instructor_dashboard.py msgid "Course Info" @@ -7148,7 +7762,7 @@ msgstr "Info Kursus" #: lms/djangoapps/instructor/views/instructor_dashboard.py #, python-brace-format msgid "Enrollment data is now available in {dashboard_link}." -msgstr "" +msgstr "Data pendaftaran telah tersedia sekarang di {dashboard_link}." #: lms/djangoapps/instructor/views/instructor_dashboard.py msgid "Membership" @@ -7170,7 +7784,7 @@ msgstr "Admin Siswa" #: lms/djangoapps/instructor/views/instructor_dashboard.py msgid "Extensions" -msgstr "" +msgstr "Ekstensi" #: lms/djangoapps/instructor/views/instructor_dashboard.py msgid "Data Download" @@ -7186,24 +7800,24 @@ msgstr "Meter" #: lms/djangoapps/instructor/views/instructor_dashboard.py msgid "Open Responses" -msgstr "" +msgstr "Tanggapan Terbuka" #. Translators: number sent refers to the number of emails sent #: lms/djangoapps/instructor/views/instructor_task_helpers.py msgid "0 sent" -msgstr "" +msgstr "Terkirim 0" #: lms/djangoapps/instructor/views/instructor_task_helpers.py #, python-brace-format msgid "{num_emails} sent" msgid_plural "{num_emails} sent" -msgstr[0] "" +msgstr[0] "Terkirim {num_emails} " #: lms/djangoapps/instructor/views/instructor_task_helpers.py #, python-brace-format msgid "{num_emails} failed" msgid_plural "{num_emails} failed" -msgstr[0] "" +msgstr[0] "Gagal {num_emails}" #: lms/djangoapps/instructor/views/instructor_task_helpers.py msgid "Complete" @@ -7218,18 +7832,20 @@ msgstr "Belum selesai" msgid "" "The enrollment code ({code}) was not found for the {course_name} course." msgstr "" +"Kode pendaftaran ({code}) tidak ditemukan pada pelatihan {course_name}." #: lms/djangoapps/instructor/views/registration_codes.py msgid "This enrollment code has been canceled. It can no longer be used." msgstr "" +"Kode pendaftaran ini telah dibatalkan. Kode ini tidak bisa digunakan lagi." #: lms/djangoapps/instructor/views/registration_codes.py msgid "This enrollment code has been marked as unused." -msgstr "" +msgstr "Kode pendaftaran ini telah ditandai sebagai tidak digunakan." #: lms/djangoapps/instructor/views/registration_codes.py msgid "The enrollment code has been restored." -msgstr "" +msgstr "Kode pendaftaran telah dipulihkan kembali." #: lms/djangoapps/instructor/views/registration_codes.py #, python-brace-format @@ -7240,28 +7856,26 @@ msgstr "" #, python-brace-format msgid "Could not find student matching identifier: {student_identifier}" msgstr "" +"Tidak dapat menemukan identifier siswa yang sesuai dengan siswa: " +"{student_identifier} " #: lms/djangoapps/instructor/views/tools.py msgid "Unable to parse date: " -msgstr "" +msgstr "Nonaktifkan untuk menguraikan tanggal:" #: lms/djangoapps/instructor/views/tools.py #, python-brace-format msgid "Couldn't find module for url: {0}" -msgstr "" +msgstr "Tidak dapat menemukan modul untuk url: {0}" #: lms/djangoapps/instructor/views/tools.py #, python-brace-format msgid "Unit {0} has no due date to extend." -msgstr "" +msgstr "Unit {0} tidak memiliki batas waktu perpanjangan." #: lms/djangoapps/instructor/views/tools.py msgid "An extended due date must be later than the original due date." -msgstr "" - -#: lms/djangoapps/instructor/views/tools.py -msgid "No due date extension is set for that student and unit." -msgstr "" +msgstr "Batas waktu perpanjangan harus lebih lama dari pada batas waktu asli." #. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# #. Translators: This label appears above a field on the registration form @@ -7278,25 +7892,25 @@ msgstr "Nama Lengkap" #: lms/djangoapps/instructor/views/tools.py msgid "Extended Due Date" -msgstr "" +msgstr "Batas Waktu Perpanjangan" #: lms/djangoapps/instructor/views/tools.py #, python-brace-format msgid "Users with due date extensions for {0}" -msgstr "" +msgstr "Pengguna dengan perpanjangan batas waktu untuk {0}" #: lms/djangoapps/instructor/views/tools.py #, python-brace-format msgid "Due date extensions for {0} {1} ({2})" -msgstr "" +msgstr "Perpanjangan batas waktu untuk {0} {1} ({2})" #: lms/djangoapps/instructor_task/api_helper.py msgid "Requested task is already running" -msgstr "" +msgstr "Tugas yang diminta sudah berjalan" #: lms/djangoapps/instructor_task/api_helper.py msgid "Error occured. Please try again later." -msgstr "" +msgstr "Terjadi kesalahan. Silahkan coba kembali." #: lms/djangoapps/instructor_task/api_helper.py #, python-brace-format @@ -7305,41 +7919,45 @@ msgid "" " see Pending Tasks below. You will be able to download the report when it is" " complete." msgstr "" +"Laporan {report_type} sedang dibuat. Untuk melihat status laporan, lihat " +"Tugas Tertunda di bawah ini. Anda akan dapat mengunduh laporan setelah " +"selesai." #: lms/djangoapps/instructor_task/api_helper.py msgid "This component cannot be rescored." -msgstr "" +msgstr "Komponen ini tidak dapat diskor ulang." #: lms/djangoapps/instructor_task/api_helper.py msgid "This component does not support score override." -msgstr "" +msgstr "Komponen ini tidak didukung penggantian skor." #: lms/djangoapps/instructor_task/api_helper.py msgid "Scores must be between 0 and the value of the problem." -msgstr "" +msgstr "Skor harus diantara 0 dan nilai problem." #: lms/djangoapps/instructor_task/api_helper.py msgid "Not all problems in entrance exam support re-scoring." msgstr "" +"Tidak semua problem dalam ujian masuk mendukung pemberian skor ulang. " #. Translators: This is a past-tense verb that is inserted into task progress #. messages as {action}. #: lms/djangoapps/instructor_task/tasks.py msgid "rescored" -msgstr "" +msgstr "Skor Ulang" #. Translators: This is a past-tense verb that is inserted into task progress #. messages as {action}. #: lms/djangoapps/instructor_task/tasks.py #: lms/djangoapps/instructor_task/tasks_helper/module_state.py msgid "overridden" -msgstr "" +msgstr "Penggantian" #. Translators: This is a past-tense verb that is inserted into task progress #. messages as {action}. #: lms/djangoapps/instructor_task/tasks.py msgid "reset" -msgstr "" +msgstr "Reset" #. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# #. Translators: This is a past-tense verb that is inserted into task progress @@ -7363,7 +7981,7 @@ msgstr "terkirim melalui email" #. messages as {action}. #: lms/djangoapps/instructor_task/tasks.py msgid "graded" -msgstr "" +msgstr "dinilai" #. Translators: This is a past-tense phrase that is inserted into task #. progress messages as {action}. @@ -7375,13 +7993,13 @@ msgstr "" #. messages as {action}. #: lms/djangoapps/instructor_task/tasks.py msgid "generating_enrollment_report" -msgstr "" +msgstr "generating_enrollment_report" #. Translators: This is a past-tense verb that is inserted into task progress #. messages as {action}. #: lms/djangoapps/instructor_task/tasks.py msgid "certificates generated" -msgstr "" +msgstr "Pembuatan Sertifikat" #. Translators: This is a past-tense verb that is inserted into task progress #. messages as {action}. @@ -7389,7 +8007,7 @@ msgstr "" #. {attempted} so far" #: lms/djangoapps/instructor_task/tasks.py msgid "cohorted" -msgstr "" +msgstr "cohorted" #. Translators: This label appears above a field on the registration form #. which allows the user to input the First Name @@ -7430,47 +8048,47 @@ msgstr "Tahun Lahir" #: lms/djangoapps/instructor_task/tasks_helper/enrollments.py msgid "Enrollment Date" -msgstr "" +msgstr "Tanggal Pendaftaran" #: lms/djangoapps/instructor_task/tasks_helper/enrollments.py msgid "Currently Enrolled" -msgstr "" +msgstr "Terdaftar Saat Ini" #: lms/djangoapps/instructor_task/tasks_helper/enrollments.py msgid "Enrollment Source" -msgstr "" +msgstr "Sumber Pendaftaran" #: lms/djangoapps/instructor_task/tasks_helper/enrollments.py msgid "Manual (Un)Enrollment Reason" -msgstr "" +msgstr "Alasan Pendaftaran (Un) Manual" #: lms/djangoapps/instructor_task/tasks_helper/enrollments.py msgid "Enrollment Role" -msgstr "" +msgstr "Peran Pendaftaran" #: lms/djangoapps/instructor_task/tasks_helper/enrollments.py msgid "List Price" -msgstr "" +msgstr "Daftar Harga" #: lms/djangoapps/instructor_task/tasks_helper/enrollments.py msgid "Payment Amount" -msgstr "" +msgstr "Jumlah Pembayaran" #: lms/djangoapps/instructor_task/tasks_helper/enrollments.py msgid "Coupon Codes Used" -msgstr "" +msgstr "Kode Kupon Telah Digunakan" #: lms/djangoapps/instructor_task/tasks_helper/enrollments.py msgid "Registration Code Used" -msgstr "" +msgstr "Kode Registrasi Telah Digunakan" #: lms/djangoapps/instructor_task/tasks_helper/enrollments.py msgid "Payment Status" -msgstr "" +msgstr "Status Pembayaran" #: lms/djangoapps/instructor_task/tasks_helper/enrollments.py msgid "Transaction Reference Number" -msgstr "" +msgstr "Nomor Referensi Transaksi" #: lms/djangoapps/instructor_task/views.py msgid "No status information available" @@ -7479,41 +8097,42 @@ msgstr "Tidak ada status informasi yang tersedia" #: lms/djangoapps/instructor_task/views.py #, python-brace-format msgid "No task_output information found for instructor_task {0}" -msgstr "" +msgstr "No task_output information found for instructor_task {0}" #: lms/djangoapps/instructor_task/views.py #, python-brace-format msgid "No parsable task_output information found for instructor_task {0}: {1}" msgstr "" +"No parsable task_output information found for instructor_task {0}: {1}" #: lms/djangoapps/instructor_task/views.py msgid "No parsable status information available" -msgstr "" +msgstr "Tidak ada informasi status yang dapat diuraikan" #: lms/djangoapps/instructor_task/views.py msgid "No message provided" -msgstr "" +msgstr "Tidak ada pesan yang disediakan" #: lms/djangoapps/instructor_task/views.py #, python-brace-format msgid "Invalid task_output information found for instructor_task {0}: {1}" -msgstr "" +msgstr "Invalid task_output information found for instructor_task {0}: {1}" #: lms/djangoapps/instructor_task/views.py msgid "No progress status information available" -msgstr "" +msgstr "Tidak ada informasi status perkembangan yang tersedia" #: lms/djangoapps/instructor_task/views.py #, python-brace-format msgid "No parsable task_input information found for instructor_task {0}: {1}" -msgstr "" +msgstr "No parsable task_input information found for instructor_task {0}: {1}" #. Translators: {action} is a past-tense verb that is localized separately. #. {attempted} and {succeeded} are counts. #: lms/djangoapps/instructor_task/views.py #, python-brace-format msgid "Progress: {action} {succeeded} of {attempted} so far" -msgstr "" +msgstr "Perkembangan: {action} {succeeded} dari {attempted} sejauh ini" #. Translators: {action} is a past-tense verb that is localized separately. #. {student} is a student identifier. @@ -7521,6 +8140,7 @@ msgstr "" #, python-brace-format msgid "Unable to find submission to be {action} for student '{student}'" msgstr "" +"Tidak dapat menemukan penyerahan menjadi {action} untuk siswa '{student} '" #. Translators: {action} is a past-tense verb that is localized separately. #. {student} is a student identifier. @@ -7534,7 +8154,7 @@ msgstr "" #: lms/djangoapps/instructor_task/views.py #, python-brace-format msgid "Problem successfully {action} for student '{student}'" -msgstr "" +msgstr "Problem berhasil {action} untuk siswa '{student}'" #. Translators: {action} is a past-tense verb that is localized separately. #. {student} is a student identifier. @@ -7544,33 +8164,35 @@ msgid "" "Unable to find entrance exam submission to be {action} for student " "'{student}'" msgstr "" +"Tidak dapat menemukan pengajuan ujian masuk menjadi {action} untuk siswa " +"'{student}'" #. Translators: {action} is a past-tense verb that is localized separately. #. {student} is a student identifier. #: lms/djangoapps/instructor_task/views.py #, python-brace-format msgid "Entrance exam successfully {action} for student '{student}'" -msgstr "" +msgstr "Ujian masuk berhasil {action} untuk siswa '{student}'" #. Translators: {action} is a past-tense verb that is localized separately. #: lms/djangoapps/instructor_task/views.py #, python-brace-format msgid "Unable to find any students with submissions to be {action}" -msgstr "" +msgstr "Tidak dapat menemukan siswa dengan pengajuan menjadi {action}" #. Translators: {action} is a past-tense verb that is localized separately. #. {attempted} is a count. #: lms/djangoapps/instructor_task/views.py #, python-brace-format msgid "Problem failed to be {action} for any of {attempted} students" -msgstr "" +msgstr "Masalah gagal untuk di {action} untuk {attempted} pelajar mana saja" #. Translators: {action} is a past-tense verb that is localized separately. #. {attempted} is a count. #: lms/djangoapps/instructor_task/views.py #, python-brace-format msgid "Problem successfully {action} for {attempted} students" -msgstr "" +msgstr "Masalah berhasil untuk di {action} untuk {attempted} pelajar" #. Translators: {action} is a past-tense verb that is localized separately. #. {succeeded} and {attempted} are counts. @@ -7709,6 +8331,10 @@ msgstr "" msgid "My Notes" msgstr "Catatanku" +#: lms/djangoapps/program_enrollments/models.py +msgid "One of user or external_user_key must not be null." +msgstr "" + #: lms/djangoapps/shoppingcart/models.py msgid "Order Payment Confirmation" msgstr "Konfirmasi Order Pembayaran" @@ -7835,17 +8461,17 @@ msgstr "" #: lms/djangoapps/shoppingcart/models.py #, python-brace-format msgid "Donation for {course}" -msgstr "" +msgstr "Donasi untuk {course}" #: lms/djangoapps/shoppingcart/models.py #, python-brace-format msgid "Donation for {platform_name}" -msgstr "" +msgstr "Donasi untuk {platform_name}" #: lms/djangoapps/shoppingcart/pdf.py #, python-brace-format msgid "Page {page_number} of {page_count}" -msgstr "" +msgstr "Halaman {page_number} dari {page_count}" #: lms/djangoapps/shoppingcart/pdf.py lms/templates/shoppingcart/receipt.html msgid "Invoice" @@ -7853,7 +8479,7 @@ msgstr "Tagihan" #: lms/djangoapps/shoppingcart/pdf.py msgid "Order" -msgstr "" +msgstr "Pesanan" #: lms/djangoapps/shoppingcart/pdf.py #, python-brace-format @@ -7875,12 +8501,16 @@ msgid "" "List Price\n" "per item" msgstr "" +"Daftar Harga\n" +"per item" #: lms/djangoapps/shoppingcart/pdf.py msgid "" "Discount\n" "per item" msgstr "" +"Diskon\n" +"per item" #: lms/djangoapps/shoppingcart/pdf.py msgid "Amount" @@ -7895,15 +8525,15 @@ msgstr "Total" #: lms/djangoapps/shoppingcart/pdf.py msgid "Payment Received" -msgstr "" +msgstr "Pembayaran Diterima" #: lms/djangoapps/shoppingcart/pdf.py msgid "Balance" -msgstr "" +msgstr "Saldo" #: lms/djangoapps/shoppingcart/pdf.py msgid "Billing Address" -msgstr "" +msgstr "Alamat Tagihan" #: lms/djangoapps/shoppingcart/pdf.py msgid "Disclaimer" @@ -7911,7 +8541,7 @@ msgstr "" #: lms/djangoapps/shoppingcart/pdf.py msgid "TERMS AND CONDITIONS" -msgstr "" +msgstr "SYARAT DAN KETENTUAN" #. Translators: this text appears when an unfamiliar error code occurs during #. payment, @@ -8257,39 +8887,39 @@ msgstr "" #: lms/djangoapps/shoppingcart/reports.py msgid "Order Number" -msgstr "" +msgstr "Nomor Pesanan" #: lms/djangoapps/shoppingcart/reports.py msgid "Customer Name" -msgstr "" +msgstr "Nama Pelanggan" #: lms/djangoapps/shoppingcart/reports.py msgid "Date of Original Transaction" -msgstr "" +msgstr "Tanggal Transaksi" #: lms/djangoapps/shoppingcart/reports.py msgid "Date of Refund" -msgstr "" +msgstr "Tanggal Pengembalian Dana" #: lms/djangoapps/shoppingcart/reports.py msgid "Amount of Refund" -msgstr "" +msgstr "Jumlah Pengembalian Dana" #: lms/djangoapps/shoppingcart/reports.py msgid "Service Fees (if any)" -msgstr "" +msgstr "Biaya Servis (jika ada)" #: lms/djangoapps/shoppingcart/reports.py msgid "Purchase Time" -msgstr "" +msgstr "Waktu Pembelian" #: lms/djangoapps/shoppingcart/reports.py msgid "Order ID" -msgstr "" +msgstr "ID Pesanan" #: lms/djangoapps/shoppingcart/reports.py msgid "Unit Cost" -msgstr "" +msgstr "Harga Satuan" #: lms/djangoapps/shoppingcart/reports.py msgid "Total Cost" @@ -8310,7 +8940,7 @@ msgstr "Universitas" #: lms/djangoapps/shoppingcart/reports.py msgid "Course Announce Date" -msgstr "" +msgstr "Tanggal Pengumuman Kursus" #: lms/djangoapps/shoppingcart/reports.py cms/templates/settings.html #: lms/templates/instructor/instructor_dashboard_2/executive_summary.html @@ -8327,7 +8957,7 @@ msgstr "" #: lms/djangoapps/shoppingcart/reports.py msgid "Total Enrolled" -msgstr "" +msgstr "Total Pendaftaran" #: lms/djangoapps/shoppingcart/reports.py msgid "Audit Enrollment" @@ -8356,27 +8986,27 @@ msgstr "" #: lms/djangoapps/shoppingcart/reports.py msgid "Number of Refunds" -msgstr "" +msgstr "Jumlah Pengembalian Dana" #: lms/djangoapps/shoppingcart/reports.py msgid "Dollars Refunded" -msgstr "" +msgstr "Jumlah Dana yang Dikembalikan" #: lms/djangoapps/shoppingcart/reports.py msgid "Number of Transactions" -msgstr "" +msgstr "Jumlah Transaksi" #: lms/djangoapps/shoppingcart/reports.py msgid "Total Payments Collected" -msgstr "" +msgstr "Total Pembayaran" #: lms/djangoapps/shoppingcart/reports.py msgid "Number of Successful Refunds" -msgstr "" +msgstr "Jumlah Pengembalian Dana yang Berhasil" #: lms/djangoapps/shoppingcart/reports.py msgid "Total Amount of Refunds" -msgstr "" +msgstr "Jumlah Pengembalian Dana" #: lms/djangoapps/shoppingcart/views.py msgid "You must be logged-in to add to a shopping cart" @@ -8389,12 +9019,12 @@ msgstr "Kuliah yang diminta tidak ada." #: lms/djangoapps/shoppingcart/views.py #, python-brace-format msgid "The course {course_id} is already in your cart." -msgstr "" +msgstr "Kursus {course_id} sudah ada di dalam keranjang." #: lms/djangoapps/shoppingcart/views.py #, python-brace-format msgid "You are already registered in course {course_id}." -msgstr "" +msgstr "Anda sudah terdaftar di kursus {course_id}." #: lms/djangoapps/shoppingcart/views.py msgid "Course added to cart." @@ -8470,6 +9100,7 @@ msgstr "Mengelola pengguna" msgid "Disable User Account" msgstr "" +#: lms/djangoapps/support/views/index.py #: lms/templates/support/entitlement.html msgid "Entitlements" msgstr "Hak" @@ -8481,7 +9112,7 @@ msgstr "" #: lms/djangoapps/support/views/index.py #: lms/templates/support/feature_based_enrollments.html msgid "Feature Based Enrollments" -msgstr "" +msgstr "Pendaftaran Berdasarkan Fitur" #: lms/djangoapps/support/views/index.py msgid "View feature based enrollment settings" @@ -8528,7 +9159,7 @@ msgstr "ID Kursus" #: lms/djangoapps/support/views/refund.py msgid "User not found" -msgstr "" +msgstr "Pengguna tidak ditemukan" #: lms/djangoapps/support/views/refund.py #, python-brace-format @@ -8647,15 +9278,15 @@ msgstr "Intro" #: lms/djangoapps/verify_student/views.py msgid "Make payment" -msgstr "" +msgstr "Lakukan pembayaran" #: lms/djangoapps/verify_student/views.py msgid "Payment confirmation" -msgstr "" +msgstr "Konfirmasi pembayaran" #: lms/djangoapps/verify_student/views.py msgid "Take photo" -msgstr "" +msgstr "Ambil foto" #: lms/djangoapps/verify_student/views.py msgid "Take a photo of your ID" @@ -8667,7 +9298,7 @@ msgstr "Tinjau ulang informasi Anda" #: lms/djangoapps/verify_student/views.py msgid "Enrollment confirmation" -msgstr "" +msgstr "Konfirmasi pendaftaran" #: lms/djangoapps/verify_student/views.py msgid "Selected price is not valid number." @@ -8701,7 +9332,7 @@ msgstr "" #: lms/djangoapps/verify_student/views.py #, python-brace-format -msgid "Name must be at least {min_length} characters long." +msgid "Name must be at least {min_length} character long." msgstr "" #: lms/djangoapps/verify_student/views.py @@ -8764,7 +9395,7 @@ msgstr "" #: lms/templates/instructor/edx_ace/accountcreationandenrollment/email/body.html #: lms/templates/instructor/edx_ace/accountcreationandenrollment/email/body.txt msgid "It is recommended that you change your password." -msgstr "" +msgstr "Kami merekomendasikan Anda untuk mengganti sandi." #: lms/templates/instructor/edx_ace/accountcreationandenrollment/email/body.html #: lms/templates/instructor/edx_ace/accountcreationandenrollment/email/body.txt @@ -8924,7 +9555,7 @@ msgstr "" #: lms/templates/instructor/edx_ace/allowedenroll/email/body.txt msgid "Dear student," -msgstr "" +msgstr "Halo Siswa IndonesiaX," #: lms/templates/instructor/edx_ace/allowedenroll/email/body.txt #, python-format @@ -8975,7 +9606,7 @@ msgstr "" #: lms/templates/instructor/edx_ace/allowedunenroll/email/body.txt msgid "Dear Student," -msgstr "" +msgstr "Halo Siswa," #: lms/templates/instructor/edx_ace/enrolledunenroll/email/body.html #, python-format @@ -8999,7 +9630,7 @@ msgstr "" #: lms/templates/instructor/edx_ace/removebetatester/email/body.html #: lms/templates/instructor/edx_ace/removebetatester/email/body.txt msgid "Your other courses have not been affected." -msgstr "" +msgstr "Kursus Anda lainnya tidak akan terpengaruh." #: lms/templates/instructor/edx_ace/enrolledunenroll/email/body.html #: lms/templates/instructor/edx_ace/enrolledunenroll/email/body.txt @@ -9064,11 +9695,11 @@ msgstr "" #: lms/templates/logout.html msgid "Signed Out" -msgstr "" +msgstr "Sudah Keluar" #: lms/templates/logout.html msgid "You have signed out." -msgstr "" +msgstr "Anda sudah keluar." #: lms/templates/logout.html #, python-format @@ -9134,8 +9765,9 @@ msgid "Hello %(full_name)s," msgstr "" #: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt #, python-format -msgid "Your %(platform_name)s ID verification has expired.\" " +msgid "Your %(platform_name)s ID verification has expired. " msgstr "" #: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html @@ -9168,6 +9800,8 @@ msgstr "" msgid "ID verification FAQ : %(help_center_link)s " msgstr "" +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt #: lms/templates/emails/failed_verification_email.txt #: lms/templates/emails/order_confirmation_email.txt #: lms/templates/emails/passed_verification_email.txt @@ -9186,11 +9820,6 @@ msgstr "" msgid "Hello %(full_name)s, " msgstr "" -#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt -#, python-format -msgid "Your %(platform_name)s ID verification has expired. " -msgstr "" - #: lms/templates/verify_student/edx_ace/verificationexpiry/email/subject.txt #, python-format msgid "Your %(platform_name)s Verification has Expired" @@ -9279,7 +9908,7 @@ msgstr "Pratinjau" #: lms/templates/wiki/edit.html msgid "Wiki Preview" -msgstr "" +msgstr "Pratinjau Wiki" #. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# #. Translators: this text gives status on if the modal interface (a menu or @@ -9339,7 +9968,7 @@ msgstr "Pindah ke versi tersorot" #: lms/templates/wiki/history.html msgid "Wiki Revision Preview" -msgstr "" +msgstr "Pratinjau Revisi Wiki" #: lms/templates/wiki/history.html msgid "Back to history view" @@ -9351,7 +9980,7 @@ msgstr "Ganti ke versi ini" #: lms/templates/wiki/history.html msgid "Merge Revision" -msgstr "" +msgstr "Gabung Revisi" #: lms/templates/wiki/history.html msgid "Merge with current" @@ -9387,7 +10016,7 @@ msgstr "Anda harus masuk atau daftar untuk pakai fungsi ini." #: lms/templates/wiki/includes/cheatsheet.html msgid "Wiki Cheatsheet" -msgstr "" +msgstr "Contekan Wiki" #: lms/templates/wiki/includes/cheatsheet.html msgid "Wiki Syntax Help" @@ -9432,7 +10061,7 @@ msgstr "" #: lms/templates/wiki/includes/cheatsheet.html msgid "Math Expression" -msgstr "" +msgstr "Ekspresi Matematik" #: lms/templates/wiki/includes/cheatsheet.html msgid "Useful examples:" @@ -9598,11 +10227,11 @@ msgstr "Tidak ada sisipan di artikel ini." #: lms/templates/wiki/preview_inline.html msgid "Previewing revision:" -msgstr "" +msgstr "Pratinjau revisi:" #: lms/templates/wiki/preview_inline.html msgid "Previewing a merge between two revisions:" -msgstr "" +msgstr "Pratinjau penggabungan 2 revisi:" #: lms/templates/wiki/preview_inline.html msgid "This revision has been deleted." @@ -9666,21 +10295,21 @@ msgstr "" #: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/base_body.html #: themes/red-theme/lms/templates/ace_common/edx_ace/common/base_body.html msgid "Download the iOS app on the Apple Store" -msgstr "" +msgstr "Unduh aplikasi iOS di Apple Store" #: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/base_body.html #: themes/red-theme/lms/templates/ace_common/edx_ace/common/base_body.html msgid "Download the Android app on the Google Play Store" -msgstr "" +msgstr "Unduh aplikasi Android di Google Play Store" #: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/base_body.html #: themes/red-theme/lms/templates/ace_common/edx_ace/common/base_body.html msgid "Our mailing address is" -msgstr "" +msgstr "Alamat kami" #: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/base_head.html msgid "edX Email" -msgstr "" +msgstr "Email edX" #: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/upsell_cta.html #: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/upsell_cta.txt @@ -9696,7 +10325,7 @@ msgstr "" #: openedx/features/course_duration_limits/templates/course_duration_limits/edx_ace/expiryreminder/email/body.html #: openedx/features/course_duration_limits/templates/course_duration_limits/edx_ace/expiryreminder/email/body.txt msgid "Upgrade Now" -msgstr "" +msgstr "Tingkatkan Sekarang" #: openedx/core/djangoapps/api_admin/admin.py #, python-brace-format @@ -9705,25 +10334,26 @@ msgid "" "catalog for this user." msgstr "" +#: openedx/core/djangoapps/api_admin/forms.py #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Organization Name" msgstr "Nama Organisasi" #: openedx/core/djangoapps/api_admin/forms.py msgid "Organization Address" -msgstr "" +msgstr "Alamat Organisasi" #: openedx/core/djangoapps/api_admin/forms.py msgid "Describe what your application does." -msgstr "" +msgstr "Jelaskan tentang aplikasi anda." #: openedx/core/djangoapps/api_admin/forms.py msgid "The URL of your organization's website." -msgstr "" +msgstr "URL website organisasi anda." #: openedx/core/djangoapps/api_admin/forms.py msgid "The name of your organization." -msgstr "" +msgstr "Nama organisasi anda." #: openedx/core/djangoapps/api_admin/forms.py msgid "The contact address of your organization." @@ -9739,13 +10369,13 @@ msgid "" "Comma-separated list of usernames which will be able to view this catalog." msgstr "" -#: cms/templates/index.html +#: openedx/core/djangoapps/api_admin/models.py cms/templates/index.html msgid "Denied" msgstr "Ditolak" #: openedx/core/djangoapps/api_admin/models.py msgid "Approved" -msgstr "" +msgstr "Diterima" #: openedx/core/djangoapps/api_admin/models.py msgid "Status of this API access request" @@ -9759,15 +10389,6 @@ msgstr "" msgid "The reason this user wants to access the API." msgstr "" -#: openedx/core/djangoapps/api_admin/models.py -#, python-brace-format -msgid "API access request from {company}" -msgstr "" - -#: openedx/core/djangoapps/api_admin/models.py -msgid "API access request" -msgstr "" - #: openedx/core/djangoapps/api_admin/widgets.py #, python-brace-format msgid "" @@ -9789,7 +10410,7 @@ msgstr "Terjadi kesalahan. Coba kembali." #: openedx/core/djangoapps/bookmarks/views.py msgid "No data provided." -msgstr "" +msgstr "Tidak ada data tersedia." #: openedx/core/djangoapps/bookmarks/views.py msgid "Parameter usage_id not provided." @@ -9866,7 +10487,7 @@ msgstr "" #: openedx/core/djangoapps/config_model_utils/models.py msgid "Enabled" -msgstr "" +msgstr "Aktif" #: openedx/core/djangoapps/config_model_utils/models.py msgid "Configure values for all course runs associated with this site." @@ -10094,6 +10715,23 @@ msgstr "" msgid "This is a test error" msgstr "" +#: openedx/core/djangoapps/django_comment_common/models.py +msgid "Administrator" +msgstr "Administrator" + +#: openedx/core/djangoapps/django_comment_common/models.py +msgid "Moderator" +msgstr "Moderator" + +#: openedx/core/djangoapps/django_comment_common/models.py +msgid "Group Moderator" +msgstr "Moderator Grup" + +#: openedx/core/djangoapps/django_comment_common/models.py +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Community TA" +msgstr "Komunitas Asisten-Pengajar" + #: openedx/core/djangoapps/embargo/forms.py #: openedx/core/djangoapps/verified_track_content/forms.py msgid "COURSE NOT FOUND. Please check that the course ID is valid." @@ -10156,11 +10794,11 @@ msgstr "" #: openedx/core/djangoapps/oauth_dispatch/models.py msgid "Content Provider" -msgstr "" +msgstr "Penyedia Konten" #: openedx/core/djangoapps/password_policy/apps.py msgid "Password Policy" -msgstr "" +msgstr "Kebijakan Kata Sandi" #: openedx/core/djangoapps/password_policy/compliance.py #, python-brace-format @@ -10243,16 +10881,16 @@ msgstr "semua" #: openedx/core/djangoapps/schedules/admin.py msgid "Experience" -msgstr "" +msgstr "Pengalaman" #: openedx/core/djangoapps/schedules/apps.py #: openedx/core/djangoapps/schedules/models.py msgid "Schedules" -msgstr "" +msgstr "Jadwal" #: openedx/core/djangoapps/schedules/models.py msgid "Indicates if this schedule is actively used" -msgstr "" +msgstr "Menandakan jadwal ini aktif digunakan" #: openedx/core/djangoapps/schedules/models.py msgid "Date this schedule went into effect" @@ -10294,7 +10932,7 @@ msgstr "" #: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/courseupdate/email/body.html msgid "Resume your course now" -msgstr "" +msgstr "Lanjutkan kursus anda sekarang" #: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/courseupdate/email/body.txt #, python-format @@ -10329,7 +10967,7 @@ msgstr "" #: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day10/email/body.html #: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day10/email/subject.txt msgid "Keep up the momentum!" -msgstr "" +msgstr "Jaga momentum!" #: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day10/email/body.html #, python-format @@ -10363,7 +11001,7 @@ msgstr "" #: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day3/email/body.html msgid "Keep learning today" -msgstr "" +msgstr "Tetap belajar hari ini" #: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day3/email/body.html #, python-format @@ -10454,7 +11092,7 @@ msgstr "" #: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/upgradereminder/email/body.txt msgid "Upgrade now at" -msgstr "" +msgstr "Tingkatkan sekarang pada" #: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/upgradereminder/email/subject.txt #, python-format @@ -10526,62 +11164,63 @@ msgstr "" #, python-brace-format msgid "Username must be between {min} and {max} characters long." msgstr "" +"Nama pengguna harus memiliki panjang antara {min} hingga {max} karakter." #: openedx/core/djangoapps/user_api/accounts/__init__.py #, python-brace-format msgid "Enter a valid email address that contains at least {min} characters." -msgstr "" +msgstr "Masukkan alamat email anda minimal {min} karakter." #. Translators: These messages are shown to users who do not enter information #. into the required field or enter it incorrectly. #: openedx/core/djangoapps/user_api/accounts/__init__.py msgid "Enter your full name." -msgstr "" +msgstr "Masukkan nama lengkap anda." #: openedx/core/djangoapps/user_api/accounts/__init__.py msgid "The email addresses do not match." -msgstr "" +msgstr "Alamat email tidak sesuai." #: openedx/core/djangoapps/user_api/accounts/__init__.py msgid "Select your country or region of residence." -msgstr "" +msgstr "Pilih negara atau daerah tempat tinggal." #: openedx/core/djangoapps/user_api/accounts/__init__.py msgid "Select your profession." -msgstr "" +msgstr "Pilih profesi anda." #: openedx/core/djangoapps/user_api/accounts/__init__.py msgid "Select your specialty." -msgstr "" +msgstr "Pilih keahlian anda." #: openedx/core/djangoapps/user_api/accounts/__init__.py msgid "Enter your profession." -msgstr "" +msgstr "Masukkan profesi anda." #: openedx/core/djangoapps/user_api/accounts/__init__.py msgid "Enter your specialty." -msgstr "" +msgstr "Masukkan keahlian anda." #: openedx/core/djangoapps/user_api/accounts/__init__.py msgid "Enter your city." -msgstr "" +msgstr "Masukkan kota anda." #: openedx/core/djangoapps/user_api/accounts/__init__.py msgid "Tell us your goals." -msgstr "" +msgstr "Ceritakan tujuan anda." #: openedx/core/djangoapps/user_api/accounts/__init__.py msgid "Select the highest level of education you have completed." -msgstr "" +msgstr "Pilih jenjang pendidikan tertinggi yang anda selesaikan." #: openedx/core/djangoapps/user_api/accounts/__init__.py msgid "Enter your mailing address." -msgstr "" +msgstr "Alamat pengiriman anda." #: openedx/core/djangoapps/user_api/accounts/api.py #, python-brace-format msgid "The '{field_name}' field cannot be edited." -msgstr "" +msgstr "Isian '{field_name}' tidak dapat diubah." #: openedx/core/djangoapps/user_api/accounts/api.py #: openedx/core/djangoapps/user_api/views.py @@ -10596,21 +11235,21 @@ msgstr "Pembuatan akun tidak diijinkan." #: openedx/core/djangoapps/user_api/accounts/settings_views.py #: openedx/core/djangoapps/user_api/api.py msgid "State/Province/Region" -msgstr "" +msgstr "Provinsi" #. Translators: This label appears above a field on the registration form #. which allows the user to input the Company #: openedx/core/djangoapps/user_api/accounts/settings_views.py #: openedx/core/djangoapps/user_api/api.py msgid "Company" -msgstr "" +msgstr "Perusahaan" #. Translators: This label appears above a field on the registration form #. which allows the user to input the Job Title #: openedx/core/djangoapps/user_api/accounts/settings_views.py #: openedx/core/djangoapps/user_api/api.py msgid "Job Title" -msgstr "" +msgstr "Jabatan" #. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# #. Translators: This label appears above a field on the registration form @@ -10633,18 +11272,21 @@ msgstr "" #: openedx/core/djangoapps/user_api/accounts/settings_views.py #: openedx/core/djangoapps/user_api/api.py msgid "Profession" -msgstr "" +msgstr "Profesi" #. Translators: This label appears above a dropdown menu on the registration #. form used to select the user's specialty #: openedx/core/djangoapps/user_api/accounts/settings_views.py #: openedx/core/djangoapps/user_api/api.py msgid "Specialty" -msgstr "" +msgstr "Keahlian" #: openedx/core/djangoapps/user_api/accounts/utils.py +#, python-brace-format msgid "" -" Make sure that you are providing a valid username or a URL that contains \"" +"Make sure that you are providing a valid username or a URL that contains " +"\"{url_stub}\". To remove the link from your edX profile, leave this field " +"blank." msgstr "" #: openedx/core/djangoapps/user_api/accounts/views.py @@ -10671,10 +11313,12 @@ msgstr "" msgid "Retirement does not exist!" msgstr "" -#: cms/templates/export.html cms/templates/import.html +#: openedx/core/djangoapps/user_api/admin.py cms/templates/export.html +#: cms/templates/import.html msgid "Success" -msgstr "Sukses" +msgstr "Berhasil" +#: openedx/core/djangoapps/user_api/admin.py #: lms/templates/staff_problem_info.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Actions" @@ -10695,7 +11339,7 @@ msgstr "" #: openedx/core/djangoapps/user_api/api.py #, python-brace-format msgid "The email address you used to register with {platform_name}" -msgstr "" +msgstr "Alamat email yang anda gunakan untuk mendaftar di {platform_name}" #: openedx/core/djangoapps/user_api/api.py lms/templates/login.html msgid "Remember me" @@ -10706,14 +11350,14 @@ msgstr "Ingat saya" #. below a field meant to hold the user's email address. #: openedx/core/djangoapps/user_api/api.py msgid "This is what you will use to login." -msgstr "" +msgstr "Ini yang akan anda gunakan untuk masuk." #. Translators: These instructions appear on the registration form, #. immediately #. below a field meant to hold the user's full name. #: openedx/core/djangoapps/user_api/api.py msgid "This name will be used on any certificates that you earn." -msgstr "" +msgstr "Nama resmi anda, digunakan untuk setiap sertifikat yang anda peroleh" #. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# #. Translators: This label appears above a field on the registration form @@ -10738,7 +11382,7 @@ msgstr "" #. form used to select the user's highest completed level of education. #: openedx/core/djangoapps/user_api/api.py msgid "Highest level of education completed" -msgstr "" +msgstr "Jenjang Pendidikan Paling Tinggi yang Diselesaikan" #. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# #. Translators: This label appears above a dropdown menu on the registration @@ -10785,11 +11429,11 @@ msgstr "" #: openedx/core/djangoapps/user_api/api.py #, python-brace-format msgid "" -"By creating an account with {platform_name}, you agree to " -"abide by our {platform_name} " +"By creating an account, you agree to the " "{terms_of_service_link_start}{terms_of_service}{terms_of_service_link_end}" -" and agree to our {privacy_policy_link_start}Privacy " -"Policy{privacy_policy_link_end}." +" and you acknowledge that {platform_name} and each Member " +"process your personal data in accordance with the " +"{privacy_policy_link_start}Privacy Policy{privacy_policy_link_end}." msgstr "" #. Translators: "Terms of service" is a legal document users must agree to @@ -10881,15 +11525,15 @@ msgstr "" #: openedx/core/djangoapps/user_api/templates/user_api/edx_ace/deletionnotificationmessage/email/subject.txt msgid "Your Account Has Been Queued For Deletion" -msgstr "" +msgstr "Akun Anda Telah Diantrekan Untuk Penghapusan" #: openedx/core/djangoapps/user_authn/views/auto_auth.py msgid "Superuser creation not allowed" -msgstr "" +msgstr "Pembuatan Superuser tidak diperbolehkan" #: openedx/core/djangoapps/user_authn/views/auto_auth.py msgid "Account modification not allowed." -msgstr "" +msgstr "Modifikasi akun tidak diperbolehkan." #: openedx/core/djangoapps/user_authn/views/login.py #, python-brace-format @@ -10902,6 +11546,7 @@ msgid "" " yet, click {register_label_strong} at the top of the page." msgstr "" +#: openedx/core/djangoapps/user_authn/views/login.py #: lms/templates/register-form.html #: lms/templates/header/navbar-not-authenticated.html #: lms/templates/navigation/navbar-not-authenticated.html @@ -10992,11 +11637,11 @@ msgstr "" #: openedx/core/lib/api/view_utils.py msgid "This value is invalid." -msgstr "" +msgstr "Isian tidak valid" #: openedx/core/lib/api/view_utils.py msgid "This field is not editable" -msgstr "" +msgstr "Isian ini tidak dapat diubah" #: openedx/core/lib/gating/api.py #, python-format @@ -11010,7 +11655,7 @@ msgstr "" #: openedx/core/lib/license/mixin.py msgid "License" -msgstr "" +msgstr "Lisensi" #: openedx/core/lib/license/mixin.py msgid "" @@ -11019,11 +11664,11 @@ msgstr "" #: openedx/core/lib/xblock_builtin/xblock_discussion/xblock_discussion/__init__.py msgid "Category" -msgstr "" +msgstr "Kategori" #: openedx/core/lib/xblock_builtin/xblock_discussion/xblock_discussion/__init__.py msgid "Week 1" -msgstr "" +msgstr "Minggu 1" #: openedx/core/lib/xblock_builtin/xblock_discussion/xblock_discussion/__init__.py msgid "" @@ -11033,7 +11678,7 @@ msgstr "" #: openedx/core/lib/xblock_builtin/xblock_discussion/xblock_discussion/__init__.py msgid "Subcategory" -msgstr "" +msgstr "Sub-kategori" #: openedx/core/lib/xblock_builtin/xblock_discussion/xblock_discussion/__init__.py msgid "" @@ -11073,7 +11718,7 @@ msgstr "" #: openedx/features/course_duration_limits/models.py #: lms/templates/support/feature_based_enrollments.html msgid "Enabled As Of" -msgstr "" +msgstr "Diaktifkan Sejak" #: openedx/features/content_type_gating/models.py #: openedx/features/course_duration_limits/models.py @@ -11218,22 +11863,23 @@ msgstr "Pembaruan" msgid "Reviews" msgstr "Tinjauan" +#: openedx/features/course_experience/utils.py +#, no-python-format, python-brace-format +msgid "" +"{banner_open}{percentage}% off your first upgrade.{span_close} Discount " +"automatically applied.{div_close}" +msgstr "" + #: openedx/features/course_experience/views/course_home_messages.py #, python-brace-format msgid "{sign_in_link} or {register_link} and then enroll in this course." msgstr "" - -#: openedx/features/course_experience/views/course_home_messages.py -#: lms/templates/header/navbar-not-authenticated.html -#: lms/templates/navigation/navbar-not-authenticated.html -#: themes/edx.org/lms/templates/header/navbar-not-authenticated.html -msgid "Sign in" -msgstr "Masuk" +"{sign_in_link} atau {register_link} dan daftarkan diri pada kursus ini." #: openedx/features/course_experience/views/course_home_messages.py #, python-brace-format msgid "Welcome to {course_display_name}" -msgstr "" +msgstr "Selamat datang di {course_display_name}" #: openedx/features/course_experience/views/course_home_messages.py msgid "" @@ -11269,6 +11915,29 @@ msgstr "" msgid "Set goal to: {goal_text}" msgstr "" +#: openedx/features/discounts/admin.py +msgid "" +"These define the context to disable lms-controlled discounts on. If no " +"values are set, then the configuration applies globally. If a single value " +"is set, then the configuration applies to all courses within that context. " +"At most one value can be set at a time.<br>If multiple contexts apply to a " +"course (for example, if configuration is specified for the course " +"specifically, and for the org that the course is in, then the more specific " +"context overrides the more general context." +msgstr "" + +#: openedx/features/discounts/admin.py +msgid "" +"If any of these values is left empty or \"Unknown\", then their value at " +"runtime will be retrieved from the next most specific context that applies. " +"For example, if \"Disabled\" is left as \"Unknown\" in the course context, " +"then that course will be Disabled only if the org that it is in is Disabled." +msgstr "" + +#: openedx/features/discounts/models.py +msgid "Disabled" +msgstr "" + #: openedx/features/enterprise_support/api.py #, python-brace-format msgid "Enrollment in {course_title} was not complete." @@ -11296,6 +11965,8 @@ msgid "" "Thank you for joining {platform_name}. Just a couple steps before you start " "learning!" msgstr "" +"Terima kasih telah bergabung di {platform_name}. Beberapa langkah lagi " +"sebelum Anda mulai belajar!" #: openedx/features/enterprise_support/utils.py #: lms/templates/peer_grading/peer_grading_problem.html @@ -11378,7 +12049,7 @@ msgstr "" #: cms/djangoapps/contentstore/git_export_utils.py msgid "" "Non writable git url provided. Expecting something like: " -"git@github.com:mitocw/edx4edx_lite.git" +"git@github.com:edx/edx4edx_lite.git" msgstr "" #: cms/djangoapps/contentstore/git_export_utils.py @@ -12202,6 +12873,17 @@ msgstr "Ganti" msgid "Legal" msgstr "Legal" +#. Translators: 'edX' and 'Open edX' are trademarks of 'edX Inc.'. Please do +#. not translate any of these trademarks and company names. +#: cms/templates/widgets/footer.html +#: themes/red-theme/lms/templates/footer.html +msgid "" +"edX, Open edX, and the edX and Open edX logos are registered trademarks of " +"{link_start}edX Inc.{link_end}" +msgstr "" +"edX, Open edX, dan logo edX dan Open edX adalah merek dagang terdaftar dari " +"{link_start}edX Inc.{link_end}" + #: cms/templates/widgets/header.html lms/templates/header/header.html #: lms/templates/navigation/navigation.html #: lms/templates/widgets/footer-language-selector.html @@ -12400,6 +13082,8 @@ msgid "" "You must complete the prerequisites for '{prereq_section_name}' to access " "this content." msgstr "" +"Anda harus memenuhi semua prasyarat '{prereq_section_name}' untuk mengakses " +"konten" #: lms/templates/_gated_content.html msgid "Go to Prerequisite Section" @@ -12485,7 +13169,7 @@ msgstr "Bersihkan pencarian" #: lms/templates/dashboard.html msgid "Skip to list of announcements" -msgstr "" +msgstr "Pindah ke daftar pengumuman" #: lms/templates/dashboard.html themes/edx.org/lms/templates/dashboard.html msgid "Account Status Info" @@ -12594,6 +13278,10 @@ msgstr "Pembersihan:" msgid "External Authentication failed" msgstr "Otentikasi eksternal gagal" +#: lms/templates/footer.html +msgid "organization logo" +msgstr "" + #: lms/templates/forgot_password_modal.html msgid "" "Please enter your e-mail address below, and we will e-mail instructions for " @@ -12807,17 +13495,15 @@ msgstr "" msgid "Search for a course" msgstr "Cari kursus" -#. Translators: 'Open edX' is a registered trademark, please keep this -#. untranslated. See http://open.edx.org for more information. -#: lms/templates/index_overlay.html -msgid "Welcome to the Open edX{registered_trademark} platform!" -msgstr "Selamat datang di Open edX{registered_trademark} platform!" +#: lms/templates/index_overlay.html lms/templates/register-sidebar.html +msgid "Welcome to {platform_name}" +msgstr "Selamat datang di {platform_name}" #. Translators: 'Open edX' is a registered trademark, please keep this #. untranslated. See http://open.edx.org for more information. #: lms/templates/index_overlay.html -msgid "It works! This is the default homepage for this Open edX instance." -msgstr "Berhasil! Ini adalah halaman tetap beranda untuk contoh Open edX." +msgid "It works! Powered by Open edX{registered_trademark}" +msgstr "" #: lms/templates/invalid_email_key.html msgid "Invalid email change key" @@ -13114,6 +13800,10 @@ msgstr "Simpan jawaban Anda" msgid "Reset your answer" msgstr "Setel ulang jawaban Anda" +#: lms/templates/problem.html +msgid "Answers are displayed within the problem" +msgstr "" + #: lms/templates/problem_notifications.html msgid "Next Hint" msgstr "Petunjuk selanjutnya" @@ -13315,10 +14005,6 @@ msgstr "Sudah terdaftar?" msgid "Log in" msgstr "Masuk" -#: lms/templates/register-sidebar.html -msgid "Welcome to {platform_name}" -msgstr "Selamat datang di {platform_name}" - #: lms/templates/register-sidebar.html msgid "" "Registering with {platform_name} gives you access to all of our current and " @@ -13398,21 +14084,23 @@ msgstr "" #: lms/templates/secondary_email_change_failed.html msgid "Secondary e-mail change failed" -msgstr "" +msgstr "Perubahan email kedua gagal" #: lms/templates/secondary_email_change_failed.html msgid "We were unable to activate your secondary email {secondary_email}" -msgstr "" +msgstr "Kami tidak dapat mengaktifkan email kedua {secondary_email}" #: lms/templates/secondary_email_change_successful.html msgid "Secondary e-mail change successful!" -msgstr "" +msgstr "Perubahan email kedua berhasil!" #: lms/templates/secondary_email_change_successful.html msgid "" "Your secondary email has been activated. Please visit " "{link_start}dashboard{link_end} for courses." msgstr "" +"Email kedua Anda telah diaktifkan. Silakan akses " +"{link_start}dashboard{link_end} untuk melihat kursus Anda." #: lms/templates/seq_module.html msgid "Important!" @@ -13687,11 +14375,6 @@ msgstr "ID Kursus atau dir" msgid "Delete course from site" msgstr "Hapus kursus dari website" -#. Translators: A version number appears after this string -#: lms/templates/sysadmin_dashboard.html -msgid "Platform Version" -msgstr "Versi Platform" - #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Page {current_page} of {total_pages}" msgstr "Halaman {current_page} dari {total_pages}" @@ -13965,7 +14648,7 @@ msgstr "syarat layanan untuk {platform_name} APIs" #: lms/templates/api_admin/terms_of_service.html msgid "Effective Date: May 24th, 2018" -msgstr "" +msgstr "Tanggal efektif: 24 Mei 2018" #: lms/templates/api_admin/terms_of_service.html msgid "" @@ -13994,6 +14677,32 @@ msgid "" " you do not understand or do not wish to be bound by the Terms, you should " "not use the APIs." msgstr "" +"Selamat datang di {platform_name}. Terima kasih telah menggunakan Course " +"Discovery API, Enterprise API dan/atau API tambahan dari {platform_name} " +"yang telah kami sediakan (selanjutnya disebut \"APIs\"). Silakan baca " +"Persyaratan Layanan sebelum mengakses atau menggunakan APIs. Persyaratan " +"Layanan ini, syarat tambahan lain yang mengikuti dokumentasi API, dan " +"kebijakan dan panduan lainnya yang berlaku yang dibuat oleh {platform_name} " +"dan/atau pembaharuan dari waktu ke waktu merupakan kesepakatan (selanjutnya," +" disebut \"Persyaratan\") antara Anda dan {platform_name}. Persyaratan ini " +"diterbitkan di bawah kesepakatan produk enterprise, kesepakatan kepesertaan " +"anggota, atau kesepakatan langsung lainnya yang mengatur pembelian produk " +"dari {platform_name}, jika ada di antara (\"Kesepakatan\"), dilakukan baik " +"oleh Anda atau pihak yang bertindak atas nama Anda dalam mengakses atau " +"menggunakan APIs dan {platform_name}. Pada situasi di mana Anda memiliki " +"Kesepakatan yang berlaku terhadap penggunaan Anda terhadap APIs, Kesepakatan" +" akan mengatur konflik di antaranya dan Persyaratan. Dengan mengakses atau " +"menggunakan APIs, Anda menerima dan setuju untuk terikat secara hukum, baik " +"Anda terdaftar sebagai pengguna maupun tidak. Jika Anda mengakses atau " +"menggunakan APIs atas nama perusahaan, organisasi, atau entitas legal " +"lainnya, Anda menyetujui Persyaratan tersebut untuk entitas tersebut dan " +"mewakili dan memberikan jaminan kepada {platform_name} bahwa Anda memiliki " +"otoritas penuh untuk menerima dan menyetujui Kesepakatan tersebut untuk " +"entitas yang dimaksud, di mana \"Anda\" atau istilah lain yang terkait di " +"sini merujuk kepada entitas di mana Anda bertindak atasnya dalam mengakses " +"dan menggunakan APIs. Dan jika Anda tidak memiliki otoritas yang dimaksud " +"atau tidak berkenan terikat oleh Persyaratan tersebut, Anda tidak boleh " +"menggunakan APIs." #: lms/templates/api_admin/terms_of_service.html msgid "API Access" @@ -14012,6 +14721,16 @@ msgid "" "provide you with instructions for obtaining your API shared secret and " "client ID." msgstr "" +"Untuk mengakses API, Anda akan harus membuat akun pengguna {platform_name} " +"untuk aplikasi Anda (tidak untuk penggunaan pribadi). Akun ini akan " +"memberikan Anda akses ke laman permintaan API kami di {request_url}. Pada " +"laman tersebut, Anda harus mengisi formulir permintaan API termasuk " +"deskripsi usulan penggunaan API. Setiap akun dan informasi pendaftaran yang " +"Anda berikan kepada {platform_name} harus akurat dan terbaru, dan Anda " +"setuju untuk menginformasikan kepada kami setiap perubahan dengan segera. " +"{platform_name_capitalized} akan meninjau formulir permintaan API Anda dan, " +"setelah disetujui dalam kebijakan {platform_name}, akan memberikan petunjuk " +"untuk memperoleh shared API rahasia dan ID klien Anda." #: lms/templates/api_admin/terms_of_service.html msgid "Permissible Use" @@ -14033,6 +14752,19 @@ msgid "" "credentials anywhere other than on the {platform_name} website at " "{platform_url}." msgstr "" +"Anda setuju untuk menggunakan API semata-mata untuk tujuan mengirim konten " +"yang diakses melalui API (\"Konten API\") ke situs web Anda sendiri, situs " +"mobile, aplikasi, blog, daftar distribusi email, atau properti media sosial " +"(\"Aplikasi Anda\") atau untuk penggunaan komersial lain yang Anda jelaskan " +"dalam permintaan akses dan bahwa {platform_name} telah menyetujui atas dasar" +" kasus per kasus. {platform_name_capitalized} dapat memantau penggunaan API " +"Anda demi kesesuaian dengan Persyaratan dan mungkin menolak akses Anda atau " +"mematikan integrasi Anda jika Anda mencoba untuk tidak mengindahkan atau " +"melampaui persyaratan dan batasan yang ditetapkan oleh {platform_name}. " +"Aplikasi Anda atau penggunaan API atau Konten API lain yang disetujui tidak " +"perlu meminta pengguna akhir Anda untuk memberikan nama pengguna " +"{platform_name}, kata sandi atau kredensial pengguna {platform_name} lain di" +" mana saja selain website {platform_name} di {platform_url}." #: lms/templates/api_admin/terms_of_service.html msgid "Prohibited Uses and Activities" @@ -14046,6 +14778,11 @@ msgid "" "at any time, in its sole discretion, does not benefit or serve the best " "interests of {platform_name}, its users and its partners." msgstr "" +"{platform_name_capitalized} akan memiliki hak tunggal untuk menentukan " +"apakah atau tidak penggunaan API yang diberikan dapat diterima, dan " +"{platform_name} berhak mencabut akses API untuk penggunaan apa pun terkait " +"{platform_name} kapan saja, dengan kebijakan tersendiri, tidak menguntungkan" +" atau melayani kepentingan dari {platform_name}, baik pengguna dan mitranya." #: lms/templates/api_admin/terms_of_service.html msgid "" @@ -14081,7 +14818,7 @@ msgstr "" #: lms/templates/api_admin/terms_of_service.html msgid "altering or editing any content or graphics in the API Content;" -msgstr "" +msgstr "mengubah atau mengedit konten atau grafis apa pun dalam Konten API;" #: lms/templates/api_admin/terms_of_service.html msgid "" @@ -14127,6 +14864,11 @@ msgid "" "calls made by you or Your Application to the APIs. You must not attempt to " "circumvent any restrictions or limitations imposed by {platform_name}." msgstr "" +"{platform_name_capitalized} berhak, dalam kebijakan tersendiri, untuk " +"memberlakukan restriksi dan pembatasan jumlah dan frekuensi panggilan yang " +"dilakukan oleh Anda atau Aplikasi Anda ke APIs. Anda tidak boleh berusaha " +"untuk menggagalkan restriksi atau pembatasan yang dilakukan oleh " +"{platform_name}." #: lms/templates/api_admin/terms_of_service.html msgid "Compliance" @@ -14144,6 +14886,15 @@ msgid "" "or mask either your identity or Your Application's identity when using the " "APIs." msgstr "" +"Anda setuju untuk mematuhi semua hukum, peraturan, dan hak pihak ketiga yang" +" berlaku (termasuk tanpa batasan hukum mengenai impor atau ekspor data atau " +"perangkat lunak, privasi, hak cipta, dan hukum setempat). Anda tidak akan " +"menggunakan APIs untuk mendorong atau mempromosikan aktivitas ilegal atau " +"pelanggaran hak pihak ketiga. Anda tidak akan melanggar persyaratan layanan " +"lainnya dengan {platform_name}. Anda hanya akan mengakses (atau mencoba " +"mengakses) API dengan cara yang dijelaskan dalam dokumentasi API. Anda tidak" +" akan misrepresentasi atau menyembunyikan identitas atau identitas Aplikasi" +" Anda saat menggunakan API." #: lms/templates/api_admin/terms_of_service.html msgid "Ownership" @@ -14198,6 +14949,20 @@ msgid "" "other entities providing information, API Content or services for the APIs, " "the course instructors and their staffs." msgstr "" +"Semua nama, logo, dan segel (\"Merek Dagang\") yang muncul dalam API, Konten" +" API, atau pada dan melalui layanan yang tersedia pada atau melalui API, " +"jika ada, merupakan milik pemilik terkaitnya. Anda tidak berhak menghapus, " +"mengubah, atau menghilangkan hak cipta, Merek Dagang, atau informasi lain " +"terkait hak proprietary yang terdapat atau terkait dengan Konten API. Jika " +"terdapat Partisipan {platform_name} (yang akan dijelaskan berikut ini) atau " +"pihak ketiga yang menghapus akses terhadap Konten API yang dimiliki atau " +"diatur oleh Partisipan {platform_name} atau pihak ketiga tersebut, meliputi " +"batasan Merek Dagang, Anda harus memastikan bahwa Konten API yang terkait " +"dengan Partisipan {platform_name} atau pihak ketiga tersebut telah dihapus " +"dari Aplikasi Anda, jaringan-jaringan, sistem-sistem, dan server-server Anda" +" sesegera mungkin. \"Partisipan {platform_name_capitalized}\" meliputi MIT, " +"Harvard, dan entitas lain yang menyediakan informasi, Konten API atau " +"layanan untuk API, instruktur kursus dan staf terkait." #: lms/templates/api_admin/terms_of_service.html msgid "" @@ -14234,6 +14999,13 @@ msgid "" " collect and how you may use and share such information (including for " "advertising) with {platform_name} and other third parties." msgstr "" +"Anda menyetujui untuk mematuhi semua hukum dan peraturan privasi yang " +"berlaku dan untuk bersikap terbuka terhadap semua pengumpulan dan penggunaan" +" data pengguna akhir. Anda akan menyediakan dan patuh terhadap kebijakan " +"privasi untuk Aplikasi Anda yang secara jelas dan akurat mendeskripsikan " +"kepada pengguna akhir Anda, informasi pengguna apa yang Anda kumpulkan dan " +"bagaimana Anda akan menggunakan dan membagikan informasi tersebut (termasuk " +"untuk iklan) dengan {platform_name} dan pihak ketiga." #: lms/templates/api_admin/terms_of_service.html msgid "Right to Charge" @@ -14245,6 +15017,9 @@ msgid "" "{platform_name} reserves the right to charge fees for future use or access " "to the APIs." msgstr "" +"Akses tertentu terhadap API dapat diberikan secara cuma-cuma, namun " +"{platform_name} berhak menarik biaya untuk pemanfaatan atau akses " +"berikutnya." #: lms/templates/api_admin/terms_of_service.html msgid "" @@ -14256,6 +15031,13 @@ msgid "" "changes. Be sure to return to this page periodically to ensure familiarity " "with the most current version of the Terms." msgstr "" +"{platform_name_capitalized} berhak mengubah Persyaratan kapan saja tanpa " +"pemberitahuan terlebih dahulu. Setiap perubahan pada Persyaratan akan segera" +" efektif setelah posting di halaman ini, dengan tanggal yang diperbarui. " +"Dengan mengakses atau menggunakan API setelah terjadi perubahan, Anda " +"menyatakan persetujuan Anda terhadap Persyaratan yang telah dimodifikasi " +"dan semua perubahannya. Pastikan untuk kembali ke halaman ini secara berkala" +" untuk mempelajari versi terbaru dari Persyaratan." #: lms/templates/api_admin/terms_of_service.html msgid "" @@ -14265,6 +15047,12 @@ msgid "" "that is unacceptable to you, you should stop using the APIs. Continued use " "of the APIs means you accept the change." msgstr "" +"{platform_name_capitalized} juga dapat memperbarui atau memodifikasi APIs " +"dari waktu ke waktu tanpa pemberitahuan terlebih dahulu. Perubahan ini dapat" +" mempengaruhi penggunaan API atau cara integrasi dengan API. Jika kami " +"membuat perubahan yang tidak sesuai dengan Anda, Anda harus berhenti " +"menggunakan APIs. Penggunaan API yang berkelanjutan berarti Anda menerima " +"perubahan tersebut." #: lms/templates/api_admin/terms_of_service.html msgid "Confidentiality" @@ -14277,6 +15065,10 @@ msgid "" "discourage others from using your credentials. Your credentials may not be " "embedded in open source projects." msgstr "" +"Kredensial Anda (seperti rahasia dan ID klien) hanya dibuat untuk digunakan " +"oleh Anda. Anda akan merahasiakan kredensial Anda dan menjaga agar tidak " +"digunakan oleh orang lain. Kredensial Anda tidak boleh dilekatkan dalam " +"proyek open source." #: lms/templates/api_admin/terms_of_service.html msgid "" @@ -14296,6 +15088,21 @@ msgid "" "to do so by law if you provide {platform_name} with reasonable prior notice," " unless a court orders that {platform_name} not receive notice." msgstr "" +"Pada situasi di mana {platform_name} memberikan Anda akses terhadap " +"informasi yang spesifik mengenai {platform_name} dan/atau API yang ditandai " +"sebagai \"Rahasia\" atau di mana seseorang dapat memahami kerahasiaan dengan" +" adanya persyaratan berupa pemberitahuan (\"Informasi Rahasia\"), Anda " +"setuju untuk menggunakan informasi ini hanya untuk menggunakan dan membangun" +" API. Anda tidak boleh memberitahukan Informasi Rahasia ini kepada siapapun " +"tanpa persetujuan tertulis {platform_name} sebelumnya, dan Anda setuju untuk" +" melindungi Informasi Rahasia dari penggunaan dan penyebaran yang tidak " +"terotorisasi seperti halnya Anda melindungi informasi rahasia Anda sendiri. " +"Informasi rahasia tidak meliputi informasi yang Anda kembangkan secara " +"independen, yang merupakan hak Anda dari pihak ketiga tanpa obligasi " +"kerahasiaan, atau yang terpublikasi bukan karena kesalahan Anda. Anda boleh " +"membagikan Informasi Rahasia jika diwajibkan secara hukum dengan syarat " +"melakukan pemberitahuan awal kepada {platform_name}, kecuali jika pengadilan" +" melarang pemberitahuan kepada {platform_name}." #: lms/templates/api_admin/terms_of_service.html msgid "Disclaimer of Warranty / Limitation of Liabilities" @@ -14327,6 +15134,13 @@ msgid "" "COMPLETENESS, TIMELINESS, OR QUALITY OF THE APIS OR ANY API CONTENT, OR THAT" " ANY PARTICULAR API CONTENT WILL CONTINUE TO BE MADE AVAILABLE." msgstr "" +"PARTISIPAN DALAM {platform_name} DAN {platform_name} TIDAK MENJAMIN BAHWA " +"API AKAN BEKERJA TANPA GANGGUAN ATAU INTERUPSI, BAHWA API SELALU BEBAS DARI " +"VIRUS ATAU KOMPONEN LAIN YANG BERBAHAYA, ATAU BAHWA API ATAU KONTEN API YANG" +" DISEDIAKAN AKAN MEMENUHI KEBUTUHAN ATAU HARAPAN ANDA. PARTISIPAN DALAM " +"{platform_name} DAN {platform_name} JUGA TIDAK MENJAMIN AKURASI, " +"KELENGKAPAN, KETEPATAN WAKTU, ATAU KUALITAS API ATAU KONTEN API, ATAU BAHWA " +"KONTEN API TERTENTU AKAN SELALU TERSEDIA. " #: lms/templates/api_admin/terms_of_service.html msgid "" @@ -14338,6 +15152,14 @@ msgid "" "DOWNLOAD OR USE OF SUCH INFORMATION, MATERIALS OR DATA, UNLESS OTHERWISE " "EXPRESSLY PROVIDED FOR IN THE {platform_name} PRIVACY POLICY." msgstr "" +"PENGGUNAAN API, DAN KONTEN API DAN LAYANAN-LAYANAN LAIN YANG DIPEROLEH DARI " +"ATAU MELALUI API, ADALAH MERUPAKAN RISIKO ANDA SENDIRI. AKSES ANDA KEPADA " +"ATAU UNDUHAN INFORMASI, MATERI, ATAU DATA MELALUI API MENJADI RISIKO DAN " +"KEBIJAKSANAAN ANDA SENDIRI, DAN ANDA BERTANGGUNG JAWAB UNTUK KERUSAKAN " +"TERHADAP PROPERTI ANDA (TERMASUK SISTEM KOMPUTER ANDA) ATAU KEHILANGAN DATA " +"YANG TERJADI DARI PENGUNDUHAN ATAU PENGGUNAAN MATERI ATAU DATA, KECUALI " +"DINYATAKAN SECARA EKSPLISIT TERSEDIA DALAM KEBIJAKAN PRIVASI " +"{platform_name}." #: lms/templates/api_admin/terms_of_service.html msgid "" @@ -14349,6 +15171,14 @@ msgid "" "INFORMATION OBTAINED FROM OR THROUGH THE APIS, WHETHER YOUR CLAIM IS BASED " "IN CONTRACT, TORT, STATUTORY OR OTHER LAW." msgstr "" +"SEMAKSIMAL MUNGKIN JIKA DIIZINKAN OLEH HUKUM YANG BERLAKU, ANDA SETUJU BAHWA" +" BAIK {platform_name} MAUPUN PARTISIPAN {platform_name} TIDAK AKAN MEMILIKI " +"KEWAJIBAN TERHADAP ANDA UNTUK KERUGIAN ATAU KERUSAKAN, BAIK AKTUAL MAUPUN " +"KONSEKUENSIAL, YANG MUNCUL DARI ATAU BERHUBUNGAN DENGAN PERSYARATAN INI, " +"ATAU PENGGUNAAN ANDA (ATAU PIHAK KETIGA) TERHADAP ATAU KETIDAKMAMPUAN UNTUK " +"MENGGUNAKAN API ATAU KONTEN API, ATAU KEPERCAYAAN ANDA TERHADAP INFORMASI " +"YANG DIPEROLEH DARI ATAU MELALUI API, BAIK JIKA ATAUPUN TIDAK TUNTUTAN ANDA " +"BERDASARKAN KONTRAK, TORT, STATUTORY, ATAU HUKUM LAINNYA." #: lms/templates/api_admin/terms_of_service.html msgid "" @@ -14392,6 +15222,14 @@ msgid "" "that may be offered at these third-party sites. If you decide to access " "linked third-party websites, you do so at your own risk." msgstr "" +"API dan Konten API mungkin memasukkan hyperlink ke situs yang dipelihara " +"atau diatur oleh pihak lain dan tidak berafilitasi dengan atau di bawah " +"kontrol {platform_name}. {platform_name_capitalized} dan Partisipan " +"{platform_name} tidak bertanggung jawab untuk dan tidak secara rutin " +"memeriksa, menyetujui, meninjau, atau mendukung konten dari atau penggunaan " +"dari produk atau layanan yang ditawarkan pada situs-situs ini. Jika Anda " +"memutuskan untuk mengakses website pihak ketiga, maka risiko ada di tangan " +"Anda." #: lms/templates/api_admin/terms_of_service.html msgid "" @@ -14407,6 +15245,18 @@ msgid "" "{platform_name} or one of the {platform_name} Participants will provide you " "with written notice of such claim, action or demand." msgstr "" +"Semaksimal mungkin jika diperbolehkan oleh hukum, Anda setuju untuk membela," +" menjamin, dan mengganggap tidak bersalah {platform_name} dan Partisipan " +"{platform_name}, dan anak perusahaannya, afiliasinya, petugasnya, staf " +"pengajarnya, siswa, anggota jajaran manajerial, agen dan pegawai dari dan " +"terhadap tuntutan pihak ketiga, tindakan dan permintaan yang muncul dari, " +"dihasilkan dari atau berhubungan dengan penggunaan API dan Konten API, " +"termasuk kewajiban atau pengeluaran yang disebabkan oleh tuntutan, kerugian," +" kerusakan (aktual maupun konsekuensial), gugatan, keputusan, biaya " +"litigasi, dan biaya pengacara, dalam bentuk apapun. Dalam kasus tersebut, " +"{platform_name} atau salah satu Partisipan {platform_name} akan memberikan " +"Anda pemberitahuan tertulis mengenai tuntutan gugatan, maupun tindakan " +"tersebut." #: lms/templates/api_admin/terms_of_service.html msgid "General Legal Terms" @@ -14460,6 +15310,19 @@ msgid "" "still be allowed to apply for injunctive remedies (or an equivalent type of " "urgent legal relief) in any jurisdiction." msgstr "" +"Anda menyetujui bahwa Persyaratan, API, dan semua tuntutan atau gugatan yang" +" muncul dari atau berhubungan dengan Persyaratan API diatur oleh hukum " +"Negara Bagian Massachusetts, kecuali konflik ketetapan hukum. Anda " +"menyetujui bahwa semua tuntutan dan gugatan akan didengarkan dan " +"diselesaikan secara eksklusif di pengadilan federal atau negara bagian yang " +"berlokasi di dan melayani Cambridge, Massachusetts, Amerika Serikat. Anda " +"menyetujui yuridiksi personal pengadilan-pengadilan ini terhadap Anda untuk " +"tujuan ini, dan Anda mengabaikan dan menyetujui untuk tidak menolak proses " +"peradilan di pengadilan-pengadilan ini (termasuk pembelaan atau penolakan " +"karena kurangnya yuridiksi atau lokasi, atau ketidaknyamanan forum yang " +"layak). Meskipun sebelumnya, Anda menyetujui bahwa {platform_name} tetap " +"berhak untuk menggunakannya untuk ganti rugi (atau tipe ganti rugi lain " +"darurat yang setara secara legal) pada yuridiksi apapun." #: lms/templates/api_admin/terms_of_service.html msgid "Termination" @@ -14472,6 +15335,10 @@ msgid "" "any API Content for any reason or no reason, without prior notice or " "liability." msgstr "" +"Anda dapat berhenti menggunakan API kapan saja. Anda setuju bahwa " +"{platform_name}, dengan kebijakan tersendiri dan sewaktu-waktu, dapat " +"menghentikan penggunaan API atau Konten API Anda karena alasan atau tanpa " +"alasan apa pun, tanpa pemberitahuan sebelumnya atau tidak." #: lms/templates/api_admin/terms_of_service.html msgid "" @@ -14483,6 +15350,13 @@ msgid "" "{platform_name} Participants will have any liability to you for such an " "action." msgstr "" +"{platform_name_capitalized} dan Partisipan {platform_name} berhak setiap " +"saat untuk membatalkan, menunda, menjadwal ulang atau mengubah format API " +"atau Konten API yang ditawarkan melalui {platform_name}, atau berhenti " +"memberikan bagian atau keseluruhan API atau Konten API atau layanan terkait," +" dan Anda setuju bahwa baik {platform_name} maupun salah satu dari " +"Partisipan {platform_name} akan bertanggung jawab kepada Anda atas tindakan " +"semacam itu." #: lms/templates/api_admin/terms_of_service.html msgid "" @@ -14499,6 +15373,18 @@ msgid "" "you otherwise may have to {platform_name}, including without limitation any " "indemnification obligations contained herein." msgstr "" +"Dengan adanya penghentian Persyaratan atau penghentian akses Anda terhadap " +"API dengan alasan apapun, hak Anda untuk menggunakan API dan Konten API akan" +" langsung hilang. Anda harus segera berhenti menggunakan API dan menghapus " +"semua cache atau Konten API yang telah tersimpan dari Aplikasi Anda dan " +"jaringan, sistem dan server Anda sesegera mungkin. Semua ketetapan " +"Persyaratan yang secara alami harus tetap berlaku meskipun terjadi " +"terminasi, harus tetap berlaku, termasuk, tidak terbatas pada, ketetapan " +"kepemilikan, penolakan terhadap garansi, dan pembatasan kewajiban. Terminasi" +" akses Anda ke dan penggunaan API dan Konten API Anda tidak boleh menghapus " +"kewajiban Anda yang muncul dari terminasi yang dimaksud atau membatasi " +"kewajiban Anda terhadap {platform_name}, termasuk tidak adanya batasan dari " +"kewajiban ganti rugi yang tercakup di dalamnya." #: lms/templates/api_admin/catalogs/edit.html msgid "Edit {catalog_name}" @@ -15089,6 +15975,20 @@ msgstr "Memuat Permintaan Data..." msgid "Please wait while we retrieve your order details." msgstr "Harap tunggu ketika kami mencari detil permintaan Anda." +#: lms/templates/course_modes/_upgrade_button.html +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/_upgrade_button.html +#: themes/edx.org/lms/templates/course_modes/choose.html +msgid "Pursue the Verified Track" +msgstr "Ikuti Jalur Terverifikasi" + +#: lms/templates/course_modes/_upgrade_button.html +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/_upgrade_button.html +#: themes/edx.org/lms/templates/course_modes/choose.html +msgid "Pursue a Verified Certificate" +msgstr "Dapatkan Sertifikat Terverifikasi" + #: lms/templates/course_modes/choose.html #: themes/edx.org/lms/templates/course_modes/choose.html msgid "Enroll In {course_name} | Choose Your Track" @@ -15102,7 +16002,7 @@ msgstr "Maaf, terjadi kesalahan saat mencoba mendaftarkan Anda" #: lms/templates/course_modes/choose.html #: themes/edx.org/lms/templates/course_modes/choose.html msgid "Pursue Academic Credit with the Verified Track" -msgstr "" +msgstr "Dapatkan Kredit Akademik dengan Jalur Terverifikasi" #: lms/templates/course_modes/choose.html #: themes/edx.org/lms/templates/course_modes/choose.html @@ -15126,7 +16026,7 @@ msgstr "" #: lms/templates/course_modes/choose.html #: themes/edx.org/lms/templates/course_modes/choose.html msgid "Benefits of the Verified Track" -msgstr "" +msgstr "Manfaat Jalur Terverifikasi" #: lms/templates/course_modes/choose.html #: themes/edx.org/lms/templates/course_modes/choose.html @@ -15143,6 +16043,8 @@ msgid "" "{b_start}Unlimited Course Access: {b_end}Learn at your own pace, and access " "materials anytime to brush up on what you've learned." msgstr "" +"{b_start}Akses Kursus Tak Terbatas: {b_end}Belajar sesuai dengan jadwal " +"Anda, dan akses materi kapan saja untuk mengulang yang sudah Anda pelajari." #: lms/templates/course_modes/choose.html #: themes/edx.org/lms/templates/course_modes/choose.html @@ -15150,6 +16052,8 @@ msgid "" "{b_start}Graded Assignments: {b_end}Build your skills through graded " "assignments and projects." msgstr "" +"{b_start}Tugas Dengan Nilai: {b_end}Kembangkan keterampilan Anda melalui " +"tugas dan proyek yang dinilai." #: lms/templates/course_modes/choose.html #: themes/edx.org/lms/templates/course_modes/choose.html @@ -15157,6 +16061,8 @@ msgid "" "{b_start}Easily Sharable: {b_end}Add the certificate to your CV or resume, " "or post it directly on LinkedIn." msgstr "" +"{b_start}Mudah Dibagi: {b_end}Tambahkan sertifikat ke CV atau resume Anda, " +"atau bagikan langsung di LinkedIn." #: lms/templates/course_modes/choose.html #: themes/edx.org/lms/templates/course_modes/choose.html @@ -15181,16 +16087,6 @@ msgstr "" "{b_start}Mudah dibagikan:{b_end} Menambah sertifikat pada CV anda atau " "resume, atau tayangkan langsung pada LinkedIn" -#: lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -msgid "Pursue a Verified Certificate" -msgstr "Kejar Sertifikat Terverifikasi" - -#: lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -msgid "Pursue the Verified Track" -msgstr "" - #: lms/templates/course_modes/choose.html #: themes/edx.org/lms/templates/course_modes/choose.html msgid "" @@ -15256,6 +16152,9 @@ msgid "" "discussions forums. {b_start}This track does not include graded assignments," " or unlimited course access.{b_end}" msgstr "" +"Pelajari kursus ini secara cuma-cuma dan dapatkan akses terhadap materi " +"kursus dan forum diskusi. {b_start}Jalur ini tidak meliputi tugas dengan " +"nilai dan akses Anda terhadap kursus akan terbatas.{b_end}" #: lms/templates/course_modes/choose.html #: themes/edx.org/lms/templates/course_modes/choose.html @@ -15264,6 +16163,9 @@ msgid "" "discussions forums. {b_start}This track does not include graded " "assignments.{b_end}" msgstr "" +"Pelajari kursus ini secara cuma-cuma dan dapatkan akses terhadap materi " +"kursus dan forum diskusi. {b_start}Jalur ini tidak meliputi tugas dengan " +"nilai.{b_end}" #: lms/templates/course_modes/choose.html #: themes/edx.org/lms/templates/course_modes/choose.html @@ -15272,6 +16174,9 @@ msgid "" "discussions forums. {b_start}This track does not include unlimited course " "access.{b_end}" msgstr "" +"Pelajari kursus ini secara cuma-cuma dan dapatkan akses terhadap materi " +"kursus dan forum diskusi. {b_start}Jalur ini tidak meliputi akses kursus tak" +" terbatas.{b_end}" #: lms/templates/course_modes/choose.html #: themes/edx.org/lms/templates/course_modes/choose.html @@ -15313,6 +16218,10 @@ msgstr "Konten ini telah dinilai" msgid "An error occurred. Please try again later." msgstr "Terjadi kesalahan. Silakan coba lagi nanti." +#: lms/templates/courseware/course_about.html +msgid "An error has occurred. Please ensure that you are logged in to enroll." +msgstr "" + #: lms/templates/courseware/course_about.html msgid "You are enrolled in this course" msgstr "Anda terdaftar pada pelatihan ini" @@ -15327,6 +16236,8 @@ msgstr "Lihat Kursus" #: lms/templates/courseware/course_about.html msgid "This course is in your {start_cart_link}cart{end_cart_link}." msgstr "" +"Kursus ini ada di dalam {start_cart_link}keranjang belanja{end_cart_link} " +"Anda." #: lms/templates/courseware/course_about.html msgid "Course is full" @@ -15343,6 +16254,8 @@ msgstr "Pendaftaran Ditutup" #: lms/templates/courseware/course_about.html msgid "Add {course_name} to Cart {start_span}({price} USD){end_span}" msgstr "" +"Tambahkan {course_name} ke dalam Keranjang Belanja {start_span}({price} " +"USD){end_span}" #: lms/templates/courseware/course_about.html msgid "Enroll in {course_name}" @@ -15459,7 +16372,6 @@ msgstr "Saring Pencarian Anda" #: lms/templates/courseware/courseware-chromeless.html #: lms/templates/courseware/courseware.html #: openedx/features/course_bookmarks/templates/course_bookmarks/course-bookmarks.html -#: openedx/features/learner_analytics/templates/learner_analytics/dashboard.html msgid "{course_number} Courseware" msgstr "{course_number} Perangkat Kursus" @@ -15697,8 +16609,8 @@ msgid "View Grading in studio" msgstr "Lihat Penilaian di studio" #: lms/templates/courseware/progress.html -msgid "Course Progress for Student '{username}' ({email})" -msgstr "Perkembangan Kursus untuk Siswa '{username}' ({email})" +msgid "Course Progress for '{username}' ({email})" +msgstr "" #: lms/templates/courseware/progress.html msgid "View Certificate" @@ -16068,7 +16980,7 @@ msgstr "Mulai - {date}" #: lms/templates/dashboard/_dashboard_course_listing.html msgid "for {course_display_name}" -msgstr "" +msgstr "untuk {course_display_name}" #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You must select a session by {expiration_date} to access the course." @@ -16436,30 +17348,32 @@ msgid "" "We're sorry to see you go! Read the following statements and rate your level" " of agreement." msgstr "" +"Kami menyesal Anda memutuskan untuk berhenti! Mohon pilih seberapa sepakat " +"Anda dengan pernyataan di bawah." #: lms/templates/dashboard/_entitlement_reason_survey.html msgid "Price is too high for me" -msgstr "" +msgstr "Bagi saya harganya terlalu mahal" #: lms/templates/dashboard/_entitlement_reason_survey.html msgid "I was not satisfied with my experience taking the courses" -msgstr "" +msgstr "Saya tidak puas dengan pengalaman saya mengikuti kursus ini" #: lms/templates/dashboard/_entitlement_reason_survey.html msgid "Content of the courses was too difficult" -msgstr "" +msgstr "Materi kursus terlalu sulit" #: lms/templates/dashboard/_entitlement_reason_survey.html msgid "I did not have enough time to complete the courses" -msgstr "" +msgstr "Saya tidak memiliki waktu untuk menyelesaikan kursus" #: lms/templates/dashboard/_entitlement_reason_survey.html msgid "The content was not available when I wanted to start" -msgstr "" +msgstr "Konten tidak tersedia ketika saya ingin memulai kursus" #: lms/templates/dashboard/_entitlement_reason_survey.html msgid "Can we contact you via email for follow up?" -msgstr "" +msgstr "Dapatkah kami menghubungi Anda lewat email untuk tindak lanjut?" #: lms/templates/dashboard/_entitlement_reason_survey.html #: lms/templates/dashboard/_reason_survey.html @@ -16900,30 +17814,32 @@ msgid "" "Sorry! The photos you submitted for ID verification were not accepted, for " "the following reason(s):" msgstr "" +"Maaf! Foto yang Anda berikan untuk verifikasi identitas tidak dapat " +"diterima, karena alasan-(alasan) berikut:" #: lms/templates/emails/failed_verification_email.txt msgid "The photo(s) of you:" -msgstr "" +msgstr "Foto-(foto) Anda:" #: lms/templates/emails/failed_verification_email.txt msgid "The photo of you:" -msgstr "" +msgstr "Foto Anda:" #: lms/templates/emails/failed_verification_email.txt msgid "The photo of your ID:" -msgstr "" +msgstr "Foto identitas Anda:" #: lms/templates/emails/failed_verification_email.txt msgid "Other Reasons:" -msgstr "" +msgstr "Alasan lain:" #: lms/templates/emails/failed_verification_email.txt msgid "Resubmit Verification: {reverify_url}" -msgstr "" +msgstr "Lakukan verifikasi lagi: {reverify_url}" #: lms/templates/emails/failed_verification_email.txt msgid "ID Verification FAQ: {faq_url}" -msgstr "" +msgstr "Pertanyaan verifikasi identitas: {faq_url}" #: lms/templates/emails/failed_verification_email.txt #: lms/templates/emails/passed_verification_email.txt @@ -16947,16 +17863,18 @@ msgstr "Nomor pesanan Anda: {order_number}" #: lms/templates/emails/passed_verification_email.txt msgid "Hi {full_name}" -msgstr "" +msgstr "Hi {full_name}" #: lms/templates/emails/passed_verification_email.txt msgid "Congratulations! Your ID verification process was successful." -msgstr "" +msgstr "Selamat! Proses verikasi identitas Anda berhasil." #: lms/templates/emails/passed_verification_email.txt msgid "" "Your verification is effective for one year. It will expire on {expiry_date}" msgstr "" +"Hasil verifikasi Anda berlaku efektif untuk satu tahun, dan akan kadaluarsa " +"pada {expiry_date}" #: lms/templates/emails/photo_submission_confirmation.txt msgid "Hi {full_name}," @@ -16973,6 +17891,10 @@ msgid "" "your verification was successful.You can also check the status of the " "verification process on your dashboard." msgstr "" +"Kami telah menerima informasi Anda dan proses verifikasi telah dimulai. " +"Periksa email dari kami dalam beberapa hari untuk memastikan bahwa " +"verifikasi telah berhasil. Anda juga dapat mengecek status proses verifikasi" +" pada dashboard Anda." #: lms/templates/emails/registration_codes_sale_email.txt msgid "Thank you for purchasing enrollments in {course_name}." @@ -17352,7 +18274,7 @@ msgstr "Program" #: lms/templates/navigation/bootstrap/navbar-authenticated.html #: themes/edx.org/lms/templates/header/navbar-authenticated.html msgid "Journals" -msgstr "" +msgstr "Jurnal" #: lms/templates/header/navbar-authenticated.html msgid "Discover New" @@ -17587,7 +18509,7 @@ msgstr "Profesional" #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Master's" -msgstr "" +msgstr "Master" #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Basic Course Information" @@ -17745,10 +18667,13 @@ msgid "" "the problem. You also select a section or chapter to include results of all " "problems in that section or chapter." msgstr "" +"Pilih masalah untuk membuat file CSV yang berisi daftar jawaban siswa untuk " +"permasalahan yang diberikan. Anda juga dapat memilih bagian atau bab untuk " +"memasukkan hasil dari semua permasalahan dalam bagian atau bab tersebut." #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "NOTE" -msgstr "" +msgstr "CATATAN" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" @@ -17757,6 +18682,10 @@ msgid "" "by-chapter, or problem-by-problem basis, or contact your site administrator " "to increase the limit." msgstr "" +"Laporan yang dibuat terbatas untuk {max_entries} respon. Jika Anda " +"menginginkan lebih dari {max_entries} respon, silakan buat laporan untuk " +"masing-masing bab, atau untuk masing-masing masalah, atau hubungi " +"administrator situs Anda untuk meningkatkan batas." #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "Download a CSV of problem responses" @@ -17811,15 +18740,11 @@ msgstr "Laporan Tersedia untuk Diunduh" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The reports listed below are available for download. A link to every report " -"remains available on this page, identified by the UTC date and time of " -"generation. Reports are not deleted, so you will always be able to access " -"previously generated reports from this page." +"The reports listed below are available for download, identified by UTC date " +"and time of generation." msgstr "" -"Laporan yang tercantum di bawah ini dapat diunduh. Tautan ke setiap laporan " -"tetap tersedia di halaman ini, diidentifikasikan oleh tanggal dan waktu " -"pembuatan UTC. Laporan tidak dihapus, jadi Anda dapat selalu mengakses " -"laporan yang dibuat terdahulu dari halaman ini." +"Laporan di daftar di bawah tersedia untuk diunduh, dilengkapi dengan tanggal" +" dan waktu pembuatan dalam UTC." #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" @@ -17835,13 +18760,19 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"{strong_start}Note{strong_end}: To keep student data secure, you cannot save" -" or email these links for direct access. Copies of links expire within 5 " -"minutes." +"{strong_start}Note{strong_end}: {ul_start}{li_start}To keep student data " +"secure, you cannot save or email these links for direct access. Copies of " +"links expire within 5 minutes.{li_end}{li_start}Report files are deleted 90 " +"days after generation. If you will need access to old reports, download and " +"store the files, in accordance with your institution's data security " +"policies.{li_end}{ul_end}" msgstr "" -"{strong_start} Catatan {strong_end}: Untuk menjaga data peserta tetap aman, " -"Anda tidak dapat menyimpan atau mengirim email tautan ini untuk akses " -"langsung. Salinan tautan akan kedaluwarsa dalam 5 menit." +"{strong_start}Catatan{strong_end}: {ul_start}{li_start}Untuk menjaga " +"keamanan data siswa, Anda tidak dapat menyimpan atau mengirimkan email ini " +"untuk akses langsung. Salinan tautan akan berhenti berlaku dalam 5 " +"menit.{li_end}{li_start}File laporan akan dihapus 90 hari setelah pembuatan." +" Jika Anda membutuhkan akses ke laporan yang sebelumnya, unduh dan simpan " +"file, sesuai dengan kebijakan keamanan data institusi Anda.{li_end}{ul_end}" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Enrollment Codes" @@ -18232,15 +19163,15 @@ msgstr "Perpanjangan tanggal jatuh tempo individu" #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "" -"In this section, you have the ability to grant extensions on specific units " -"to individual students. Please note that the latest date is always taken; " -"you cannot use this tool to make an assignment due earlier for a particular " -"student." +"In this section, you have the ability to grant extensions on specific " +"subsections to individual students. Please note that the latest date is " +"always taken; you cannot use this tool to make an assignment due earlier for" +" a particular student." msgstr "" -"Di bagian ini, Anda berkesempatan memperoleh perpanjangan pada hal tertentu " -"untuk individu siswa. Mohon perhatikan bahwa tanggal terakhir selalu penuh; " -"Anda tidak dapat menggunakan perangkat ini untuk membuat penugasan awal " -"untuk siswa tertentu. " +"Pada bagian ini, Anda memiliki kemampuan untuk memberikan perpanjangan untuk" +" sub-bagian khusus bagi siswa tertentu. Mohon perhatikan bahwa selalu " +"menggunakan tanggal terakhir; Anda tidak dapat menggunakan tool ini untuk " +"mempercepat batas waktu tugas untuk siswa tertentu." #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "" @@ -18253,8 +19184,8 @@ msgid "Student Email or Username" msgstr "Email atau Nama Pengguna Siswa " #: lms/templates/instructor/instructor_dashboard_2/extensions.html -msgid "Choose the graded unit:" -msgstr "Pilih unit penilaian:" +msgid "Choose the graded subsection:" +msgstr "Pilih sub-bagian yang dinilai:" #. Translators: "format_string" is the string MM/DD/YYYY HH:MM, as that is the #. format the system requires. @@ -18265,6 +19196,10 @@ msgid "" msgstr "" "Tentukan perpanjangan tenggat waktu (silakan tentukan {format_string})." +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Reason for extension" +msgstr "Alasan perpanjangan" + #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Change due date for student" msgstr "Ubah tenggat waktu untuk siswa" @@ -18275,19 +19210,19 @@ msgstr "Melihat perpanjangan yang diberikan" #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "" -"Here you can see what extensions have been granted on particular units or " -"for a particular student." +"Here you can see what extensions have been granted on particular subsection " +"or for a particular student." msgstr "" -"Di sini Anda dapat melihat perpanjangan yang telah diberikan pada unit " -"tertentu atau untuk siswa tertentu." +"Di sini Anda dapat melihat perpanjangan yang telah diberikan pada sub-bagian" +" tertentu atau untuk siswa tertentu." #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "" -"Choose a graded unit and click the button to obtain a list of all students " -"who have extensions for the given unit." +"Choose a graded subsection and click the button to obtain a list of all " +"students who have extensions for the given subsection." msgstr "" -"Pilih unit penilaian dan klik tombol untuk mendapatkan daftar siswa yang " -"memperoleh perpanjangan unit yang diberikan." +"Pilih sub-bagian penilaian dan klik tombol untuk mendapatkan daftar siswa " +"yang memperoleh perpanjangan sub-bagian yang diberikan." #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "List all students with due date extensions" @@ -18308,12 +19243,16 @@ msgstr "Atur ulang perpanjangan" #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "" "Resetting a problem's due date rescinds a due date extension for a student " -"on a particular unit. This will revert the due date for the student back to " -"the problem's original due date." +"on a particular subsection. This will revert the due date for the student " +"back to the problem's original due date." msgstr "" -"Atur ulang tenggat waktu pengumpulan tes akan membatalkan perpanjangan " -"tenggat waktu untuk siswa tertentu dan unit tertentu. Ini akan mengembalikan" -" tenggat waktu siswa kepada tanggal pengumpulan tes semula." +"Pengaturan ulang tenggat waktu pengumpulan tes akan membatalkan perpanjangan" +" tenggat waktu untuk siswa tertentu dan sub-bagian tertentu. Ini akan " +"mengembalikan tenggat waktu siswa kepada tanggal pengumpulan tes semula." + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Reason for reset" +msgstr "Alasan penyetelan ulang" #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Reset due date for student" @@ -18947,7 +19886,7 @@ msgstr "Percobaan Ujian Khusus Siswa" #: lms/templates/instructor/instructor_dashboard_2/special_exams.html msgid "Review Dashboard" -msgstr "" +msgstr "Tinjauan Dashboard" #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "View gradebook for enrolled learners" @@ -18967,11 +19906,11 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "View a specific learner's enrollment status" -msgstr "" +msgstr "Lihat Status Pendaftaran Peserta Tertentu" #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Learner's {platform_name} email address or username *" -msgstr "" +msgstr "Alamat Email atau Nama Pengguna Peserta {platform_name} *" #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Learner email address or username" @@ -18979,15 +19918,15 @@ msgstr "Alamat Email atau Username" #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "View Enrollment Status" -msgstr "" +msgstr "Lihat Status Pendaftaran" #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "View a specific learner's grades and progress" -msgstr "Lihat Kemajuan dan Nilai Peserta Spesifik" +msgstr "Lihat Kemajuan dan Nilai Peserta Tertentu" #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Learner's {platform_name} email address or username" -msgstr "Alamat Email atau Username Peserta {platform_name}" +msgstr "Alamat Email atau Nama Pengguna Peserta {platform_name}" #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "View Progress Page" @@ -19179,7 +20118,7 @@ msgstr "Kursus Saya" #: lms/templates/learner_dashboard/_dashboard_navigation_journals.html msgid "My Journals" -msgstr "" +msgstr "Jurnal Saya" #: lms/templates/learner_dashboard/program_details.html msgid "Program Details" @@ -20023,23 +20962,23 @@ msgstr "Student Support: Pendaftaran" #: lms/templates/support/feature_based_enrollments.html msgid "Student Support: Feature Based Enrollments" -msgstr "" +msgstr "Student Support: Pendaftaran Berdasarkan Fitur" #: lms/templates/support/feature_based_enrollments.html msgid "Content Type Gating" -msgstr "" +msgstr "Gating Jenis Isi" #: lms/templates/support/feature_based_enrollments.html msgid "Course Duration Limits" -msgstr "" +msgstr "Batas Durasi Kursus" #: lms/templates/support/feature_based_enrollments.html msgid "Is Enabled" -msgstr "" +msgstr "Diaktifkan" #: lms/templates/support/feature_based_enrollments.html msgid "No results found" -msgstr "" +msgstr "Tak ada hasil ditemukan" #: lms/templates/support/manage_user.html msgid "Student Support: Manage User" @@ -20350,7 +21289,7 @@ msgstr "Ubah tujuan pelatihan Anda" #: openedx/features/course_experience/templates/course_experience/course-home-fragment.html msgid "Pursue a verified certificate" -msgstr "Minta sertifikat terverifikasi" +msgstr "Dapatkan sertifikat terverifikasi" #: openedx/features/course_experience/templates/course_experience/course-home-fragment.html msgid "Upgrade ({price})" @@ -20358,7 +21297,7 @@ msgstr "Upgrade ({price})" #: openedx/features/course_experience/templates/course_experience/course-outline-fragment.html msgid "Expand All" -msgstr "" +msgstr "Buka Semua" #: openedx/features/course_experience/templates/course_experience/course-outline-fragment.html msgid "Prerequisite: " @@ -20472,77 +21411,73 @@ msgstr "Hasil pencarian" #: openedx/features/journals/templates/journals/bundle_about.html msgid "Purchase the Bundle (" -msgstr "" +msgstr "Beli Paket (" #: openedx/features/journals/templates/journals/bundle_about.html msgid "Courses included" -msgstr "" +msgstr "Kursus termasuk" #: openedx/features/journals/templates/journals/bundle_about.html msgid "Journals included" -msgstr "" +msgstr "Jurnal termasuk" #: openedx/features/journals/templates/journals/bundle_about.html msgid "{access_length} Day Access" -msgstr "" +msgstr "{access_length} Akses Hari" #: openedx/features/journals/templates/journals/bundle_about.html #: openedx/features/journals/templates/journals/learner_dashboard/journal_dashboard.html msgid "View Journal" -msgstr "" +msgstr "Lihat Jurnal" #: openedx/features/journals/templates/journals/bundle_card.html msgid "Bundle" -msgstr "" +msgstr "Paket" #: openedx/features/journals/templates/journals/journal_card.html msgid "Journal" -msgstr "" +msgstr "Jurnal" #: openedx/features/journals/templates/journals/journal_card.html msgid "{num_months} month" msgid_plural "{num_months} months" -msgstr[0] "" +msgstr[0] "{num_months} bulan" #: openedx/features/journals/templates/journals/journal_card.html msgid "unlimited" -msgstr "" +msgstr "tak terbatas" #: openedx/features/journals/templates/journals/journal_card.html msgid "Access Length" -msgstr "" +msgstr "Lama Akses" #: openedx/features/journals/templates/journals/learner_dashboard/journal_dashboard.html msgid "Journal Dashboard" -msgstr "" +msgstr "Dashboard Jurnal" #: openedx/features/journals/templates/journals/learner_dashboard/journal_dashboard.html msgid "{journal_title} Cover Image" -msgstr "" +msgstr "{journal_title} Gambar Sampul" #: openedx/features/journals/templates/journals/learner_dashboard/journal_dashboard.html msgid "Access Expired: {date}" -msgstr "" +msgstr "Akses Telah Berakhir: {date}" #: openedx/features/journals/templates/journals/learner_dashboard/journal_dashboard.html msgid "Access Expires: {date}" -msgstr "" +msgstr "Akses Telah Berakhir: {date}" #: openedx/features/journals/templates/journals/learner_dashboard/journal_dashboard.html msgid "Renew Access" -msgstr "" +msgstr "Perbarui Akses" #: openedx/features/journals/templates/journals/learner_dashboard/journal_dashboard.html msgid "You have not purchased access to any journals yet." -msgstr "" +msgstr "Anda belum membeli akses untuk jurnal." #: openedx/features/journals/templates/journals/learner_dashboard/journal_dashboard.html msgid "Explore journals and courses" -msgstr "" - -#: openedx/features/learner_analytics/templates/learner_analytics/dashboard.html -msgid "My Stats (Beta)" -msgstr "Statistik saya (Beta)" +msgstr "Telusuri jurnal dan kursus" #. Translators: this section lists all the third-party authentication #. providers @@ -20593,7 +21528,7 @@ msgstr "Telusuri Pelatihan Baru" #: openedx/features/learner_profile/templates/learner_profile/learner_profile.html msgid "View My Records" -msgstr "" +msgstr "Lihat Records Saya" #: openedx/features/learner_profile/templates/learner_profile/learner_profile.html msgid "My Profile" @@ -20638,15 +21573,17 @@ msgstr "Beranda edX" #: themes/edx.org/lms/templates/footer.html msgid "Connect" -msgstr "" +msgstr "Hubungkan" #: themes/edx.org/lms/templates/footer.html msgid "© 2012–{year} edX Inc. " msgstr "© 2012–{year} edX Inc." #: themes/edx.org/lms/templates/footer.html -msgid "EdX, Open edX, and MicroMasters are registered trademarks of edX Inc. " +msgid "edX, Open edX, and MicroMasters are registered trademarks of edX Inc. " msgstr "" +"edX, Open edX, dan MicroMasters merupakan merk dagang terdaftar dari edX " +"Inc. " #: themes/edx.org/lms/templates/certificates/_about-accomplishments.html msgid "About edX Verified Certificates" @@ -20724,17 +21661,19 @@ msgstr "edX Inc." #: themes/edx.org/lms/templates/certificates/_accomplishment-footer.html msgid "" "All rights reserved except where noted. edX, Open edX and the edX and Open " -"edX logos are registered trademarks or trademarks of edX Inc." +"edX logos are registered trademarks of edX Inc." msgstr "" -"Semua hak cipta dilindungi kecuali yang dituliskan. Logo edX, Open edX dan " -"edX dan Open edX adalah merek dagang terdaftar atau merek dagang dari edX " -"Inc." +"Seluruh hak cipta dilindungi kecuali dinyatakan berbeda. edX, Open edX dan " +"logo edX dan Open edX merupakan merek dagang terdaftar dari edX Inc." #: themes/edx.org/lms/templates/course_modes/choose.html msgid "" "{b_start}Support our Mission: {b_end}EdX, a non-profit, relies on verified " "certificates to help fund affordable education to everyone globally." msgstr "" +"{b_start}Dukung Misi kami: {b_end}EdX, nirlaba, bergantung pada sertifikat " +"terverifikasi untuk membantu membiayai pendidikan yang terjangkau bagi semua" +" orang di seluruh dunia." #: themes/edx.org/lms/templates/course_modes/choose.html msgid "" @@ -20753,16 +21692,6 @@ msgstr "Lihat Kursus" msgid "Schools & Partners" msgstr "Kampus & Institusi" -#. Translators: 'EdX', 'edX', and 'Open edX' are trademarks of 'edX Inc.'. -#. Please do not translate any of these trademarks and company names. -#: themes/red-theme/lms/templates/footer.html -msgid "" -"EdX, Open edX, and the edX and Open edX logos are registered trademarks or " -"trademarks of {link_start}edX Inc.{link_end}" -msgstr "" -"Logo EdX, Open edX, dan edX dan Open edX adalah merek dagang terdaftar atau " -"merek dagang dari {link_start} edX Inc. {link_end}" - #: themes/red-theme/lms/templates/footer.html msgid "" "{tos_link_start}Terms of Service{tos_link_end} and {honor_link_start}Honor " @@ -20915,7 +21844,7 @@ msgstr "" #: cms/templates/500.html msgid "If the problem persists, please email us at {email_link}." -msgstr "Jika permasalahan tetap terjadi, email kami di {link email}" +msgstr "Jika permasalahan tetap terjadi, email kami di {email_link}" #: cms/templates/accessibility.html msgid "Studio Accessibility Policy" @@ -23901,14 +24830,6 @@ msgstr "" msgid "LMS" msgstr "" -#. Translators: 'EdX', 'edX', 'Studio', and 'Open edX' are trademarks of 'edX -#. Inc.'. Please do not translate any of these trademarks and company names. -#: cms/templates/widgets/footer.html -msgid "" -"EdX, Open edX, Studio, and the edX and Open edX logos are registered " -"trademarks or trademarks of {link_start}edX Inc.{link_end}" -msgstr "" - #: cms/templates/widgets/header.html msgid "Current Course:" msgstr "Kursus Saat Ini:" diff --git a/conf/locale/id/LC_MESSAGES/djangojs.mo b/conf/locale/id/LC_MESSAGES/djangojs.mo index 54728c6f0e90e3eefc791cd74c7128f3686e9770..e46059821d385042ebfdb2cbb193c75c4af225a6 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/it_IT/LC_MESSAGES/django.mo b/conf/locale/it_IT/LC_MESSAGES/django.mo index a5281c705ffece9b4a04731e2e813a63eb83f40d..9963e07da4311765691fcbfce4dd07b51d3ca2f8 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/djangojs.mo b/conf/locale/it_IT/LC_MESSAGES/djangojs.mo index 7e42613a43ceb8d5b87d75ccd2235ec6d93ce77a..191aef569ef2b2655a9783c8d8ec2aaa14073bc8 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/ja_JP/LC_MESSAGES/django.mo b/conf/locale/ja_JP/LC_MESSAGES/django.mo index 54a1c30f230078de49fafae452f5bba6d03e990e..c889e48afba7e5f04b18e507966249d3637c526f 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 84e00cc7fcc5a4684da7c52188e4941d5a0f5497..b133d99bc56438658084a230dea715a7a8901623 100644 --- a/conf/locale/ja_JP/LC_MESSAGES/django.po +++ b/conf/locale/ja_JP/LC_MESSAGES/django.po @@ -113,7 +113,7 @@ msgid "" msgstr "" "Project-Id-Version: 0.1a\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2019-04-22 10:50+0000\n" +"POT-Creation-Date: 2019-06-09 20:42+0000\n" "PO-Revision-Date: 2019-01-20 20:43+0000\n" "Last-Translator: Waheed Ahmed <waheed@edx.org>, 2019\n" "Language-Team: Japanese (Japan) (https://www.transifex.com/open-edx/teams/6205/ja_JP/)\n" @@ -428,28 +428,6 @@ msgstr "ä¸æ£ãªå€¤ãŒé¸æŠžã•ã‚Œã¾ã—ãŸã€‚" msgid "No selected price or selected price is too low." msgstr "料金ãŒé¸æŠžã•ã‚Œã¦ã„ãªã„ã‹ã€é¸æŠžã—ãŸæ–™é‡‘ãŒä½Žã™ãŽã¾ã™ã€‚" -#: common/djangoapps/django_comment_common/models.py -msgid "Administrator" -msgstr "管ç†è€…" - -#: common/djangoapps/django_comment_common/models.py -msgid "Moderator" -msgstr "モデレーター" - -#: common/djangoapps/django_comment_common/models.py -msgid "Group Moderator" -msgstr "グループ・モデレーター" - -#: common/djangoapps/django_comment_common/models.py -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Community TA" -msgstr "コミュニティーTA" - -#: common/djangoapps/django_comment_common/models.py -#: lms/djangoapps/instructor/paidcourse_enrollment_report.py -msgid "Student" -msgstr "å—講者" - #: common/djangoapps/student/admin.py msgid "User profile" msgstr "ユーザーã®ãƒ—ãƒãƒ•ã‚£ãƒ¼ãƒ«" @@ -506,8 +484,8 @@ msgid "A properly formatted e-mail is required" msgstr "é©åˆ‡ãªãƒ•ã‚©ãƒ¼ãƒžãƒƒãƒˆã®ãƒ¡ãƒ¼ãƒ«ãŒå¿…è¦ã§ã™" #: common/djangoapps/student/forms.py -msgid "Your legal name must be a minimum of two characters long" -msgstr "åå‰ã¯2æ–‡å—以上ã§ãªã‘ã‚Œã°ãªã‚Šã¾ã›ã‚“" +msgid "Your legal name must be a minimum of one character long" +msgstr "" #: common/djangoapps/student/forms.py #, python-format @@ -883,11 +861,11 @@ msgstr "ãŠæŽ¢ã—ã®è¬›åº§ã¯{date}ã«å—講申込å—付を終了ã—ã¦ã„ã¾ã™ #: common/djangoapps/student/views/management.py msgid "No inactive user with this e-mail exists" -msgstr "ã“ã®ãƒ¡ãƒ¼ãƒ«ã§ã‚¢ã‚¯ãƒ†ã‚£ãƒ–ã§ãªã„ユーザーã¯å˜åœ¨ã—ã¾ã›ã‚“" +msgstr "" #: common/djangoapps/student/views/management.py msgid "Unable to send reactivation email" -msgstr "å†åº¦æœ‰åŠ¹åŒ–ã™ã‚‹ãŸã‚ã®ãƒ¡ãƒ¼ãƒ«ãŒé€ä¿¡ã§ãã¾ã›ã‚“" +msgstr "" #: common/djangoapps/student/views/management.py msgid "Course id not specified" @@ -1035,6 +1013,12 @@ msgid "" "\"Institution\" login providers." msgstr "\"æ©Ÿé–¢\"ãƒã‚°ã‚¤ãƒ³ãƒ—ãƒãƒã‚¤ãƒ€ã®ãƒªã‚¹ãƒˆå†…ã§ã€äºŒæ¬¡ãƒ—ãƒãƒã‚¤ãƒ€ã¯ã‚ˆã‚Šç›®ç«‹ãŸãªã„表示ã¨ãªã‚Šã¾ã™ã€‚" +#: common/djangoapps/third_party_auth/models.py +msgid "" +"optional. If this provider is an Organization, this attribute can be used " +"reference users in that Organization" +msgstr "" + #: common/djangoapps/third_party_auth/models.py msgid "The Site that this provider configuration belongs to." msgstr "ã“ã®ãƒ—ãƒãƒã‚¤ãƒ€è¨å®šãŒå±žã—ã¦ã„るサイト。" @@ -2760,18 +2744,18 @@ msgstr "ディスカッショントピックã®ãƒžãƒƒãƒ”ング" msgid "" "Enter discussion categories in the following format: \"CategoryName\": " "{\"id\": \"i4x-InstitutionName-CourseNumber-course-CourseRun\"}. For " -"example, one discussion category may be \"Lydian Mode\": {\"id\": \"i4x-" -"UniversityX-MUS101-course-2015_T1\"}. The \"id\" value for each category " -"must be unique. In \"id\" values, the only special characters that are " -"supported are underscore, hyphen, and period. You can also specify a " +"example, one discussion category may be \"Lydian Mode\": {\"id\": " +"\"i4x-UniversityX-MUS101-course-2015_T1\"}. The \"id\" value for each " +"category must be unique. In \"id\" values, the only special characters that " +"are supported are underscore, hyphen, and period. You can also specify a " "category as the default for new posts in the Discussion page by setting its " -"\"default\" attribute to true. For example, \"Lydian Mode\": {\"id\": \"i4x-" -"UniversityX-MUS101-course-2015_T1\", \"default\": true}." +"\"default\" attribute to true. For example, \"Lydian Mode\": {\"id\": " +"\"i4x-UniversityX-MUS101-course-2015_T1\", \"default\": true}." msgstr "" -"ディスカッションカテゴリーを以下ã®å½¢å¼ã§å…¥åŠ›ã—ã¦ãã ã•ã„: \"CategoryName\": {\"id\": \"i4x-" -"InstitutionName-CourseNumber-course-CourseRun\"}。例ãˆã°ã€ã‚るディスカッションカテゴリー㯠" -"\"Lydian Mode\": {\"id\": \"i4x-UniversityX-MUS101-course-" -"2015_T1\"}。\"id\"ã®å€¤ã¯å„カテゴリー固有ã§ãªã‘ã‚Œã°ãªã‚‰ãšã€ä½¿ç”¨ã§ãる記å·ã¯ã‚¢ãƒ³ãƒ€ãƒ¼ã‚¹ã‚³ã‚¢ã€ãƒã‚¤ãƒ•ãƒ³ã€ãƒ”リオドã®ã¿ã§ã™ã€‚ã¾ãŸã€\"default\"ã‚’trueã¨è¨å®šã™ã‚‹ã“ã¨ã«ã‚ˆã‚Šã€ãƒ‡ã‚£ã‚¹ã‚«ãƒƒã‚·ãƒ§ãƒ³ãƒšãƒ¼ã‚¸ã®æ–°è¦æŠ•ç¨¿ã®ãŸã‚ã®ã‚«ãƒ†ã‚´ãƒªãƒ¼ã‚’デフォルトã¨ã—ã¦æŒ‡å®šã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚例ãˆã°ã€\"Lydian" +"ディスカッションカテゴリーを以下ã®å½¢å¼ã§å…¥åŠ›ã—ã¦ãã ã•ã„: \"CategoryName\": {\"id\": " +"\"i4x-InstitutionName-CourseNumber-course-CourseRun\"}。例ãˆã°ã€ã‚るディスカッションカテゴリー㯠" +"\"Lydian Mode\": {\"id\": \"i4x-UniversityX-" +"MUS101-course-2015_T1\"}。\"id\"ã®å€¤ã¯å„カテゴリー固有ã§ãªã‘ã‚Œã°ãªã‚‰ãšã€ä½¿ç”¨ã§ãる記å·ã¯ã‚¢ãƒ³ãƒ€ãƒ¼ã‚¹ã‚³ã‚¢ã€ãƒã‚¤ãƒ•ãƒ³ã€ãƒ”リオドã®ã¿ã§ã™ã€‚ã¾ãŸã€\"default\"ã‚’trueã¨è¨å®šã™ã‚‹ã“ã¨ã«ã‚ˆã‚Šã€ãƒ‡ã‚£ã‚¹ã‚«ãƒƒã‚·ãƒ§ãƒ³ãƒšãƒ¼ã‚¸ã®æ–°è¦æŠ•ç¨¿ã®ãŸã‚ã®ã‚«ãƒ†ã‚´ãƒªãƒ¼ã‚’デフォルトã¨ã—ã¦æŒ‡å®šã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚例ãˆã°ã€\"Lydian" " Mode\": {\"id\": \"i4x-UniversityX-MUS101-course-2015_T1\", \"default\": " "true}." @@ -4949,19 +4933,17 @@ msgstr "入力ã®ã‚·ãƒ³ã‚¿ãƒƒã‚¯ã‚¹ã‚’確èªã—ã¦ãã ã•ã„。" msgid "Take free online courses at edX.org" msgstr "edX.org ã§ç„¡æ–™ã‚ªãƒ³ãƒ©ã‚¤ãƒ³è¬›ç¾©ã‚’å—講ã—よã†" -#. Translators: 'EdX', 'edX', and 'Open edX' are trademarks of 'edX Inc.'. +#. Translators: 'edX' and 'Open edX' are trademarks of 'edX Inc.'. #. Please do not translate any of these trademarks and company names. #: lms/djangoapps/branding/api.py #, python-brace-format msgid "" -"© {org_name}. All rights reserved except where noted. EdX, Open edX and " -"their respective logos are trademarks or registered trademarks of edX Inc." +"© {org_name}. All rights reserved except where noted. edX, Open edX and " +"their respective logos are registered trademarks of edX Inc." msgstr "" -"© {org_name}. 特記ã•ã‚Œã¦ã„ã‚‹å ´åˆã‚’除ãã€ã™ã¹ã¦ã®è‘—作権ã¯ä¿è·ã•ã‚Œã¦ã„ã¾ã™ã€‚ EdXã€Open edXã€ãŠã‚ˆã³ãã‚Œãžã‚Œã®ãƒã‚´ã¯ edX " -"Inc. ã®å•†æ¨™ã¾ãŸã¯ç™»éŒ²å•†æ¨™ã§ã™ã€‚" #. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# -#. Translators: 'Open edX' is a brand, please keep this untranslated. +#. Translators: 'Open edX' is a trademark, please keep this untranslated. #. See http://openedx.org for more information. #. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# #. Translators: 'Open edX' is a brand, please keep this untranslated. See @@ -6019,6 +6001,20 @@ msgstr "ã‚ãªãŸã®ä¿®äº†è¨¼ã¯å…¥æ‰‹å¯èƒ½ã§ã™" msgid "To see course content, {sign_in_link} or {register_link}." msgstr "講座コンテンツを見るã«ã¯ã€{sign_in_link} ã¾ãŸã¯ {register_link}ã¸ã€‚" +#: lms/djangoapps/courseware/views/views.py +#: openedx/features/course_experience/views/course_home_messages.py +#, python-brace-format +msgid "{sign_in_link} or {register_link}." +msgstr "" + +#: lms/djangoapps/courseware/views/views.py +#: openedx/features/course_experience/views/course_home_messages.py +#: lms/templates/header/navbar-not-authenticated.html +#: lms/templates/navigation/navbar-not-authenticated.html +#: themes/edx.org/lms/templates/header/navbar-not-authenticated.html +msgid "Sign in" +msgstr "サインイン" + #: lms/djangoapps/courseware/views/views.py #, python-brace-format msgid "" @@ -6125,9 +6121,8 @@ msgstr "パス{0}ã¯å˜åœ¨ã—ã¾ã›ã‚“ã®ã§ã€ä½œæˆã™ã‚‹ã‹ã€GIT_REPO_DIR㧠#: lms/djangoapps/dashboard/git_import.py msgid "" "Non usable git url provided. Expecting something like: " -"git@github.com:mitocw/edx4edx_lite.git" +"git@github.com:edx/edx4edx_lite.git" msgstr "" -"使用å¯èƒ½ã§ã¯ãªã„git urlã§ã™ã€‚想定ã•ã‚Œã‚‹ã®ã¯git@github.com:mitocw/edx4edx_lite.gitã®ã‚ˆã†ãªå€¤ã§ã™ã€‚" #: lms/djangoapps/dashboard/git_import.py msgid "Unable to get git log" @@ -6307,47 +6302,47 @@ msgstr "権é™" msgid "full_name" msgstr "full_name" -#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.html -#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.txt -#, python-format -msgid "%(comment_username)s replied to <b>%(thread_title)s</b>:" -msgstr "" - -#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.html -#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.txt -msgid "View discussion" -msgstr "" - -#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/subject.txt -#, python-format -msgid "Response to %(thread_title)s" -msgstr "" - -#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/discussion/django_comment_client/base/views.py msgid "Title can't be empty" msgstr "件åã¯ç©ºç™½ã§ã¯ã„ã‘ã¾ã›ã‚“。" -#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/discussion/django_comment_client/base/views.py msgid "Body can't be empty" msgstr "本文ã¯ç©ºç™½ã§ã¯ã„ã‘ã¾ã›ã‚“。" -#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/discussion/django_comment_client/base/views.py msgid "Topic doesn't exist" msgstr "トピックãŒå˜åœ¨ã—ã¾ã›ã‚“" -#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/discussion/django_comment_client/base/views.py msgid "Comment level too deep" msgstr "コメントレベルãŒæ·±éŽãŽã¾ã™" -#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/discussion/django_comment_client/base/views.py msgid "" "Error uploading file. Please contact the site administrator. Thank you." msgstr "ファイルアップãƒãƒ¼ãƒ‰ã«å¤±æ•—ã—ã¾ã—ãŸã€‚システム管ç†è€…ã«ã”連絡ãã ã•ã„。申ã—訳ã”ã–ã„ã¾ã›ã‚“。" -#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/discussion/django_comment_client/base/views.py msgid "Good" msgstr "良ã„" +#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.html +#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.txt +#, python-format +msgid "%(comment_username)s replied to <b>%(thread_title)s</b>:" +msgstr "" + +#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.html +#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.txt +msgid "View discussion" +msgstr "" + +#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/subject.txt +#, python-format +msgid "Response to %(thread_title)s" +msgstr "" + #: lms/djangoapps/edxnotes/helpers.py msgid "EdxNotes Service is unavailable. Please try again in a few minutes." msgstr "EdxNotesãŒåˆ©ç”¨ã§ãã¾ã›ã‚“。 数分後ã«ãŠè©¦ã—ãã ã•ã„。" @@ -6462,6 +6457,11 @@ msgstr "{platform_name} スタッフ" msgid "Course Staff" msgstr "講座スタッフ" +#: lms/djangoapps/instructor/paidcourse_enrollment_report.py +#: openedx/core/djangoapps/django_comment_common/models.py +msgid "Student" +msgstr "å—講者" + #: lms/djangoapps/instructor/paidcourse_enrollment_report.py #: lms/templates/preview_menu.html #: lms/templates/instructor/instructor_dashboard_2/membership.html @@ -7248,10 +7248,6 @@ msgstr "ユニット {0} ã«ã¯å»¶é•·ã§ãる期日ãŒã‚ã‚Šã¾ã›ã‚“。" msgid "An extended due date must be later than the original due date." msgstr "延長ã™ã‚‹æœŸæ—¥ã¯ã€å…ƒã®æœŸæ—¥ä»¥é™ã§ãªã‘ã‚Œã°ã„ã‘ã¾ã›ã‚“。" -#: lms/djangoapps/instructor/views/tools.py -msgid "No due date extension is set for that student and unit." -msgstr "ã“ã®å—講者ãŠã‚ˆã³ãƒ¦ãƒ‹ãƒƒãƒˆã«å¯¾ã—ã¦ã€æœŸæ—¥å»¶é•·ã¯è¨å®šã•ã‚Œã¦ã„ã¾ã›ã‚“。" - #. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# #. Translators: This label appears above a field on the registration form #. meant to hold the user's full name. @@ -7705,6 +7701,10 @@ msgstr "" msgid "My Notes" msgstr "マイ・ノート" +#: lms/djangoapps/program_enrollments/models.py +msgid "One of user or external_user_key must not be null." +msgstr "" + #: lms/djangoapps/shoppingcart/models.py msgid "Order Payment Confirmation" msgstr "注文支払確èª" @@ -8762,8 +8762,8 @@ msgstr "ユーザーã®ãƒ—ãƒãƒ•ã‚£ãƒ¼ãƒ«ãŒã‚ã‚Šã¾ã›ã‚“" #: lms/djangoapps/verify_student/views.py #, python-brace-format -msgid "Name must be at least {min_length} characters long." -msgstr "åå‰ã¯ {min_length} æ–‡å—以上ã§ã‚ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ã€‚" +msgid "Name must be at least {min_length} character long." +msgstr "" #: lms/djangoapps/verify_student/views.py msgid "Image data is not valid." @@ -9192,8 +9192,9 @@ msgid "Hello %(full_name)s," msgstr "" #: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt #, python-format -msgid "Your %(platform_name)s ID verification has expired.\" " +msgid "Your %(platform_name)s ID verification has expired. " msgstr "" #: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html @@ -9244,11 +9245,6 @@ msgstr "" msgid "Hello %(full_name)s, " msgstr "" -#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt -#, python-format -msgid "Your %(platform_name)s ID verification has expired. " -msgstr "" - #: lms/templates/verify_student/edx_ace/verificationexpiry/email/subject.txt #, python-format msgid "Your %(platform_name)s Verification has Expired" @@ -9802,15 +9798,6 @@ msgstr "ã“ã®API ユーザーã«é–¢é€£ã™ã‚‹ã‚¦ã‚§ãƒ–サイトã®URL" msgid "The reason this user wants to access the API." msgstr "ã“ã®ãƒ¦ãƒ¼ã‚¶ãƒ¼ãŒAPI ã«ã‚¢ã‚¯ã‚»ã‚¹ã—ãŸã„ç†ç”±ã€‚" -#: openedx/core/djangoapps/api_admin/models.py -#, python-brace-format -msgid "API access request from {company}" -msgstr " {company} ã‹ã‚‰ã®API アクセスリクエスト" - -#: openedx/core/djangoapps/api_admin/models.py -msgid "API access request" -msgstr "API アクセスリクエスト" - #: openedx/core/djangoapps/api_admin/widgets.py #, python-brace-format msgid "" @@ -10144,6 +10131,23 @@ msgstr "ã“ã‚Œã¯ãƒ†ã‚¹ãƒˆè¦å‘Šã§ã™" msgid "This is a test error" msgstr "ã“ã‚Œã¯ãƒ†ã‚¹ãƒˆã‚¨ãƒ©ãƒ¼ã§ã™" +#: openedx/core/djangoapps/django_comment_common/models.py +msgid "Administrator" +msgstr "管ç†è€…" + +#: openedx/core/djangoapps/django_comment_common/models.py +msgid "Moderator" +msgstr "モデレーター" + +#: openedx/core/djangoapps/django_comment_common/models.py +msgid "Group Moderator" +msgstr "グループ・モデレーター" + +#: openedx/core/djangoapps/django_comment_common/models.py +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Community TA" +msgstr "コミュニティーTA" + #: openedx/core/djangoapps/embargo/forms.py #: openedx/core/djangoapps/verified_track_content/forms.py msgid "COURSE NOT FOUND. Please check that the course ID is valid." @@ -10695,9 +10699,12 @@ msgid "Specialty" msgstr "" #: openedx/core/djangoapps/user_api/accounts/utils.py +#, python-brace-format msgid "" -" Make sure that you are providing a valid username or a URL that contains \"" -msgstr "æ£ã—ã„ユーザーåã¾ãŸã¯ \"ã‚’å«ã‚€URLãŒå…¥åŠ›ã•ã‚Œã¦ã„ã‚‹ã‹ç¢ºèªã—ã¦ãã ã•ã„。" +"Make sure that you are providing a valid username or a URL that contains " +"\"{url_stub}\". To remove the link from your edX profile, leave this field " +"blank." +msgstr "" #: openedx/core/djangoapps/user_api/accounts/views.py #: openedx/core/djangoapps/user_authn/views/login.py @@ -10835,11 +10842,11 @@ msgstr " {platform_name} {terms_of_service}ã«åŒæ„ã—ãªã‘ã‚Œã°ãªã‚Šã¾ã› #: openedx/core/djangoapps/user_api/api.py #, python-brace-format msgid "" -"By creating an account with {platform_name}, you agree to " -"abide by our {platform_name} " +"By creating an account, you agree to the " "{terms_of_service_link_start}{terms_of_service}{terms_of_service_link_end}" -" and agree to our {privacy_policy_link_start}Privacy " -"Policy{privacy_policy_link_end}." +" and you acknowledge that {platform_name} and each Member " +"process your personal data in accordance with the " +"{privacy_policy_link_start}Privacy Policy{privacy_policy_link_end}." msgstr "" #. Translators: "Terms of service" is a legal document users must agree to @@ -11267,18 +11274,18 @@ msgstr "æ›´æ–°" msgid "Reviews" msgstr "レビュー" +#: openedx/features/course_experience/utils.py +#, no-python-format, python-brace-format +msgid "" +"{banner_open}{percentage}% off your first upgrade.{span_close} Discount " +"automatically applied.{div_close}" +msgstr "" + #: openedx/features/course_experience/views/course_home_messages.py #, python-brace-format msgid "{sign_in_link} or {register_link} and then enroll in this course." msgstr "" -#: openedx/features/course_experience/views/course_home_messages.py -#: lms/templates/header/navbar-not-authenticated.html -#: lms/templates/navigation/navbar-not-authenticated.html -#: themes/edx.org/lms/templates/header/navbar-not-authenticated.html -msgid "Sign in" -msgstr "サインイン" - #: openedx/features/course_experience/views/course_home_messages.py #, python-brace-format msgid "Welcome to {course_display_name}" @@ -11318,6 +11325,29 @@ msgstr "" msgid "Set goal to: {goal_text}" msgstr "" +#: openedx/features/discounts/admin.py +msgid "" +"These define the context to disable lms-controlled discounts on. If no " +"values are set, then the configuration applies globally. If a single value " +"is set, then the configuration applies to all courses within that context. " +"At most one value can be set at a time.<br>If multiple contexts apply to a " +"course (for example, if configuration is specified for the course " +"specifically, and for the org that the course is in, then the more specific " +"context overrides the more general context." +msgstr "" + +#: openedx/features/discounts/admin.py +msgid "" +"If any of these values is left empty or \"Unknown\", then their value at " +"runtime will be retrieved from the next most specific context that applies. " +"For example, if \"Disabled\" is left as \"Unknown\" in the course context, " +"then that course will be Disabled only if the org that it is in is Disabled." +msgstr "" + +#: openedx/features/discounts/models.py +msgid "Disabled" +msgstr "" + #: openedx/features/enterprise_support/api.py #, python-brace-format msgid "Enrollment in {course_title} was not complete." @@ -11429,8 +11459,8 @@ msgstr "" #: cms/djangoapps/contentstore/git_export_utils.py msgid "" "Non writable git url provided. Expecting something like: " -"git@github.com:mitocw/edx4edx_lite.git" -msgstr "書ãè¾¼ã¿ã®å‡ºæ¥ãªã„git urlã§ã™ã€‚期待値ã®ä¾‹: git@github.com:mitocw/edx4edx_lite.git" +"git@github.com:edx/edx4edx_lite.git" +msgstr "" #: cms/djangoapps/contentstore/git_export_utils.py msgid "" @@ -12261,6 +12291,15 @@ msgstr "リセット" msgid "Legal" msgstr "法的ãª" +#. Translators: 'edX' and 'Open edX' are trademarks of 'edX Inc.'. Please do +#. not translate any of these trademarks and company names. +#: cms/templates/widgets/footer.html +#: themes/red-theme/lms/templates/footer.html +msgid "" +"edX, Open edX, and the edX and Open edX logos are registered trademarks of " +"{link_start}edX Inc.{link_end}" +msgstr "" + #: cms/templates/widgets/header.html lms/templates/header/header.html #: lms/templates/navigation/navigation.html #: lms/templates/widgets/footer-language-selector.html @@ -12646,6 +12685,10 @@ msgstr "デãƒãƒƒã‚°: " msgid "External Authentication failed" msgstr "外部èªè¨¼å¤±æ•—" +#: lms/templates/footer.html +msgid "organization logo" +msgstr "" + #: lms/templates/forgot_password_modal.html msgid "" "Please enter your e-mail address below, and we will e-mail instructions for " @@ -12845,17 +12888,15 @@ msgstr "" msgid "Search for a course" msgstr "講座を探ã™" -#. Translators: 'Open edX' is a registered trademark, please keep this -#. untranslated. See http://open.edx.org for more information. -#: lms/templates/index_overlay.html -msgid "Welcome to the Open edX{registered_trademark} platform!" -msgstr "Open edX {registered_trademark} プラットフォームã¸ã‚ˆã†ã“ãï¼" +#: lms/templates/index_overlay.html lms/templates/register-sidebar.html +msgid "Welcome to {platform_name}" +msgstr "{platform_name}ã¸ã‚ˆã†ã“ã" #. Translators: 'Open edX' is a registered trademark, please keep this #. untranslated. See http://open.edx.org for more information. #: lms/templates/index_overlay.html -msgid "It works! This is the default homepage for this Open edX instance." -msgstr "æˆåŠŸã§ã™ï¼ã“ã‚Œã¯Open edX instanceã®ãƒ‡ãƒ•ã‚©ãƒ«ãƒˆãƒ›ãƒ¼ãƒ ページã§ã™ã€‚" +msgid "It works! Powered by Open edX{registered_trademark}" +msgstr "" #: lms/templates/invalid_email_key.html msgid "Invalid email change key" @@ -13141,6 +13182,10 @@ msgstr "解ç”ã‚’ä¿å˜" msgid "Reset your answer" msgstr "解ç”をリセット" +#: lms/templates/problem.html +msgid "Answers are displayed within the problem" +msgstr "" + #: lms/templates/problem_notifications.html msgid "Next Hint" msgstr "次ã®ãƒ’ント" @@ -13335,10 +13380,6 @@ msgstr "登録済ã§ã™ã‹ï¼Ÿ" msgid "Log in" msgstr "ãƒã‚°ã‚¤ãƒ³" -#: lms/templates/register-sidebar.html -msgid "Welcome to {platform_name}" -msgstr "{platform_name}ã¸ã‚ˆã†ã“ã" - #: lms/templates/register-sidebar.html msgid "" "Registering with {platform_name} gives you access to all of our current and " @@ -13696,11 +13737,6 @@ msgstr "講座IDã‚‚ã—ãã¯ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒª" msgid "Delete course from site" msgstr "サイトã‹ã‚‰è¬›åº§ã‚’削除ã™ã‚‹" -#. Translators: A version number appears after this string -#: lms/templates/sysadmin_dashboard.html -msgid "Platform Version" -msgstr "プラットフォームãƒãƒ¼ã‚¸ãƒ§ãƒ³" - #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Page {current_page} of {total_pages}" msgstr "{total_pages}ページä¸{current_page}ページ目" @@ -14977,6 +15013,20 @@ msgstr "注文データをèªè¾¼ä¸..." msgid "Please wait while we retrieve your order details." msgstr "æ³¨æ–‡è©³ç´°æƒ…å ±ã‚’å¾©å…ƒã—ã¦ãŠã‚Šã¾ã™ã®ã§ã€ãŠå¾…ã¡ãã ã•ã„。" +#: lms/templates/course_modes/_upgrade_button.html +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/_upgrade_button.html +#: themes/edx.org/lms/templates/course_modes/choose.html +msgid "Pursue the Verified Track" +msgstr "" + +#: lms/templates/course_modes/_upgrade_button.html +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/_upgrade_button.html +#: themes/edx.org/lms/templates/course_modes/choose.html +msgid "Pursue a Verified Certificate" +msgstr "èªè¨¼ä»˜ã修了証をç²å¾—ã™ã‚‹" + #: lms/templates/course_modes/choose.html #: themes/edx.org/lms/templates/course_modes/choose.html msgid "Enroll In {course_name} | Choose Your Track" @@ -15059,16 +15109,6 @@ msgid "" "or post it directly on LinkedIn" msgstr "{b_start}ç°¡å˜ã«ã‚·ã‚§ã‚¢å¯èƒ½: {b_end}修了証を履æ´æ›¸ã‚„レジュメã«æ·»ä»˜ã—ãŸã‚Šã€LinkedInã«ç›´æŽ¥æŠ•ç¨¿ã™ã‚‹" -#: lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -msgid "Pursue a Verified Certificate" -msgstr "èªè¨¼ä»˜ã修了証をç²å¾—ã™ã‚‹" - -#: lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -msgid "Pursue the Verified Track" -msgstr "" - #: lms/templates/course_modes/choose.html #: themes/edx.org/lms/templates/course_modes/choose.html msgid "" @@ -15177,6 +15217,10 @@ msgstr "ã“ã®ã‚³ãƒ³ãƒ†ãƒ³ãƒ„ã¯æŽ¡ç‚¹å¯¾è±¡ã§ã™" msgid "An error occurred. Please try again later." msgstr "エラーãŒç™ºç”Ÿã—ã¾ã—ãŸã€‚後ã»ã©å†è©¦è¡Œã—ã¦ãã ã•ã„。" +#: lms/templates/courseware/course_about.html +msgid "An error has occurred. Please ensure that you are logged in to enroll." +msgstr "" + #: lms/templates/courseware/course_about.html msgid "You are enrolled in this course" msgstr "ã“ã®è¬›åº§ã«ç™»éŒ²ã•ã‚Œã¦ã„ã¾ã™" @@ -15317,7 +15361,6 @@ msgstr "詳細検索" #: lms/templates/courseware/courseware-chromeless.html #: lms/templates/courseware/courseware.html #: openedx/features/course_bookmarks/templates/course_bookmarks/course-bookmarks.html -#: openedx/features/learner_analytics/templates/learner_analytics/dashboard.html msgid "{course_number} Courseware" msgstr "{course_number} コースウェア" @@ -15547,8 +15590,8 @@ msgid "View Grading in studio" msgstr "Studioã§æŽ¡ç‚¹ã‚’見る" #: lms/templates/courseware/progress.html -msgid "Course Progress for Student '{username}' ({email})" -msgstr "'{username}'({email})ã®é€²æ—" +msgid "Course Progress for '{username}' ({email})" +msgstr "" #: lms/templates/courseware/progress.html msgid "View Certificate" @@ -16444,28 +16487,26 @@ msgid "" "engaging, high-quality {platform_name} courses. Note that you will not be " "able to log back into your account until you have activated it." msgstr "" -"ã‚‚ã†å°‘ã—ã§ã™ï¼ã‚¢ã‚«ã‚¦ãƒ³ãƒˆã‚’有効化ã™ã‚‹ãƒªãƒ³ã‚¯ã¸ã‚¢ã‚¯ã‚»ã‚¹ã—ã€{platform_name}ã®è³ªã®é«˜ã„講座ã«å‚åŠ ã—ã¾ã—ょã†ã€‚アカウントを有効化ã—ãªã„ã¨ãƒã‚°ã‚¤ãƒ³ã§ãã¾ã›ã‚“ã®ã§ã€ã”注æ„ãã ã•ã„。" #: lms/templates/emails/activation_email.txt msgid "Enjoy learning with {platform_name}." -msgstr "{platform_name}ã§æ¥½ã—ãå¦ã³ã¾ã—ょã†ã€‚" +msgstr "" #: lms/templates/emails/activation_email.txt msgid "" "If you need help, please use our web form at {support_url} or email " "{support_email}." -msgstr "ヘルプãŒå¿…è¦ã§ã—ãŸã‚‰ã€{support_url}ã®ãƒ•ã‚©ãƒ¼ãƒ ã‚’ã”使用ã„ãŸã ãã‹ã€{support_email}ã¾ã§ãƒ¡ãƒ¼ãƒ«ã§ã”連絡ãã ã•ã„。" +msgstr "" #: lms/templates/emails/activation_email.txt msgid "" "This email message was automatically sent by {lms_url} because someone " "attempted to create an account on {platform_name} using this email address." msgstr "" -"ã©ãªãŸã‹ãŒ{platform_name}アカウントを作æˆã™ã‚‹ãŸã‚ã«ã“ã®ãƒ¡ãƒ¼ãƒ«ã‚¢ãƒ‰ãƒ¬ã‚¹ã‚’入力ã—ãŸãŸã‚ã€{lms_url}より自動的ã«ã“ã®ãƒ¡ãƒƒã‚»ãƒ¼ã‚¸ãŒé€ä¿¡ã•ã‚Œã¾ã—ãŸã€‚" #: lms/templates/emails/activation_email_subject.txt msgid "Action Required: Activate your {platform_name} account" -msgstr "å¿…è¦ãªæ“作: {platform_name}アカウントを有効化ã™ã‚‹" +msgstr "" #: lms/templates/emails/business_order_confirmation_email.txt msgid "Thank you for your purchase of " @@ -17457,12 +17498,9 @@ msgstr "ダウンãƒãƒ¼ãƒ‰å¯èƒ½ãªãƒ¬ãƒãƒ¼ãƒˆ" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The reports listed below are available for download. A link to every report " -"remains available on this page, identified by the UTC date and time of " -"generation. Reports are not deleted, so you will always be able to access " -"previously generated reports from this page." +"The reports listed below are available for download, identified by UTC date " +"and time of generation." msgstr "" -"以下ã«è¡¨è¨˜ã•ã‚Œã¦ã„るレãƒãƒ¼ãƒˆã¯ãƒ€ã‚¦ãƒ³ãƒãƒ¼ãƒ‰å¯èƒ½ã§ã™ã€‚ã“ã®ç”»é¢ã§å…¨ã¦ã®ãƒ¬ãƒãƒ¼ãƒˆã¸ã®ãƒªãƒ³ã‚¯ãŒåˆ©ç”¨å¯èƒ½ã§ã€ç”Ÿæˆæ—¥æ™‚(UTC)ã§ç‰¹å®šã§ãã¾ã™ã€‚レãƒãƒ¼ãƒˆã¯å‰Šé™¤ã•ã‚Œã¾ã›ã‚“ã®ã§ã€ä»¥å‰ç”Ÿæˆã—ãŸãƒ¬ãƒãƒ¼ãƒˆã«ã‚‚ã“ã®ãƒšãƒ¼ã‚¸ã‹ã‚‰ã‚¢ã‚¯ã‚»ã‚¹ã§ãã¾ã™ã€‚" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" @@ -17475,12 +17513,13 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"{strong_start}Note{strong_end}: To keep student data secure, you cannot save" -" or email these links for direct access. Copies of links expire within 5 " -"minutes." +"{strong_start}Note{strong_end}: {ul_start}{li_start}To keep student data " +"secure, you cannot save or email these links for direct access. Copies of " +"links expire within 5 minutes.{li_end}{li_start}Report files are deleted 90 " +"days after generation. If you will need access to old reports, download and " +"store the files, in accordance with your institution's data security " +"policies.{li_end}{ul_end}" msgstr "" -"{strong_start}注{strong_end}: " -"å—講者データを安全ã«ä¿ç®¡ã™ã‚‹ãŸã‚ã€ã“れらã®ãƒªãƒ³ã‚¯ã«ç›´æŽ¥ã‚¢ã‚¯ã‚»ã‚¹ã™ã‚‹ãŸã‚ä¿å˜ã—ãŸã‚Šãƒ¡ãƒ¼ãƒ«ã—ãŸã‚Šã—ã¦ã¯ã„ã‘ã¾ã›ã‚“。リンクã®ã‚³ãƒ”ーã¯ï¼•åˆ†ã§æ™‚間切れã¨ãªã‚Šã¾ã™ã€‚" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Enrollment Codes" @@ -17857,12 +17896,11 @@ msgstr "個別ã®æœŸæ—¥å»¶é•·" #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "" -"In this section, you have the ability to grant extensions on specific units " -"to individual students. Please note that the latest date is always taken; " -"you cannot use this tool to make an assignment due earlier for a particular " -"student." +"In this section, you have the ability to grant extensions on specific " +"subsections to individual students. Please note that the latest date is " +"always taken; you cannot use this tool to make an assignment due earlier for" +" a particular student." msgstr "" -"ã“ã®ã‚»ã‚¯ã‚·ãƒ§ãƒ³ã§ã¯ã€å—講者ã”ã¨ã«ç‰¹å®šã®ãƒ¦ãƒ‹ãƒƒãƒˆã®å»¶é•·ã‚’è¨å®šã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚最新ã®æ—¥ä»˜ãŒå¸¸ã«æŽ¡ç”¨ã•ã‚Œã¾ã™ã®ã§ã”注æ„ãã ã•ã„。特定ã®å—講者ã«å¯¾ã—ã¦èª²é¡Œç· 切を早ã‚るツールã¯ä½¿ç”¨ã§ãã¾ã›ã‚“。" #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "" @@ -17874,8 +17912,8 @@ msgid "Student Email or Username" msgstr "å—講者ã®ãƒ¡ãƒ¼ãƒ«ã¾ãŸã¯ãƒ¦ãƒ¼ã‚¶ãƒ¼å" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -msgid "Choose the graded unit:" -msgstr "採点ã™ã‚‹ãƒ¦ãƒ‹ãƒƒãƒˆã‚’é¸æŠž: " +msgid "Choose the graded subsection:" +msgstr "" #. Translators: "format_string" is the string MM/DD/YYYY HH:MM, as that is the #. format the system requires. @@ -17885,6 +17923,10 @@ msgid "" "{format_string})." msgstr "延長日時を指定 (UTC; {format_string}を指定ã—ã¦ãã ã•ã„)。" +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Reason for extension" +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Change due date for student" msgstr "ç· åˆ‡ã‚’å¤‰æ›´" @@ -17895,15 +17937,15 @@ msgstr "許å¯ã•ã‚ŒãŸå»¶é•·ã‚’表示ä¸" #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "" -"Here you can see what extensions have been granted on particular units or " -"for a particular student." -msgstr "特定ã®ãƒ¦ãƒ‹ãƒƒãƒˆã¾ãŸã¯ç‰¹å®šã®å—講者ã«å¯¾ã—ã¦ã©ã®ã‚ˆã†ãªå»¶é•·ãŒè¨±å¯ã•ã‚ŒãŸã®ã‹ã‚’ã“ã¡ã‚‰ã§ç¢ºèªã§ãã¾ã™ã€‚" +"Here you can see what extensions have been granted on particular subsection " +"or for a particular student." +msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "" -"Choose a graded unit and click the button to obtain a list of all students " -"who have extensions for the given unit." -msgstr "採点ã•ã‚ŒãŸãƒ¦ãƒ‹ãƒƒãƒˆã‚’é¸ã‚“ã§ãƒœã‚¿ãƒ³ã‚’クリックã—ã€æ‰€å®šã®ãƒ¦ãƒ‹ãƒƒãƒˆã®å»¶é•·ã‚’許å¯ã•ã‚ŒãŸå—講者ã®ãƒªã‚¹ãƒˆã‚’入手ã—ã¦ãã ã•ã„。" +"Choose a graded subsection and click the button to obtain a list of all " +"students who have extensions for the given subsection." +msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "List all students with due date extensions" @@ -17924,9 +17966,13 @@ msgstr "延長をリセット" #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "" "Resetting a problem's due date rescinds a due date extension for a student " -"on a particular unit. This will revert the due date for the student back to " -"the problem's original due date." -msgstr "å•é¡Œã®ç· 切をリセットã™ã‚‹ã¨ã€ç‰¹å®šã®ãƒ¦ãƒ‹ãƒƒãƒˆã®å—講者ã«é–¢ã™ã‚‹å»¶é•·ãŒç„¡åŠ¹ã«ãªã‚Šã¾ã™ã€‚ãã®å—講者ã®ç· 切ã¯ã€ãã®å•é¡Œã®å…ƒã®ç· 切日ã«æˆ»ã‚Šã¾ã™ã€‚" +"on a particular subsection. This will revert the due date for the student " +"back to the problem's original due date." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Reason for reset" +msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Reset due date for student" @@ -19959,10 +20005,6 @@ msgstr "" msgid "Explore journals and courses" msgstr "" -#: openedx/features/learner_analytics/templates/learner_analytics/dashboard.html -msgid "My Stats (Beta)" -msgstr "" - #. Translators: this section lists all the third-party authentication #. providers #. (for example, Google and LinkedIn) the user can link with or unlink from @@ -20060,7 +20102,7 @@ msgid "© 2012–{year} edX Inc. " msgstr "" #: themes/edx.org/lms/templates/footer.html -msgid "EdX, Open edX, and MicroMasters are registered trademarks of edX Inc. " +msgid "edX, Open edX, and MicroMasters are registered trademarks of edX Inc. " msgstr "" #: themes/edx.org/lms/templates/certificates/_about-accomplishments.html @@ -20126,7 +20168,7 @@ msgstr "" #: themes/edx.org/lms/templates/certificates/_accomplishment-footer.html msgid "" "All rights reserved except where noted. edX, Open edX and the edX and Open " -"edX logos are registered trademarks or trademarks of edX Inc." +"edX logos are registered trademarks of edX Inc." msgstr "" #: themes/edx.org/lms/templates/course_modes/choose.html @@ -20151,15 +20193,6 @@ msgstr "講座を探ã™" msgid "Schools & Partners" msgstr "å¦æ ¡ãŠã‚ˆã³ãƒ‘ートナー" -#. Translators: 'EdX', 'edX', and 'Open edX' are trademarks of 'edX Inc.'. -#. Please do not translate any of these trademarks and company names. -#: themes/red-theme/lms/templates/footer.html -msgid "" -"EdX, Open edX, and the edX and Open edX logos are registered trademarks or " -"trademarks of {link_start}edX Inc.{link_end}" -msgstr "" -"EdXã€Open edXãŠã‚ˆã³edXã€Open edXãƒã‚´ã¯ {link_start}edX Inc.{link_end} ã®å•†æ¨™ã¾ãŸã¯ç™»éŒ²å•†æ¨™ã§ã™ã€‚" - #: themes/red-theme/lms/templates/footer.html msgid "" "{tos_link_start}Terms of Service{tos_link_end} and {honor_link_start}Honor " @@ -23250,7 +23283,6 @@ msgid "" "Thank you for signing up for {studio_name}! To activate your account, please" " copy and paste this address into your web browser's address bar:" msgstr "" -"{studio_name}ã«ã”登録ã„ãŸã ãã€ã‚ã‚ŠãŒã¨ã†ã”ã–ã„ã¾ã™ï¼ã‚¢ã‚«ã‚¦ãƒ³ãƒˆã‚’有効化ã™ã‚‹ã«ã¯ã€ã“ã®ã‚¢ãƒ‰ãƒ¬ã‚¹ã‚’ウェブブラウザã®ã‚¢ãƒ‰ãƒ¬ã‚¹ãƒãƒ¼ã«ã‚³ãƒ”ー&ペーストã—ã¦ãã ã•ã„。" #: cms/templates/emails/activation_email.txt msgid "" @@ -23258,11 +23290,10 @@ msgid "" " any more email from us. Please do not reply to this e-mail; if you require " "assistance, check the help section of the {studio_name} web site." msgstr "" -"ã‚‚ã—ã“れをリクエストã—ãŸè¦šãˆãŒãªã„ã®ã§ã‚ã‚Œã°ã€ä½•ã‚‚ã™ã‚‹å¿…è¦ã¯ã‚ã‚Šã¾ã›ã‚“。ã“れ以上ç§å…±ã‹ã‚‰ã®ãƒ¡ãƒ¼ãƒ«ãŒå±Šãã“ã¨ã¯ã‚ã‚Šã¾ã›ã‚“。ã“ã®ãƒ¡ãƒ¼ãƒ«ã«ã¯è¿”ä¿¡ã—ãªã„ã§ãã ã•ã„。ã”ä¸æ˜Žãªç‚¹ãŒã‚ã‚Šã¾ã—ãŸã‚‰ã€{studio_name}ã®ã‚¦ã‚§ãƒ–サイトã®ãƒ˜ãƒ«ãƒ—ã‚’ã”覧ãã ã•ã„。" #: cms/templates/emails/activation_email_subject.txt msgid "Your account for {studio_name}" -msgstr "{studio_name}ã®ã‚¢ã‚«ã‚¦ãƒ³ãƒˆ" +msgstr "" #: cms/templates/emails/course_creator_admin_subject.txt msgid "{email} has requested {studio_name} course creator privileges on edge" @@ -23410,16 +23441,6 @@ msgstr "" msgid "LMS" msgstr "" -#. Translators: 'EdX', 'edX', 'Studio', and 'Open edX' are trademarks of 'edX -#. Inc.'. Please do not translate any of these trademarks and company names. -#: cms/templates/widgets/footer.html -msgid "" -"EdX, Open edX, Studio, and the edX and Open edX logos are registered " -"trademarks or trademarks of {link_start}edX Inc.{link_end}" -msgstr "" -"EdXã€Open edXã€StudioãŠã‚ˆã³edXã€Open edXãƒã‚´ã¯ {link_start}edX Inc.{link_end} " -"ã®å•†æ¨™ã¾ãŸã¯ç™»éŒ²å•†æ¨™ã§ã™ã€‚" - #: cms/templates/widgets/header.html msgid "Current Course:" msgstr "å—講ä¸ã®è¬›åº§: " diff --git a/conf/locale/ja_JP/LC_MESSAGES/djangojs.mo b/conf/locale/ja_JP/LC_MESSAGES/djangojs.mo index 1a5e4151f3f3195e53f8814b71b1bd171fdb90c7..ba133d1ff80e0f9f3f6d9abd992cfa8f42c1a36c 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 d1334b226acb95ee5d09f70980a929d56d4afb02..8e70db6fe2489a7c3de2a30014db0b0cd1a9dcb8 100644 --- a/conf/locale/ja_JP/LC_MESSAGES/djangojs.po +++ b/conf/locale/ja_JP/LC_MESSAGES/djangojs.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: 2019-04-22 10:49+0000\n" +"POT-Creation-Date: 2019-06-09 20:42+0000\n" "PO-Revision-Date: 2019-02-10 20:45+0000\n" "Last-Translator: edx_transifex_bot <i18n-working-group+edx-transifex-bot@edx.org>\n" "Language-Team: Japanese (Japan) (http://www.transifex.com/open-edx/edx-platform/language/ja_JP/)\n" @@ -7311,6 +7311,10 @@ msgstr "ã„ã¾ã™ãèªè¨¼ã—よã†" msgid "Mark Exam As Completed" msgstr "'試験終了'ã¨ãƒžãƒ¼ã‚¯ã™ã‚‹" +#: lms/templates/courseware/proctored-exam-status.underscore +msgid "You are taking \"{exam_link}\" as {exam_type}. " +msgstr "" + #: lms/templates/courseware/proctored-exam-status.underscore msgid "a timed exam" msgstr "" @@ -8074,8 +8078,9 @@ msgid "Register with Institution/Campus Credentials" msgstr "æ©Ÿé–¢/å¦æ ¡ã®è¨¼æ˜Žæ›¸ã§ç™»éŒ²" #: lms/templates/student_account/institution_register.underscore -msgid "Register through edX" -msgstr "edXを通ã—ã¦ç™»éŒ²" +#: lms/templates/student_account/register.underscore +msgid "Create an Account" +msgstr "" #: lms/templates/student_account/login.underscore msgid "First time here?" @@ -8181,10 +8186,6 @@ msgstr "%(providerName)sを使ã£ã¦ã‚¢ã‚«ã‚¦ãƒ³ãƒˆã‚’作æˆã€‚" msgid "or create a new one here" msgstr "ã¾ãŸã¯ã“ã“ã§æ–°ã—ã作æˆã™ã‚‹" -#: lms/templates/student_account/register.underscore -msgid "Create an Account" -msgstr "" - #: lms/templates/student_account/register.underscore msgid "Support education research by providing additional information" msgstr "" @@ -9829,8 +9830,7 @@ msgid "" "Last published {lastPublishedStart}{publishedOn}{lastPublishedEnd} by " "{publishedByStart}{publishedBy}{publishedByEnd}" msgstr "" -" " -"{publishedByStart}{publishedBy}{publishedByEnd}ã«ã‚ˆã‚Š{lastPublishedStart}{publishedOn}{lastPublishedEnd}ã«æœ€æ–°å…¬é–‹" +" {publishedByStart}{publishedBy}{publishedByEnd}ã«ã‚ˆã‚Š{lastPublishedStart}{publishedOn}{lastPublishedEnd}ã«æœ€æ–°å…¬é–‹" #: cms/templates/js/publish-xblock.underscore #, python-format diff --git a/conf/locale/ka/LC_MESSAGES/django.mo b/conf/locale/ka/LC_MESSAGES/django.mo index ab90d3e6c4df33d355a978abf0fff580c95beb1b..e9d468d65b681470606172bfeecd16780c810875 100644 Binary files a/conf/locale/ka/LC_MESSAGES/django.mo and b/conf/locale/ka/LC_MESSAGES/django.mo differ diff --git a/conf/locale/ka/LC_MESSAGES/django.po b/conf/locale/ka/LC_MESSAGES/django.po index c4664d80e38cf3f63de0b54f57177a9559899ef5..a16f6d9d3c17d5ec653932a618e60d388284d57f 100644 --- a/conf/locale/ka/LC_MESSAGES/django.po +++ b/conf/locale/ka/LC_MESSAGES/django.po @@ -60,7 +60,7 @@ msgid "" msgstr "" "Project-Id-Version: 0.1a\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2019-04-22 10:50+0000\n" +"POT-Creation-Date: 2019-06-09 20:42+0000\n" "PO-Revision-Date: 2019-01-20 20:43+0000\n" "Last-Translator: Waheed Ahmed <waheed@edx.org>, 2019\n" "Language-Team: Georgian (https://www.transifex.com/open-edx/teams/6205/ka/)\n" @@ -384,27 +384,6 @@ msgstr "მáƒáƒœáƒ˜áƒ¨áƒœáƒ£áƒšáƒ˜áƒ áƒáƒ áƒáƒ¡áƒ¬áƒáƒ ი რáƒáƒáƒ“ე msgid "No selected price or selected price is too low." msgstr "ფáƒáƒ¡áƒ˜ áƒáƒ áƒáƒ ის áƒáƒ ჩეული, áƒáƒœ áƒáƒ ჩეული ფáƒáƒ¡áƒ˜ ძáƒáƒšáƒ˜áƒáƒœ დáƒáƒ‘áƒáƒšáƒ˜áƒ" -#: common/djangoapps/django_comment_common/models.py -msgid "Administrator" -msgstr "áƒáƒ“მინისტრáƒáƒ¢áƒáƒ ი" - -#: common/djangoapps/django_comment_common/models.py -msgid "Moderator" -msgstr "მáƒáƒ“ერáƒáƒ¢áƒáƒ ი" - -#: common/djangoapps/django_comment_common/models.py -msgid "Group Moderator" -msgstr "" - -#: common/djangoapps/django_comment_common/models.py -msgid "Community TA" -msgstr "გáƒáƒ”რთიáƒáƒœáƒ”ბის ჯგუფხელი" - -#: common/djangoapps/django_comment_common/models.py -#: lms/djangoapps/instructor/paidcourse_enrollment_report.py -msgid "Student" -msgstr "სტუდენტი" - #: common/djangoapps/student/admin.py msgid "User profile" msgstr "მáƒáƒ›áƒ®áƒ›áƒáƒ ებლის პრáƒáƒ¤áƒ˜áƒšáƒ˜" @@ -466,8 +445,8 @@ msgid "A properly formatted e-mail is required" msgstr "მიუთითეთ ელფáƒáƒ¡áƒ¢áƒ˜áƒ¡ მისáƒáƒ›áƒáƒ თი სáƒáƒ—áƒáƒœáƒáƒ“რფáƒáƒ მáƒáƒ¢áƒ˜áƒ—" #: common/djangoapps/student/forms.py -msgid "Your legal name must be a minimum of two characters long" -msgstr "თქვენი ნáƒáƒ›áƒ“ვილი სáƒáƒ®áƒ”ლი სულ მცირე áƒáƒ ი სიმბáƒáƒšáƒ უნდრიყáƒáƒ¡" +msgid "Your legal name must be a minimum of one character long" +msgstr "" #: common/djangoapps/student/forms.py #, python-format @@ -856,11 +835,11 @@ msgstr "თქვენმიერმáƒáƒ«áƒ˜áƒ”ბულ კურსზე #: common/djangoapps/student/views/management.py msgid "No inactive user with this e-mail exists" -msgstr "áƒáƒ áƒáƒáƒ¥áƒ¢áƒ˜áƒ£áƒ ი მáƒáƒ›áƒ®áƒ›áƒáƒ ებელი áƒáƒ› ელფáƒáƒ¡áƒ¢áƒ˜áƒ— áƒáƒ áƒáƒ სებáƒáƒ‘ს" +msgstr "" #: common/djangoapps/student/views/management.py msgid "Unable to send reactivation email" -msgstr "ხელáƒáƒ®áƒáƒšáƒ˜ áƒáƒ¥áƒ¢áƒ˜áƒ•áƒáƒªáƒ˜áƒ˜áƒ¡ შეტყáƒáƒ‘ინების გáƒáƒ’ზáƒáƒ•áƒœáƒ ვერმáƒáƒ®áƒ”რხდáƒ" +msgstr "" #: common/djangoapps/student/views/management.py msgid "Course id not specified" @@ -1010,6 +989,12 @@ msgstr "" "მეáƒáƒ áƒáƒ“ მáƒáƒ›áƒ¬áƒáƒ“ებლებს, \"ინსტიტუტის\"-ის სისტემáƒáƒ¨áƒ˜ შესულ მáƒáƒ›áƒ¬áƒáƒ“ებულთრცáƒáƒšáƒ™áƒ” " "სიáƒáƒ¨áƒ˜, ნáƒáƒ™áƒšáƒ”ბáƒáƒ“ თვáƒáƒšáƒ¡áƒáƒ©áƒ˜áƒœáƒ áƒáƒ“გილი უკáƒáƒ•áƒ˜áƒáƒ—." +#: common/djangoapps/third_party_auth/models.py +msgid "" +"optional. If this provider is an Organization, this attribute can be used " +"reference users in that Organization" +msgstr "" + #: common/djangoapps/third_party_auth/models.py msgid "The Site that this provider configuration belongs to." msgstr "სáƒáƒ˜áƒ¢áƒ˜, რáƒáƒ›áƒ”ლსáƒáƒª მáƒáƒ›áƒ¬áƒáƒ“ებლის ეს კáƒáƒœáƒ¤áƒ˜áƒ’ურáƒáƒªáƒ˜áƒ ეკუთვნის." @@ -2847,13 +2832,13 @@ msgstr "გáƒáƒœáƒ®áƒ˜áƒšáƒ•áƒ˜áƒ¡ თემების სქემáƒ" msgid "" "Enter discussion categories in the following format: \"CategoryName\": " "{\"id\": \"i4x-InstitutionName-CourseNumber-course-CourseRun\"}. For " -"example, one discussion category may be \"Lydian Mode\": {\"id\": \"i4x-" -"UniversityX-MUS101-course-2015_T1\"}. The \"id\" value for each category " -"must be unique. In \"id\" values, the only special characters that are " -"supported are underscore, hyphen, and period. You can also specify a " +"example, one discussion category may be \"Lydian Mode\": {\"id\": " +"\"i4x-UniversityX-MUS101-course-2015_T1\"}. The \"id\" value for each " +"category must be unique. In \"id\" values, the only special characters that " +"are supported are underscore, hyphen, and period. You can also specify a " "category as the default for new posts in the Discussion page by setting its " -"\"default\" attribute to true. For example, \"Lydian Mode\": {\"id\": \"i4x-" -"UniversityX-MUS101-course-2015_T1\", \"default\": true}." +"\"default\" attribute to true. For example, \"Lydian Mode\": {\"id\": " +"\"i4x-UniversityX-MUS101-course-2015_T1\", \"default\": true}." msgstr "" #: common/lib/xmodule/xmodule/course_module.py @@ -5320,17 +5305,17 @@ msgstr "გთხáƒáƒ•áƒ— თქვენი ჩáƒáƒœáƒáƒ¬áƒ”რის სი msgid "Take free online courses at edX.org" msgstr "" -#. Translators: 'EdX', 'edX', and 'Open edX' are trademarks of 'edX Inc.'. +#. Translators: 'edX' and 'Open edX' are trademarks of 'edX Inc.'. #. Please do not translate any of these trademarks and company names. #: lms/djangoapps/branding/api.py #, python-brace-format msgid "" -"© {org_name}. All rights reserved except where noted. EdX, Open edX and " -"their respective logos are trademarks or registered trademarks of edX Inc." +"© {org_name}. All rights reserved except where noted. edX, Open edX and " +"their respective logos are registered trademarks of edX Inc." msgstr "" #. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# -#. Translators: 'Open edX' is a brand, please keep this untranslated. +#. Translators: 'Open edX' is a trademark, please keep this untranslated. #. See http://openedx.org for more information. #. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# #. Translators: 'Open edX' is a brand, please keep this untranslated. See @@ -6443,6 +6428,20 @@ msgstr "თქვენი სერტიფიკáƒáƒ¢áƒ˜ ხელმის msgid "To see course content, {sign_in_link} or {register_link}." msgstr "" +#: lms/djangoapps/courseware/views/views.py +#: openedx/features/course_experience/views/course_home_messages.py +#, python-brace-format +msgid "{sign_in_link} or {register_link}." +msgstr "" + +#: lms/djangoapps/courseware/views/views.py +#: openedx/features/course_experience/views/course_home_messages.py +#: lms/templates/header/navbar-not-authenticated.html +#: lms/templates/navigation/navbar-not-authenticated.html +#: themes/edx.org/lms/templates/header/navbar-not-authenticated.html +msgid "Sign in" +msgstr "შესვლáƒ" + #: lms/djangoapps/courseware/views/views.py #, python-brace-format msgid "" @@ -6560,10 +6559,8 @@ msgstr "" #: lms/djangoapps/dashboard/git_import.py msgid "" "Non usable git url provided. Expecting something like: " -"git@github.com:mitocw/edx4edx_lite.git" +"git@github.com:edx/edx4edx_lite.git" msgstr "" -"მáƒáƒªáƒ”მული git url-ი გáƒáƒ›áƒáƒ£áƒ¡áƒáƒ“ეგáƒáƒ იáƒ. ის უნდრიყáƒáƒ¡ დáƒáƒáƒ®áƒšáƒáƒ”ბით: " -"git@github.com:mitocw/edx4edx_lite.git" #: lms/djangoapps/dashboard/git_import.py msgid "Unable to get git log" @@ -6747,49 +6744,49 @@ msgstr "რáƒáƒšáƒ˜" msgid "full_name" msgstr "full_name" -#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.html -#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.txt -#, python-format -msgid "%(comment_username)s replied to <b>%(thread_title)s</b>:" -msgstr "" - -#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.html -#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.txt -msgid "View discussion" -msgstr "დისკუსიის ნáƒáƒ®áƒ•áƒ" - -#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/subject.txt -#, python-format -msgid "Response to %(thread_title)s" -msgstr "" - -#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/discussion/django_comment_client/base/views.py msgid "Title can't be empty" msgstr "სáƒáƒ—áƒáƒ£áƒ ი áƒáƒ შეიძლებრიყáƒáƒ¡ ცáƒáƒ იელი" -#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/discussion/django_comment_client/base/views.py msgid "Body can't be empty" msgstr "სხეული áƒáƒ შეიძლებრიყáƒáƒ¡ ცáƒáƒ იელი" -#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/discussion/django_comment_client/base/views.py msgid "Topic doesn't exist" msgstr "თემრáƒáƒ áƒáƒ სებáƒáƒ‘ს" -#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/discussion/django_comment_client/base/views.py msgid "Comment level too deep" msgstr "კáƒáƒ›áƒ”ნტáƒáƒ ის დáƒáƒœáƒ” ძáƒáƒšáƒ˜áƒáƒœ ღრმáƒáƒ" -#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/discussion/django_comment_client/base/views.py msgid "" "Error uploading file. Please contact the site administrator. Thank you." msgstr "" "ფáƒáƒ˜áƒšáƒ˜áƒ¡ áƒáƒ¢áƒ•áƒ˜áƒ თვისáƒáƒ¡ დáƒáƒ¤áƒ˜áƒ¥áƒ¡áƒ˜áƒ დრშეცდáƒáƒ›áƒ. გთხáƒáƒ•áƒ—, დáƒáƒ£áƒ™áƒáƒ•áƒ¨áƒ˜áƒ დეთ თქვენი სáƒáƒ˜áƒ¢áƒ˜áƒ¡ " "áƒáƒ“მინისტრáƒáƒ¢áƒáƒ ს. გმáƒáƒ“ლáƒáƒ‘თ." -#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/discussion/django_comment_client/base/views.py msgid "Good" msgstr "კáƒáƒ გიáƒ" +#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.html +#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.txt +#, python-format +msgid "%(comment_username)s replied to <b>%(thread_title)s</b>:" +msgstr "" + +#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.html +#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.txt +msgid "View discussion" +msgstr "დისკუსიის ნáƒáƒ®áƒ•áƒ" + +#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/subject.txt +#, python-format +msgid "Response to %(thread_title)s" +msgstr "" + #: lms/djangoapps/edxnotes/helpers.py msgid "EdxNotes Service is unavailable. Please try again in a few minutes." msgstr "" @@ -6914,6 +6911,11 @@ msgstr "{platform_name} პერსáƒáƒœáƒáƒšáƒ˜" msgid "Course Staff" msgstr "კურსის პერსáƒáƒœáƒáƒšáƒ˜" +#: lms/djangoapps/instructor/paidcourse_enrollment_report.py +#: openedx/core/djangoapps/django_comment_common/models.py +msgid "Student" +msgstr "სტუდენტი" + #: lms/djangoapps/instructor/paidcourse_enrollment_report.py #: lms/templates/preview_menu.html #: lms/templates/instructor/instructor_dashboard_2/membership.html @@ -7761,11 +7763,6 @@ msgstr "" "ვáƒáƒ“ის გáƒáƒ®áƒáƒœáƒ’რძლივების შემთხვევáƒáƒ¨áƒ˜, სáƒáƒ‘áƒáƒšáƒáƒ ვáƒáƒ“რუნდრიყáƒáƒ¡ უფრრგვიáƒáƒœ, ვიდრე," " თáƒáƒ•áƒ“áƒáƒžáƒ˜áƒ ველáƒáƒ“ გáƒáƒœáƒ¡áƒáƒ–ღვრული თáƒáƒ იღი." -#: lms/djangoapps/instructor/views/tools.py -msgid "No due date extension is set for that student and unit." -msgstr "" -"áƒáƒ¦áƒœáƒ˜áƒ¨áƒœáƒ£áƒšáƒ˜ სტუდენტისრდრბლáƒáƒ™áƒ˜áƒ¡áƒ—ვის, ვáƒáƒ“ის გáƒáƒ®áƒáƒœáƒ’რძლივებრáƒáƒ áƒáƒ ის დáƒáƒ§áƒ”ნებული." - #. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# #. Translators: This label appears above a field on the registration form #. meant to hold the user's full name. @@ -8235,6 +8232,10 @@ msgstr "" msgid "My Notes" msgstr "ჩემი ჩáƒáƒœáƒáƒ¬áƒ”რები" +#: lms/djangoapps/program_enrollments/models.py +msgid "One of user or external_user_key must not be null." +msgstr "" + #: lms/djangoapps/shoppingcart/models.py msgid "Order Payment Confirmation" msgstr "შეკვეთის გáƒáƒ“áƒáƒ®áƒ“ის დáƒáƒ“áƒáƒ¡áƒ¢áƒ£áƒ ებáƒ" @@ -9353,8 +9354,8 @@ msgstr "მáƒáƒ›áƒ®áƒ›áƒáƒ ებლის áƒáƒœáƒ’áƒáƒ იში ვერ#: lms/djangoapps/verify_student/views.py #, python-brace-format -msgid "Name must be at least {min_length} characters long." -msgstr "სáƒáƒ®áƒ”ლი უნდრშეიცáƒáƒ•áƒ“ეს სულ მცირე {min_length} სიმბáƒáƒšáƒáƒ¡." +msgid "Name must be at least {min_length} character long." +msgstr "" #: lms/djangoapps/verify_student/views.py msgid "Image data is not valid." @@ -9786,8 +9787,9 @@ msgid "Hello %(full_name)s," msgstr "" #: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt #, python-format -msgid "Your %(platform_name)s ID verification has expired.\" " +msgid "Your %(platform_name)s ID verification has expired. " msgstr "" #: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html @@ -9838,11 +9840,6 @@ msgstr "" msgid "Hello %(full_name)s, " msgstr "" -#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt -#, python-format -msgid "Your %(platform_name)s ID verification has expired. " -msgstr "" - #: lms/templates/verify_student/edx_ace/verificationexpiry/email/subject.txt #, python-format msgid "Your %(platform_name)s Verification has Expired" @@ -10419,15 +10416,6 @@ msgstr "API მáƒáƒ›áƒ®áƒ›áƒáƒ ებელთáƒáƒœ áƒáƒ¡áƒáƒªáƒ˜áƒ ებ msgid "The reason this user wants to access the API." msgstr "მიზეზი, თუ რáƒáƒ¢áƒáƒ› სურს მáƒáƒ›áƒ®áƒ›áƒáƒ ებელს API-ზე დáƒáƒ¨áƒ•áƒ”ბáƒ." -#: openedx/core/djangoapps/api_admin/models.py -#, python-brace-format -msgid "API access request from {company}" -msgstr "API წვდáƒáƒ›áƒ˜áƒ¡ მáƒáƒ—ხáƒáƒ•áƒœáƒ კáƒáƒ›áƒžáƒáƒœáƒ˜áƒ˜áƒ¡áƒ’áƒáƒœ: {company}" - -#: openedx/core/djangoapps/api_admin/models.py -msgid "API access request" -msgstr "API-ზე წვდáƒáƒ›áƒ˜áƒ¡ მáƒáƒ—ხáƒáƒ•áƒœáƒ" - #: openedx/core/djangoapps/api_admin/widgets.py #, python-brace-format msgid "" @@ -10782,6 +10770,22 @@ msgstr "" msgid "This is a test error" msgstr "" +#: openedx/core/djangoapps/django_comment_common/models.py +msgid "Administrator" +msgstr "áƒáƒ“მინისტრáƒáƒ¢áƒáƒ ი" + +#: openedx/core/djangoapps/django_comment_common/models.py +msgid "Moderator" +msgstr "მáƒáƒ“ერáƒáƒ¢áƒáƒ ი" + +#: openedx/core/djangoapps/django_comment_common/models.py +msgid "Group Moderator" +msgstr "" + +#: openedx/core/djangoapps/django_comment_common/models.py +msgid "Community TA" +msgstr "გáƒáƒ”რთიáƒáƒœáƒ”ბის ჯგუფხელი" + #: openedx/core/djangoapps/embargo/forms.py #: openedx/core/djangoapps/verified_track_content/forms.py msgid "COURSE NOT FOUND. Please check that the course ID is valid." @@ -11349,8 +11353,11 @@ msgid "Specialty" msgstr "" #: openedx/core/djangoapps/user_api/accounts/utils.py +#, python-brace-format msgid "" -" Make sure that you are providing a valid username or a URL that contains \"" +"Make sure that you are providing a valid username or a URL that contains " +"\"{url_stub}\". To remove the link from your edX profile, leave this field " +"blank." msgstr "" #: openedx/core/djangoapps/user_api/accounts/views.py @@ -11488,11 +11495,11 @@ msgstr "თქვენ უნდრდáƒáƒ”თáƒáƒœáƒ®áƒ›áƒáƒ— {platform_na #: openedx/core/djangoapps/user_api/api.py #, python-brace-format msgid "" -"By creating an account with {platform_name}, you agree to " -"abide by our {platform_name} " +"By creating an account, you agree to the " "{terms_of_service_link_start}{terms_of_service}{terms_of_service_link_end}" -" and agree to our {privacy_policy_link_start}Privacy " -"Policy{privacy_policy_link_end}." +" and you acknowledge that {platform_name} and each Member " +"process your personal data in accordance with the " +"{privacy_policy_link_start}Privacy Policy{privacy_policy_link_end}." msgstr "" #. Translators: "Terms of service" is a legal document users must agree to @@ -11929,18 +11936,18 @@ msgstr "გáƒáƒœáƒáƒ®áƒšáƒ”ბები" msgid "Reviews" msgstr "მიმáƒáƒ®áƒ˜áƒšáƒ•áƒ”ბი" +#: openedx/features/course_experience/utils.py +#, no-python-format, python-brace-format +msgid "" +"{banner_open}{percentage}% off your first upgrade.{span_close} Discount " +"automatically applied.{div_close}" +msgstr "" + #: openedx/features/course_experience/views/course_home_messages.py #, python-brace-format msgid "{sign_in_link} or {register_link} and then enroll in this course." msgstr "" -#: openedx/features/course_experience/views/course_home_messages.py -#: lms/templates/header/navbar-not-authenticated.html -#: lms/templates/navigation/navbar-not-authenticated.html -#: themes/edx.org/lms/templates/header/navbar-not-authenticated.html -msgid "Sign in" -msgstr "შესვლáƒ" - #: openedx/features/course_experience/views/course_home_messages.py #, python-brace-format msgid "Welcome to {course_display_name}" @@ -11980,6 +11987,29 @@ msgstr "" msgid "Set goal to: {goal_text}" msgstr "" +#: openedx/features/discounts/admin.py +msgid "" +"These define the context to disable lms-controlled discounts on. If no " +"values are set, then the configuration applies globally. If a single value " +"is set, then the configuration applies to all courses within that context. " +"At most one value can be set at a time.<br>If multiple contexts apply to a " +"course (for example, if configuration is specified for the course " +"specifically, and for the org that the course is in, then the more specific " +"context overrides the more general context." +msgstr "" + +#: openedx/features/discounts/admin.py +msgid "" +"If any of these values is left empty or \"Unknown\", then their value at " +"runtime will be retrieved from the next most specific context that applies. " +"For example, if \"Disabled\" is left as \"Unknown\" in the course context, " +"then that course will be Disabled only if the org that it is in is Disabled." +msgstr "" + +#: openedx/features/discounts/models.py +msgid "Disabled" +msgstr "" + #: openedx/features/enterprise_support/api.py #, python-brace-format msgid "Enrollment in {course_title} was not complete." @@ -12091,10 +12121,8 @@ msgstr "" #: cms/djangoapps/contentstore/git_export_utils.py msgid "" "Non writable git url provided. Expecting something like: " -"git@github.com:mitocw/edx4edx_lite.git" +"git@github.com:edx/edx4edx_lite.git" msgstr "" -"მითითებული git მისáƒáƒ›áƒáƒ თი áƒáƒ áƒáƒ¡áƒ¬áƒáƒ იáƒ. სáƒáƒáƒ˜áƒ áƒáƒ შემდეგი ტიპის მისáƒáƒ›áƒáƒ თი: " -"git@github.com:mitocw/edx4edx_lite.git" #: cms/djangoapps/contentstore/git_export_utils.py msgid "" @@ -12954,6 +12982,15 @@ msgstr "პáƒáƒ áƒáƒ›áƒ”ტრების ჩáƒáƒ›áƒáƒ§áƒ áƒ" msgid "Legal" msgstr "იურიდიული" +#. Translators: 'edX' and 'Open edX' are trademarks of 'edX Inc.'. Please do +#. not translate any of these trademarks and company names. +#: cms/templates/widgets/footer.html +#: themes/red-theme/lms/templates/footer.html +msgid "" +"edX, Open edX, and the edX and Open edX logos are registered trademarks of " +"{link_start}edX Inc.{link_end}" +msgstr "" + #: cms/templates/widgets/header.html lms/templates/header/header.html #: lms/templates/navigation/navigation.html #: lms/templates/widgets/footer-language-selector.html @@ -13345,6 +13382,10 @@ msgstr "დეფექტების áƒáƒ¦áƒ›áƒáƒ¤áƒ®áƒ•áƒ áƒ:" msgid "External Authentication failed" msgstr "გáƒáƒ ე áƒáƒ•áƒ—ენტიფიკáƒáƒªáƒ˜áƒ ვერმáƒáƒ®áƒ”რხდáƒ" +#: lms/templates/footer.html +msgid "organization logo" +msgstr "" + #: lms/templates/forgot_password_modal.html msgid "" "Please enter your e-mail address below, and we will e-mail instructions for " @@ -13555,17 +13596,15 @@ msgstr "" msgid "Search for a course" msgstr "კურსის ძიებáƒ" -#. Translators: 'Open edX' is a registered trademark, please keep this -#. untranslated. See http://open.edx.org for more information. -#: lms/templates/index_overlay.html -msgid "Welcome to the Open edX{registered_trademark} platform!" -msgstr "მáƒáƒ’ესáƒáƒšáƒ›áƒ”ბით Open edX{registered_trademark} პლáƒáƒ¢áƒ¤áƒáƒ მáƒáƒ–ე!" +#: lms/templates/index_overlay.html lms/templates/register-sidebar.html +msgid "Welcome to {platform_name}" +msgstr "კეთილი იყáƒáƒ¡ თქვენი მáƒáƒ‘რძáƒáƒœáƒ”ბრ{platform_name}-ში" #. Translators: 'Open edX' is a registered trademark, please keep this #. untranslated. See http://open.edx.org for more information. #: lms/templates/index_overlay.html -msgid "It works! This is the default homepage for this Open edX instance." -msgstr "მუშáƒáƒáƒ‘ს! ეს áƒáƒ ის áƒáƒ› Open edX áƒáƒ¡áƒšáƒ˜áƒ¡ ნáƒáƒ’ულისხმევი მთáƒáƒ•áƒáƒ ი გვერდი." +msgid "It works! Powered by Open edX{registered_trademark}" +msgstr "" #: lms/templates/invalid_email_key.html msgid "Invalid email change key" @@ -13871,6 +13910,10 @@ msgstr "თქვენი პáƒáƒ¡áƒ£áƒ®áƒ˜áƒ¡ შენáƒáƒ®áƒ•áƒ" msgid "Reset your answer" msgstr "თქვენი პáƒáƒ¡áƒ£áƒ®áƒ˜áƒ¡ ჩáƒáƒ›áƒáƒ§áƒ áƒ" +#: lms/templates/problem.html +msgid "Answers are displayed within the problem" +msgstr "" + #: lms/templates/problem_notifications.html msgid "Next Hint" msgstr "მáƒáƒ›áƒ“ევნრმინიშნებáƒ" @@ -14076,10 +14119,6 @@ msgstr "უკვე დáƒáƒ ეგისტრირდით?" msgid "Log in" msgstr "შესვლáƒ" -#: lms/templates/register-sidebar.html -msgid "Welcome to {platform_name}" -msgstr "კეთილი იყáƒáƒ¡ თქვენი მáƒáƒ‘რძáƒáƒœáƒ”ბრ{platform_name}-ში" - #: lms/templates/register-sidebar.html msgid "" "Registering with {platform_name} gives you access to all of our current and " @@ -14448,11 +14487,6 @@ msgstr "კურსის ID áƒáƒœ კáƒáƒ¢áƒáƒšáƒáƒ’ი" msgid "Delete course from site" msgstr "სáƒáƒ˜áƒ¢áƒ˜áƒ“áƒáƒœ კურსის წáƒáƒ¨áƒšáƒ" -#. Translators: A version number appears after this string -#: lms/templates/sysadmin_dashboard.html -msgid "Platform Version" -msgstr "პლáƒáƒ¢áƒ¤áƒáƒ მის ვერსიáƒ" - #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Page {current_page} of {total_pages}" msgstr "{current_page} გვერდი {total_pages}-დáƒáƒœ" @@ -15857,6 +15891,20 @@ msgstr "შესყიდვის მáƒáƒœáƒáƒªáƒ”მების ჩáƒáƒ¢ msgid "Please wait while we retrieve your order details." msgstr "გთხáƒáƒ•áƒ—, დáƒáƒ”ლáƒáƒ“áƒáƒ— თქვენი შესყიდვის მáƒáƒœáƒáƒªáƒ”მებს áƒáƒ›áƒáƒ¦áƒ”ბáƒáƒ¡." +#: lms/templates/course_modes/_upgrade_button.html +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/_upgrade_button.html +#: themes/edx.org/lms/templates/course_modes/choose.html +msgid "Pursue the Verified Track" +msgstr "" + +#: lms/templates/course_modes/_upgrade_button.html +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/_upgrade_button.html +#: themes/edx.org/lms/templates/course_modes/choose.html +msgid "Pursue a Verified Certificate" +msgstr "მიიღეთ დáƒáƒ›áƒáƒ¬áƒ›áƒ”ბული სერტიფიკáƒáƒ¢áƒ˜" + #: lms/templates/course_modes/choose.html #: themes/edx.org/lms/templates/course_modes/choose.html msgid "Enroll In {course_name} | Choose Your Track" @@ -15948,16 +15996,6 @@ msgstr "" "{b_start}áƒáƒ“ვილáƒáƒ“ გáƒáƒ¡áƒáƒ–იáƒáƒ ებელი:{b_end} დáƒáƒáƒ›áƒáƒ¢áƒ”თ სერტიფიკáƒáƒ¢áƒ˜ თქვენს " "áƒáƒ•áƒ¢áƒáƒ‘იáƒáƒ’რáƒáƒ¤áƒ˜áƒáƒ¡ áƒáƒœ რეზიუმეს, áƒáƒœ გáƒáƒ›áƒáƒáƒ¥áƒ•áƒ”ყნეთ პირდáƒáƒžáƒ˜áƒ LinkedIn-ზე" -#: lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -msgid "Pursue a Verified Certificate" -msgstr "მიიღეთ დáƒáƒ›áƒáƒ¬áƒ›áƒ”ბული სერტიფიკáƒáƒ¢áƒ˜" - -#: lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -msgid "Pursue the Verified Track" -msgstr "" - #: lms/templates/course_modes/choose.html #: themes/edx.org/lms/templates/course_modes/choose.html msgid "" @@ -16081,6 +16119,10 @@ msgstr "ეს შინáƒáƒáƒ სი შეფáƒáƒ¡áƒ”ბულიáƒ" msgid "An error occurred. Please try again later." msgstr "დáƒáƒ¤áƒ˜áƒ¥áƒ¡áƒ˜áƒ დრშეცდáƒáƒ›áƒ. გთხáƒáƒ•áƒ— სცáƒáƒ“áƒáƒ— მáƒáƒ’ვიáƒáƒœáƒ”ბით." +#: lms/templates/courseware/course_about.html +msgid "An error has occurred. Please ensure that you are logged in to enroll." +msgstr "" + #: lms/templates/courseware/course_about.html msgid "You are enrolled in this course" msgstr "თქვენ ჩáƒáƒ˜áƒ იცხეთ áƒáƒ› კურსზე" @@ -16225,7 +16267,6 @@ msgstr "დáƒáƒáƒ–უსტეთ თქვენი ძიებáƒ" #: lms/templates/courseware/courseware-chromeless.html #: lms/templates/courseware/courseware.html #: openedx/features/course_bookmarks/templates/course_bookmarks/course-bookmarks.html -#: openedx/features/learner_analytics/templates/learner_analytics/dashboard.html msgid "{course_number} Courseware" msgstr "{course_number} კურსის შინáƒáƒáƒ სი" @@ -16454,8 +16495,8 @@ msgid "View Grading in studio" msgstr "შეფáƒáƒ¡áƒ”ბების სტუდიáƒáƒ¨áƒ˜ ნáƒáƒ®áƒ•áƒ" #: lms/templates/courseware/progress.html -msgid "Course Progress for Student '{username}' ({email})" -msgstr "კურსის პრáƒáƒ’რესი სტუდენტისთვის '{username}' ({email})" +msgid "Course Progress for '{username}' ({email})" +msgstr "" #: lms/templates/courseware/progress.html msgid "View Certificate" @@ -18542,15 +18583,9 @@ msgstr "áƒáƒœáƒ’áƒáƒ იშები ხელმისáƒáƒ¬áƒ•áƒ“áƒáƒ›áƒ˜ #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The reports listed below are available for download. A link to every report " -"remains available on this page, identified by the UTC date and time of " -"generation. Reports are not deleted, so you will always be able to access " -"previously generated reports from this page." +"The reports listed below are available for download, identified by UTC date " +"and time of generation." msgstr "" -"ქვემáƒáƒ— ჩáƒáƒ›áƒáƒ—ვლილი áƒáƒœáƒ’áƒáƒ იშები ხელმისáƒáƒ¬áƒ•áƒ“áƒáƒ›áƒ˜áƒ ჩáƒáƒ›áƒáƒ¡áƒáƒ¢áƒ•áƒ˜áƒ თáƒáƒ“. ყველრáƒáƒœáƒ’áƒáƒ იშის " -"ბმული ხელმისáƒáƒ¬áƒ•áƒ“áƒáƒ›áƒ˜ იქნებრáƒáƒ› გვერდზე დრმáƒáƒ—ი იდენტიფიცირებრUTC თáƒáƒ იღითრდáƒ" -" გენერáƒáƒªáƒ˜áƒ˜áƒ¡ დრáƒáƒ˜áƒ— ხდებáƒ. áƒáƒœáƒ’áƒáƒ იშების წáƒáƒ¨áƒšáƒ áƒáƒ მáƒáƒ®áƒ“ებáƒ, áƒáƒ¡áƒ” რáƒáƒ›, áƒáƒ› გვერდიდáƒáƒœ" -" ყáƒáƒ•áƒ”ლთვის გექნებáƒáƒ— áƒáƒ“რე შექმნილ áƒáƒœáƒ’áƒáƒ იშებზე წვდáƒáƒ›áƒ˜áƒ¡ შესáƒáƒ«áƒšáƒ”ბლáƒáƒ‘áƒ." #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" @@ -18566,13 +18601,13 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"{strong_start}Note{strong_end}: To keep student data secure, you cannot save" -" or email these links for direct access. Copies of links expire within 5 " -"minutes." +"{strong_start}Note{strong_end}: {ul_start}{li_start}To keep student data " +"secure, you cannot save or email these links for direct access. Copies of " +"links expire within 5 minutes.{li_end}{li_start}Report files are deleted 90 " +"days after generation. If you will need access to old reports, download and " +"store the files, in accordance with your institution's data security " +"policies.{li_end}{ul_end}" msgstr "" -"{strong_start}შენიშვნáƒ{strong_end}: სტუდენტის მáƒáƒœáƒáƒªáƒ”მების დáƒáƒªáƒ£áƒšáƒáƒ“ " -"შენáƒáƒ®áƒ•áƒ˜áƒ¡áƒ—ვის, თქვენ ვერშეინáƒáƒ®áƒáƒ•áƒ— áƒáƒœ გáƒáƒáƒ’ზáƒáƒ•áƒœáƒ˜áƒ— ელექტრáƒáƒœáƒ£áƒšáƒáƒ“ áƒáƒ› ბმულებს " -"პირდáƒáƒžáƒ˜áƒ ი დáƒáƒ¨áƒ•áƒ”ბისთვის. ბმულების áƒáƒ¡áƒšáƒ”ბის ვáƒáƒ“რ5 წუთში იწურებáƒ." #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Enrollment Codes" @@ -18968,15 +19003,11 @@ msgstr "გáƒáƒ“áƒáƒ®áƒ“ის ვáƒáƒ“ის ინდივიდუáƒáƒš #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "" -"In this section, you have the ability to grant extensions on specific units " -"to individual students. Please note that the latest date is always taken; " -"you cannot use this tool to make an assignment due earlier for a particular " -"student." +"In this section, you have the ability to grant extensions on specific " +"subsections to individual students. Please note that the latest date is " +"always taken; you cannot use this tool to make an assignment due earlier for" +" a particular student." msgstr "" -"áƒáƒ› სექციáƒáƒ¨áƒ˜, შესáƒáƒ«áƒšáƒ”ბლáƒáƒ‘რგáƒáƒ¥áƒ•áƒ— უზრუნველყáƒáƒ— გáƒáƒ კვეულ ერთეულებზე ვáƒáƒ“ის " -"გáƒáƒ’რძელებები ცáƒáƒšáƒ™áƒ”ული სტუდენტებისთვის. გთხáƒáƒ•áƒ— მიáƒáƒ¥áƒªáƒ˜áƒáƒ— ყურáƒáƒ“ღებáƒ, " -"უკáƒáƒœáƒáƒ¡áƒ™áƒœáƒ”ლი თáƒáƒ იღი ყáƒáƒ•áƒ”ლთვის დáƒáƒ™áƒáƒ•áƒ”ბულიáƒ; áƒáƒ› ინსტრუმენტს ვერგáƒáƒ›áƒáƒ˜áƒ§áƒ”ნებთ " -"კáƒáƒœáƒ™áƒ ეტული სტუდენტის დáƒáƒ•áƒáƒšáƒ”ბის დრáƒáƒ–ე áƒáƒ“რე შესáƒáƒ¡áƒ ულებლáƒáƒ“. " #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "" @@ -18990,8 +19021,8 @@ msgid "Student Email or Username" msgstr "სტუდენტის ელფáƒáƒ¡áƒ¢áƒ áƒáƒœ მáƒáƒ›áƒ®áƒ›áƒáƒ ებლის სáƒáƒ®áƒ”ლი" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -msgid "Choose the graded unit:" -msgstr "áƒáƒ˜áƒ ჩიეთ დიფერენცირებული გáƒáƒ™áƒ•áƒ”თილი:" +msgid "Choose the graded subsection:" +msgstr "" #. Translators: "format_string" is the string MM/DD/YYYY HH:MM, as that is the #. format the system requires. @@ -19003,6 +19034,10 @@ msgstr "" "მიუთითეთ გáƒáƒ“áƒáƒ®áƒ“ის თáƒáƒ იღისრდრდრáƒáƒ˜áƒ¡ გáƒáƒ’რძელებრ(UTC-ში; გთხáƒáƒ•áƒ— მიუთითáƒáƒ— " "{format_string})." +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Reason for extension" +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Change due date for student" msgstr "შეცვáƒáƒšáƒ”თ გáƒáƒ“áƒáƒ®áƒ“ის ვáƒáƒ“რსტუდენტისთვის" @@ -19013,19 +19048,15 @@ msgstr "მინიáƒáƒ”ბული გáƒáƒ’რძელების ნრ#: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "" -"Here you can see what extensions have been granted on particular units or " -"for a particular student." +"Here you can see what extensions have been granted on particular subsection " +"or for a particular student." msgstr "" -"áƒáƒ¥ თქვენ შეგიძლიáƒáƒ— ნáƒáƒ®áƒáƒ— თუ რრტიპის გáƒáƒ’რძელებები გáƒáƒ•áƒ ცელდრკáƒáƒœáƒ™áƒ ეტულ " -"გáƒáƒ™áƒ•áƒ”თილზე áƒáƒœ კáƒáƒœáƒ™áƒ ეტული სტუდენტისთვის." #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "" -"Choose a graded unit and click the button to obtain a list of all students " -"who have extensions for the given unit." +"Choose a graded subsection and click the button to obtain a list of all " +"students who have extensions for the given subsection." msgstr "" -"áƒáƒ˜áƒ ჩიეთ დიფერენცირებული გáƒáƒ™áƒ•áƒ”თილი დრდáƒáƒáƒ¬áƒ™áƒáƒžáƒ£áƒœáƒ”თ ღილáƒáƒ™áƒ–ე რáƒáƒ—რმáƒáƒªáƒ”მული " -"გáƒáƒ™áƒ•áƒ”თილისთვის იმ სტუდენტების სირმáƒáƒ˜áƒžáƒáƒ•áƒáƒ—, რáƒáƒ›áƒ”ლთáƒáƒª áƒáƒ¥áƒ•áƒ— გáƒáƒ’რძელებები." #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "List all students with due date extensions" @@ -19046,12 +19077,13 @@ msgstr "გáƒáƒ’რძელებების გáƒáƒ“áƒáƒ¢áƒ•áƒ˜áƒ თვ #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "" "Resetting a problem's due date rescinds a due date extension for a student " -"on a particular unit. This will revert the due date for the student back to " -"the problem's original due date." +"on a particular subsection. This will revert the due date for the student " +"back to the problem's original due date." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Reason for reset" msgstr "" -"áƒáƒ›áƒáƒªáƒáƒœáƒ˜áƒ¡ შესáƒáƒ¡áƒ ულებლáƒáƒ“ გáƒáƒ“áƒáƒ®áƒ“ის ვáƒáƒ“ის გáƒáƒ“áƒáƒ¢áƒ•áƒ˜áƒ თვრáƒáƒ£áƒ¥áƒ›áƒ”ბს სტუდენტისთვის " -"კáƒáƒœáƒ™áƒ ეტულ გáƒáƒ™áƒ•áƒ”თილზე ვáƒáƒ“ის გáƒáƒ’რძელებáƒáƒ¡. áƒáƒ›áƒ˜áƒ— გáƒáƒ“áƒáƒ®áƒ“ის ვáƒáƒ“რსტუდენტისთვის " -"áƒáƒ›áƒáƒªáƒáƒœáƒ˜áƒ¡ პირვáƒáƒœáƒ“ელ გáƒáƒ“áƒáƒ®áƒ“ის ვáƒáƒ“áƒáƒ¡ დáƒáƒ£áƒ‘რუნდებáƒ. " #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Reset due date for student" @@ -21227,10 +21259,6 @@ msgstr "" msgid "Explore journals and courses" msgstr "" -#: openedx/features/learner_analytics/templates/learner_analytics/dashboard.html -msgid "My Stats (Beta)" -msgstr "" - #. Translators: this section lists all the third-party authentication #. providers #. (for example, Google and LinkedIn) the user can link with or unlink from @@ -21332,7 +21360,7 @@ msgid "© 2012–{year} edX Inc. " msgstr "" #: themes/edx.org/lms/templates/footer.html -msgid "EdX, Open edX, and MicroMasters are registered trademarks of edX Inc. " +msgid "edX, Open edX, and MicroMasters are registered trademarks of edX Inc. " msgstr "" #: themes/edx.org/lms/templates/certificates/_about-accomplishments.html @@ -21398,7 +21426,7 @@ msgstr "" #: themes/edx.org/lms/templates/certificates/_accomplishment-footer.html msgid "" "All rights reserved except where noted. edX, Open edX and the edX and Open " -"edX logos are registered trademarks or trademarks of edX Inc." +"edX logos are registered trademarks of edX Inc." msgstr "" #: themes/edx.org/lms/templates/course_modes/choose.html @@ -21424,16 +21452,6 @@ msgstr "კურსების ძებნáƒ" msgid "Schools & Partners" msgstr "უნივერსიტეტები დრპáƒáƒ¢áƒ ნიáƒáƒ ები" -#. Translators: 'EdX', 'edX', and 'Open edX' are trademarks of 'edX Inc.'. -#. Please do not translate any of these trademarks and company names. -#: themes/red-theme/lms/templates/footer.html -msgid "" -"EdX, Open edX, and the edX and Open edX logos are registered trademarks or " -"trademarks of {link_start}edX Inc.{link_end}" -msgstr "" -"EdX, Open edX, დრedX დრOpen edX ლáƒáƒ’áƒáƒ”ბი áƒáƒ ის რეგისტრირებული სáƒáƒ•áƒáƒáƒ რ" -"ნიშნები áƒáƒœ {link_start}edX Inc.{link_end}-ის სáƒáƒ•áƒáƒáƒ რნიშნები." - #: themes/red-theme/lms/templates/footer.html msgid "" "{tos_link_start}Terms of Service{tos_link_end} and {honor_link_start}Honor " @@ -24841,9 +24859,6 @@ msgid "" "Thank you for signing up for {studio_name}! To activate your account, please" " copy and paste this address into your web browser's address bar:" msgstr "" -"გმáƒáƒ“ლáƒáƒ‘თ, რáƒáƒ› დáƒáƒ ეგისტრირდით {studio_name}-ში! თქვენი áƒáƒœáƒ’áƒáƒ იშის " -"გáƒáƒ¡áƒáƒáƒ¥áƒ¢áƒ˜áƒ£áƒ ებლáƒáƒ“, გთხáƒáƒ•áƒ—, დáƒáƒáƒ™áƒáƒžáƒ˜áƒ áƒáƒ— დრჩáƒáƒ¡áƒ•áƒáƒ— ეს მისáƒáƒ›áƒáƒ თი თქვენი ვებ " -"ბრáƒáƒ£áƒ–ერის მისáƒáƒ›áƒáƒ თის ზáƒáƒšáƒ¨áƒ˜:" #: cms/templates/emails/activation_email.txt msgid "" @@ -24851,14 +24866,10 @@ msgid "" " any more email from us. Please do not reply to this e-mail; if you require " "assistance, check the help section of the {studio_name} web site." msgstr "" -"თუ ეს áƒáƒ მáƒáƒ’ითხáƒáƒ•áƒ˜áƒáƒ—, თქვენი მხრიდáƒáƒœ áƒáƒ áƒáƒœáƒáƒ˜áƒ ი ქმედებრსáƒáƒáƒ˜áƒ რáƒáƒ áƒáƒ ის; თქვენ " -"áƒáƒ¦áƒáƒ მიიღებთ ჩვენგáƒáƒœ ელფáƒáƒ¡áƒ¢áƒáƒ¡. გთხáƒáƒ•áƒ—, áƒáƒ უპáƒáƒ¡áƒ£áƒ®áƒáƒ— áƒáƒ› ელ-შეტყáƒáƒ‘ინებáƒáƒ¡; თუ " -"დáƒáƒ®áƒ›áƒáƒ ებრგáƒáƒ˜áƒ დებáƒáƒ—, ეწვიეთ {studio_name}-ის ვებ სáƒáƒ˜áƒ¢áƒ¡ დრმáƒáƒœáƒáƒ®áƒ”თ დáƒáƒ®áƒ›áƒáƒ ების" -" გáƒáƒœáƒ§áƒáƒ¤áƒ˜áƒšáƒ”ბáƒ." #: cms/templates/emails/activation_email_subject.txt msgid "Your account for {studio_name}" -msgstr "თქვენი {studio_name}-ის áƒáƒœáƒ’áƒáƒ იში" +msgstr "" #: cms/templates/emails/course_creator_admin_subject.txt msgid "{email} has requested {studio_name} course creator privileges on edge" @@ -25013,17 +25024,6 @@ msgstr "" msgid "LMS" msgstr "" -#. Translators: 'EdX', 'edX', 'Studio', and 'Open edX' are trademarks of 'edX -#. Inc.'. Please do not translate any of these trademarks and company names. -#: cms/templates/widgets/footer.html -msgid "" -"EdX, Open edX, Studio, and the edX and Open edX logos are registered " -"trademarks or trademarks of {link_start}edX Inc.{link_end}" -msgstr "" -"EdX, Open edX, Studio, დრthe edX დრOpen edX ლáƒáƒ’áƒáƒ”ბი წáƒáƒ მáƒáƒáƒ“გენენ " -"რეგისტრირებულ სáƒáƒ•áƒáƒáƒ რნიშნებს, áƒáƒœ {link_start}edX Inc.{link_end}-ის სáƒáƒ•áƒáƒáƒ რ" -"ნიშნებს." - #: cms/templates/widgets/header.html msgid "Current Course:" msgstr "მიმდინáƒáƒ ე კურსი:" diff --git a/conf/locale/ka/LC_MESSAGES/djangojs.mo b/conf/locale/ka/LC_MESSAGES/djangojs.mo index e65c9e2a0b81bf55d858d63e1e05a36c18c56854..237d928dbf473447e3d39aea5c53a3432b673c2f 100644 Binary files a/conf/locale/ka/LC_MESSAGES/djangojs.mo and b/conf/locale/ka/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/ka/LC_MESSAGES/djangojs.po b/conf/locale/ka/LC_MESSAGES/djangojs.po index de81a455c5985c42df5b9734aabe667a3fd18d84..37b7bc5cc1674e18155a3aaee80675b683dbf028 100644 --- a/conf/locale/ka/LC_MESSAGES/djangojs.po +++ b/conf/locale/ka/LC_MESSAGES/djangojs.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: 2019-04-22 10:49+0000\n" +"POT-Creation-Date: 2019-06-09 20:42+0000\n" "PO-Revision-Date: 2019-02-10 20:45+0000\n" "Last-Translator: edx_transifex_bot <i18n-working-group+edx-transifex-bot@edx.org>\n" "Language-Team: Georgian (http://www.transifex.com/open-edx/edx-platform/language/ka/)\n" @@ -7508,6 +7508,10 @@ msgstr "დáƒáƒ“áƒáƒ¡áƒ¢áƒ£áƒ ებáƒ" msgid "Mark Exam As Completed" msgstr "ყველრგáƒáƒ›áƒáƒªáƒ“ის დáƒáƒ¡áƒ ულებულáƒáƒ“ მáƒáƒœáƒ˜áƒ¨áƒ•áƒœáƒ" +#: lms/templates/courseware/proctored-exam-status.underscore +msgid "You are taking \"{exam_link}\" as {exam_type}. " +msgstr "" + #: lms/templates/courseware/proctored-exam-status.underscore msgid "a timed exam" msgstr "" @@ -8299,8 +8303,9 @@ msgid "Register with Institution/Campus Credentials" msgstr "დáƒáƒ ეგისტრირდით ინსტიტუტის/კáƒáƒ›áƒžáƒ£áƒ¡áƒ˜áƒ¡ მáƒáƒœáƒáƒªáƒ”მებით" #: lms/templates/student_account/institution_register.underscore -msgid "Register through edX" -msgstr "დáƒáƒ ეგისტრირდით edX-ით" +#: lms/templates/student_account/register.underscore +msgid "Create an Account" +msgstr "" #: lms/templates/student_account/login.underscore msgid "First time here?" @@ -8410,10 +8415,6 @@ msgstr "áƒáƒœáƒ’áƒáƒ იშის შექმნრ%(providerName)s-ის msgid "or create a new one here" msgstr "áƒáƒœ შექმენით áƒáƒ®áƒáƒšáƒ˜ áƒáƒœáƒ’áƒáƒ იში áƒáƒ¥" -#: lms/templates/student_account/register.underscore -msgid "Create an Account" -msgstr "" - #: lms/templates/student_account/register.underscore msgid "Support education research by providing additional information" msgstr "" diff --git a/conf/locale/ko_KR/LC_MESSAGES/django.mo b/conf/locale/ko_KR/LC_MESSAGES/django.mo index 4e8afb54936813ee351133c98993bac1176d40d6..a4d55d1a58c115507dd4e8febb8572e40d476bcf 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/djangojs.mo b/conf/locale/ko_KR/LC_MESSAGES/djangojs.mo index 7955aeee7f331e5029d6be978b20c6b2831f4170..d0e1615d44e6d4aedd48ad48f567f3b0600a60dd 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/lt_LT/LC_MESSAGES/django.mo b/conf/locale/lt_LT/LC_MESSAGES/django.mo index 585a0c2d5bf1b28cfcb9fb094986d1c86e8a5c4e..ff9f3e7a509ca2e8754a692df91d2b9b487ee61a 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/djangojs.mo b/conf/locale/lt_LT/LC_MESSAGES/djangojs.mo index ccc6565a307c39766e342614b7bbe86d95c3989e..f9d035d94d79a784b75091ac5699a1354018035e 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/lv/LC_MESSAGES/django.mo b/conf/locale/lv/LC_MESSAGES/django.mo index c64ddd03fdd1ee3a1b6b12c6cf32bf8e716a37fe..101740a5424468f85ac632e01d578653f20b4082 100644 Binary files a/conf/locale/lv/LC_MESSAGES/django.mo and b/conf/locale/lv/LC_MESSAGES/django.mo differ diff --git a/conf/locale/lv/LC_MESSAGES/djangojs.mo b/conf/locale/lv/LC_MESSAGES/djangojs.mo index 3afe61fc06226ba0f65c3f219fee644df025ea50..ff5e0f240b6f6b1dbd1a4df6e4cc3a5d04fa913f 100644 Binary files a/conf/locale/lv/LC_MESSAGES/djangojs.mo and b/conf/locale/lv/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/mn/LC_MESSAGES/django.mo b/conf/locale/mn/LC_MESSAGES/django.mo index d51210a61c9f52916511b1d6a76e27c912efa6d3..d3b8006efd9be6373a9de0a37f628044b3ee0efd 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/djangojs.mo b/conf/locale/mn/LC_MESSAGES/djangojs.mo index f9b42cf4944ad09f4c3fe9956909d4012cf104b5..a9c6e0f4dce94fcbd3673ff4058dc33a66fc0efe 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/pl/LC_MESSAGES/django.mo b/conf/locale/pl/LC_MESSAGES/django.mo index f6095a383fac6ff4113c7e9a81f075cbf5c15bdf..38ac571be8174e3864f484cd20282673b5146776 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 64219a84d4f5e05ea91c1566799487ede0dc00de..3c7a02f8686b3e2678a5d1c9512b88efc48988b5 100644 --- a/conf/locale/pl/LC_MESSAGES/django.po +++ b/conf/locale/pl/LC_MESSAGES/django.po @@ -126,7 +126,7 @@ msgid "" msgstr "" "Project-Id-Version: 0.1a\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2019-04-22 10:50+0000\n" +"POT-Creation-Date: 2019-06-09 20:42+0000\n" "PO-Revision-Date: 2019-01-20 20:43+0000\n" "Last-Translator: Waheed Ahmed <waheed@edx.org>, 2019\n" "Language-Team: Polish (https://www.transifex.com/open-edx/teams/6205/pl/)\n" @@ -449,28 +449,6 @@ msgstr "Wybrano nieprawidÅ‚owÄ… ilość." msgid "No selected price or selected price is too low." msgstr "Nie wybrano ceny lub wybrana cena jest zbyt niska." -#: common/djangoapps/django_comment_common/models.py -msgid "Administrator" -msgstr "Administrator" - -#: common/djangoapps/django_comment_common/models.py -msgid "Moderator" -msgstr "Moderator" - -#: common/djangoapps/django_comment_common/models.py -msgid "Group Moderator" -msgstr "Moderator grupy" - -#: common/djangoapps/django_comment_common/models.py -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Community TA" -msgstr "Asystent spoÅ‚ecznoÅ›ci" - -#: common/djangoapps/django_comment_common/models.py -#: lms/djangoapps/instructor/paidcourse_enrollment_report.py -msgid "Student" -msgstr "Student" - #: common/djangoapps/student/admin.py msgid "User profile" msgstr "Profil użytkownika" @@ -534,8 +512,8 @@ msgid "A properly formatted e-mail is required" msgstr "Wymagany jest poprawny format adresu e-mail." #: common/djangoapps/student/forms.py -msgid "Your legal name must be a minimum of two characters long" -msgstr "Nazwa prawna musi siÄ™ skÅ‚adać z co najmniej dwóch znaków." +msgid "Your legal name must be a minimum of one character long" +msgstr "" #: common/djangoapps/student/forms.py #, python-format @@ -929,11 +907,11 @@ msgstr "Kurs, którego szukasz, od {date} ma zakoÅ„czonÄ… rekrutacjÄ™." #: common/djangoapps/student/views/management.py msgid "No inactive user with this e-mail exists" -msgstr "Nie istnieje nieaktywny użytkownik z tym adresem e-mail" +msgstr "" #: common/djangoapps/student/views/management.py msgid "Unable to send reactivation email" -msgstr "Nie udaÅ‚o siÄ™ wysÅ‚ać wiadomoÅ›ci e-mail dla potrzeb ponownej aktywacji" +msgstr "" #: common/djangoapps/student/views/management.py msgid "Course id not specified" @@ -1089,6 +1067,12 @@ msgstr "" "ZewnÄ™trzni operatorzy sÄ… wyÅ›wietlani na drugorzÄ™dnym miejscu, na oddzielnej " "liÅ›cie \"instytucjonalnych\" dostawców logowania." +#: common/djangoapps/third_party_auth/models.py +msgid "" +"optional. If this provider is an Organization, this attribute can be used " +"reference users in that Organization" +msgstr "" + #: common/djangoapps/third_party_auth/models.py msgid "The Site that this provider configuration belongs to." msgstr "Strona www do której należy ta konfiguracja operatora." @@ -3014,13 +2998,13 @@ msgstr "Mapowanie tematu dyskusji" msgid "" "Enter discussion categories in the following format: \"CategoryName\": " "{\"id\": \"i4x-InstitutionName-CourseNumber-course-CourseRun\"}. For " -"example, one discussion category may be \"Lydian Mode\": {\"id\": \"i4x-" -"UniversityX-MUS101-course-2015_T1\"}. The \"id\" value for each category " -"must be unique. In \"id\" values, the only special characters that are " -"supported are underscore, hyphen, and period. You can also specify a " +"example, one discussion category may be \"Lydian Mode\": {\"id\": " +"\"i4x-UniversityX-MUS101-course-2015_T1\"}. The \"id\" value for each " +"category must be unique. In \"id\" values, the only special characters that " +"are supported are underscore, hyphen, and period. You can also specify a " "category as the default for new posts in the Discussion page by setting its " -"\"default\" attribute to true. For example, \"Lydian Mode\": {\"id\": \"i4x-" -"UniversityX-MUS101-course-2015_T1\", \"default\": true}." +"\"default\" attribute to true. For example, \"Lydian Mode\": {\"id\": " +"\"i4x-UniversityX-MUS101-course-2015_T1\", \"default\": true}." msgstr "" "Wprowadź kategorie dyskusji w nastÄ™pujÄ…cym formacie: \"CategoryName\": " "{\"id\": \"i4x-InstitutionName-CourseNumber-course-CourseRun\"}. PrzykÅ‚adowa" @@ -3028,8 +3012,8 @@ msgstr "" "\"i4x-UniversityX-MUS101-course-2015_T1\"}. Wartość \"id\" musi być unikalna" " dla każdej kategorii. YMożesz także uznać kategoriÄ™ za domyÅ›lnÄ… dla nowych " "wpisów na stronie dyskusji poprzez ustawienie atrybutu \"default\" na true. " -"PrzykÅ‚ad: \"Lydian Mode\": {\"id\": \"i4x-UniversityX-MUS101-course-" -"2015_T1\", \"default\": true}." +"PrzykÅ‚ad: \"Lydian Mode\": {\"id\": \"i4x-UniversityX-" +"MUS101-course-2015_T1\", \"default\": true}." #: common/lib/xmodule/xmodule/course_module.py msgid "Discussion Sorting Alphabetical" @@ -5517,20 +5501,17 @@ msgstr "ProszÄ™ sprawdzić syntax swojego wpisu." msgid "Take free online courses at edX.org" msgstr "Weź udziaÅ‚ w bezpÅ‚atnych kursach online" -#. Translators: 'EdX', 'edX', and 'Open edX' are trademarks of 'edX Inc.'. +#. Translators: 'edX' and 'Open edX' are trademarks of 'edX Inc.'. #. Please do not translate any of these trademarks and company names. #: lms/djangoapps/branding/api.py #, python-brace-format msgid "" -"© {org_name}. All rights reserved except where noted. EdX, Open edX and " -"their respective logos are trademarks or registered trademarks of edX Inc." +"© {org_name}. All rights reserved except where noted. edX, Open edX and " +"their respective logos are registered trademarks of edX Inc." msgstr "" -"© {org_name}. Wszystkie prawa zastrzeżone, oprócz miejsc odrÄ™bnie " -"wskazanych. Logo EdX, Open edX, edX oraz Open edX sÄ… znakami towarowymi " -"należącymi do edX Inc." #. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# -#. Translators: 'Open edX' is a brand, please keep this untranslated. +#. Translators: 'Open edX' is a trademark, please keep this untranslated. #. See http://openedx.org for more information. #. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# #. Translators: 'Open edX' is a brand, please keep this untranslated. See @@ -6674,6 +6655,20 @@ msgstr "Twój certyfikat jest dostÄ™pny" msgid "To see course content, {sign_in_link} or {register_link}." msgstr "Aby wyÅ›wietlić treść kursu, {sign_in_link} lub {register_link}." +#: lms/djangoapps/courseware/views/views.py +#: openedx/features/course_experience/views/course_home_messages.py +#, python-brace-format +msgid "{sign_in_link} or {register_link}." +msgstr "" + +#: lms/djangoapps/courseware/views/views.py +#: openedx/features/course_experience/views/course_home_messages.py +#: lms/templates/header/navbar-not-authenticated.html +#: lms/templates/navigation/navbar-not-authenticated.html +#: themes/edx.org/lms/templates/header/navbar-not-authenticated.html +msgid "Sign in" +msgstr "Zaloguj siÄ™" + #: lms/djangoapps/courseware/views/views.py #, python-brace-format msgid "" @@ -6793,10 +6788,8 @@ msgstr "" #: lms/djangoapps/dashboard/git_import.py msgid "" "Non usable git url provided. Expecting something like: " -"git@github.com:mitocw/edx4edx_lite.git" +"git@github.com:edx/edx4edx_lite.git" msgstr "" -"Wprowadzono niedziaÅ‚ajÄ…cy odnoÅ›nik do git. Spodziewano siÄ™ czegoÅ› w rodzaju:" -" git@github.com:mitocw/edx4edx_lite.git" #: lms/djangoapps/dashboard/git_import.py msgid "Unable to get git log" @@ -6981,49 +6974,49 @@ msgstr "rola" msgid "full_name" msgstr "full_name" -#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.html -#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.txt -#, python-format -msgid "%(comment_username)s replied to <b>%(thread_title)s</b>:" -msgstr "" - -#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.html -#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.txt -msgid "View discussion" -msgstr "WyÅ›wietl dyskusjÄ™" - -#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/subject.txt -#, python-format -msgid "Response to %(thread_title)s" -msgstr "" - -#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/discussion/django_comment_client/base/views.py msgid "Title can't be empty" msgstr "TytuÅ‚ nie może być pusty" -#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/discussion/django_comment_client/base/views.py msgid "Body can't be empty" msgstr "Zawartość nie może być pusta" -#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/discussion/django_comment_client/base/views.py msgid "Topic doesn't exist" msgstr "Temat nie istnieje" -#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/discussion/django_comment_client/base/views.py msgid "Comment level too deep" msgstr "Zbyt wiele zagnieżdżeÅ„ komentarzy" -#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/discussion/django_comment_client/base/views.py msgid "" "Error uploading file. Please contact the site administrator. Thank you." msgstr "" "BÅ‚Ä…d przesyÅ‚ania pliku. ProszÄ™ skontaktować siÄ™ z administratorem portalu. " "DziÄ™kujemy" -#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/discussion/django_comment_client/base/views.py msgid "Good" msgstr "Dobrze" +#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.html +#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.txt +#, python-format +msgid "%(comment_username)s replied to <b>%(thread_title)s</b>:" +msgstr "" + +#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.html +#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.txt +msgid "View discussion" +msgstr "WyÅ›wietl dyskusjÄ™" + +#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/subject.txt +#, python-format +msgid "Response to %(thread_title)s" +msgstr "" + #: lms/djangoapps/edxnotes/helpers.py msgid "EdxNotes Service is unavailable. Please try again in a few minutes." msgstr "" @@ -7152,6 +7145,11 @@ msgstr "Zespół {platform_name}" msgid "Course Staff" msgstr "Kadra kursu" +#: lms/djangoapps/instructor/paidcourse_enrollment_report.py +#: openedx/core/djangoapps/django_comment_common/models.py +msgid "Student" +msgstr "Student" + #: lms/djangoapps/instructor/paidcourse_enrollment_report.py #: lms/templates/preview_menu.html #: lms/templates/instructor/instructor_dashboard_2/membership.html @@ -8001,12 +7999,6 @@ msgstr "" "PrzedÅ‚użony termin koÅ„cowy musi posiadać późniejszÄ… datÄ™ niż oryginalny " "termin." -#: lms/djangoapps/instructor/views/tools.py -msgid "No due date extension is set for that student and unit." -msgstr "" -"Brak ustalonego przedÅ‚użenia terminu koÅ„cowego dla wybranego studenta i " -"lekcji." - #. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# #. Translators: This label appears above a field on the registration form #. meant to hold the user's full name. @@ -8493,6 +8485,10 @@ msgstr "" msgid "My Notes" msgstr "Moje notatki" +#: lms/djangoapps/program_enrollments/models.py +msgid "One of user or external_user_key must not be null." +msgstr "" + #: lms/djangoapps/shoppingcart/models.py msgid "Order Payment Confirmation" msgstr "Potwierdzenie pÅ‚atnoÅ›ci za zamówienie" @@ -9518,8 +9514,8 @@ msgstr "Nie znaleziono profilu użytkownika" #: lms/djangoapps/verify_student/views.py #, python-brace-format -msgid "Name must be at least {min_length} characters long." -msgstr "Nazwa musi mieć co najmniej {min_length} znaków dÅ‚ugoÅ›ci." +msgid "Name must be at least {min_length} character long." +msgstr "" #: lms/djangoapps/verify_student/views.py msgid "Image data is not valid." @@ -9950,8 +9946,9 @@ msgid "Hello %(full_name)s," msgstr "" #: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt #, python-format -msgid "Your %(platform_name)s ID verification has expired.\" " +msgid "Your %(platform_name)s ID verification has expired. " msgstr "" #: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html @@ -10002,11 +9999,6 @@ msgstr "" msgid "Hello %(full_name)s, " msgstr "" -#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt -#, python-format -msgid "Your %(platform_name)s ID verification has expired. " -msgstr "" - #: lms/templates/verify_student/edx_ace/verificationexpiry/email/subject.txt #, python-format msgid "Your %(platform_name)s Verification has Expired" @@ -10628,15 +10620,6 @@ msgstr "Adres strony www powiÄ…zanej z tym użytkownikiem API." msgid "The reason this user wants to access the API." msgstr "Powód dla którego użytkownik żąda dostÄ™pu do API." -#: openedx/core/djangoapps/api_admin/models.py -#, python-brace-format -msgid "API access request from {company}" -msgstr "Żądanie dostÄ™pu do API od {company}" - -#: openedx/core/djangoapps/api_admin/models.py -msgid "API access request" -msgstr "Żądanie dostÄ™pu do API" - #: openedx/core/djangoapps/api_admin/widgets.py #, python-brace-format msgid "" @@ -10997,6 +10980,23 @@ msgstr "To jest testowe ostrzeżenie" msgid "This is a test error" msgstr "To jest testowy bÅ‚Ä…d" +#: openedx/core/djangoapps/django_comment_common/models.py +msgid "Administrator" +msgstr "Administrator" + +#: openedx/core/djangoapps/django_comment_common/models.py +msgid "Moderator" +msgstr "Moderator" + +#: openedx/core/djangoapps/django_comment_common/models.py +msgid "Group Moderator" +msgstr "Moderator grupy" + +#: openedx/core/djangoapps/django_comment_common/models.py +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Community TA" +msgstr "Asystent spoÅ‚ecznoÅ›ci" + #: openedx/core/djangoapps/embargo/forms.py #: openedx/core/djangoapps/verified_track_content/forms.py msgid "COURSE NOT FOUND. Please check that the course ID is valid." @@ -11572,11 +11572,12 @@ msgid "Specialty" msgstr "Specjalność" #: openedx/core/djangoapps/user_api/accounts/utils.py +#, python-brace-format msgid "" -" Make sure that you are providing a valid username or a URL that contains \"" +"Make sure that you are providing a valid username or a URL that contains " +"\"{url_stub}\". To remove the link from your edX profile, leave this field " +"blank." msgstr "" -"Upewnij siÄ™, że podajesz poprawnÄ… nazwÄ™ użytkownika lub adres URL " -"zawierajÄ…cy" #: openedx/core/djangoapps/user_api/accounts/views.py #: openedx/core/djangoapps/user_authn/views/login.py @@ -11719,11 +11720,11 @@ msgstr "Musisz zaakceptować {terms_of_service} {platform_name}" #: openedx/core/djangoapps/user_api/api.py #, python-brace-format msgid "" -"By creating an account with {platform_name}, you agree to " -"abide by our {platform_name} " +"By creating an account, you agree to the " "{terms_of_service_link_start}{terms_of_service}{terms_of_service_link_end}" -" and agree to our {privacy_policy_link_start}Privacy " -"Policy{privacy_policy_link_end}." +" and you acknowledge that {platform_name} and each Member " +"process your personal data in accordance with the " +"{privacy_policy_link_start}Privacy Policy{privacy_policy_link_end}." msgstr "" #. Translators: "Terms of service" is a legal document users must agree to @@ -12170,18 +12171,18 @@ msgstr "AktualnoÅ›ci" msgid "Reviews" msgstr "Opinie" +#: openedx/features/course_experience/utils.py +#, no-python-format, python-brace-format +msgid "" +"{banner_open}{percentage}% off your first upgrade.{span_close} Discount " +"automatically applied.{div_close}" +msgstr "" + #: openedx/features/course_experience/views/course_home_messages.py #, python-brace-format msgid "{sign_in_link} or {register_link} and then enroll in this course." msgstr "" -#: openedx/features/course_experience/views/course_home_messages.py -#: lms/templates/header/navbar-not-authenticated.html -#: lms/templates/navigation/navbar-not-authenticated.html -#: themes/edx.org/lms/templates/header/navbar-not-authenticated.html -msgid "Sign in" -msgstr "Zaloguj siÄ™" - #: openedx/features/course_experience/views/course_home_messages.py #, python-brace-format msgid "Welcome to {course_display_name}" @@ -12221,6 +12222,29 @@ msgstr "{choice}" msgid "Set goal to: {goal_text}" msgstr "" +#: openedx/features/discounts/admin.py +msgid "" +"These define the context to disable lms-controlled discounts on. If no " +"values are set, then the configuration applies globally. If a single value " +"is set, then the configuration applies to all courses within that context. " +"At most one value can be set at a time.<br>If multiple contexts apply to a " +"course (for example, if configuration is specified for the course " +"specifically, and for the org that the course is in, then the more specific " +"context overrides the more general context." +msgstr "" + +#: openedx/features/discounts/admin.py +msgid "" +"If any of these values is left empty or \"Unknown\", then their value at " +"runtime will be retrieved from the next most specific context that applies. " +"For example, if \"Disabled\" is left as \"Unknown\" in the course context, " +"then that course will be Disabled only if the org that it is in is Disabled." +msgstr "" + +#: openedx/features/discounts/models.py +msgid "Disabled" +msgstr "" + #: openedx/features/enterprise_support/api.py #, python-brace-format msgid "Enrollment in {course_title} was not complete." @@ -12336,10 +12360,8 @@ msgstr "" #: cms/djangoapps/contentstore/git_export_utils.py msgid "" "Non writable git url provided. Expecting something like: " -"git@github.com:mitocw/edx4edx_lite.git" +"git@github.com:edx/edx4edx_lite.git" msgstr "" -"Wskazany git url nie daje siÄ™ odczytać. Spodziewano siÄ™ czegoÅ› w stylu: " -"git@github.com:mitocw/edx4edx_lite.git" #: cms/djangoapps/contentstore/git_export_utils.py msgid "" @@ -13214,6 +13236,15 @@ msgstr "Zresetuj" msgid "Legal" msgstr "Informacje prawne" +#. Translators: 'edX' and 'Open edX' are trademarks of 'edX Inc.'. Please do +#. not translate any of these trademarks and company names. +#: cms/templates/widgets/footer.html +#: themes/red-theme/lms/templates/footer.html +msgid "" +"edX, Open edX, and the edX and Open edX logos are registered trademarks of " +"{link_start}edX Inc.{link_end}" +msgstr "" + #: cms/templates/widgets/header.html lms/templates/header/header.html #: lms/templates/navigation/navigation.html #: lms/templates/widgets/footer-language-selector.html @@ -13613,6 +13644,10 @@ msgstr "Debug: " msgid "External Authentication failed" msgstr "ZewnÄ™trzna autoryzacja nie powiodÅ‚a siÄ™" +#: lms/templates/footer.html +msgid "organization logo" +msgstr "" + #: lms/templates/forgot_password_modal.html msgid "" "Please enter your e-mail address below, and we will e-mail instructions for " @@ -13826,17 +13861,15 @@ msgstr "" msgid "Search for a course" msgstr "Szukaj kursu" -#. Translators: 'Open edX' is a registered trademark, please keep this -#. untranslated. See http://open.edx.org for more information. -#: lms/templates/index_overlay.html -msgid "Welcome to the Open edX{registered_trademark} platform!" -msgstr "Witamy na platformie {registered_trademark}!" +#: lms/templates/index_overlay.html lms/templates/register-sidebar.html +msgid "Welcome to {platform_name}" +msgstr "Witamy w {platform_name}" #. Translators: 'Open edX' is a registered trademark, please keep this #. untranslated. See http://open.edx.org for more information. #: lms/templates/index_overlay.html -msgid "It works! This is the default homepage for this Open edX instance." -msgstr "DziaÅ‚a! To jest domyÅ›lna strona startowa instancji Open edX." +msgid "It works! Powered by Open edX{registered_trademark}" +msgstr "" #: lms/templates/invalid_email_key.html msgid "Invalid email change key" @@ -14149,6 +14182,10 @@ msgstr "Zapisz odpowiedź" msgid "Reset your answer" msgstr "Zresetuj odpowiedź" +#: lms/templates/problem.html +msgid "Answers are displayed within the problem" +msgstr "" + #: lms/templates/problem_notifications.html msgid "Next Hint" msgstr "Kolejna podpowiedź" @@ -14355,10 +14392,6 @@ msgstr "JesteÅ› już zarejestrowany/a?" msgid "Log in" msgstr "Zaloguj siÄ™" -#: lms/templates/register-sidebar.html -msgid "Welcome to {platform_name}" -msgstr "Witamy w {platform_name}" - #: lms/templates/register-sidebar.html msgid "" "Registering with {platform_name} gives you access to all of our current and " @@ -14727,11 +14760,6 @@ msgstr "ID lub Å›cieżka kursu" msgid "Delete course from site" msgstr "UsuÅ„ kurs ze strony" -#. Translators: A version number appears after this string -#: lms/templates/sysadmin_dashboard.html -msgid "Platform Version" -msgstr "Wersja platformy" - #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Page {current_page} of {total_pages}" msgstr "Strona {current_page} z {total_pages}" @@ -16057,6 +16085,20 @@ msgstr "Wczytywanie danych zamówienia..." msgid "Please wait while we retrieve your order details." msgstr "ProszÄ™ poczekać aż pobierzemy szczegóły zamówienia." +#: lms/templates/course_modes/_upgrade_button.html +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/_upgrade_button.html +#: themes/edx.org/lms/templates/course_modes/choose.html +msgid "Pursue the Verified Track" +msgstr "" + +#: lms/templates/course_modes/_upgrade_button.html +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/_upgrade_button.html +#: themes/edx.org/lms/templates/course_modes/choose.html +msgid "Pursue a Verified Certificate" +msgstr "Uzyskaj Potwierdzony Certyfikat" + #: lms/templates/course_modes/choose.html #: themes/edx.org/lms/templates/course_modes/choose.html msgid "Enroll In {course_name} | Choose Your Track" @@ -16148,16 +16190,6 @@ msgstr "" "{b_start}Weryfikowalny:{b_end} Dodaj certyfikat do swojego CV lub zamieść w " "wersji elektronicznej na LinkedIn." -#: lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -msgid "Pursue a Verified Certificate" -msgstr "Uzyskaj Potwierdzony Certyfikat" - -#: lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -msgid "Pursue the Verified Track" -msgstr "" - #: lms/templates/course_modes/choose.html #: themes/edx.org/lms/templates/course_modes/choose.html msgid "" @@ -16278,6 +16310,10 @@ msgstr "Ta zawartość podlega ocenie" msgid "An error occurred. Please try again later." msgstr "WystÄ…piÅ‚ bÅ‚Ä…d. Spróbuj ponownie później." +#: lms/templates/courseware/course_about.html +msgid "An error has occurred. Please ensure that you are logged in to enroll." +msgstr "" + #: lms/templates/courseware/course_about.html msgid "You are enrolled in this course" msgstr "JesteÅ› zapisany na ten kurs" @@ -16423,7 +16459,6 @@ msgstr "Doprecyzuj wyszukiwanie" #: lms/templates/courseware/courseware-chromeless.html #: lms/templates/courseware/courseware.html #: openedx/features/course_bookmarks/templates/course_bookmarks/course-bookmarks.html -#: openedx/features/learner_analytics/templates/learner_analytics/dashboard.html msgid "{course_number} Courseware" msgstr "TreÅ›ci szkoleniowe kursu {course_number}" @@ -16657,8 +16692,8 @@ msgid "View Grading in studio" msgstr "WyÅ›wietl system oceniania w Studio" #: lms/templates/courseware/progress.html -msgid "Course Progress for Student '{username}' ({email})" -msgstr "PostÄ™p w kursie studenta '{username}' ({email})" +msgid "Course Progress for '{username}' ({email})" +msgstr "" #: lms/templates/courseware/progress.html msgid "View Certificate" @@ -17647,35 +17682,26 @@ msgid "" "engaging, high-quality {platform_name} courses. Note that you will not be " "able to log back into your account until you have activated it." msgstr "" -"Już prawie koniec! Użyj poniższego odnoÅ›nika w celu aktywowania swojego " -"konta i uzyskania dostÄ™pu do znakomitych kursów oferowanych na platformie " -"{platform_name}. Miej na uwadze, że niemożliwe bÄ™dzie zalogowanie siÄ™ bez " -"uprzedniego aktywowania konta." #: lms/templates/emails/activation_email.txt msgid "Enjoy learning with {platform_name}." -msgstr "Å»yczymy przyjemnej nauki w {platform_name}." +msgstr "" #: lms/templates/emails/activation_email.txt msgid "" "If you need help, please use our web form at {support_url} or email " "{support_email}." msgstr "" -"Jeżeli potrzebujesz pomocy, wypeÅ‚nij formularz kontaktowy na stronie " -"{support_url} lub wyÅ›lij e-mail na adres {support_email}." #: lms/templates/emails/activation_email.txt msgid "" "This email message was automatically sent by {lms_url} because someone " "attempted to create an account on {platform_name} using this email address." msgstr "" -"Ta wiadomość e-mail zostaÅ‚a wysÅ‚ana automatycznie przez {lms_url}, ponieważ " -"ktoÅ› próbowaÅ‚ utworzyć konto na platformie {platform_name} podajÄ…c ten adres" -" e-mail." #: lms/templates/emails/activation_email_subject.txt msgid "Action Required: Activate your {platform_name} account" -msgstr "Wymagana czynność: aktywuj swoje konto na platformie {platform_name}" +msgstr "" #: lms/templates/emails/business_order_confirmation_email.txt msgid "Thank you for your purchase of " @@ -18779,15 +18805,9 @@ msgstr "Raporty dostÄ™pne do pobrania" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The reports listed below are available for download. A link to every report " -"remains available on this page, identified by the UTC date and time of " -"generation. Reports are not deleted, so you will always be able to access " -"previously generated reports from this page." +"The reports listed below are available for download, identified by UTC date " +"and time of generation." msgstr "" -"Poniżej wyszczególnione raporty sÄ… dostÄ™pne do pobrania. OdnoÅ›nik do każdego" -" raportu pozostaje dostÄ™pny na tej stronie wraz z informacjÄ… o dacie i " -"czasie jego sporzÄ…dzenia. Raporty nie sÄ… usuwane, dlatego na tej stronie " -"uzyskasz staÅ‚y dostÄ™p do wygenerowanych wczeÅ›niej zestawieÅ„." #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" @@ -18803,13 +18823,13 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"{strong_start}Note{strong_end}: To keep student data secure, you cannot save" -" or email these links for direct access. Copies of links expire within 5 " -"minutes." +"{strong_start}Note{strong_end}: {ul_start}{li_start}To keep student data " +"secure, you cannot save or email these links for direct access. Copies of " +"links expire within 5 minutes.{li_end}{li_start}Report files are deleted 90 " +"days after generation. If you will need access to old reports, download and " +"store the files, in accordance with your institution's data security " +"policies.{li_end}{ul_end}" msgstr "" -"{strong_start}Uwaga{strong_end}: Dla bezpieczeÅ„stwa danych studentów, nie " -"można zapisywać lub wysyÅ‚ać e-mailem odnoÅ›ników do bezpoÅ›redniego dostÄ™pu. " -"Kopie odnoÅ›ników wygasajÄ… w ciÄ…gu 5 minut." #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Enrollment Codes" @@ -19200,15 +19220,11 @@ msgstr "Indywidualne wydÅ‚użenia terminów koÅ„cowych" #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "" -"In this section, you have the ability to grant extensions on specific units " -"to individual students. Please note that the latest date is always taken; " -"you cannot use this tool to make an assignment due earlier for a particular " -"student." +"In this section, you have the ability to grant extensions on specific " +"subsections to individual students. Please note that the latest date is " +"always taken; you cannot use this tool to make an assignment due earlier for" +" a particular student." msgstr "" -"Z poziomu tej strony masz możliwość przyznania pojedynczym studentom " -"wydÅ‚użenia terminów na wykonanie okreÅ›lonego zadania. ProszÄ™ wziąć pod " -"uwagÄ™, że można zmienić datÄ™ wyÅ‚Ä…cznie na późniejszÄ…; nie możesz użyć tego " -"narzÄ™dzia, aby przyspieszyć termin wykonania pracy." #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "" @@ -19220,8 +19236,8 @@ msgid "Student Email or Username" msgstr "Adres e-mail studenta lub nazwa użytkownika" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -msgid "Choose the graded unit:" -msgstr "Wybierz moduÅ‚ dla wydÅ‚użanego terminu:" +msgid "Choose the graded subsection:" +msgstr "" #. Translators: "format_string" is the string MM/DD/YYYY HH:MM, as that is the #. format the system requires. @@ -19233,6 +19249,10 @@ msgstr "" "OkreÅ›l datÄ™ i czas wydÅ‚użonego terminu (czas UTC; proszÄ™ wskazać wedÅ‚ug " "formatu {format_string})." +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Reason for extension" +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Change due date for student" msgstr "ZmieÅ„ termin koÅ„cowy dla studenta" @@ -19243,20 +19263,15 @@ msgstr "PodglÄ…d przyznanych wydÅ‚użeÅ„ terminów" #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "" -"Here you can see what extensions have been granted on particular units or " -"for a particular student." +"Here you can see what extensions have been granted on particular subsection " +"or for a particular student." msgstr "" -"W tym miejscu możesz sprawdzić jakie wydÅ‚użenia terminów zostaÅ‚y przyznane " -"dla wybranych modułów lub dla poszczególnych studentów." #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "" -"Choose a graded unit and click the button to obtain a list of all students " -"who have extensions for the given unit." +"Choose a graded subsection and click the button to obtain a list of all " +"students who have extensions for the given subsection." msgstr "" -"Wybierz moduÅ‚ podlegajÄ…cy ocenie i kliknij na przycisk, aby uzyskać listÄ™ " -"wszystkich studentów, którzy otrzymali wydÅ‚użenie terminu dla wybranego " -"moduÅ‚u." #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "List all students with due date extensions" @@ -19277,12 +19292,13 @@ msgstr "Resetowanie wydÅ‚użeÅ„ terminów" #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "" "Resetting a problem's due date rescinds a due date extension for a student " -"on a particular unit. This will revert the due date for the student back to " -"the problem's original due date." +"on a particular subsection. This will revert the due date for the student " +"back to the problem's original due date." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Reason for reset" msgstr "" -"Zresetowanie terminu koÅ„cowego ćwiczenia spowoduje anulowanie wydÅ‚użenia " -"terminu dla studenta dla wybranego ćwiczenia. Poskutkuje to przywróceniem " -"terminu koÅ„cowego do oryginalnego terminu ustalonego dla ćwiczenia." #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Reset due date for student" @@ -21488,10 +21504,6 @@ msgstr "" msgid "Explore journals and courses" msgstr "" -#: openedx/features/learner_analytics/templates/learner_analytics/dashboard.html -msgid "My Stats (Beta)" -msgstr "" - #. Translators: this section lists all the third-party authentication #. providers #. (for example, Google and LinkedIn) the user can link with or unlink from @@ -21595,7 +21607,7 @@ msgid "© 2012–{year} edX Inc. " msgstr "" #: themes/edx.org/lms/templates/footer.html -msgid "EdX, Open edX, and MicroMasters are registered trademarks of edX Inc. " +msgid "edX, Open edX, and MicroMasters are registered trademarks of edX Inc. " msgstr "" #: themes/edx.org/lms/templates/certificates/_about-accomplishments.html @@ -21667,10 +21679,8 @@ msgstr "edX Inc." #: themes/edx.org/lms/templates/certificates/_accomplishment-footer.html msgid "" "All rights reserved except where noted. edX, Open edX and the edX and Open " -"edX logos are registered trademarks or trademarks of edX Inc." +"edX logos are registered trademarks of edX Inc." msgstr "" -"Wszelkie prawa zastrzeżone. edX, Open edX i edX i Open edX sÄ… " -"zarejestrowanymi i zastrzeżonymi znakami towarowymi edX Inc." #: themes/edx.org/lms/templates/course_modes/choose.html msgid "" @@ -21695,16 +21705,6 @@ msgstr "PrzeglÄ…daj kursy" msgid "Schools & Partners" msgstr "Uczelnie i partnerzy" -#. Translators: 'EdX', 'edX', and 'Open edX' are trademarks of 'edX Inc.'. -#. Please do not translate any of these trademarks and company names. -#: themes/red-theme/lms/templates/footer.html -msgid "" -"EdX, Open edX, and the edX and Open edX logos are registered trademarks or " -"trademarks of {link_start}edX Inc.{link_end}" -msgstr "" -"Logo EdX i Open edX sÄ… znakami towarowymi należącymi do {link_start}edX " -"Inc.{link_end}" - #: themes/red-theme/lms/templates/footer.html msgid "" "{tos_link_start}Terms of Service{tos_link_end} and {honor_link_start}Honor " @@ -25189,9 +25189,6 @@ msgid "" "Thank you for signing up for {studio_name}! To activate your account, please" " copy and paste this address into your web browser's address bar:" msgstr "" -"DziÄ™kujemy za rejestracjÄ™ w {studio_name}! Aby aktywować swoje konto, proszÄ™" -" skopiować i wkleić poniższy adres internetowy do pola adresowego swojej " -"przeglÄ…darki:" #: cms/templates/emails/activation_email.txt msgid "" @@ -25199,13 +25196,10 @@ msgid "" " any more email from us. Please do not reply to this e-mail; if you require " "assistance, check the help section of the {studio_name} web site." msgstr "" -"JeÅ›li to nie ty zakÅ‚adaÅ‚eÅ› konto, nie musisz nic robić; nie otrzymasz od nas" -" kolejnych e-maili. Uprzejmie prosimy o nieodpowiadanie na tÄ™ wiadomość; " -"jeÅ›li potrzebujesz pomocy, odwiedź sekcjÄ™ pomocy na stronie {studio_name}." #: cms/templates/emails/activation_email_subject.txt msgid "Your account for {studio_name}" -msgstr "Twoje konto do {studio_name}." +msgstr "" #: cms/templates/emails/course_creator_admin_subject.txt msgid "{email} has requested {studio_name} course creator privileges on edge" @@ -25371,16 +25365,6 @@ msgstr "Żądanie osadzenia dostÄ™pnoÅ›ci" msgid "LMS" msgstr "" -#. Translators: 'EdX', 'edX', 'Studio', and 'Open edX' are trademarks of 'edX -#. Inc.'. Please do not translate any of these trademarks and company names. -#: cms/templates/widgets/footer.html -msgid "" -"EdX, Open edX, Studio, and the edX and Open edX logos are registered " -"trademarks or trademarks of {link_start}edX Inc.{link_end}" -msgstr "" -"Logo EdX, Open edX, Studio, oraz edX sÄ… zastrzeżonymi znakami handlowymi " -"należącymi do {link_start}edX Inc.{link_end}" - #: cms/templates/widgets/header.html msgid "Current Course:" msgstr "Obecny kurs:" diff --git a/conf/locale/pl/LC_MESSAGES/djangojs.mo b/conf/locale/pl/LC_MESSAGES/djangojs.mo index b629cc96a439cd3bf5e1005041c64503b2dc7676..238f48824bce13376103c5633a0191961057d8c5 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 281f51218299af6147dacd61f900dcd3c66db81d..79058d608b9a5cb3c3df9afacaedd7b0ff90bfc9 100644 --- a/conf/locale/pl/LC_MESSAGES/djangojs.po +++ b/conf/locale/pl/LC_MESSAGES/djangojs.po @@ -94,7 +94,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2019-04-22 10:49+0000\n" +"POT-Creation-Date: 2019-06-09 20:42+0000\n" "PO-Revision-Date: 2019-02-10 20:45+0000\n" "Last-Translator: edx_transifex_bot <i18n-working-group+edx-transifex-bot@edx.org>\n" "Language-Team: Polish (http://www.transifex.com/open-edx/edx-platform/language/pl/)\n" @@ -7770,6 +7770,10 @@ msgstr "Potwierdź teraz" msgid "Mark Exam As Completed" msgstr "Oznacz egzamin jako ukoÅ„czony" +#: lms/templates/courseware/proctored-exam-status.underscore +msgid "You are taking \"{exam_link}\" as {exam_type}. " +msgstr "" + #: lms/templates/courseware/proctored-exam-status.underscore msgid "a timed exam" msgstr "" @@ -8572,8 +8576,9 @@ msgid "Register with Institution/Campus Credentials" msgstr "Zarejestruj siÄ™ przez system swojej uczelni" #: lms/templates/student_account/institution_register.underscore -msgid "Register through edX" -msgstr "Zarejestruj siÄ™ przez edX" +#: lms/templates/student_account/register.underscore +msgid "Create an Account" +msgstr "Utwórz konto" #: lms/templates/student_account/login.underscore msgid "First time here?" @@ -8687,10 +8692,6 @@ msgstr "Utwórz konto używajÄ…c %(providerName)s." msgid "or create a new one here" msgstr "lub w tym miejscu utwórz nowe" -#: lms/templates/student_account/register.underscore -msgid "Create an Account" -msgstr "Utwórz konto" - #: lms/templates/student_account/register.underscore msgid "Support education research by providing additional information" msgstr "Wspieraj badania edukacyjne udostÄ™pniajÄ…c dodatkowe informacje" diff --git a/conf/locale/pt_BR/LC_MESSAGES/django.mo b/conf/locale/pt_BR/LC_MESSAGES/django.mo index 6854b1b252503f02c73fe0b24c1542af4a6a52f7..3b3598ff06168b516fa97717a2a9250cfa7652c3 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/djangojs.mo b/conf/locale/pt_BR/LC_MESSAGES/djangojs.mo index 74a3eb52fd5c54ac4301233262ffadfc69e82762..efac48286969fb257581396c21095d5f07f515c7 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 f80d70903a0cb75c7659c7eaf834a4caf59213b9..9d603fb711cf02239fab4f203abda0bc830fa03a 100644 --- a/conf/locale/pt_BR/LC_MESSAGES/djangojs.po +++ b/conf/locale/pt_BR/LC_MESSAGES/djangojs.po @@ -71,7 +71,7 @@ # Piero Lunelli, 2018 # RenataBarboza, 2013 # Renata Barboza, 2013-2016 -# Renato Monteiro <renato_city@yahoo.com.br>, 2019 +# Renato Monteiro da Silva <renato_city@yahoo.com.br>, 2019 # Ricardo Pietrobon <pietr007@gmail.com>, 2013-2014 # RODRIGOR77 <rodrigo_magalhaes_rodrigues_alve@yahoo.com.br>, 2014 # RODRIGOR77 <rodrigo_magalhaes_rodrigues_alve@yahoo.com.br>, 2014 @@ -192,6 +192,7 @@ # Monica Farias <monifar.tp@gmail.com>, 2015-2016 # Drew Melim <nokostya.translation@gmail.com>, 2015 # Piero Lunelli, 2018 +# Renato Monteiro da Silva <renato_city@yahoo.com.br>, 2019 # Sergio Silva <sergiohrs@gmail.com>, 2016 # sgtmarciosilva <sgtmarciosilva@ibest.com.br>, 2015 # Thiago Perrotta <tbperrotta@gmail.com>, 2016 @@ -228,6 +229,7 @@ # Paulo Romano <pauloromanocarvalho@gmail.com>, 2017 # Piero Lunelli, 2018 # Renata Barboza, 2015 +# Renato Monteiro da Silva <renato_city@yahoo.com.br>, 2019 # Ricardo Pietrobon <pietr007@gmail.com>, 2014 # Rodrigo Mozelli <romozelli@outlook.com>, 2016 # Victor Hochgreb <victorfeec@gmail.com>, 2015 @@ -237,9 +239,9 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2019-04-22 10:49+0000\n" -"PO-Revision-Date: 2019-04-17 22:49+0000\n" -"Last-Translator: Renato Monteiro <renato_city@yahoo.com.br>\n" +"POT-Creation-Date: 2019-06-09 20:42+0000\n" +"PO-Revision-Date: 2019-04-25 22:44+0000\n" +"Last-Translator: Renato Monteiro da Silva <renato_city@yahoo.com.br>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/open-edx/edx-platform/language/pt_BR/)\n" "Language: pt_BR\n" "MIME-Version: 1.0\n" @@ -7604,6 +7606,10 @@ msgstr "Verifique agora" msgid "Mark Exam As Completed" msgstr "Marcar avaliação como completa" +#: lms/templates/courseware/proctored-exam-status.underscore +msgid "You are taking \"{exam_link}\" as {exam_type}. " +msgstr "" + #: lms/templates/courseware/proctored-exam-status.underscore msgid "a timed exam" msgstr "" @@ -8381,8 +8387,9 @@ msgid "Register with Institution/Campus Credentials" msgstr "Cadastrar com Credenciais de Instituição/Campus" #: lms/templates/student_account/institution_register.underscore -msgid "Register through edX" -msgstr "Cadastrar pelo edX" +#: lms/templates/student_account/register.underscore +msgid "Create an Account" +msgstr "" #: lms/templates/student_account/login.underscore msgid "First time here?" @@ -8491,10 +8498,6 @@ msgstr "Criar uma conta usando %(providerName)s." msgid "or create a new one here" msgstr "ou criar uma nova aqui" -#: lms/templates/student_account/register.underscore -msgid "Create an Account" -msgstr "" - #: lms/templates/student_account/register.underscore msgid "Support education research by providing additional information" msgstr "" diff --git a/conf/locale/rtl/LC_MESSAGES/django.mo b/conf/locale/rtl/LC_MESSAGES/django.mo index f7c25d59fa682a3f47ec32cf588f7153392e9070..fa1c33d9d4e43fe88d252950b2091f423beb59e7 100644 Binary files a/conf/locale/rtl/LC_MESSAGES/django.mo and b/conf/locale/rtl/LC_MESSAGES/django.mo differ diff --git a/conf/locale/rtl/LC_MESSAGES/django.po b/conf/locale/rtl/LC_MESSAGES/django.po index 80b740ecdd1dd8c5a9162841e2f27110194cc6df..0bc5145760d507bae932c32e78889a0f272a2187 100644 --- a/conf/locale/rtl/LC_MESSAGES/django.po +++ b/conf/locale/rtl/LC_MESSAGES/django.po @@ -38,8 +38,8 @@ msgid "" msgstr "" "Project-Id-Version: 0.1a\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2019-05-16 10:12+0000\n" -"PO-Revision-Date: 2019-05-16 10:12:24.699998\n" +"POT-Creation-Date: 2019-06-13 08:13+0000\n" +"PO-Revision-Date: 2019-06-13 08:13:47.931648\n" "Last-Translator: \n" "Language-Team: openedx-translation <openedx-translation@googlegroups.com>\n" "Language: rtl\n" @@ -430,8 +430,8 @@ msgid "A properly formatted e-mail is required" msgstr "Ø´ ØقخØثقمغ بخقوشÙÙثي Ø«-وشهم هس قثضعهقثي" #: common/djangoapps/student/forms.py -msgid "Your legal name must be a minimum of two characters long" -msgstr "غخعق مثلشم رشوث وعس٠زث Ø´ وهرهوعو خب Ùصخ ذاشقشذÙثقس مخرل" +msgid "Your legal name must be a minimum of one character long" +msgstr "غخعق مثلشم رشوث وعس٠زث Ø´ وهرهوعو خب خرث ذاشقشذÙثق مخرل" #: common/djangoapps/student/forms.py #, python-format @@ -917,6 +917,12 @@ msgstr "" "قثذثهدث ثوشهم عØيشÙثس شري شمثقÙس بقخو عس قثمشÙثي ÙØ® Ùاث ذخعقسثس غخع شقث " "ثرقخممثي هر. سهلر هر ÙØ® ذخرÙهرعث." +#: common/djangoapps/student/views/management.py +msgid "" +"Your previous request is in progress, please try again in a few moments." +msgstr "" +"غخعق Øقثدهخعس قثضعثس٠هس هر Øقخلقثسس, Øمثشسث Ùقغ شلشهر هر Ø´ بثص وخوثرÙس." + #: common/djangoapps/student/views/management.py msgid "Some error occured during password change. Please try again" msgstr "سخوث ثققخق خذذعقثي يعقهرل Øشسسصخقي ذاشرلث. Øمثشسث Ùقغ شلشهر" @@ -2862,23 +2868,23 @@ msgstr "يهسذعسسهخر ÙØ®Øهذ وشØØهرل" msgid "" "Enter discussion categories in the following format: \"CategoryName\": " "{\"id\": \"i4x-InstitutionName-CourseNumber-course-CourseRun\"}. For " -"example, one discussion category may be \"Lydian Mode\": {\"id\": \"i4x-" -"UniversityX-MUS101-course-2015_T1\"}. The \"id\" value for each category " -"must be unique. In \"id\" values, the only special characters that are " -"supported are underscore, hyphen, and period. You can also specify a " +"example, one discussion category may be \"Lydian Mode\": {\"id\": " +"\"i4x-UniversityX-MUS101-course-2015_T1\"}. The \"id\" value for each " +"category must be unique. In \"id\" values, the only special characters that " +"are supported are underscore, hyphen, and period. You can also specify a " "category as the default for new posts in the Discussion page by setting its " -"\"default\" attribute to true. For example, \"Lydian Mode\": {\"id\": \"i4x-" -"UniversityX-MUS101-course-2015_T1\", \"default\": true}." +"\"default\" attribute to true. For example, \"Lydian Mode\": {\"id\": " +"\"i4x-UniversityX-MUS101-course-2015_T1\", \"default\": true}." msgstr "" "ثرÙثق يهسذعسسهخر ذشÙثلخقهثس هر Ùاث بخممخصهرل بخقوشÙ: \"ذشÙثلخقغرشوث\": " "{\"id\": \"i4x-InstitutionName-CourseNumber-course-CourseRun\"}. بخق " -"ثطشوØمث, خرث يهسذعسسهخر ذشÙثلخقغ وشغ زث \"مغيهشر وخيث\": {\"id\": \"i4x-" -"UniversityX-MUS101-course-2015_T1\"}. Ùاث \"هي\" دشمعث بخق ثشذا ذشÙثلخقغ " -"وعس٠زث عرهضعث. هر \"هي\" دشمعثس, Ùاث خرمغ سØثذهشم ذاشقشذÙثقس Ùاش٠شقث " -"سعØØخقÙثي شقث عريثقسذخقث, اغØاثر, شري Øثقهخي. غخع ذشر شمسخ سØثذهبغ Ø´ " +"ثطشوØمث, خرث يهسذعسسهخر ذشÙثلخقغ وشغ زث \"مغيهشر وخيث\": {\"id\": " +"\"i4x-UniversityX-MUS101-course-2015_T1\"}. Ùاث \"هي\" دشمعث بخق ثشذا " +"ذشÙثلخقغ وعس٠زث عرهضعث. هر \"هي\" دشمعثس, Ùاث خرمغ سØثذهشم ذاشقشذÙثقس Ùاش٠" +"شقث سعØØخقÙثي شقث عريثقسذخقث, اغØاثر, شري Øثقهخي. غخع ذشر شمسخ سØثذهبغ Ø´ " "ذشÙثلخقغ شس Ùاث يثبشعم٠بخق رثص ØخسÙس هر Ùاث يهسذعسسهخر Øشلث زغ سثÙÙهرل Ù‡Ùس " -"\"يثبشعمÙ\" Ø´ÙÙقهزعÙØ« ÙØ® Ùقعث. بخق ثطشوØمث, \"مغيهشر وخيث\": {\"id\": \"i4x-" -"UniversityX-MUS101-course-2015_T1\", \"default\": true}." +"\"يثبشعمÙ\" Ø´ÙÙقهزعÙØ« ÙØ® Ùقعث. بخق ثطشوØمث, \"مغيهشر وخيث\": {\"id\": " +"\"i4x-UniversityX-MUS101-course-2015_T1\", \"default\": true}." #: common/lib/xmodule/xmodule/course_module.py msgid "Discussion Sorting Alphabetical" @@ -6631,10 +6637,10 @@ msgstr "" #: lms/djangoapps/dashboard/git_import.py msgid "" "Non usable git url provided. Expecting something like: " -"git@github.com:mitocw/edx4edx_lite.git" +"git@github.com:edx/edx4edx_lite.git" msgstr "" "رخر عسشزمث له٠عقم Øقخدهيثي. ثطØثذÙهرل سخوثÙاهرل مهنث: " -"لهÙ@لهÙاعز.ذخو:وهÙخذص/ثيط4ثيط_مهÙØ«.لهÙ" +"لهÙ@لهÙاعز.ذخو:ثيط/ثيط4ثيط_مهÙØ«.لهÙ" #: lms/djangoapps/dashboard/git_import.py msgid "Unable to get git log" @@ -9418,8 +9424,8 @@ msgstr "رخ Øقخبهمث بخعري بخق عسثق" #: lms/djangoapps/verify_student/views.py #, python-brace-format -msgid "Name must be at least {min_length} characters long." -msgstr "رشوث وعس٠زث ش٠مثشس٠{min_length} ذاشقشذÙثقس مخرل." +msgid "Name must be at least {min_length} character long." +msgstr "رشوث وعس٠زث ش٠مثشس٠{min_length} ذاشقشذÙثق مخرل." #: lms/djangoapps/verify_student/views.py msgid "Image data is not valid." @@ -10591,15 +10597,6 @@ msgstr "Ùاث عقم خب Ùاث صثزسهÙØ« شسسخذهشÙثي صهÙا msgid "The reason this user wants to access the API." msgstr "Ùاث قثشسخر Ùاهس عسثق صشرÙس ÙØ® شذذثسس Ùاث Ø´ØÙ‡." -#: openedx/core/djangoapps/api_admin/models.py -#, python-brace-format -msgid "API access request from {company}" -msgstr "Ø´ØÙ‡ شذذثسس قثضعثس٠بقخو {company}" - -#: openedx/core/djangoapps/api_admin/models.py -msgid "API access request" -msgstr "Ø´ØÙ‡ شذذثسس قثضعثسÙ" - #: openedx/core/djangoapps/api_admin/widgets.py #, python-brace-format msgid "" @@ -11759,17 +11756,17 @@ msgstr "غخع وعس٠شلقثث ÙØ® Ùاث {platform_name} {terms_of_service #: openedx/core/djangoapps/user_api/api.py #, python-brace-format msgid "" -"By creating an account with {platform_name}, you agree to " -"abide by our {platform_name} " +"By creating an account, you agree to the " "{terms_of_service_link_start}{terms_of_service}{terms_of_service_link_end}" -" and agree to our {privacy_policy_link_start}Privacy " -"Policy{privacy_policy_link_end}." +" and you acknowledge that {platform_name} and each Member " +"process your personal data in accordance with the " +"{privacy_policy_link_start}Privacy Policy{privacy_policy_link_end}." msgstr "" -"زغ ذقثشÙهرل شر شذذخعر٠صهÙا {platform_name}, غخع شلقثث ÙØ® " -"شزهيث زغ خعق {platform_name} " +"زغ ذقثشÙهرل شر شذذخعرÙ, غخع شلقثث ÙØ® Ùاث " "{terms_of_service_link_start}{terms_of_service}{terms_of_service_link_end}" -" شري شلقثث ÙØ® خعق {privacy_policy_link_start}Øقهدشذغ " -"Øخمهذغ{privacy_policy_link_end}." +" شري غخع شذنرخصمثيلث Ùاش٠{platform_name} شري ثشذا وثوزثق " +"Øقخذثسس غخعق Øثقسخرشم يشÙØ´ هر شذذخقيشرذث صهÙا Ùاث " +"{privacy_policy_link_start}Øقهدشذغ Øخمهذغ{privacy_policy_link_end}." #. Translators: "Terms of service" is a legal document users must agree to #. in order to register a new account. @@ -12271,11 +12268,11 @@ msgstr "قثدهثصس" #: openedx/features/course_experience/utils.py #, no-python-format, python-brace-format msgid "" -"{banner_open}15% off your first upgrade.{span_close} Discount automatically " -"applied.{div_close}" +"{banner_open}{percentage}% off your first upgrade.{span_close} Discount " +"automatically applied.{div_close}" msgstr "" -"{banner_open}15% خبب غخعق بهقس٠عØلقشيث.{span_close} يهسذخعر٠شعÙخوشÙهذشممغ " -"Ø´ØØمهثي.{div_close}" +"{banner_open}{percentage}% خبب غخعق بهقس٠عØلقشيث.{span_close} يهسذخعر٠" +"شعÙخوشÙهذشممغ Ø´ØØمهثي.{div_close}" #: openedx/features/course_experience/views/course_home_messages.py #, python-brace-format @@ -12326,6 +12323,40 @@ msgstr "{choice}" msgid "Set goal to: {goal_text}" msgstr "سث٠لخشم ÙØ®: {goal_text}" +#: openedx/features/discounts/admin.py +msgid "" +"These define the context to disable lms-controlled discounts on. If no " +"values are set, then the configuration applies globally. If a single value " +"is set, then the configuration applies to all courses within that context. " +"At most one value can be set at a time.<br>If multiple contexts apply to a " +"course (for example, if configuration is specified for the course " +"specifically, and for the org that the course is in, then the more specific " +"context overrides the more general context." +msgstr "" +"Ùاثسث يثبهرث Ùاث ذخرÙثط٠ÙØ® يهسشزمث موس-ذخرÙقخممثي يهسذخعرÙس خر. هب رخ " +"دشمعثس شقث سثÙ, Ùاثر Ùاث ذخربهلعقشÙهخر Ø´ØØمهثس لمخزشممغ. هب Ø´ سهرلمث دشمعث " +"هس سثÙ, Ùاثر Ùاث ذخربهلعقشÙهخر Ø´ØØمهثس ÙØ® شمم ذخعقسثس صهÙاهر Ùاش٠ذخرÙثطÙ. " +"ش٠وخس٠خرث دشمعث ذشر زث سث٠ش٠ش Ùهوث.<br>هب وعمÙÙ‡Øمث ذخرÙثطÙس Ø´ØØمغ ÙØ® Ø´ " +"ذخعقسث (بخق ثطشوØمث, هب ذخربهلعقشÙهخر هس سØثذهبهثي بخق Ùاث ذخعقسث " +"سØثذهبهذشممغ, شري بخق Ùاث خقل Ùاش٠Ùاث ذخعقسث هس هر, Ùاثر Ùاث وخقث سØثذهبهذ " +"ذخرÙثط٠خدثققهيثس Ùاث وخقث لثرثقشم ذخرÙثطÙ." + +#: openedx/features/discounts/admin.py +msgid "" +"If any of these values is left empty or \"Unknown\", then their value at " +"runtime will be retrieved from the next most specific context that applies. " +"For example, if \"Disabled\" is left as \"Unknown\" in the course context, " +"then that course will be Disabled only if the org that it is in is Disabled." +msgstr "" +"هب شرغ خب Ùاثسث دشمعثس هس مثب٠ثوØÙغ خق \"عرنرخصر\", Ùاثر Ùاثهق دشمعث Ø´Ù " +"قعرÙهوث صهمم زث قثÙقهثدثي بقخو Ùاث رثط٠وخس٠سØثذهبهذ ذخرÙثط٠Ùاش٠شØØمهثس. " +"بخق ثطشوØمث, هب \"يهسشزمثي\" هس مثب٠شس \"عرنرخصر\" هر Ùاث ذخعقسث ذخرÙثطÙ, " +"Ùاثر Ùاش٠ذخعقسث صهمم زث يهسشزمثي خرمغ هب Ùاث خقل Ùاش٠ه٠هس هر هس يهسشزمثي." + +#: openedx/features/discounts/models.py +msgid "Disabled" +msgstr "يهسشزمثي" + #: openedx/features/enterprise_support/api.py #, python-brace-format msgid "Enrollment in {course_title} was not complete." @@ -12451,10 +12482,10 @@ msgstr "" #: cms/djangoapps/contentstore/git_export_utils.py msgid "" "Non writable git url provided. Expecting something like: " -"git@github.com:mitocw/edx4edx_lite.git" +"git@github.com:edx/edx4edx_lite.git" msgstr "" "رخر صقهÙشزمث له٠عقم Øقخدهيثي. ثطØثذÙهرل سخوثÙاهرل مهنث: " -"لهÙ@لهÙاعز.ذخو:وهÙخذص/ثيط4ثيط_مهÙØ«.لهÙ" +"لهÙ@لهÙاعز.ذخو:ثيط/ثيط4ثيط_مهÙØ«.لهÙ" #: cms/djangoapps/contentstore/git_export_utils.py msgid "" @@ -13732,6 +13763,10 @@ msgstr "يثزعل: " msgid "External Authentication failed" msgstr "ثطÙثقرشم شعÙاثرÙهذشÙهخر بشهمثي" +#: lms/templates/footer.html +msgid "organization logo" +msgstr "خقلشرهظشÙهخر مخلخ" + #: lms/templates/forgot_password_modal.html msgid "" "Please enter your e-mail address below, and we will e-mail instructions for " @@ -13945,17 +13980,15 @@ msgstr "" msgid "Search for a course" msgstr "سثشقذا بخق Ø´ ذخعقسث" -#. Translators: 'Open edX' is a registered trademark, please keep this -#. untranslated. See http://open.edx.org for more information. -#: lms/templates/index_overlay.html -msgid "Welcome to the Open edX{registered_trademark} platform!" -msgstr "صثمذخوث ÙØ® Ùاث Ø®Øثر ثيط{registered_trademark} ØمشÙبخقو!" +#: lms/templates/index_overlay.html lms/templates/register-sidebar.html +msgid "Welcome to {platform_name}" +msgstr "صثمذخوث ÙØ® {platform_name}" #. Translators: 'Open edX' is a registered trademark, please keep this #. untranslated. See http://open.edx.org for more information. #: lms/templates/index_overlay.html -msgid "It works! This is the default homepage for this Open edX instance." -msgstr "ه٠صخقنس! Ùاهس هس Ùاث يثبشعم٠اخوثØشلث بخق Ùاهس Ø®Øثر ثيط هرسÙشرذث." +msgid "It works! Powered by Open edX{registered_trademark}" +msgstr "ه٠صخقنس! Øخصثقثي زغ Ø®Øثر ثيط{registered_trademark}" #: lms/templates/invalid_email_key.html msgid "Invalid email change key" @@ -14255,6 +14288,10 @@ msgstr "سشدث غخعق شرسصثق" msgid "Reset your answer" msgstr "قثسث٠غخعق شرسصثق" +#: lms/templates/problem.html +msgid "Answers are displayed within the problem" +msgstr "شرسصثقس شقث يهسØمشغثي صهÙاهر Ùاث Øقخزمثو" + #: lms/templates/problem_notifications.html msgid "Next Hint" msgstr "رثط٠اهرÙ" @@ -14459,10 +14496,6 @@ msgstr "شمقثشيغ قثلهسÙثقثي?" msgid "Log in" msgstr "مخل هر" -#: lms/templates/register-sidebar.html -msgid "Welcome to {platform_name}" -msgstr "صثمذخوث ÙØ® {platform_name}" - #: lms/templates/register-sidebar.html msgid "" "Registering with {platform_name} gives you access to all of our current and " @@ -16407,6 +16440,20 @@ msgstr "مخشيهرل خقيثق يشÙØ´..." msgid "Please wait while we retrieve your order details." msgstr "Øمثشسث صشه٠صاهمث صث قثÙقهثدث غخعق خقيثق يثÙشهمس." +#: lms/templates/course_modes/_upgrade_button.html +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/_upgrade_button.html +#: themes/edx.org/lms/templates/course_modes/choose.html +msgid "Pursue the Verified Track" +msgstr "Øعقسعث Ùاث دثقهبهثي Ùقشذن" + +#: lms/templates/course_modes/_upgrade_button.html +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/_upgrade_button.html +#: themes/edx.org/lms/templates/course_modes/choose.html +msgid "Pursue a Verified Certificate" +msgstr "Øعقسعث Ø´ دثقهبهثي ذثقÙهبهذشÙØ«" + #: lms/templates/course_modes/choose.html #: themes/edx.org/lms/templates/course_modes/choose.html msgid "Enroll In {course_name} | Choose Your Track" @@ -16504,16 +16551,6 @@ msgstr "" "{b_start}ثشسهمغ ساشقثشزمث:{b_end} شيي Ùاث ذثقÙهبهذشÙØ« ÙØ® غخعق ذد خق قثسعوث, " "خق Øخس٠ه٠يهقثذÙمغ خر مهرنثيهر" -#: lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -msgid "Pursue a Verified Certificate" -msgstr "Øعقسعث Ø´ دثقهبهثي ذثقÙهبهذشÙØ«" - -#: lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -msgid "Pursue the Verified Track" -msgstr "Øعقسعث Ùاث دثقهبهثي Ùقشذن" - #: lms/templates/course_modes/choose.html #: themes/edx.org/lms/templates/course_modes/choose.html msgid "" @@ -16644,6 +16681,11 @@ msgstr "Ùاهس ذخرÙثر٠هس لقشيثي" msgid "An error occurred. Please try again later." msgstr "شر ثققخق خذذعققثي. Øمثشسث Ùقغ شلشهر مشÙثق." +#: lms/templates/courseware/course_about.html +msgid "An error has occurred. Please ensure that you are logged in to enroll." +msgstr "" +"شر ثققخق اشس خذذعققثي. Øمثشسث ثرسعقث Ùاش٠غخع شقث مخللثي هر ÙØ® ثرقخمم." + #: lms/templates/courseware/course_about.html msgid "You are enrolled in this course" msgstr "غخع شقث ثرقخممثي هر Ùاهس ذخعقسث" @@ -16676,8 +16718,8 @@ msgid "Add {course_name} to Cart {start_span}({price} USD){end_span}" msgstr "شيي {course_name} ÙØ® ذشق٠{start_span}({price} عسي){end_span}" #: lms/templates/courseware/course_about.html -msgid "Enroll in {course_name}" -msgstr "ثرقخمم هر {course_name}" +msgid "Enroll Now" +msgstr "ثرقخمم رخص" #: lms/templates/courseware/course_about.html msgid "View About Page in studio" @@ -17020,8 +17062,8 @@ msgid "View Grading in studio" msgstr "دهثص لقشيهرل هر سÙعيهخ" #: lms/templates/courseware/progress.html -msgid "Course Progress for Student '{username}' ({email})" -msgstr "ذخعقسث Øقخلقثسس بخق سÙعيثر٠'{username}' ({email})" +msgid "Course Progress for '{username}' ({email})" +msgstr "ذخعقسث Øقخلقثسس بخق '{username}' ({email})" #: lms/templates/courseware/progress.html msgid "View Certificate" diff --git a/conf/locale/rtl/LC_MESSAGES/djangojs.mo b/conf/locale/rtl/LC_MESSAGES/djangojs.mo index 915a6b9afdd2b294a1de254114656b5e37e4251e..5b19351f2661d77d486a3153198566c07035920d 100644 Binary files a/conf/locale/rtl/LC_MESSAGES/djangojs.mo and b/conf/locale/rtl/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/rtl/LC_MESSAGES/djangojs.po b/conf/locale/rtl/LC_MESSAGES/djangojs.po index 646d1fd428c80a9cfa7d698737d73f252f86810a..5332ea6a31a3907645b06db8eab9e555ac01f1f3 100644 --- a/conf/locale/rtl/LC_MESSAGES/djangojs.po +++ b/conf/locale/rtl/LC_MESSAGES/djangojs.po @@ -32,8 +32,8 @@ msgid "" msgstr "" "Project-Id-Version: 0.1a\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2019-05-16 10:10+0000\n" -"PO-Revision-Date: 2019-05-16 10:12:24.543843\n" +"POT-Creation-Date: 2019-06-13 08:13+0000\n" +"PO-Revision-Date: 2019-06-13 08:13:47.491238\n" "Last-Translator: \n" "Language-Team: openedx-translation <openedx-translation@googlegroups.com>\n" "Language: rtl\n" @@ -43,23 +43,6 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "Generated-By: Babel 1.3\n" -#: cms/static/cms/js/main.js cms/static/js/views/active_video_upload_list.js -#: cms/static/js/views/video_transcripts.js common/static/bundles/commons.js -msgid "" -"This may be happening because of an error with our server or your internet " -"connection. Try refreshing the page or making sure you are online." -msgstr "" -"Ùاهس وشغ زث اشØØثرهرل زثذشعسث خب شر ثققخق صهÙا خعق سثقدثق خق غخعق هرÙثقرث٠" -"ذخررثذÙهخر. Ùقغ قثبقثساهرل Ùاث Øشلث خق وشنهرل سعقث غخع شقث خرمهرث." - -#: cms/static/cms/js/main.js common/static/bundles/commons.js -msgid "Studio's having trouble saving your work" -msgstr "سÙعيهخ'س اشدهرل Ùقخعزمث سشدهرل غخعق صخقن" - -#: cms/static/cms/js/xblock/cms.runtime.v1.js common/static/bundles/commons.js -msgid "OpenAssessment Save Error" -msgstr "Ø®Øثرشسسثسسوثر٠سشدث ثققخق" - #: cms/static/cms/js/xblock/cms.runtime.v1.js #: cms/static/js/certificates/views/signatory_details.js #: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js @@ -69,28 +52,15 @@ msgstr "Ø®Øثرشسسثسسوثر٠سشدث ثققخق" #: cms/static/js/views/edit_textbook.js #: cms/static/js/views/list_item_editor.js #: cms/static/js/views/modals/edit_xblock.js cms/static/js/views/tabs.js -#: cms/static/js/views/utils/xblock_utils.js common/static/bundles/commons.js -#: common/static/bundles/js/factories/container.js -#: common/static/bundles/js/factories/edit_tabs.js -#: common/static/bundles/js/factories/library.js -#: common/static/bundles/js/factories/textbooks.js -#: lms/static/js/ccx/schedule.js lms/static/js/views/fields.js +#: cms/static/js/views/utils/xblock_utils.js lms/static/js/ccx/schedule.js +#: lms/static/js/views/fields.js msgid "Saving" msgstr "سشدهرل" -#: cms/static/js/base.js common/static/bundles/commons.js -msgid "This link will open in a new browser window/tab" -msgstr "Ùاهس مهرن صهمم Ø®Øثر هر Ø´ رثص زقخصسثق صهريخص/Ùشز" - -#: cms/static/js/base.js common/static/bundles/commons.js -msgid "This link will open in a modal window" -msgstr "Ùاهس مهرن صهمم Ø®Øثر هر Ø´ وخيشم صهريخص" - #: cms/static/js/certificates/views/signatory_editor.js #: cms/static/js/views/asset.js cms/static/js/views/list_item.js #: cms/static/js/views/manage_users_and_roles.js #: cms/static/js/views/show_textbook.js -#: common/static/bundles/js/factories/textbooks.js #: lms/djangoapps/teams/static/teams/js/views/instructor_tools.js #: cms/templates/js/certificate-details.underscore #: cms/templates/js/certificate-editor.underscore @@ -111,15 +81,6 @@ msgstr "Ùاهس مهرن صهمم Ø®Øثر هر Ø´ وخيشم صهريخص" msgid "Delete" msgstr "يثمثÙØ«" -#: cms/static/js/certificates/views/signatory_editor.js -#: cms/static/js/views/course_info_update.js cms/static/js/views/list_item.js -#: cms/static/js/views/show_textbook.js cms/static/js/views/tabs.js -#: cms/static/js/views/utils/xblock_utils.js common/static/bundles/commons.js -#: common/static/bundles/js/factories/edit_tabs.js -#: common/static/bundles/js/factories/textbooks.js -msgid "Deleting" -msgstr "يثمثÙهرل" - #. #-#-#-#-# djangojs-partial.po (0.1a) #-#-#-#-# #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML @@ -131,11 +92,6 @@ msgstr "يثمثÙهرل" #: cms/static/js/views/show_textbook.js cms/static/js/views/tabs.js #: cms/static/js/views/validation.js #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/StudentAccountDeletion.js -#: common/static/bundles/StudentAccountDeletionInitializer.js -#: common/static/bundles/commons.js -#: common/static/bundles/js/factories/edit_tabs.js -#: common/static/bundles/js/factories/textbooks.js #: common/static/common/js/components/utils/view_utils.js #: lms/static/js/Markdown.Editor.js #: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx @@ -161,161 +117,12 @@ msgstr "يثمثÙهرل" msgid "Cancel" msgstr "ذشرذثم" -#: cms/static/js/features/import/factories/import.js -#: common/static/bundles/Import.js -msgid "There was an error during the upload process." -msgstr "Ùاثقث صشس شر ثققخق يعقهرل Ùاث عØمخشي Øقخذثسس." - -#: cms/static/js/features/import/factories/import.js -#: common/static/bundles/Import.js -msgid "There was an error while unpacking the file." -msgstr "Ùاثقث صشس شر ثققخق صاهمث عرØشذنهرل Ùاث بهمث." - -#: cms/static/js/features/import/factories/import.js -#: common/static/bundles/Import.js -msgid "There was an error while verifying the file you submitted." -msgstr "Ùاثقث صشس شر ثققخق صاهمث دثقهبغهرل Ùاث بهمث غخع سعزوهÙÙثي." - -#: cms/static/js/features/import/factories/import.js -#: common/static/bundles/Import.js -msgid "Choose new file" -msgstr "ذاخخسث رثص بهمث" - -#: cms/static/js/features/import/factories/import.js -#: common/static/bundles/Import.js -msgid "" -"File format not supported. Please upload a file with a {ext} extension." -msgstr "" -"بهمث بخقوش٠رخ٠سعØØخقÙثي. Øمثشسث عØمخشي Ø´ بهمث صهÙا Ø´ {ext} ثطÙثرسهخر." - -#: cms/static/js/features/import/factories/import.js -#: common/static/bundles/Import.js -msgid "There was an error while importing the new library to our database." -msgstr "Ùاثقث صشس شر ثققخق صاهمث هوØخقÙهرل Ùاث رثص مهزقشقغ ÙØ® خعق يشÙشزشسث." - -#: cms/static/js/features/import/factories/import.js -#: common/static/bundles/Import.js -msgid "There was an error while importing the new course to our database." -msgstr "Ùاثقث صشس شر ثققخق صاهمث هوØخقÙهرل Ùاث رثص ذخعقسث ÙØ® خعق يشÙشزشسث." - -#: cms/static/js/features/import/factories/import.js -#: common/static/bundles/Import.js -msgid "Your import has failed." -msgstr "غخعق هوØخق٠اشس بشهمثي." - -#: cms/static/js/features/import/views/import.js -#: common/static/bundles/Import.js -msgid "Your import is in progress; navigating away will abort it." -msgstr "غخعق هوØخق٠هس هر Øقخلقثسس; رشدهلشÙهرل شصشغ صهمم شزخق٠هÙ." - -#: cms/static/js/features/import/views/import.js -#: common/static/bundles/Import.js -msgid "Error importing course" -msgstr "ثققخق هوØخقÙهرل ذخعقسث" - -#: cms/static/js/features/import/views/import.js -#: common/static/bundles/Import.js -msgid "There was an error with the upload" -msgstr "Ùاثقث صشس شر ثققخق صهÙا Ùاث عØمخشي" - -#: cms/static/js/features_jsx/studio/CourseOrLibraryListing.jsx -#: common/static/bundles/CourseOrLibraryListing.js -msgid "Organization:" -msgstr "خقلشرهظشÙهخر:" - -#: cms/static/js/features_jsx/studio/CourseOrLibraryListing.jsx -#: common/static/bundles/CourseOrLibraryListing.js -msgid "Course Number:" -msgstr "ذخعقسث رعوزثق:" - -#: cms/static/js/features_jsx/studio/CourseOrLibraryListing.jsx -#: common/static/bundles/CourseOrLibraryListing.js -msgid "Course Run:" -msgstr "ذخعقسث قعر:" - -#: cms/static/js/features_jsx/studio/CourseOrLibraryListing.jsx -#: common/static/bundles/CourseOrLibraryListing.js -msgid "(Read-only)" -msgstr "(قثشي-خرمغ)" - -#: cms/static/js/features_jsx/studio/CourseOrLibraryListing.jsx -#: common/static/bundles/CourseOrLibraryListing.js -msgid "Re-run Course" -msgstr "قث-قعر ذخعقسث" - -#: cms/static/js/features_jsx/studio/CourseOrLibraryListing.jsx -#: common/static/bundles/CourseOrLibraryListing.js -#: cms/templates/js/show-textbook.underscore -msgid "View Live" -msgstr "دهثص مهدث" - #. Translators: This is the status of an active video upload #: cms/static/js/models/active_video_upload.js cms/static/js/views/assets.js #: cms/static/js/views/video_thumbnail.js lms/static/js/views/image_field.js msgid "Uploading" msgstr "عØمخشيهرل" -#: cms/static/js/models/chapter.js -#: common/static/bundles/js/factories/textbooks.js -msgid "Chapter name and asset_path are both required" -msgstr "ذاشØÙثق رشوث شري شسسثÙ_ØØ´Ùا شقث زخÙا قثضعهقثي" - -#: cms/static/js/models/chapter.js -#: common/static/bundles/js/factories/textbooks.js -msgid "Chapter name is required" -msgstr "ذاشØÙثق رشوث هس قثضعهقثي" - -#: cms/static/js/models/chapter.js -#: common/static/bundles/js/factories/textbooks.js -msgid "asset_path is required" -msgstr "شسسثÙ_ØØ´Ùا هس قثضعهقثي" - -#: cms/static/js/models/course.js cms/static/js/models/section.js -#: common/static/bundles/commons.js -#: common/static/bundles/js/factories/textbooks.js -msgid "You must specify a name" -msgstr "غخع وعس٠سØثذهبغ Ø´ رشوث" - -#: cms/static/js/models/textbook.js -#: common/static/bundles/js/factories/textbooks.js -msgid "Textbook name is required" -msgstr "ÙثطÙزخخن رشوث هس قثضعهقثي" - -#: cms/static/js/models/textbook.js -#: common/static/bundles/js/factories/textbooks.js -msgid "Please add at least one chapter" -msgstr "Øمثشسث شيي ش٠مثشس٠خرث ذاشØÙثق" - -#: cms/static/js/models/textbook.js -#: common/static/bundles/js/factories/textbooks.js -msgid "All chapters must have a name and asset" -msgstr "شمم ذاشØÙثقس وعس٠اشدث Ø´ رشوث شري شسسثÙ" - -#: cms/static/js/models/uploads.js common/static/bundles/commons.js -msgid "" -"Only <%= fileTypes %> files can be uploaded. Please select a file ending in " -"<%= fileExtensions %> to upload." -msgstr "" -"خرمغ <%= fileTypes %> بهمثس ذشر زث عØمخشيثي. Øمثشسث سثمثذ٠ش بهمث ثريهرل هر " -"<%= fileExtensions %> ÙØ® عØمخشي." - -#: cms/static/js/models/uploads.js common/static/bundles/commons.js -#: lms/templates/student_account/hinted_login.underscore -#: lms/templates/student_account/institution_login.underscore -#: lms/templates/student_account/institution_register.underscore -msgid "or" -msgstr "خق" - -#: cms/static/js/models/xblock_validation.js -#: common/static/bundles/js/factories/xblock_validation.js -msgid "This unit has validation issues." -msgstr "Ùاهس عره٠اشس دشمهيشÙهخر هسسعثس." - -#: cms/static/js/models/xblock_validation.js -#: common/static/bundles/js/factories/xblock_validation.js -msgid "This component has validation issues." -msgstr "Ùاهس ذخوØخرثر٠اشس دشمهيشÙهخر هسسعثس." - #. #-#-#-#-# djangojs-partial.po (0.1a) #-#-#-#-# #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML @@ -323,7 +130,7 @@ msgstr "Ùاهس ذخوØخرثر٠اشس دشمهيشÙهخر هسسعثس." #: cms/static/js/views/modals/edit_xblock.js #: cms/static/js/views/video_transcripts.js #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js lms/static/js/student_account/tos_modal.js +#: lms/static/js/student_account/tos_modal.js #: cms/templates/js/course-video-settings.underscore #: common/static/common/templates/image-modal.underscore #: common/static/common/templates/discussion/alert-popup.underscore @@ -338,7 +145,7 @@ msgstr "ذمخسث" #. browser when a user needs to edit HTML #: cms/static/js/views/assets.js #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js cms/templates/js/asset-library.underscore +#: cms/templates/js/asset-library.underscore #: cms/templates/js/course-instructor-details.underscore #: cms/templates/js/previous-video-upload-list.underscore #: cms/templates/js/signatory-details.underscore @@ -351,20 +158,11 @@ msgstr "رشوث" msgid "Choose File" msgstr "ذاخخسث بهمث" -#: cms/static/js/views/components/add_xblock.js -#: cms/static/js/views/utils/xblock_utils.js common/static/bundles/commons.js -#: common/static/bundles/js/factories/container.js -#: common/static/bundles/js/factories/library.js -msgid "Adding" -msgstr "شييهرل" - #. #-#-#-#-# djangojs-partial.po (0.1a) #-#-#-#-# #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: cms/static/js/views/course_info_update.js cms/static/js/views/tabs.js #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -#: common/static/bundles/js/factories/edit_tabs.js #: lms/static/js/Markdown.Editor.js #: common/static/common/templates/discussion/alert-popup.underscore #: lms/templates/learner_dashboard/verification_popover.underscore @@ -376,7 +174,6 @@ msgstr "خن" #. browser when a user needs to edit HTML #: cms/static/js/views/course_video_settings.js #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js #: cms/templates/js/timed-examination-preference-editor.underscore msgid "None" msgstr "رخرث" @@ -384,7 +181,7 @@ msgstr "رخرث" #: cms/static/js/views/course_video_settings.js #: cms/static/js/views/metadata.js #: cms/static/js/views/previous_video_upload.js -#: cms/static/js/views/video_transcripts.js common/static/bundles/commons.js +#: cms/static/js/views/video_transcripts.js #: lms/djangoapps/teams/static/teams/js/views/edit_team_members.js #: lms/static/js/views/image_field.js #: cms/templates/js/video/metadata-translations-item.underscore @@ -392,96 +189,10 @@ msgstr "رخرث" msgid "Remove" msgstr "قثوخدث" -#: cms/static/js/views/edit_chapter.js -#: common/static/bundles/js/factories/textbooks.js -msgid "Upload a new PDF to “<%= name %>â€" -msgstr "عØمخشي Ø´ رثص Øيب ÙØ® “<%= name %>â€" - -#: cms/static/js/views/edit_chapter.js -#: common/static/bundles/js/factories/textbooks.js -msgid "Please select a PDF file to upload." -msgstr "Øمثشسث سثمثذ٠ش Øيب بهمث ÙØ® عØمخشي." - -#: cms/static/js/views/license.js common/static/bundles/commons.js -#: cms/templates/js/license-selector.underscore -msgid "All Rights Reserved" -msgstr "شمم قهلاÙس قثسثقدثي" - -#: cms/static/js/views/license.js common/static/bundles/commons.js -msgid "You reserve all rights for your work" -msgstr "غخع قثسثقدث شمم قهلاÙس بخق غخعق صخقن" - -#: cms/static/js/views/license.js common/static/bundles/commons.js -msgid "Creative Commons" -msgstr "ذقثشÙهدث ذخووخرس" - -#: cms/static/js/views/license.js common/static/bundles/commons.js -msgid "You waive some rights for your work, such that others can use it too" -msgstr "غخع صشهدث سخوث قهلاÙس بخق غخعق صخقن, سعذا Ùاش٠خÙاثقس ذشر عسث Ù‡Ù Ùخخ" - -#: cms/static/js/views/license.js common/static/bundles/commons.js -msgid "Version" -msgstr "دثقسهخر" - -#: cms/static/js/views/license.js common/static/bundles/commons.js -msgid "Attribution" -msgstr "Ø´ÙÙقهزعÙهخر" - -#: cms/static/js/views/license.js common/static/bundles/commons.js -msgid "" -"Allow others to copy, distribute, display and perform your copyrighted work " -"but only if they give credit the way you request. Currently, this option is " -"required." -msgstr "" -"شممخص Ø®Ùاثقس ÙØ® ذخØغ, يهسÙقهزعÙØ«, يهسØمشغ شري Øثقبخقو غخعق ذخØغقهلاÙثي صخقن " -"زع٠خرمغ هب Ùاثغ لهدث ذقثيه٠Ùاث صشغ غخع قثضعثسÙ. ذعققثرÙمغ, Ùاهس Ø®ØÙهخر هس " -"قثضعهقثي." - -#: cms/static/js/views/license.js common/static/bundles/commons.js -msgid "Noncommercial" -msgstr "رخرذخووثقذهشم" - -#: cms/static/js/views/license.js common/static/bundles/commons.js -msgid "" -"Allow others to copy, distribute, display and perform your work - and " -"derivative works based upon it - but for noncommercial purposes only." -msgstr "" -"شممخص Ø®Ùاثقس ÙØ® ذخØغ, يهسÙقهزعÙØ«, يهسØمشغ شري Øثقبخقو غخعق صخقن - شري " -"يثقهدشÙهدث صخقنس زشسثي عØخر Ù‡Ù - زع٠بخق رخرذخووثقذهشم ØعقØخسثس خرمغ." - -#: cms/static/js/views/license.js common/static/bundles/commons.js -msgid "No Derivatives" -msgstr "رخ يثقهدشÙهدثس" - -#: cms/static/js/views/license.js common/static/bundles/commons.js -msgid "" -"Allow others to copy, distribute, display and perform only verbatim copies " -"of your work, not derivative works based upon it. This option is " -"incompatible with \"Share Alike\"." -msgstr "" -"شممخص Ø®Ùاثقس ÙØ® ذخØغ, يهسÙقهزعÙØ«, يهسØمشغ شري Øثقبخقو خرمغ دثقزشÙهو ذخØهثس " -"خب غخعق صخقن, رخ٠يثقهدشÙهدث صخقنس زشسثي عØخر Ù‡Ù. Ùاهس Ø®ØÙهخر هس " -"هرذخوØØ´Ùهزمث صهÙا \"ساشقث شمهنث\"." - -#: cms/static/js/views/license.js common/static/bundles/commons.js -msgid "Share Alike" -msgstr "ساشقث شمهنث" - -#: cms/static/js/views/license.js common/static/bundles/commons.js -msgid "" -"Allow others to distribute derivative works only under a license identical " -"to the license that governs your work. This option is incompatible with \"No" -" Derivatives\"." -msgstr "" -"شممخص Ø®Ùاثقس ÙØ® يهسÙقهزعÙØ« يثقهدشÙهدث صخقنس خرمغ عريثق Ø´ مهذثرسث هيثرÙهذشم " -"ÙØ® Ùاث مهذثرسث Ùاش٠لخدثقرس غخعق صخقن. Ùاهس Ø®ØÙهخر هس هرذخوØØ´Ùهزمث صهÙا \"رخ" -" يثقهدشÙهدثس\"." - #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: cms/static/js/views/manage_users_and_roles.js #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js msgid "Ok" msgstr "خن" @@ -491,14 +202,11 @@ msgid "Unknown" msgstr "عرنرخصر" #: cms/static/js/views/manage_users_and_roles.js -#: common/static/bundles/StudentAccountDeletion.js -#: common/static/bundles/StudentAccountDeletionInitializer.js #: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx msgid "Are you sure?" msgstr "شقث غخع سعقث?" -#: cms/static/js/views/metadata.js common/static/bundles/commons.js -#: lms/static/js/views/file_uploader.js +#: cms/static/js/views/metadata.js lms/static/js/views/file_uploader.js msgid "Upload File" msgstr "عØمخشي بهمث" @@ -508,7 +216,6 @@ msgstr "عØمخشي بهمث" #: cms/static/js/views/modals/base_modal.js #: cms/static/js/views/modals/course_outline_modals.js #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js #: cms/templates/js/certificate-editor.underscore #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/course_info_handouts.underscore @@ -529,3065 +236,1757 @@ msgstr "سشدث" #. browser when a user needs to edit HTML #: cms/static/js/views/modals/course_outline_modals.js #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js #: cms/templates/js/add-xblock-component-menu-problem.underscore msgid "Advanced" msgstr "شيدشرذثي" -#. Translators: "title" is the name of the current component being edited. -#: cms/static/js/views/modals/edit_xblock.js common/static/bundles/commons.js -msgid "Editing: {title}" -msgstr "ثيهÙهرل: {title}" - -#: cms/static/js/views/modals/edit_xblock.js common/static/bundles/commons.js -msgid "Plugins" -msgstr "Øمعلهرس" - -#: cms/static/js/views/modals/edit_xblock.js common/static/bundles/commons.js -#: lms/templates/ccx/schedule.underscore -msgid "Unit" -msgstr "عرهÙ" - -#: cms/static/js/views/modals/edit_xblock.js common/static/bundles/commons.js -msgid "Component" -msgstr "ذخوØخرثرÙ" - -#: cms/static/js/views/modals/move_xblock_modal.js -#: common/static/bundles/js/factories/container.js -#: common/static/bundles/js/factories/library.js -msgid "Move" -msgstr "وخدث" +#: cms/static/js/views/previous_video_upload.js +#: cms/static/js/views/video/translations_editor.js +#: cms/static/js/views/video_transcripts.js lms/static/js/views/image_field.js +msgid "Removing" +msgstr "قثوخدهرل" -#: cms/static/js/views/modals/move_xblock_modal.js -#: common/static/bundles/js/factories/container.js -#: common/static/bundles/js/factories/library.js -msgid "Choose a location to move your component to" -msgstr "ذاخخسث Ø´ مخذشÙهخر ÙØ® وخدث غخعق ذخوØخرثر٠ÙØ®" +#: cms/static/js/views/validation.js +#: lms/static/js/discussions_management/views/divided_discussions_course_wide.js +#: lms/static/js/discussions_management/views/divided_discussions_inline.js +#: lms/static/js/views/fields.js +msgid "Your changes have been saved." +msgstr "غخعق ذاشرلثس اشدث زثثر سشدثي." -#: cms/static/js/views/modals/move_xblock_modal.js -#: common/static/bundles/js/factories/container.js -#: common/static/bundles/js/factories/library.js -msgid "Move: {displayName}" -msgstr "وخدث: {displayName}" - -#: cms/static/js/views/move_xblock_list.js -#: common/static/bundles/js/factories/container.js -#: common/static/bundles/js/factories/library.js -msgid "Sections" -msgstr "سثذÙهخرس" - -#: cms/static/js/views/move_xblock_list.js -#: common/static/bundles/js/factories/container.js -#: common/static/bundles/js/factories/library.js -msgid "Subsections" -msgstr "سعزسثذÙهخرس" - -#: cms/static/js/views/move_xblock_list.js -#: common/static/bundles/js/factories/container.js -#: common/static/bundles/js/factories/library.js -msgid "Units" -msgstr "عرهÙس" - -#: cms/static/js/views/move_xblock_list.js -#: common/static/bundles/js/factories/container.js -#: common/static/bundles/js/factories/library.js -msgid "Components" -msgstr "ذخوØخرثرÙس" - -#: cms/static/js/views/move_xblock_list.js -#: common/static/bundles/js/factories/container.js -#: common/static/bundles/js/factories/library.js -#: cms/templates/js/group-configuration-editor.underscore -msgid "Groups" -msgstr "لقخعØس" - -#: cms/static/js/views/move_xblock_list.js -#: common/static/bundles/js/factories/container.js -#: common/static/bundles/js/factories/library.js -msgid "This {parentCategory} has no {childCategory}" -msgstr "Ùاهس {parentCategory} اشس رخ {childCategory}" - -#: cms/static/js/views/move_xblock_list.js -#: common/static/bundles/js/factories/container.js -#: common/static/bundles/js/factories/library.js -#: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/partition-group-details.underscore -msgid "Course Outline" -msgstr "ذخعقسث خعÙمهرث" - -#: cms/static/js/views/paged_container.js -#: common/static/bundles/js/factories/library.js -msgid "Date added" -msgstr "يشÙØ« شييثي" - -#. Translators: "title" is the name of the current component or unit being -#. edited. -#: cms/static/js/views/pages/container.js -#: common/static/bundles/js/factories/container.js -#: common/static/bundles/js/factories/library.js -msgid "Editing access for: %(title)s" -msgstr "ثيهÙهرل شذذثسس بخق: %(title)s" - -#: cms/static/js/views/pages/container_subviews.js -#: common/static/bundles/js/factories/container.js -#: common/static/bundles/js/factories/library.js -msgid "Publishing" -msgstr "Øعزمهساهرل" - -#: cms/static/js/views/pages/container_subviews.js -#: common/static/bundles/js/factories/container.js -#: common/static/bundles/js/factories/library.js -#: cms/templates/js/course-video-settings-update-org-credentials-footer.underscore -#: cms/templates/js/course-video-settings-update-settings-footer.underscore -#: cms/templates/js/publish-xblock.underscore -msgid "Discard Changes" -msgstr "يهسذشقي ذاشرلثس" - -#: cms/static/js/views/pages/container_subviews.js -#: common/static/bundles/js/factories/container.js -#: common/static/bundles/js/factories/library.js -msgid "" -"Are you sure you want to revert to the last published version of the unit? " -"You cannot undo this action." -msgstr "" -"شقث غخع سعقث غخع صشر٠ÙØ® قثدثق٠ÙØ® Ùاث مشس٠Øعزمهساثي دثقسهخر خب Ùاث عرهÙ? " -"غخع ذشررخ٠عريخ Ùاهس شذÙهخر." +#. Translators: This message will be added to the front of messages of type +#. error, +#. e.g. "Error: required field is missing". +#: cms/static/js/views/xblock_validation.js +#: common/static/common/js/discussion/utils.js +#: common/static/common/js/discussion/views/discussion_inline_view.js +#: common/static/common/js/discussion/views/discussion_thread_list_view.js +#: common/static/common/js/discussion/views/discussion_thread_view.js +#: common/static/common/js/discussion/views/response_comment_view.js +#: lms/static/js/student_account/views/FinishAuthView.js +#: lms/static/js/verify_student/views/payment_confirmation_step_view.js +#: lms/static/js/verify_student/views/step_view.js +#: lms/static/js/views/fields.js +msgid "Error" +msgstr "ثققخق" -#: cms/static/js/views/pages/container_subviews.js -#: common/static/bundles/js/factories/container.js -#: common/static/bundles/js/factories/library.js -msgid "Discarding Changes" -msgstr "يهسذشقيهرل ذاشرلثس" +#: common/lib/xmodule/xmodule/assets/library_content/public/js/library_content_edit.js +#: common/lib/xmodule/xmodule/js/public/js/library_content_edit.js +msgid "Updating with latest library content" +msgstr "عØيشÙهرل صهÙا مشÙثس٠مهزقشقغ ذخرÙثرÙ" -#: cms/static/js/views/pages/container_subviews.js -#: common/static/bundles/js/factories/container.js -#: common/static/bundles/js/factories/library.js -msgid "Hiding from Students" -msgstr "اهيهرل بقخو سÙعيثرÙس" +#: common/lib/xmodule/xmodule/assets/split_test/public/js/split_test_author_view.js +#: common/lib/xmodule/xmodule/js/public/js/split_test_author_view.js +msgid "Creating missing groups" +msgstr "ذقثشÙهرل وهسسهرل لقخعØس" -#: cms/static/js/views/pages/container_subviews.js -#: common/static/bundles/js/factories/container.js -#: common/static/bundles/js/factories/library.js -msgid "Explicitly Hiding from Students" -msgstr "ثطØمهذهÙمغ اهيهرل بقخو سÙعيثرÙس" +#: common/lib/xmodule/xmodule/assets/word_cloud/src/js/word_cloud_main.js +msgid "{start_strong}{total}{end_strong} words submitted in total." +msgstr "{start_strong}{total}{end_strong} صخقيس سعزوهÙÙثي هر ÙØ®Ùشم." -#: cms/static/js/views/pages/container_subviews.js -#: common/static/bundles/js/factories/container.js -#: common/static/bundles/js/factories/library.js -msgid "Inheriting Student Visibility" -msgstr "هراثقهÙهرل سÙعيثر٠دهسهزهمهÙغ" +#: common/lib/xmodule/xmodule/assets/word_cloud/src/js/word_cloud_main.js +msgid "text_word_{uniqueId} title_word_{uniqueId}" +msgstr "ÙثطÙ_صخقي_{uniqueId} ÙÙ‡Ùمث_صخقي_{uniqueId}" -#: cms/static/js/views/pages/container_subviews.js -#: common/static/bundles/js/factories/container.js -#: common/static/bundles/js/factories/library.js -msgid "Make Visible to Students" -msgstr "وشنث دهسهزمث ÙØ® سÙعيثرÙس" +#: common/lib/xmodule/xmodule/assets/word_cloud/src/js/word_cloud_main.js +msgid "title_word_{uniqueId}" +msgstr "ÙÙ‡Ùمث_صخقي_{uniqueId}" -#: cms/static/js/views/pages/container_subviews.js -#: common/static/bundles/js/factories/container.js -#: common/static/bundles/js/factories/library.js -msgid "" -"If the unit was previously published and released to students, any changes " -"you made to the unit when it was hidden will now be visible to students. Do " -"you want to proceed?" -msgstr "" -"هب Ùاث عره٠صشس Øقثدهخعسمغ Øعزمهساثي شري قثمثشسثي ÙØ® سÙعيثرÙس, شرغ ذاشرلثس " -"غخع وشيث ÙØ® Ùاث عره٠صاثر ه٠صشس اهييثر صهمم رخص زث دهسهزمث ÙØ® سÙعيثرÙس. يخ " -"غخع صشر٠ÙØ® Øقخذثثي?" +#: common/lib/xmodule/xmodule/assets/word_cloud/src/js/word_cloud_main.js +msgid "text_word_{uniqueId}" +msgstr "ÙثطÙ_صخقي_{uniqueId}" -#: cms/static/js/views/pages/container_subviews.js -#: common/static/bundles/js/factories/container.js -#: common/static/bundles/js/factories/library.js -msgid "Making Visible to Students" -msgstr "وشنهرل دهسهزمث ÙØ® سÙعيثرÙس" +#: common/lib/xmodule/xmodule/js/src/annotatable/display.js +msgid "Show Annotations" +msgstr "ساخص شررخÙØ´Ùهخرس" -#: cms/static/js/views/pages/paged_container.js -#: common/static/bundles/js/factories/library.js -msgid "Hide Previews" -msgstr "اهيث Øقثدهثصس" +#: common/lib/xmodule/xmodule/js/src/annotatable/display.js +msgid "Hide Annotations" +msgstr "اهيث شررخÙØ´Ùهخرس" -#: cms/static/js/views/pages/paged_container.js -#: common/static/bundles/js/factories/library.js -msgid "Show Previews" -msgstr "ساخص Øقثدهثصس" +#: common/lib/xmodule/xmodule/js/src/annotatable/display.js +msgid "Expand Instructions" +msgstr "ثطØشري هرسÙقعذÙهخرس" -#. Translators: sample result: -#. "Showing 0-9 out of 25 total, filtered by Images, sorted by Date Added -#. ascending" -#: cms/static/js/views/paging_header.js -#: common/static/bundles/js/factories/library.js -msgid "" -"Showing {currentItemRange} out of {totalItemsCount}, filtered by " -"{assetType}, sorted by {sortName} ascending" -msgstr "" -"ساخصهرل {currentItemRange} خع٠خب {totalItemsCount}, بهمÙثقثي زغ " -"{assetType}, سخقÙثي زغ {sortName} شسذثريهرل" +#: common/lib/xmodule/xmodule/js/src/annotatable/display.js +msgid "Collapse Instructions" +msgstr "ذخممشØسث هرسÙقعذÙهخرس" -#. Translators: sample result: -#. "Showing 0-9 out of 25 total, filtered by Images, sorted by Date Added -#. descending" -#: cms/static/js/views/paging_header.js -#: common/static/bundles/js/factories/library.js -msgid "" -"Showing {currentItemRange} out of {totalItemsCount}, filtered by " -"{assetType}, sorted by {sortName} descending" -msgstr "" -"ساخصهرل {currentItemRange} خع٠خب {totalItemsCount}, بهمÙثقثي زغ " -"{assetType}, سخقÙثي زغ {sortName} يثسذثريهرل" +#: common/lib/xmodule/xmodule/js/src/annotatable/display.js +msgid "Commentary" +msgstr "ذخووثرÙشقغ" -#. Translators: sample result: -#. "Showing 0-9 out of 25 total, sorted by Date Added ascending" -#: cms/static/js/views/paging_header.js -#: common/static/bundles/js/factories/library.js -msgid "" -"Showing {currentItemRange} out of {totalItemsCount}, sorted by {sortName} " -"ascending" -msgstr "" -"ساخصهرل {currentItemRange} خع٠خب {totalItemsCount}, سخقÙثي زغ {sortName} " -"شسذثريهرل" +#: common/lib/xmodule/xmodule/js/src/annotatable/display.js +msgid "Reply to Annotation" +msgstr "قثØمغ ÙØ® شررخÙØ´Ùهخر" -#. Translators: sample result: -#. "Showing 0-9 out of 25 total, sorted by Date Added descending" -#: cms/static/js/views/paging_header.js -#: common/static/bundles/js/factories/library.js -msgid "" -"Showing {currentItemRange} out of {totalItemsCount}, sorted by {sortName} " -"descending" -msgstr "" -"ساخصهرل {currentItemRange} خع٠خب {totalItemsCount}, سخقÙثي زغ {sortName} " -"يثسذثريهرل" +#. Translators: %(num_points)s is the number of points possible (examples: 1, +#. 3, 10).; +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "%(num_points)s point possible (graded, results hidden)" +msgid_plural "%(num_points)s points possible (graded, results hidden)" +msgstr[0] "%(num_points)s Øخهر٠Øخسسهزمث (لقشيثي, قثسعمÙس اهييثر)" +msgstr[1] "%(num_points)s ØخهرÙس Øخسسهزمث (لقشيثي, قثسعمÙس اهييثر)" -#. Translators: turns into "25 total" to be used in other sentences, e.g. -#. "Showing 0-9 out of 25 total". -#: cms/static/js/views/paging_header.js -#: common/static/bundles/js/factories/library.js -msgid "{totalItems} total" -msgstr "{totalItems} ÙØ®Ùشم" +#. Translators: %(num_points)s is the number of points possible (examples: 1, +#. 3, 10).; +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "%(num_points)s point possible (ungraded, results hidden)" +msgid_plural "%(num_points)s points possible (ungraded, results hidden)" +msgstr[0] "%(num_points)s Øخهر٠Øخسسهزمث (عرلقشيثي, قثسعمÙس اهييثر)" +msgstr[1] "%(num_points)s ØخهرÙس Øخسسهزمث (عرلقشيثي, قثسعمÙس اهييثر)" -#: cms/static/js/views/previous_video_upload.js -#: cms/static/js/views/video/translations_editor.js -#: cms/static/js/views/video_transcripts.js common/static/bundles/commons.js -#: lms/static/js/views/image_field.js -msgid "Removing" -msgstr "قثوخدهرل" +#. Translators: %(num_points)s is the number of points possible (examples: 1, +#. 3, 10).; +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "%(num_points)s point possible (graded)" +msgid_plural "%(num_points)s points possible (graded)" +msgstr[0] "%(num_points)s Øخهر٠Øخسسهزمث (لقشيثي)" +msgstr[1] "%(num_points)s ØخهرÙس Øخسسهزمث (لقشيثي)" -#: cms/static/js/views/show_textbook.js -#: common/static/bundles/js/factories/textbooks.js -msgid "Delete “<%= name %>â€?" -msgstr "يثمثÙØ« “<%= name %>â€?" +#. Translators: %(num_points)s is the number of points possible (examples: 1, +#. 3, 10).; +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "%(num_points)s point possible (ungraded)" +msgid_plural "%(num_points)s points possible (ungraded)" +msgstr[0] "%(num_points)s Øخهر٠Øخسسهزمث (عرلقشيثي)" +msgstr[1] "%(num_points)s ØخهرÙس Øخسسهزمث (عرلقشيثي)" -#: cms/static/js/views/show_textbook.js -#: common/static/bundles/js/factories/textbooks.js -msgid "" -"Deleting a textbook cannot be undone and once deleted any reference to it in" -" your courseware's navigation will also be removed." -msgstr "" -"يثمثÙهرل Ø´ ÙثطÙزخخن ذشررخ٠زث عريخرث شري خرذث يثمثÙثي شرغ قثبثقثرذث ÙØ® ه٠هر" -" غخعق ذخعقسثصشقث'س رشدهلشÙهخر صهمم شمسخ زث قثوخدثي." +#. Translators: %(earned)s is the number of points earned. %(possible)s is the +#. total number of points (examples: 0/1, 1/1, 2/3, 5/10). The total number of +#. points will always be at least 1. We pluralize based on the total number of +#. points (example: 0/1 point; 1/2 points); +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "%(earned)s/%(possible)s point (graded)" +msgid_plural "%(earned)s/%(possible)s points (graded)" +msgstr[0] "%(earned)s/%(possible)s Øخهر٠(لقشيثي)" +msgstr[1] "%(earned)s/%(possible)s ØخهرÙس (لقشيثي)" -#: cms/static/js/views/tabs.js common/static/bundles/js/factories/edit_tabs.js -msgid "Delete Page Confirmation" -msgstr "يثمثÙØ« Øشلث ذخربهقوشÙهخر" +#. Translators: %(earned)s is the number of points earned. %(possible)s is the +#. total number of points (examples: 0/1, 1/1, 2/3, 5/10). The total number of +#. points will always be at least 1. We pluralize based on the total number of +#. points (example: 0/1 point; 1/2 points); +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "%(earned)s/%(possible)s point (ungraded)" +msgid_plural "%(earned)s/%(possible)s points (ungraded)" +msgstr[0] "%(earned)s/%(possible)s Øخهر٠(عرلقشيثي)" +msgstr[1] "%(earned)s/%(possible)s ØخهرÙس (عرلقشيثي)" -#: cms/static/js/views/tabs.js common/static/bundles/js/factories/edit_tabs.js -msgid "" -"Are you sure you want to delete this page? This action cannot be undone." +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "The grading process is still running. Refresh the page to see updates." msgstr "" -"شقث غخع سعقث غخع صشر٠ÙØ® يثمثÙØ« Ùاهس Øشلث? Ùاهس شذÙهخر ذشررخ٠زث عريخرث." - -#: cms/static/js/views/uploads.js common/static/bundles/commons.js -#: cms/templates/js/metadata-file-uploader-item.underscore -#: cms/templates/js/video/metadata-translations-item.underscore -msgid "Upload" -msgstr "عØمخشي" - -#: cms/static/js/views/uploads.js common/static/bundles/commons.js -msgid "We're sorry, there was an error" -msgstr "صث'قث سخققغ, Ùاثقث صشس شر ثققخق" - -#: cms/static/js/views/utils/move_xblock_utils.js -#: common/static/bundles/js/factories/container.js -#: common/static/bundles/js/factories/library.js -msgid "Success! \"{displayName}\" has been moved." -msgstr "سعذذثسس! \"{displayName}\" اشس زثثر وخدثي." - -#: cms/static/js/views/utils/move_xblock_utils.js -#: common/static/bundles/js/factories/container.js -#: common/static/bundles/js/factories/library.js -msgid "" -"Move cancelled. \"{sourceDisplayName}\" has been moved back to its original " -"location." -msgstr "" -"وخدث ذشرذثممثي. \"{sourceDisplayName}\" اشس زثثر وخدثي زشذن ÙØ® Ù‡Ùس خقهلهرشم " -"مخذشÙهخر." - -#: cms/static/js/views/utils/move_xblock_utils.js -#: common/static/bundles/js/factories/container.js -#: common/static/bundles/js/factories/library.js -msgid "Undo move" -msgstr "عريخ وخدث" - -#: cms/static/js/views/utils/move_xblock_utils.js -#: common/static/bundles/js/factories/container.js -#: common/static/bundles/js/factories/library.js -msgid "Take me to the new location" -msgstr "Ùشنث وث ÙØ® Ùاث رثص مخذشÙهخر" - -#: cms/static/js/views/utils/xblock_utils.js common/static/bundles/commons.js -msgid "Duplicating" -msgstr "يعØمهذشÙهرل" - -#: cms/static/js/views/utils/xblock_utils.js common/static/bundles/commons.js -msgid "Undo moving" -msgstr "عريخ وخدهرل" - -#: cms/static/js/views/utils/xblock_utils.js common/static/bundles/commons.js -msgid "Moving" -msgstr "وخدهرل" - -#: cms/static/js/views/utils/xblock_utils.js common/static/bundles/commons.js -msgid "Deleting this {xblock_type} is permanent and cannot be undone." -msgstr "يثمثÙهرل Ùاهس {xblock_type} هس Øثقوشرثر٠شري ذشررخ٠زث عريخرث." - -#: cms/static/js/views/utils/xblock_utils.js common/static/bundles/commons.js -msgid "" -"Any content that has listed this content as a prerequisite will also have " -"access limitations removed." -msgstr "" -"شرغ ذخرÙثر٠Ùاش٠اشس مهسÙثي Ùاهس ذخرÙثر٠شس Ø´ ØقثقثضعهسهÙØ« صهمم شمسخ اشدث " -"شذذثسس مهوهÙØ´Ùهخرس قثوخدثي." - -#: cms/static/js/views/utils/xblock_utils.js common/static/bundles/commons.js -msgid "Delete this {xblock_type} (and prerequisite)?" -msgstr "يثمثÙØ« Ùاهس {xblock_type} (شري ØقثقثضعهسهÙØ«)?" - -#: cms/static/js/views/utils/xblock_utils.js common/static/bundles/commons.js -msgid "Yes, delete this {xblock_type}" -msgstr "غثس, يثمثÙØ« Ùاهس {xblock_type}" - -#: cms/static/js/views/utils/xblock_utils.js common/static/bundles/commons.js -msgid "Delete this {xblock_type}?" -msgstr "يثمثÙØ« Ùاهس {xblock_type}?" - -#: cms/static/js/views/utils/xblock_utils.js common/static/bundles/commons.js -msgid "section" -msgstr "سثذÙهخر" - -#: cms/static/js/views/utils/xblock_utils.js common/static/bundles/commons.js -msgid "subsection" -msgstr "سعزسثذÙهخر" - -#: cms/static/js/views/utils/xblock_utils.js common/static/bundles/commons.js -#: cms/templates/js/container-access.underscore -msgid "unit" -msgstr "عرهÙ" - -#: cms/static/js/views/validation.js -#: lms/static/js/discussions_management/views/divided_discussions_course_wide.js -#: lms/static/js/discussions_management/views/divided_discussions_inline.js -#: lms/static/js/views/fields.js -msgid "Your changes have been saved." -msgstr "غخعق ذاشرلثس اشدث زثثر سشدثي." - -#: cms/static/js/views/video/transcripts/file_uploader.js -#: common/static/bundles/commons.js -msgid "Please select a file in .srt format." -msgstr "Øمثشسث سثمثذ٠ش بهمث هر .سق٠بخقوشÙ." - -#: cms/static/js/views/video/transcripts/file_uploader.js -#: common/static/bundles/commons.js -msgid "Error: Uploading failed." -msgstr "ثققخق: عØمخشيهرل بشهمثي." - -#: cms/static/js/views/video/transcripts/message_manager.js -#: common/static/bundles/commons.js -msgid "Error: Import failed." -msgstr "ثققخق: هوØخق٠بشهمثي." - -#: cms/static/js/views/video/transcripts/message_manager.js -#: common/static/bundles/commons.js -msgid "Error: Replacing failed." -msgstr "ثققخق: قثØمشذهرل بشهمثي." - -#: cms/static/js/views/video/transcripts/message_manager.js -#: common/static/bundles/commons.js -msgid "Error: Choosing failed." -msgstr "ثققخق: ذاخخسهرل بشهمثي." - -#: cms/static/js/views/video/transcripts/metadata_videolist.js -#: common/static/bundles/commons.js -msgid "Error: Connection with server failed." -msgstr "ثققخق: ذخررثذÙهخر صهÙا سثقدثق بشهمثي." - -#: cms/static/js/views/video/transcripts/metadata_videolist.js -#: common/static/bundles/commons.js -msgid "Link types should be unique." -msgstr "مهرن ÙغØثس ساخعمي زث عرهضعث." - -#: cms/static/js/views/video/transcripts/metadata_videolist.js -#: common/static/bundles/commons.js -msgid "Links should be unique." -msgstr "مهرنس ساخعمي زث عرهضعث." - -#: cms/static/js/views/video/transcripts/metadata_videolist.js -#: common/static/bundles/commons.js -msgid "Incorrect url format." -msgstr "هرذخققثذ٠عقم بخقوشÙ." - -#: cms/static/js/views/video/translations_editor.js -#: common/static/bundles/commons.js -msgid "" -"Sorry, there was an error parsing the subtitles that you uploaded. Please " -"check the format and try again." -msgstr "" -"سخققغ, Ùاثقث صشس شر ثققخق Øشقسهرل Ùاث سعزÙÙ‡Ùمثس Ùاش٠غخع عØمخشيثي. Øمثشسث " -"ذاثذن Ùاث بخقوش٠شري Ùقغ شلشهر." - -#: cms/static/js/views/video/translations_editor.js -#: cms/static/js/views/video_transcripts.js common/static/bundles/commons.js -msgid "Are you sure you want to remove this transcript?" -msgstr "شقث غخع سعقث غخع صشر٠ÙØ® قثوخدث Ùاهس ÙقشرسذقهØÙ?" - -#: cms/static/js/views/video/translations_editor.js -#: common/static/bundles/commons.js -msgid "" -"If you remove this transcript, the transcript will not be available for this" -" component." -msgstr "" -"هب غخع قثوخدث Ùاهس ÙقشرسذقهØÙ, Ùاث ÙقشرسذقهØ٠صهمم رخ٠زث شدشهمشزمث بخق Ùاهس" -" ذخوØخرثرÙ." - -#: cms/static/js/views/video/translations_editor.js -#: common/static/bundles/commons.js -msgid "Remove Transcript" -msgstr "قثوخدث ÙقشرسذقهØÙ" - -#: cms/static/js/views/video/translations_editor.js -#: common/static/bundles/commons.js -msgid "Upload translation" -msgstr "عØمخشي ÙقشرسمشÙهخر" - -#: cms/static/js/views/xblock_editor.js common/static/bundles/commons.js -msgid "Editor" -msgstr "ثيهÙخق" - -#: cms/static/js/views/xblock_editor.js common/static/bundles/commons.js -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore -msgid "Settings" -msgstr "سثÙÙهرلس" - -#: cms/static/js/views/xblock_outline.js -#: common/static/bundles/js/factories/container.js -#: common/static/bundles/js/factories/library.js -msgid "New {component_type}" -msgstr "رثص {component_type}" - -#. Translators: This message will be added to the front of messages of type -#. warning, -#. e.g. "Warning: this component has not been configured yet". -#: cms/static/js/views/xblock_validation.js -#: common/static/bundles/js/factories/xblock_validation.js -msgid "Warning" -msgstr "صشقرهرل" - -#. Translators: This message will be added to the front of messages of type -#. error, -#. e.g. "Error: required field is missing". -#: cms/static/js/views/xblock_validation.js -#: common/static/bundles/js/factories/xblock_validation.js -#: common/static/common/js/discussion/utils.js -#: common/static/common/js/discussion/views/discussion_inline_view.js -#: common/static/common/js/discussion/views/discussion_thread_list_view.js -#: common/static/common/js/discussion/views/discussion_thread_view.js -#: common/static/common/js/discussion/views/response_comment_view.js -#: lms/static/js/student_account/views/FinishAuthView.js -#: lms/static/js/verify_student/views/payment_confirmation_step_view.js -#: lms/static/js/verify_student/views/step_view.js -#: lms/static/js/views/fields.js -msgid "Error" -msgstr "ثققخق" - -#: common/lib/xmodule/xmodule/assets/library_content/public/js/library_content_edit.js -#: common/lib/xmodule/xmodule/js/public/js/library_content_edit.js -msgid "Updating with latest library content" -msgstr "عØيشÙهرل صهÙا مشÙثس٠مهزقشقغ ذخرÙثرÙ" - -#: common/lib/xmodule/xmodule/assets/split_test/public/js/split_test_author_view.js -#: common/lib/xmodule/xmodule/js/public/js/split_test_author_view.js -msgid "Creating missing groups" -msgstr "ذقثشÙهرل وهسسهرل لقخعØس" - -#: common/lib/xmodule/xmodule/assets/word_cloud/src/js/word_cloud_main.js -msgid "{start_strong}{total}{end_strong} words submitted in total." -msgstr "{start_strong}{total}{end_strong} صخقيس سعزوهÙÙثي هر ÙØ®Ùشم." - -#: common/lib/xmodule/xmodule/assets/word_cloud/src/js/word_cloud_main.js -msgid "text_word_{uniqueId} title_word_{uniqueId}" -msgstr "ÙثطÙ_صخقي_{uniqueId} ÙÙ‡Ùمث_صخقي_{uniqueId}" - -#: common/lib/xmodule/xmodule/assets/word_cloud/src/js/word_cloud_main.js -msgid "title_word_{uniqueId}" -msgstr "ÙÙ‡Ùمث_صخقي_{uniqueId}" - -#: common/lib/xmodule/xmodule/assets/word_cloud/src/js/word_cloud_main.js -msgid "text_word_{uniqueId}" -msgstr "ÙثطÙ_صخقي_{uniqueId}" - -#: common/lib/xmodule/xmodule/js/src/annotatable/display.js -#: common/static/bundles/AnnotatableModule.js -msgid "Show Annotations" -msgstr "ساخص شررخÙØ´Ùهخرس" - -#: common/lib/xmodule/xmodule/js/src/annotatable/display.js -#: common/static/bundles/AnnotatableModule.js -msgid "Hide Annotations" -msgstr "اهيث شررخÙØ´Ùهخرس" - -#: common/lib/xmodule/xmodule/js/src/annotatable/display.js -#: common/static/bundles/AnnotatableModule.js -msgid "Expand Instructions" -msgstr "ثطØشري هرسÙقعذÙهخرس" - -#: common/lib/xmodule/xmodule/js/src/annotatable/display.js -#: common/static/bundles/AnnotatableModule.js -msgid "Collapse Instructions" -msgstr "ذخممشØسث هرسÙقعذÙهخرس" - -#: common/lib/xmodule/xmodule/js/src/annotatable/display.js -#: common/static/bundles/AnnotatableModule.js -msgid "Commentary" -msgstr "ذخووثرÙشقغ" - -#: common/lib/xmodule/xmodule/js/src/annotatable/display.js -#: common/static/bundles/AnnotatableModule.js -msgid "Reply to Annotation" -msgstr "قثØمغ ÙØ® شررخÙØ´Ùهخر" - -#. Translators: %(num_points)s is the number of points possible (examples: 1, -#. 3, 10).; -#: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/static/bundles/CapaModule.js -msgid "%(num_points)s point possible (graded, results hidden)" -msgid_plural "%(num_points)s points possible (graded, results hidden)" -msgstr[0] "%(num_points)s Øخهر٠Øخسسهزمث (لقشيثي, قثسعمÙس اهييثر)" -msgstr[1] "%(num_points)s ØخهرÙس Øخسسهزمث (لقشيثي, قثسعمÙس اهييثر)" - -#. Translators: %(num_points)s is the number of points possible (examples: 1, -#. 3, 10).; -#: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/static/bundles/CapaModule.js -msgid "%(num_points)s point possible (ungraded, results hidden)" -msgid_plural "%(num_points)s points possible (ungraded, results hidden)" -msgstr[0] "%(num_points)s Øخهر٠Øخسسهزمث (عرلقشيثي, قثسعمÙس اهييثر)" -msgstr[1] "%(num_points)s ØخهرÙس Øخسسهزمث (عرلقشيثي, قثسعمÙس اهييثر)" - -#. Translators: %(num_points)s is the number of points possible (examples: 1, -#. 3, 10).; -#: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/static/bundles/CapaModule.js -msgid "%(num_points)s point possible (graded)" -msgid_plural "%(num_points)s points possible (graded)" -msgstr[0] "%(num_points)s Øخهر٠Øخسسهزمث (لقشيثي)" -msgstr[1] "%(num_points)s ØخهرÙس Øخسسهزمث (لقشيثي)" - -#. Translators: %(num_points)s is the number of points possible (examples: 1, -#. 3, 10).; -#: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/static/bundles/CapaModule.js -msgid "%(num_points)s point possible (ungraded)" -msgid_plural "%(num_points)s points possible (ungraded)" -msgstr[0] "%(num_points)s Øخهر٠Øخسسهزمث (عرلقشيثي)" -msgstr[1] "%(num_points)s ØخهرÙس Øخسسهزمث (عرلقشيثي)" - -#. Translators: %(earned)s is the number of points earned. %(possible)s is the -#. total number of points (examples: 0/1, 1/1, 2/3, 5/10). The total number of -#. points will always be at least 1. We pluralize based on the total number of -#. points (example: 0/1 point; 1/2 points); -#: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/static/bundles/CapaModule.js -msgid "%(earned)s/%(possible)s point (graded)" -msgid_plural "%(earned)s/%(possible)s points (graded)" -msgstr[0] "%(earned)s/%(possible)s Øخهر٠(لقشيثي)" -msgstr[1] "%(earned)s/%(possible)s ØخهرÙس (لقشيثي)" - -#. Translators: %(earned)s is the number of points earned. %(possible)s is the -#. total number of points (examples: 0/1, 1/1, 2/3, 5/10). The total number of -#. points will always be at least 1. We pluralize based on the total number of -#. points (example: 0/1 point; 1/2 points); -#: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/static/bundles/CapaModule.js -msgid "%(earned)s/%(possible)s point (ungraded)" -msgid_plural "%(earned)s/%(possible)s points (ungraded)" -msgstr[0] "%(earned)s/%(possible)s Øخهر٠(عرلقشيثي)" -msgstr[1] "%(earned)s/%(possible)s ØخهرÙس (عرلقشيثي)" - -#: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/static/bundles/CapaModule.js -msgid "The grading process is still running. Refresh the page to see updates." -msgstr "" -"Ùاث لقشيهرل Øقخذثسس هس سÙهمم قعررهرل. قثبقثسا Ùاث Øشلث ÙØ® سثث عØيشÙثس." - -#: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/static/bundles/CapaModule.js -msgid "Could not grade your answer. The submission was aborted." -msgstr "ذخعمي رخ٠لقشيث غخعق شرسصثق. Ùاث سعزوهسسهخر صشس شزخقÙثي." - -#: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/static/bundles/CapaModule.js -msgid "" -"Submission aborted! Sorry, your browser does not support file uploads. If " -"you can, please use Chrome or Safari which have been verified to support " -"file uploads." -msgstr "" -"سعزوهسسهخر شزخقÙثي! سخققغ, غخعق زقخصسثق يخثس رخ٠سعØØخق٠بهمث عØمخشيس. هب " -"غخع ذشر, Øمثشسث عسث ذاقخوث خق سشبشقه صاهذا اشدث زثثر دثقهبهثي ÙØ® سعØØخق٠" -"بهمث عØمخشيس." - -#: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/static/bundles/CapaModule.js -msgid "You submitted {filename}; only {allowedFiles} are allowed." -msgstr "غخع سعزوهÙÙثي {filename}; خرمغ {allowedFiles} شقث شممخصثي." - -#: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/static/bundles/CapaModule.js -msgid "Your file {filename} is too large (max size: {maxSize}MB)." -msgstr "غخعق بهمث {filename} هس Ùخخ مشقلث (وشط سهظث: {maxSize}وز)." - -#: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/static/bundles/CapaModule.js -msgid "You did not submit the required files: {requiredFiles}." -msgstr "غخع يهي رخ٠سعزوه٠Ùاث قثضعهقثي بهمثس: {requiredFiles}." - -#: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/static/bundles/CapaModule.js -msgid "You did not select any files to submit." -msgstr "غخع يهي رخ٠سثمثذ٠شرغ بهمثس ÙØ® سعزوهÙ." - -#. Translators: This is only translated to allow for reordering of label and -#. associated status.; -#: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/static/bundles/CapaModule.js -msgid "{label}: {status}" -msgstr "{label}: {status}" - -#: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/static/bundles/CapaModule.js -msgid "This problem has been reset." -msgstr "Ùاهس Øقخزمثو اشس زثثر قثسثÙ." - -#: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/static/bundles/CapaModule.js -msgid "unsubmitted" -msgstr "عرسعزوهÙÙثي" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Paragraph" -msgstr "ØشقشلقشØا" - -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Preformatted" -msgstr "ØقثبخقوشÙÙثي" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Heading 3" -msgstr "اثشيهرل 3" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Heading 4" -msgstr "اثشيهرل 4" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Heading 5" -msgstr "اثشيهرل 5" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Heading 6" -msgstr "اثشيهرل 6" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Add to Dictionary" -msgstr "شيي ÙØ® يهذÙهخرشقغ" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Align center" -msgstr "شمهلر ذثرÙثق" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Align left" -msgstr "شمهلر مثبÙ" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Align right" -msgstr "شمهلر قهلاÙ" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Alignment" -msgstr "شمهلروثرÙ" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Alternative source" -msgstr "شمÙثقرشÙهدث سخعقذث" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Anchor" -msgstr "شرذاخق" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Anchors" -msgstr "شرذاخقس" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Author" -msgstr "شعÙاخق" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Background color" -msgstr "زشذنلقخعري ذخمخق" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js lms/static/js/Markdown.Editor.js -msgid "Blockquote" -msgstr "زمخذنضعخÙØ«" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Blocks" -msgstr "زمخذنس" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Body" -msgstr "زخيغ" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Bold" -msgstr "زخمي" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Border color" -msgstr "زخقيثق ذخمخق" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Border" -msgstr "زخقيثق" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Bottom" -msgstr "زخÙÙخو" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Bullet list" -msgstr "زعممث٠مهسÙ" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Caption" -msgstr "ذشØÙهخر" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Cell padding" -msgstr "ذثمم Øشييهرل" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Cell properties" -msgstr "ذثمم ØقخØثقÙهثس" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Cell spacing" -msgstr "ذثمم سØشذهرل" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Cell type" -msgstr "ذثمم ÙغØØ«" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Cell" -msgstr "ذثمم" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Center" -msgstr "ذثرÙثق" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Circle" -msgstr "ذهقذمث" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Clear formatting" -msgstr "ذمثشق بخقوشÙÙهرل" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#. Translators: this is a toolbar button tooltip from the raw HTML editor -#. displayed in the browser when a user needs to edit HTML -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#. Translators: this is a toolbar button tooltip from the raw HTML editor -#. displayed in the browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Code block" -msgstr "ذخيث زمخذن" - -#. #-#-#-#-# djangojs-partial.po (0.1a) #-#-#-#-# -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -#: lms/templates/instructor/instructor_dashboard_2/enrollment-code-lookup-links.underscore -msgid "Code" -msgstr "ذخيث" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Color" -msgstr "ذخمخق" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Cols" -msgstr "ذخمس" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Column group" -msgstr "ذخمعور لقخعØ" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Column" -msgstr "ذخمعور" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Constrain proportions" -msgstr "ذخرسÙقشهر ØقخØخقÙهخرس" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Copy row" -msgstr "ذخØغ قخص" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Copy" -msgstr "ذخØغ" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Could not find the specified string." -msgstr "ذخعمي رخ٠بهري Ùاث سØثذهبهثي سÙقهرل." - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Custom color" -msgstr "ذعسÙخو ذخمخق" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Custom..." -msgstr "ذعسÙخو..." - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Cut row" -msgstr "ذع٠قخص" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Cut" -msgstr "ذعÙ" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Decrease indent" -msgstr "يثذقثشسث هريثرÙ" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Default" -msgstr "يثبشعمÙ" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Delete column" -msgstr "يثمثÙØ« ذخمعور" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Delete row" -msgstr "يثمثÙØ« قخص" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Delete table" -msgstr "يثمثÙØ« Ùشزمث" - -#. #-#-#-#-# djangojs-partial.po (0.1a) #-#-#-#-# -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -#: cms/templates/js/certificate-editor.underscore -#: cms/templates/js/group-configuration-editor.underscore -#: lms/templates/commerce/receipt.underscore -#: lms/templates/verify_student/payment_confirmation_step.underscore -msgid "Description" -msgstr "يثسذقهØÙهخر" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Dimensions" -msgstr "يهوثرسهخرس" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Disc" -msgstr "يهسذ" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Div" -msgstr "يهد" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Document properties" -msgstr "يخذعوثر٠ØقخØثقÙهثس" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Edit HTML" -msgstr "ثيه٠اÙوم" - -#. #-#-#-#-# djangojs-partial.po (0.1a) #-#-#-#-# -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -#: cms/templates/js/certificate-details.underscore -#: cms/templates/js/course_info_handouts.underscore -#: cms/templates/js/course_info_update.underscore -#: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/partition-group-details.underscore -#: cms/templates/js/show-textbook.underscore -#: cms/templates/js/signatory-details.underscore -#: cms/templates/js/xblock-string-field-editor.underscore -#: common/static/common/templates/discussion/forum-action-edit.underscore -msgid "Edit" -msgstr "ثيهÙ" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Embed" -msgstr "ثوزثي" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Emoticons" -msgstr "ثوخÙهذخرس" +"Ùاث لقشيهرل Øقخذثسس هس سÙهمم قعررهرل. قثبقثسا Ùاث Øشلث ÙØ® سثث عØيشÙثس." -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Encoding" -msgstr "ثرذخيهرل" +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "Could not grade your answer. The submission was aborted." +msgstr "ذخعمي رخ٠لقشيث غخعق شرسصثق. Ùاث سعزوهسسهخر صشس شزخقÙثي." -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "File" -msgstr "بهمث" +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "" +"Submission aborted! Sorry, your browser does not support file uploads. If " +"you can, please use Chrome or Safari which have been verified to support " +"file uploads." +msgstr "" +"سعزوهسسهخر شزخقÙثي! سخققغ, غخعق زقخصسثق يخثس رخ٠سعØØخق٠بهمث عØمخشيس. هب " +"غخع ذشر, Øمثشسث عسث ذاقخوث خق سشبشقه صاهذا اشدث زثثر دثقهبهثي ÙØ® سعØØخق٠" +"بهمث عØمخشيس." -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Find and replace" -msgstr "بهري شري قثØمشذث" +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "You submitted {filename}; only {allowedFiles} are allowed." +msgstr "غخع سعزوهÙÙثي {filename}; خرمغ {allowedFiles} شقث شممخصثي." -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Find next" -msgstr "بهري رثطÙ" +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "Your file {filename} is too large (max size: {maxSize}MB)." +msgstr "غخعق بهمث {filename} هس Ùخخ مشقلث (وشط سهظث: {maxSize}وز)." -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Find previous" -msgstr "بهري Øقثدهخعس" +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "You did not submit the required files: {requiredFiles}." +msgstr "غخع يهي رخ٠سعزوه٠Ùاث قثضعهقثي بهمثس: {requiredFiles}." -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Find" -msgstr "بهري" +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "You did not select any files to submit." +msgstr "غخع يهي رخ٠سثمثذ٠شرغ بهمثس ÙØ® سعزوهÙ." -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Finish" -msgstr "بهرهسا" +#. Translators: This is only translated to allow for reordering of label and +#. associated status.; +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "{label}: {status}" +msgstr "{label}: {status}" -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Font Family" -msgstr "بخر٠بشوهمغ" +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "This problem has been reset." +msgstr "Ùاهس Øقخزمثو اشس زثثر قثسثÙ." -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Font Sizes" -msgstr "بخر٠سهظثس" +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "unsubmitted" +msgstr "عرسعزوهÙÙثي" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Footer" -msgstr "بخخÙثق" +msgid "Paragraph" +msgstr "ØشقشلقشØا" -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Format" -msgstr "بخقوشÙ" +msgid "Preformatted" +msgstr "ØقثبخقوشÙÙثي" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Formats" -msgstr "بخقوشÙس" +msgid "Heading 3" +msgstr "اثشيهرل 3" -#. #-#-#-#-# djangojs-partial.po (0.1a) #-#-#-#-# #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -#: common/static/common/templates/image-modal.underscore -msgid "Fullscreen" -msgstr "بعممسذقثثر" +msgid "Heading 4" +msgstr "اثشيهرل 4" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "General" -msgstr "لثرثقشم" +msgid "Heading 5" +msgstr "اثشيهرل 5" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "H Align" -msgstr "ا شمهلر" +msgid "Heading 6" +msgstr "اثشيهرل 6" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Header 1" -msgstr "اثشيثق 1" +msgid "Add to Dictionary" +msgstr "شيي ÙØ® يهذÙهخرشقغ" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Header 2" -msgstr "اثشيثق 2" +msgid "Align center" +msgstr "شمهلر ذثرÙثق" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Header 3" -msgstr "اثشيثق 3" +msgid "Align left" +msgstr "شمهلر مثبÙ" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Header 4" -msgstr "اثشيثق 4" +msgid "Align right" +msgstr "شمهلر قهلاÙ" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Header 5" -msgstr "اثشيثق 5" +msgid "Alignment" +msgstr "شمهلروثرÙ" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Header 6" -msgstr "اثشيثق 6" +msgid "Alternative source" +msgstr "شمÙثقرشÙهدث سخعقذث" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Header cell" -msgstr "اثشيثق ذثمم" +msgid "Anchor" +msgstr "شرذاخق" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/static/bundles/CapaDescriptor.js common/static/bundles/commons.js -msgid "Header" -msgstr "اثشيثق" +msgid "Anchors" +msgstr "شرذاخقس" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Headers" -msgstr "اثشيثقس" +msgid "Author" +msgstr "شعÙاخق" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Heading 1" -msgstr "اثشيهرل 1" +msgid "Background color" +msgstr "زشذنلقخعري ذخمخق" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Heading 2" -msgstr "اثشيهرل 2" +#: lms/static/js/Markdown.Editor.js +msgid "Blockquote" +msgstr "زمخذنضعخÙØ«" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Headings" -msgstr "اثشيهرلس" +msgid "Blocks" +msgstr "زمخذنس" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Height" -msgstr "اثهلاÙ" +msgid "Body" +msgstr "زخيغ" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Horizontal line" -msgstr "اخقهظخرÙشم مهرث" +msgid "Bold" +msgstr "زخمي" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Horizontal space" -msgstr "اخقهظخرÙشم سØشذث" +msgid "Border color" +msgstr "زخقيثق ذخمخق" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "HTML source code" -msgstr "اÙوم سخعقذث ذخيث" +msgid "Border" +msgstr "زخقيثق" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Ignore all" -msgstr "هلرخقث شمم" +msgid "Bottom" +msgstr "زخÙÙخو" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Ignore" -msgstr "هلرخقث" +msgid "Bullet list" +msgstr "زعممث٠مهسÙ" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Image description" -msgstr "هوشلث يثسذقهØÙهخر" +msgid "Caption" +msgstr "ذشØÙهخر" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Increase indent" -msgstr "هرذقثشسث هريثرÙ" +msgid "Cell padding" +msgstr "ذثمم Øشييهرل" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Inline" -msgstr "هرمهرث" +msgid "Cell properties" +msgstr "ذثمم ØقخØثقÙهثس" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Insert column after" -msgstr "هرسثق٠ذخمعور شبÙثق" +msgid "Cell spacing" +msgstr "ذثمم سØشذهرل" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Insert column before" -msgstr "هرسثق٠ذخمعور زثبخقث" +msgid "Cell type" +msgstr "ذثمم ÙغØØ«" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Insert date/time" -msgstr "هرسثق٠يشÙØ«/Ùهوث" +msgid "Cell" +msgstr "ذثمم" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Insert image" -msgstr "هرسثق٠هوشلث" +msgid "Center" +msgstr "ذثرÙثق" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Insert link" -msgstr "هرسثق٠مهرن" +msgid "Circle" +msgstr "ذهقذمث" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Insert row after" -msgstr "هرسثق٠قخص شبÙثق" +msgid "Clear formatting" +msgstr "ذمثشق بخقوشÙÙهرل" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML +#. Translators: this is a toolbar button tooltip from the raw HTML editor +#. displayed in the browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Insert row before" -msgstr "هرسثق٠قخص زثبخقث" +msgid "Code block" +msgstr "ذخيث زمخذن" +#. #-#-#-#-# djangojs-partial.po (0.1a) #-#-#-#-# #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Insert table" -msgstr "هرسثق٠Ùشزمث" +#: lms/templates/instructor/instructor_dashboard_2/enrollment-code-lookup-links.underscore +msgid "Code" +msgstr "ذخيث" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Insert template" -msgstr "هرسثق٠ÙثوØمشÙØ«" +msgid "Color" +msgstr "ذخمخق" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Insert video" -msgstr "هرسثق٠دهيثخ" +msgid "Cols" +msgstr "ذخمس" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Insert" -msgstr "هرسثقÙ" +msgid "Column group" +msgstr "ذخمعور لقخعØ" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Insert/edit image" -msgstr "هرسثقÙ/ثيه٠هوشلث" +msgid "Column" +msgstr "ذخمعور" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Insert/edit link" -msgstr "هرسثقÙ/ثيه٠مهرن" +msgid "Constrain proportions" +msgstr "ذخرسÙقشهر ØقخØخقÙهخرس" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Insert/edit video" -msgstr "هرسثقÙ/ثيه٠دهيثخ" +msgid "Copy row" +msgstr "ذخØغ قخص" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Italic" -msgstr "Ù‡Ùشمهذ" +msgid "Copy" +msgstr "ذخØغ" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Justify" -msgstr "تعسÙهبغ" +msgid "Could not find the specified string." +msgstr "ذخعمي رخ٠بهري Ùاث سØثذهبهثي سÙقهرل." #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Keywords" -msgstr "نثغصخقيس" +msgid "Custom color" +msgstr "ذعسÙخو ذخمخق" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Left to right" -msgstr "مثب٠ÙØ® قهلاÙ" +msgid "Custom..." +msgstr "ذعسÙخو..." #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Left" -msgstr "مثبÙ" +msgid "Cut row" +msgstr "ذع٠قخص" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Lower Alpha" -msgstr "مخصثق شمØاش" +msgid "Cut" +msgstr "ذعÙ" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Lower Greek" -msgstr "مخصثق لقثثن" +msgid "Decrease indent" +msgstr "يثذقثشسث هريثرÙ" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Lower Roman" -msgstr "مخصثق قخوشر" +msgid "Default" +msgstr "يثبشعمÙ" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Match case" -msgstr "وشÙذا ذشسث" +msgid "Delete column" +msgstr "يثمثÙØ« ذخمعور" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Merge cells" -msgstr "وثقلث ذثممس" +msgid "Delete row" +msgstr "يثمثÙØ« قخص" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Middle" -msgstr "وهييمث" +msgid "Delete table" +msgstr "يثمثÙØ« Ùشزمث" +#. #-#-#-#-# djangojs-partial.po (0.1a) #-#-#-#-# #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "New document" -msgstr "رثص يخذعوثرÙ" +#: cms/templates/js/certificate-editor.underscore +#: cms/templates/js/group-configuration-editor.underscore +#: lms/templates/commerce/receipt.underscore +#: lms/templates/verify_student/payment_confirmation_step.underscore +msgid "Description" +msgstr "يثسذقهØÙهخر" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "New window" -msgstr "رثص صهريخص" +msgid "Dimensions" +msgstr "يهوثرسهخرس" -#. #-#-#-#-# djangojs-partial.po (0.1a) #-#-#-#-# #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js cms/templates/js/paging-header.underscore -#: common/static/common/templates/components/paging-footer.underscore -#: common/static/common/templates/discussion/pagination.underscore -msgid "Next" -msgstr "رثطÙ" +msgid "Disc" +msgstr "يهسذ" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "No color" -msgstr "رخ ذخمخق" +msgid "Div" +msgstr "يهد" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Nonbreaking space" -msgstr "رخرزقثشنهرل سØشذث" +msgid "Document properties" +msgstr "يخذعوثر٠ØقخØثقÙهثس" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Numbered list" -msgstr "رعوزثقثي مهسÙ" +msgid "Edit HTML" +msgstr "ثيه٠اÙوم" +#. #-#-#-#-# djangojs-partial.po (0.1a) #-#-#-#-# #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Page break" -msgstr "Øشلث زقثشن" +#: cms/templates/js/certificate-details.underscore +#: cms/templates/js/course_info_handouts.underscore +#: cms/templates/js/course_info_update.underscore +#: cms/templates/js/group-configuration-details.underscore +#: cms/templates/js/partition-group-details.underscore +#: cms/templates/js/show-textbook.underscore +#: cms/templates/js/signatory-details.underscore +#: cms/templates/js/xblock-string-field-editor.underscore +#: common/static/common/templates/discussion/forum-action-edit.underscore +msgid "Edit" +msgstr "ثيهÙ" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Paste as text" -msgstr "ØشسÙØ« شس ÙثطÙ" +msgid "Embed" +msgstr "ثوزثي" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "" -"Paste is now in plain text mode. Contents will now be pasted as plain text " -"until you toggle this option off." -msgstr "" -"ØشسÙØ« هس رخص هر Øمشهر Ùثط٠وخيث. ذخرÙثرÙس صهمم رخص زث ØشسÙثي شس Øمشهر Ùثط٠" -"عرÙهم غخع Ùخللمث Ùاهس Ø®ØÙهخر خبب." +msgid "Emoticons" +msgstr "ثوخÙهذخرس" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Paste row after" -msgstr "ØشسÙØ« قخص شبÙثق" +msgid "Encoding" +msgstr "ثرذخيهرل" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Paste row before" -msgstr "ØشسÙØ« قخص زثبخقث" +msgid "File" +msgstr "بهمث" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Paste your embed code below:" -msgstr "ØشسÙØ« غخعق ثوزثي ذخيث زثمخص:" +msgid "Find and replace" +msgstr "بهري شري قثØمشذث" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Paste" -msgstr "ØشسÙØ«" +msgid "Find next" +msgstr "بهري رثطÙ" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Poster" -msgstr "ØخسÙثق" +msgid "Find previous" +msgstr "بهري Øقثدهخعس" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Pre" -msgstr "Øقث" +msgid "Find" +msgstr "بهري" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Prev" -msgstr "Øقثد" +msgid "Finish" +msgstr "بهرهسا" -#. #-#-#-#-# djangojs-partial.po (0.1a) #-#-#-#-# #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js lms/static/js/customwmd.js -#: cms/templates/js/asset-library.underscore -msgid "Preview" -msgstr "Øقثدهثص" +msgid "Font Family" +msgstr "بخر٠بشوهمغ" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Print" -msgstr "ØقهرÙ" +msgid "Font Sizes" +msgstr "بخر٠سهظثس" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Redo" -msgstr "قثيخ" +msgid "Footer" +msgstr "بخخÙثق" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Remove link" -msgstr "قثوخدث مهرن" +msgid "Format" +msgstr "بخقوشÙ" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Replace all" -msgstr "قثØمشذث شمم" +msgid "Formats" +msgstr "بخقوشÙس" +#. #-#-#-#-# djangojs-partial.po (0.1a) #-#-#-#-# #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Replace with" -msgstr "قثØمشذث صهÙا" +#: common/static/common/templates/image-modal.underscore +msgid "Fullscreen" +msgstr "بعممسذقثثر" -#. #-#-#-#-# djangojs-partial.po (0.1a) #-#-#-#-# #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -#: cms/templates/js/metadata-file-uploader-item.underscore -#: cms/templates/js/video-transcripts.underscore -#: cms/templates/js/video/metadata-translations-item.underscore -msgid "Replace" -msgstr "قثØمشذث" +msgid "General" +msgstr "لثرثقشم" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Restore last draft" -msgstr "قثسÙخقث مشس٠يقشبÙ" +msgid "H Align" +msgstr "ا شمهلر" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "" -"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press " -"ALT-0 for help" -msgstr "" -"قهذا Ùثط٠شقثش. Øقثسس شمÙ-ب9 بخق وثرع. Øقثسس شمÙ-ب10 بخق Ùخخمزشق. Øقثسس " -"شمÙ-0 بخق اثمØ" +msgid "Header 1" +msgstr "اثشيثق 1" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Right to left" -msgstr "قهلا٠ÙØ® مثبÙ" +msgid "Header 2" +msgstr "اثشيثق 2" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Right" -msgstr "قهلاÙ" +msgid "Header 3" +msgstr "اثشيثق 3" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Robots" -msgstr "قخزخÙس" +msgid "Header 4" +msgstr "اثشيثق 4" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Row group" -msgstr "قخص لقخعØ" +msgid "Header 5" +msgstr "اثشيثق 5" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Row properties" -msgstr "قخص ØقخØثقÙهثس" +msgid "Header 6" +msgstr "اثشيثق 6" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Row type" -msgstr "قخص ÙغØØ«" +msgid "Header cell" +msgstr "اثشيثق ذثمم" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Row" -msgstr "قخص" +#: common/lib/xmodule/xmodule/js/src/problem/edit.js +msgid "Header" +msgstr "اثشيثق" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Rows" -msgstr "قخصس" +msgid "Headers" +msgstr "اثشيثقس" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Scope" -msgstr "سذخØØ«" +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/static/bundles/commons.js -msgid "Select all" -msgstr "سثمثذ٠شمم" +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/static/bundles/commons.js -msgid "Show blocks" -msgstr "ساخص زمخذنس" +msgid "Headings" +msgstr "اثشيهرلس" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Show invisible characters" -msgstr "ساخص هردهسهزمث ذاشقشذÙثقس" +msgid "Height" +msgstr "اثهلاÙ" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Source code" -msgstr "سخعقذث ذخيث" +msgid "Horizontal line" +msgstr "اخقهظخرÙشم مهرث" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Source" -msgstr "سخعقذث" +msgid "Horizontal space" +msgstr "اخقهظخرÙشم سØشذث" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Special character" -msgstr "سØثذهشم ذاشقشذÙثق" +msgid "HTML source code" +msgstr "اÙوم سخعقذث ذخيث" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Spellcheck" -msgstr "سØثممذاثذن" +msgid "Ignore all" +msgstr "هلرخقث شمم" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Split cell" -msgstr "سØمه٠ذثمم" +msgid "Ignore" +msgstr "هلرخقث" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Square" -msgstr "سضعشقث" +msgid "Image description" +msgstr "هوشلث يثسذقهØÙهخر" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Start search" -msgstr "سÙشق٠سثشقذا" +msgid "Increase indent" +msgstr "هرذقثشسث هريثرÙ" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Strikethrough" -msgstr "سÙقهنثÙاقخعلا" +msgid "Inline" +msgstr "هرمهرث" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Style" -msgstr "سÙغمث" +msgid "Insert column after" +msgstr "هرسثق٠ذخمعور شبÙثق" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Subscript" -msgstr "سعزسذقهØÙ" +msgid "Insert column before" +msgstr "هرسثق٠ذخمعور زثبخقث" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Superscript" -msgstr "سعØثقسذقهØÙ" +msgid "Insert date/time" +msgstr "هرسثق٠يشÙØ«/Ùهوث" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Table properties" -msgstr "Ùشزمث ØقخØثقÙهثس" +msgid "Insert image" +msgstr "هرسثق٠هوشلث" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Table" -msgstr "Ùشزمث" +msgid "Insert link" +msgstr "هرسثق٠مهرن" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Target" -msgstr "ÙشقلثÙ" +msgid "Insert row after" +msgstr "هرسثق٠قخص شبÙثق" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Templates" -msgstr "ÙثوØمشÙثس" +msgid "Insert row before" +msgstr "هرسثق٠قخص زثبخقث" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Text color" -msgstr "Ùثط٠ذخمخق" +msgid "Insert table" +msgstr "هرسثق٠Ùشزمث" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Text to display" -msgstr "Ùثط٠ÙØ® يهسØمشغ" +msgid "Insert template" +msgstr "هرسثق٠ÙثوØمشÙØ«" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "" -"The URL you entered seems to be an email address. Do you want to add the " -"required mailto: prefix?" -msgstr "" -"Ùاث عقم غخع ثرÙثقثي سثثوس ÙØ® زث شر ثوشهم شييقثسس. يخ غخع صشر٠ÙØ® شيي Ùاث " -"قثضعهقثي وشهمÙØ®: Øقثبهط?" +msgid "Insert video" +msgstr "هرسثق٠دهيثخ" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "" -"The URL you entered seems to be an external link. Do you want to add the " -"required http:// prefix?" -msgstr "" -"Ùاث عقم غخع ثرÙثقثي سثثوس ÙØ® زث شر ثطÙثقرشم مهرن. يخ غخع صشر٠ÙØ® شيي Ùاث " -"قثضعهقثي اÙÙØ:// Øقثبهط?" +msgid "Insert" +msgstr "هرسثقÙ" -#. #-#-#-#-# djangojs-partial.po (0.1a) #-#-#-#-# #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -#: cms/templates/js/course-instructor-details.underscore -#: cms/templates/js/signatory-details.underscore -#: common/static/common/templates/discussion/new-post.underscore -#: common/static/common/templates/discussion/thread-edit.underscore -msgid "Title" -msgstr "ÙÙ‡Ùمث" +msgid "Insert/edit image" +msgstr "هرسثقÙ/ثيه٠هوشلث" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Tools" -msgstr "Ùخخمس" +msgid "Insert/edit link" +msgstr "هرسثقÙ/ثيه٠مهرن" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Top" -msgstr "ÙØ®Ø" +msgid "Insert/edit video" +msgstr "هرسثقÙ/ثيه٠دهيثخ" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Underline" -msgstr "عريثقمهرث" +msgid "Italic" +msgstr "Ù‡Ùشمهذ" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Undo" -msgstr "عريخ" +msgid "Justify" +msgstr "تعسÙهبغ" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Upper Alpha" -msgstr "عØØثق شمØاش" +msgid "Keywords" +msgstr "نثغصخقيس" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Upper Roman" -msgstr "عØØثق قخوشر" +msgid "Left to right" +msgstr "مثب٠ÙØ® قهلاÙ" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Url" -msgstr "عقم" +msgid "Left" +msgstr "مثبÙ" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "V Align" -msgstr "د شمهلر" +msgid "Lower Alpha" +msgstr "مخصثق شمØاش" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Vertical space" -msgstr "دثقÙهذشم سØشذث" +msgid "Lower Greek" +msgstr "مخصثق لقثثن" -#. #-#-#-#-# djangojs-partial.po (0.1a) #-#-#-#-# #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -#: openedx/features/course_bookmarks/static/course_bookmarks/templates/bookmarks-list.underscore -#: openedx/features/course_search/static/course_search/templates/course_search_item.underscore -#: openedx/features/course_search/static/course_search/templates/dashboard_search_item.underscore -msgid "View" -msgstr "دهثص" +msgid "Lower Roman" +msgstr "مخصثق قخوشر" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Visual aids" -msgstr "دهسعشم شهيس" +msgid "Match case" +msgstr "وشÙذا ذشسث" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Whole words" -msgstr "صاخمث صخقيس" +msgid "Merge cells" +msgstr "وثقلث ذثممس" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Width" -msgstr "صهيÙا" +msgid "Middle" +msgstr "وهييمث" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Words: {0}" -msgstr "صخقيس: {0}" +msgid "New document" +msgstr "رثص يخذعوثرÙ" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "You have unsaved changes are you sure you want to navigate away?" -msgstr "غخع اشدث عرسشدثي ذاشرلثس شقث غخع سعقث غخع صشر٠ÙØ® رشدهلشÙØ« شصشغ?" +msgid "New window" +msgstr "رثص صهريخص" +#. #-#-#-#-# djangojs-partial.po (0.1a) #-#-#-#-# #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "" -"Your browser doesn't support direct access to the clipboard. Please use the " -"Ctrl+X/C/V keyboard shortcuts instead." -msgstr "" -"غخعق زقخصسثق يخثسر'٠سعØØخق٠يهقثذ٠شذذثسس ÙØ® Ùاث ذمهØزخشقي. Øمثشسث عسث Ùاث " -"Ø°Ùقم+Ø·/Ø°/د نثغزخشقي ساخقÙذعÙس هرسÙثشي." - -#. Translators: this is a toolbar button tooltip from the raw HTML editor -#. displayed in the browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/bundles/commons.js -msgid "Insert/Edit Image" -msgstr "هرسثقÙ/ثيه٠هوشلث" - -#: common/lib/xmodule/xmodule/js/src/lti/lti.js -#: common/static/bundles/LTIModule.js -msgid "" -"Click OK to have your username and e-mail address sent to a 3rd party application.\n" -"\n" -"Click Cancel to return to this page without sending your information." -msgstr "" -"ذمهذن خن ÙØ® اشدث غخعق عسثقرشوث شري Ø«-وشهم شييقثسس سثر٠ÙØ® Ø´ 3قي ØشقÙغ Ø´ØØمهذشÙهخر.\n" -"\n" -"ذمهذن ذشرذثم ÙØ® قثÙعقر ÙØ® Ùاهس Øشلث صهÙاخع٠سثريهرل غخعق هربخقوشÙهخر." - -#: common/lib/xmodule/xmodule/js/src/lti/lti.js -#: common/static/bundles/LTIModule.js -msgid "" -"Click OK to have your username sent to a 3rd party application.\n" -"\n" -"Click Cancel to return to this page without sending your information." -msgstr "" -"ذمهذن خن ÙØ® اشدث غخعق عسثقرشوث سثر٠ÙØ® Ø´ 3قي ØشقÙغ Ø´ØØمهذشÙهخر.\n" -"\n" -"ذمهذن ذشرذثم ÙØ® قثÙعقر ÙØ® Ùاهس Øشلث صهÙاخع٠سثريهرل غخعق هربخقوشÙهخر." - -#: common/lib/xmodule/xmodule/js/src/lti/lti.js -#: common/static/bundles/LTIModule.js -msgid "" -"Click OK to have your e-mail address sent to a 3rd party application.\n" -"\n" -"Click Cancel to return to this page without sending your information." -msgstr "" -"ذمهذن خن ÙØ® اشدث غخعق Ø«-وشهم شييقثسس سثر٠ÙØ® Ø´ 3قي ØشقÙغ Ø´ØØمهذشÙهخر.\n" -"\n" -"ذمهذن ذشرذثم ÙØ® قثÙعقر ÙØ® Ùاهس Øشلث صهÙاخع٠سثريهرل غخعق هربخقوشÙهخر." - -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/static/bundles/CapaDescriptor.js -msgid "incorrect" -msgstr "هرذخققثذÙ" - -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/static/bundles/CapaDescriptor.js -msgid "correct" -msgstr "ذخققثذÙ" - -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/static/bundles/CapaDescriptor.js -msgid "answer" -msgstr "شرسصثق" - -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/static/bundles/CapaDescriptor.js -msgid "Short explanation" -msgstr "ساخق٠ثطØمشرشÙهخر" - -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/static/bundles/CapaDescriptor.js -msgid "" -"If you use the Advanced Editor, this problem will be converted to XML and you will not be able to return to the Simple Editor Interface.\n" -"\n" -"Proceed to the Advanced Editor and convert this problem to XML?" -msgstr "" -"هب غخع عسث Ùاث شيدشرذثي ثيهÙخق, Ùاهس Øقخزمثو صهمم زث ذخردثقÙثي ÙØ® طوم شري غخع صهمم رخ٠زث شزمث ÙØ® قثÙعقر ÙØ® Ùاث سهوØمث ثيهÙخق هرÙثقبشذث.\n" -"\n" -"Øقخذثثي ÙØ® Ùاث شيدشرذثي ثيهÙخق شري ذخردثق٠Ùاهس Øقخزمثو ÙØ® طوم?" - -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/static/bundles/CapaDescriptor.js -msgid "Explanation" -msgstr "ثطØمشرشÙهخر" - -#: common/lib/xmodule/xmodule/js/src/sequence/display.js -#: common/static/bundles/commons.js -msgid "" -"Sequence error! Cannot navigate to %(tab_name)s in the current " -"SequenceModule. Please contact the course staff." -msgstr "" -"سثضعثرذث ثققخق! ذشررخ٠رشدهلشÙØ« ÙØ® %(tab_name)s هر Ùاث ذعققثر٠" -"سثضعثرذثوخيعمث. Øمثشسث ذخرÙشذ٠Ùاث ذخعقسث سÙشبب." - -#: common/lib/xmodule/xmodule/js/src/sequence/display.js -#: common/static/bundles/VerticalStudentView.js -#: common/static/bundles/commons.js -#: openedx/features/course_bookmarks/static/course_bookmarks/js/views/bookmark_button.js -msgid "Bookmarked" -msgstr "زخخنوشقنثي" - -#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js -#: common/lib/xmodule/xmodule/js/src/video/09_play_pause_control.js -#: common/lib/xmodule/xmodule/js/src/video/09_play_skip_control.js -#: common/static/bundles/VideoModule.js -msgid "Play" -msgstr "Øمشغ" - -#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js -#: common/lib/xmodule/xmodule/js/src/video/09_play_pause_control.js -#: common/static/bundles/VideoModule.js -msgid "Pause" -msgstr "Øشعسث" - -#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js -#: common/static/bundles/VideoModule.js -msgid "Mute" -msgstr "وعÙØ«" - -#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js -#: common/static/bundles/VideoModule.js -msgid "Unmute" -msgstr "عروعÙØ«" - -#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js -#: common/lib/xmodule/xmodule/js/src/video/04_video_full_screen.js -#: common/static/bundles/VideoModule.js -msgid "Exit full browser" -msgstr "ثطه٠بعمم زقخصسثق" - -#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js -#: common/lib/xmodule/xmodule/js/src/video/04_video_full_screen.js -#: common/static/bundles/VideoModule.js -msgid "Fill browser" -msgstr "بهمم زقخصسثق" - -#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js -#: common/lib/xmodule/xmodule/js/src/video/08_video_speed_control.js -#: common/static/bundles/VideoModule.js -msgid "Speed" -msgstr "سØثثي" - -#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js -#: common/lib/xmodule/xmodule/js/src/video/08_video_auto_advance_control.js -#: common/static/bundles/VideoModule.js -msgid "Auto-advance" -msgstr "شعÙØ®-شيدشرذث" +#: cms/templates/js/paging-header.underscore +#: common/static/common/templates/components/paging-footer.underscore +#: common/static/common/templates/discussion/pagination.underscore +msgid "Next" +msgstr "رثطÙ" -#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js -#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js -#: common/static/bundles/VideoModule.js -msgid "Volume" -msgstr "دخمعوث" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "No color" +msgstr "رخ ذخمخق" -#. Translators: Volume level equals 0%. -#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js -#: common/static/bundles/VideoModule.js -msgid "Muted" -msgstr "وعÙثي" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Nonbreaking space" +msgstr "رخرزقثشنهرل سØشذث" -#. Translators: Volume level in range ]0,20]% -#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js -#: common/static/bundles/VideoModule.js -msgid "Very low" -msgstr "دثقغ مخص" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Numbered list" +msgstr "رعوزثقثي مهسÙ" -#. Translators: Volume level in range ]20,40]% -#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js -#: common/static/bundles/VideoModule.js -msgid "Low" -msgstr "مخص" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Page break" +msgstr "Øشلث زقثشن" -#. Translators: Volume level in range ]40,60]% -#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js -#: common/static/bundles/VideoModule.js -msgid "Average" -msgstr "شدثقشلث" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Paste as text" +msgstr "ØشسÙØ« شس ÙثطÙ" -#. Translators: Volume level in range ]60,80]% -#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js -#: common/static/bundles/VideoModule.js -msgid "Loud" -msgstr "مخعي" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "" +"Paste is now in plain text mode. Contents will now be pasted as plain text " +"until you toggle this option off." +msgstr "" +"ØشسÙØ« هس رخص هر Øمشهر Ùثط٠وخيث. ذخرÙثرÙس صهمم رخص زث ØشسÙثي شس Øمشهر Ùثط٠" +"عرÙهم غخع Ùخللمث Ùاهس Ø®ØÙهخر خبب." -#. Translators: Volume level in range ]80,99]% -#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js -#: common/static/bundles/VideoModule.js -msgid "Very loud" -msgstr "دثقغ مخعي" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Paste row after" +msgstr "ØشسÙØ« قخص شبÙثق" -#. Translators: Volume level equals 100%. -#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js -#: common/static/bundles/VideoModule.js -msgid "Maximum" -msgstr "وشطهوعو" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Paste row before" +msgstr "ØشسÙØ« قخص زثبخقث" -#: common/lib/xmodule/xmodule/js/src/video/02_html5_video.js -#: common/static/bundles/VideoModule.js -msgid "This browser cannot play .mp4, .ogg, or .webm files." -msgstr "Ùاهس زقخصسثق ذشررخ٠Øمشغ .ÙˆØ4, .خلل, خق .صثزو بهمثس." +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Paste your embed code below:" +msgstr "ØشسÙØ« غخعق ثوزثي ذخيث زثمخص:" -#: common/lib/xmodule/xmodule/js/src/video/02_html5_video.js -#: common/static/bundles/VideoModule.js -msgid "Try using a different browser, such as Google Chrome." -msgstr "Ùقغ عسهرل Ø´ يهببثقثر٠زقخصسثق, سعذا شس لخخلمث ذاقخوث." +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Paste" +msgstr "ØشسÙØ«" -#: common/lib/xmodule/xmodule/js/src/video/05_video_quality_control.js -#: common/static/bundles/VideoModule.js -msgid "High Definition" -msgstr "اهلا يثبهرهÙهخر" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Poster" +msgstr "ØخسÙثق" -#: common/lib/xmodule/xmodule/js/src/video/05_video_quality_control.js -#: common/static/bundles/VideoModule.js -msgid "off" -msgstr "خبب" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Pre" +msgstr "Øقث" -#: common/lib/xmodule/xmodule/js/src/video/05_video_quality_control.js -#: common/static/bundles/VideoModule.js -msgid "on" -msgstr "خر" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Prev" +msgstr "Øقثد" -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js -#: common/static/bundles/VideoModule.js -msgid "Video position. Press space to toggle playback" -msgstr "دهيثخ ØخسهÙهخر. Øقثسس سØشذث ÙØ® Ùخللمث Øمشغزشذن" +#. #-#-#-#-# djangojs-partial.po (0.1a) #-#-#-#-# +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js lms/static/js/customwmd.js +#: cms/templates/js/asset-library.underscore +msgid "Preview" +msgstr "Øقثدهثص" -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js -#: common/static/bundles/VideoModule.js -msgid "Video ended" -msgstr "دهيثخ ثريثي" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Print" +msgstr "ØقهرÙ" -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js -#: common/static/bundles/VideoModule.js -msgid "Video position" -msgstr "دهيثخ ØخسهÙهخر" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Redo" +msgstr "قثيخ" -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js -#: common/static/bundles/VideoModule.js -msgid "%(value)s hour" -msgid_plural "%(value)s hours" -msgstr[0] "%(value)s اخعق" -msgstr[1] "%(value)s اخعقس" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Remove link" +msgstr "قثوخدث مهرن" -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js -#: common/static/bundles/VideoModule.js -msgid "%(value)s minute" -msgid_plural "%(value)s minutes" -msgstr[0] "%(value)s وهرعÙØ«" -msgstr[1] "%(value)s وهرعÙثس" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Replace all" +msgstr "قثØمشذث شمم" -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js -#: common/static/bundles/VideoModule.js -msgid "%(value)s second" -msgid_plural "%(value)s seconds" -msgstr[0] "%(value)s سثذخري" -msgstr[1] "%(value)s سثذخريس" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Replace with" +msgstr "قثØمشذث صهÙا" -#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js -#: common/static/bundles/VideoModule.js -msgid "" -"Click on this button to mute or unmute this video or press UP or DOWN " -"buttons to increase or decrease volume level." -msgstr "" -"ذمهذن خر Ùاهس زعÙÙخر ÙØ® وعÙØ« خق عروعÙØ« Ùاهس دهيثخ خق Øقثسس Ø¹Ø Ø®Ù‚ يخصر " -"زعÙÙخرس ÙØ® هرذقثشسث خق يثذقثشسث دخمعوث مثدثم." +#. #-#-#-#-# djangojs-partial.po (0.1a) #-#-#-#-# +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +#: cms/templates/js/metadata-file-uploader-item.underscore +#: cms/templates/js/video-transcripts.underscore +#: cms/templates/js/video/metadata-translations-item.underscore +msgid "Replace" +msgstr "قثØمشذث" -#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js -#: common/static/bundles/VideoModule.js -msgid "Adjust video volume" -msgstr "شيتعس٠دهيثخ دخمعوث" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Restore last draft" +msgstr "قثسÙخقث مشس٠يقشبÙ" -#: common/lib/xmodule/xmodule/js/src/video/08_video_speed_control.js -#: common/static/bundles/VideoModule.js +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "" -"Press UP to enter the speed menu then use the UP and DOWN arrow keys to " -"navigate the different speeds, then press ENTER to change to the selected " -"speed." +"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press " +"ALT-0 for help" msgstr "" -"Øقثسس Ø¹Ø ÙØ® ثرÙثق Ùاث سØثثي وثرع Ùاثر عسث Ùاث Ø¹Ø Ø´Ø±ÙŠ يخصر شققخص نثغس ÙØ® " -"رشدهلشÙØ« Ùاث يهببثقثر٠سØثثيس, Ùاثر Øقثسس ثرÙثق ÙØ® ذاشرلث ÙØ® Ùاث سثمثذÙثي " -"سØثثي." +"قهذا Ùثط٠شقثش. Øقثسس شمÙ-ب9 بخق وثرع. Øقثسس شمÙ-ب10 بخق Ùخخمزشق. Øقثسس " +"شمÙ-0 بخق اثمØ" -#: common/lib/xmodule/xmodule/js/src/video/08_video_speed_control.js -#: common/static/bundles/VideoModule.js -msgid "Adjust video speed" -msgstr "شيتعس٠دهيثخ سØثثي" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Right to left" +msgstr "قهلا٠ÙØ® مثبÙ" -#: common/lib/xmodule/xmodule/js/src/video/08_video_speed_control.js -#: common/static/bundles/VideoModule.js -msgid "Video speed: " -msgstr "دهيثخ سØثثي: " +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Right" +msgstr "قهلاÙ" -#: common/lib/xmodule/xmodule/js/src/video/09_play_skip_control.js -#: common/static/bundles/VideoModule.js -msgid "Skip" -msgstr "سنهØ" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Robots" +msgstr "قخزخÙس" -#: common/lib/xmodule/xmodule/js/src/video/09_poster.js -#: common/static/bundles/VideoModule.js -msgid "Play video" -msgstr "Øمشغ دهيثخ" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Row group" +msgstr "قخص لقخعØ" -#: common/lib/xmodule/xmodule/js/src/video/09_skip_control.js -#: common/static/bundles/VideoModule.js -msgid "Do not show again" -msgstr "يخ رخ٠ساخص شلشهر" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Row properties" +msgstr "قخص ØقخØثقÙهثس" -#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js -#: common/static/bundles/VideoModule.js -msgid "Open language menu" -msgstr "Ø®Øثر مشرلعشلث وثرع" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Row type" +msgstr "قخص ÙغØØ«" -#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js -#: common/static/bundles/VideoModule.js -msgid "Transcript will be displayed when you start playing the video." -msgstr "ÙقشرسذقهØ٠صهمم زث يهسØمشغثي صاثر غخع سÙشق٠Øمشغهرل Ùاث دهيثخ." +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Row" +msgstr "قخص" -#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js -#: common/static/bundles/VideoModule.js -msgid "" -"Activating a link in this group will skip to the corresponding point in the " -"video." -msgstr "" -"شذÙهدشÙهرل Ø´ مهرن هر Ùاهس Ù„Ù‚Ø®Ø¹Ø ØµÙ‡Ù…Ù… Ø³Ù†Ù‡Ø ÙØ® Ùاث ذخققثسØخريهرل Øخهر٠هر Ùاث " -"دهيثخ." +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Rows" +msgstr "قخصس" -#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js -#: common/static/bundles/VideoModule.js -msgid "Video transcript" -msgstr "دهيثخ ÙقشرسذقهØÙ" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Scope" +msgstr "سذخØØ«" -#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js -#: common/static/bundles/VideoModule.js -msgid "Start of transcript. Skip to the end." -msgstr "سÙشق٠خب ÙقشرسذقهØÙ. Ø³Ù†Ù‡Ø ÙØ® Ùاث ثري." +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Select all" +msgstr "سثمثذ٠شمم" -#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js -#: common/static/bundles/VideoModule.js -msgid "End of transcript. Skip to the start." -msgstr "ثري خب ÙقشرسذقهØÙ. Ø³Ù†Ù‡Ø ÙØ® Ùاث سÙشقÙ." +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Show blocks" +msgstr "ساخص زمخذنس" -#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js -#: common/static/bundles/VideoModule.js -msgid "" -"Press the UP arrow key to enter the language menu then use UP and DOWN arrow" -" keys to navigate language options. Press ENTER to change to the selected " -"language." -msgstr "" -"Øقثسس Ùاث Ø¹Ø Ø´Ù‚Ù‚Ø®Øµ نثغ ÙØ® ثرÙثق Ùاث مشرلعشلث وثرع Ùاثر عسث Ø¹Ø Ø´Ø±ÙŠ يخصر شققخص" -" نثغس ÙØ® رشدهلشÙØ« مشرلعشلث Ø®ØÙهخرس. Øقثسس ثرÙثق ÙØ® ذاشرلث ÙØ® Ùاث سثمثذÙثي " -"مشرلعشلث." +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Show invisible characters" +msgstr "ساخص هردهسهزمث ذاشقشذÙثقس" -#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js -#: common/static/bundles/VideoModule.js -msgid "Hide closed captions" -msgstr "اهيث ذمخسثي ذشØÙهخرس" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Source code" +msgstr "سخعقذث ذخيث" -#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js -#: common/static/bundles/VideoModule.js -msgid "(Caption will be displayed when you start playing the video.)" -msgstr "(ذشØÙهخر صهمم زث يهسØمشغثي صاثر غخع سÙشق٠Øمشغهرل Ùاث دهيثخ.)" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Source" +msgstr "سخعقذث" -#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js -#: common/static/bundles/VideoModule.js -msgid "Turn on closed captioning" -msgstr "Ùعقر خر ذمخسثي ذشØÙهخرهرل" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Special character" +msgstr "سØثذهشم ذاشقشذÙثق" -#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js -#: common/static/bundles/VideoModule.js -msgid "Turn on transcripts" -msgstr "Ùعقر خر ÙقشرسذقهØÙس" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Spellcheck" +msgstr "سØثممذاثذن" -#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js -#: common/static/bundles/VideoModule.js -msgid "Turn off transcripts" -msgstr "Ùعقر خبب ÙقشرسذقهØÙس" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Split cell" +msgstr "سØمه٠ذثمم" -#: common/static/bundles/CourseGoals.js -#: openedx/features/course_experience/static/course_experience/js/CourseGoals.js -msgid "Thank you for setting your course goal to {goal}!" -msgstr "Ùاشرن غخع بخق سثÙÙهرل غخعق ذخعقسث لخشم ÙØ® {goal}!" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Square" +msgstr "سضعشقث" -#: common/static/bundles/CourseGoals.js -msgid "" -"There was an error in setting your goal, please reload the page and try " -"again." -msgstr "" -"Ùاثقث صشس شر ثققخق هر سثÙÙهرل غخعق لخشم, Øمثشسث قثمخشي Ùاث Øشلث شري Ùقغ " -"شلشهر." +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Start search" +msgstr "سÙشق٠سثشقذا" -#: common/static/bundles/CourseHome.js -#: openedx/features/course_experience/static/course_experience/js/CourseHome.js -msgid "You have successfully updated your goal." -msgstr "غخع اشدث سعذذثسسبعممغ عØيشÙثي غخعق لخشم." +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Strikethrough" +msgstr "سÙقهنثÙاقخعلا" -#: common/static/bundles/CourseHome.js -#: openedx/features/course_experience/static/course_experience/js/CourseHome.js -msgid "There was an error updating your goal." -msgstr "Ùاثقث صشس شر ثققخق عØيشÙهرل غخعق لخشم." +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Style" +msgstr "سÙغمث" -#: common/static/bundles/CourseOutline.js -#: openedx/features/course_experience/static/course_experience/js/CourseOutline.js -#: lms/templates/ccx/schedule.underscore -msgid "Expand All" -msgstr "ثطØشري شمم" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Subscript" +msgstr "سعزسذقهØÙ" -#: common/static/bundles/CourseOutline.js -#: openedx/features/course_experience/static/course_experience/js/CourseOutline.js -#: lms/templates/ccx/schedule.underscore -msgid "Collapse All" -msgstr "ذخممشØسث شمم" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Superscript" +msgstr "سعØثقسذقهØÙ" -#: common/static/bundles/EntitlementFactory.js -#: common/static/bundles/ProgramDetailsFactory.js -#: lms/static/js/learner_dashboard/models/course_card_model.js -msgid "(Self-paced) Starts {start}" -msgstr "(سثمب-Øشذثي) سÙشقÙس {start}" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Table properties" +msgstr "Ùشزمث ØقخØثقÙهثس" -#: common/static/bundles/EntitlementFactory.js -#: common/static/bundles/ProgramDetailsFactory.js -#: lms/static/js/learner_dashboard/models/course_card_model.js -msgid "(Self-paced) Started {start}" -msgstr "(سثمب-Øشذثي) سÙشقÙثي {start}" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Table" +msgstr "Ùشزمث" -#: common/static/bundles/EntitlementFactory.js -#: common/static/bundles/ProgramDetailsFactory.js -#: lms/static/js/learner_dashboard/models/course_card_model.js -msgid "(Self-paced) Ends {end}" -msgstr "(سثمب-Øشذثي) ثريس {end}" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Target" +msgstr "ÙشقلثÙ" -#: common/static/bundles/EntitlementFactory.js -#: common/static/bundles/ProgramDetailsFactory.js -#: lms/static/js/learner_dashboard/models/course_card_model.js -msgid "(Self-paced) Ended {end}" -msgstr "(سثمب-Øشذثي) ثريثي {end}" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Templates" +msgstr "ÙثوØمشÙثس" -#: common/static/bundles/EntitlementFactory.js -#: common/static/bundles/ProgramDetailsFactory.js -#: lms/static/js/learner_dashboard/models/course_card_model.js -msgid "Starts {start}" -msgstr "سÙشقÙس {start}" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Text color" +msgstr "Ùثط٠ذخمخق" -#: common/static/bundles/EntitlementFactory.js -#: common/static/bundles/ProgramDetailsFactory.js -#: lms/static/js/learner_dashboard/models/course_card_model.js -msgid "Started {start}" -msgstr "سÙشقÙثي {start}" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Text to display" +msgstr "Ùثط٠ÙØ® يهسØمشغ" -#: common/static/bundles/EntitlementFactory.js -#: common/static/bundles/ProgramDetailsFactory.js -#: lms/static/js/learner_dashboard/models/course_card_model.js -msgid "Ends {end}" -msgstr "ثريس {end}" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "" +"The URL you entered seems to be an email address. Do you want to add the " +"required mailto: prefix?" +msgstr "" +"Ùاث عقم غخع ثرÙثقثي سثثوس ÙØ® زث شر ثوشهم شييقثسس. يخ غخع صشر٠ÙØ® شيي Ùاث " +"قثضعهقثي وشهمÙØ®: Øقثبهط?" -#: common/static/bundles/EntitlementFactory.js -#: common/static/bundles/ProgramDetailsFactory.js -#: lms/static/js/learner_dashboard/views/course_entitlement_view.js -msgid "You must select a session to access the course." -msgstr "غخع وعس٠سثمثذ٠ش سثسسهخر ÙØ® شذذثسس Ùاث ذخعقسث." +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "" +"The URL you entered seems to be an external link. Do you want to add the " +"required http:// prefix?" +msgstr "" +"Ùاث عقم غخع ثرÙثقثي سثثوس ÙØ® زث شر ثطÙثقرشم مهرن. يخ غخع صشر٠ÙØ® شيي Ùاث " +"قثضعهقثي اÙÙØ:// Øقثبهط?" -#: common/static/bundles/EntitlementFactory.js -#: common/static/bundles/ProgramDetailsFactory.js -#: lms/static/js/learner_dashboard/views/course_entitlement_view.js -msgid "There was an error. Please reload the page and try again." -msgstr "Ùاثقث صشس شر ثققخق. Øمثشسث قثمخشي Ùاث Øشلث شري Ùقغ شلشهر." +#. #-#-#-#-# djangojs-partial.po (0.1a) #-#-#-#-# +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +#: cms/templates/js/course-instructor-details.underscore +#: cms/templates/js/signatory-details.underscore +#: common/static/common/templates/discussion/new-post.underscore +#: common/static/common/templates/discussion/thread-edit.underscore +msgid "Title" +msgstr "ÙÙ‡Ùمث" -#: common/static/bundles/EntitlementFactory.js -#: common/static/bundles/ProgramDetailsFactory.js -#: lms/static/js/learner_dashboard/views/course_entitlement_view.js -#: lms/templates/learner_dashboard/course_entitlement.underscore -msgid "Change Session" -msgstr "ذاشرلث سثسسهخر" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Tools" +msgstr "Ùخخمس" -#: common/static/bundles/EntitlementFactory.js -#: common/static/bundles/ProgramDetailsFactory.js -#: lms/static/js/learner_dashboard/views/course_entitlement_view.js -#: lms/templates/learner_dashboard/course_entitlement.underscore -msgid "Select Session" -msgstr "سثمثذ٠سثسسهخر" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Top" +msgstr "ÙØ®Ø" -#: common/static/bundles/EntitlementFactory.js -#: common/static/bundles/ProgramDetailsFactory.js -#: lms/static/js/learner_dashboard/views/course_entitlement_view.js -msgid "Leave Current Session" -msgstr "مثشدث ذعققثر٠سثسسهخر" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Underline" +msgstr "عريثقمهرث" -#: common/static/bundles/EntitlementFactory.js -#: common/static/bundles/ProgramDetailsFactory.js -#: lms/static/js/learner_dashboard/views/course_entitlement_view.js -msgid "Are you sure you want to select this session?" -msgstr "شقث غخع سعقث غخع صشر٠ÙØ® سثمثذ٠Ùاهس سثسسهخر?" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Undo" +msgstr "عريخ" -#: common/static/bundles/EntitlementFactory.js -#: common/static/bundles/ProgramDetailsFactory.js -#: lms/static/js/learner_dashboard/views/course_entitlement_view.js -msgid "Are you sure you want to change to a different session?" -msgstr "شقث غخع سعقث غخع صشر٠ÙØ® ذاشرلث ÙØ® Ø´ يهببثقثر٠سثسسهخر?" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Upper Alpha" +msgstr "عØØثق شمØاش" -#: common/static/bundles/EntitlementFactory.js -#: common/static/bundles/ProgramDetailsFactory.js -#: lms/static/js/learner_dashboard/views/course_entitlement_view.js -msgid "Any course progress or grades from your current session will be lost." -msgstr "شرغ ذخعقسث Øقخلقثسس خق لقشيثس بقخو غخعق ذعققثر٠سثسسهخر صهمم زث مخسÙ." +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Upper Roman" +msgstr "عØØثق قخوشر" -#: common/static/bundles/EntitlementFactory.js -#: common/static/bundles/ProgramDetailsFactory.js -#: lms/static/js/learner_dashboard/views/course_entitlement_view.js -msgid "Are you sure that you want to leave this session?" -msgstr "شقث غخع سعقث Ùاش٠غخع صشر٠ÙØ® مثشدث Ùاهس سثسسهخر?" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Url" +msgstr "عقم" -#: common/static/bundles/EntitlementUnenrollmentFactory.js -#: lms/static/js/learner_dashboard/views/entitlement_unenrollment_view.js -msgid "" -"Your unenrollment request could not be processed. Please try again later." -msgstr "" -"غخعق عرثرقخمموثر٠قثضعثس٠ذخعمي رخ٠زث Øقخذثسسثي. Øمثشسث Ùقغ شلشهر مشÙثق." +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "V Align" +msgstr "د شمهلر" -#: common/static/bundles/EntitlementUnenrollmentFactory.js -#: lms/static/js/learner_dashboard/views/entitlement_unenrollment_view.js -msgid "" -"Are you sure you want to unenroll from {courseName} ({courseNumber})? You " -"will be refunded the amount you paid." -msgstr "" -"شقث غخع سعقث غخع صشر٠ÙØ® عرثرقخمم بقخو {courseName} ({courseNumber})? غخع " -"صهمم زث قثبعريثي Ùاث شوخعر٠غخع Øشهي." +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Vertical space" +msgstr "دثقÙهذشم سØشذث" -#: common/static/bundles/PasswordResetConfirmation.js -#: lms/static/js/student_account/components/PasswordResetConfirmation.jsx -msgid "Enter and confirm your new password." -msgstr "ثرÙثق شري ذخربهقو غخعق رثص Øشسسصخقي." +#. #-#-#-#-# djangojs-partial.po (0.1a) #-#-#-#-# +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +#: openedx/features/course_bookmarks/static/course_bookmarks/templates/bookmarks-list.underscore +#: openedx/features/course_search/static/course_search/templates/course_search_item.underscore +#: openedx/features/course_search/static/course_search/templates/dashboard_search_item.underscore +msgid "View" +msgstr "دهثص" -#: common/static/bundles/PasswordResetConfirmation.js -#: lms/static/js/student_account/components/PasswordResetConfirmation.jsx -msgid "New Password" -msgstr "رثص Øشسسصخقي" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Visual aids" +msgstr "دهسعشم شهيس" -#: common/static/bundles/PasswordResetConfirmation.js -#: lms/static/js/student_account/components/PasswordResetConfirmation.jsx -msgid "Confirm Password" -msgstr "ذخربهقو Øشسسصخقي" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Whole words" +msgstr "صاخمث صخقيس" -#: common/static/bundles/PasswordResetConfirmation.js -#: lms/static/js/student_account/components/PasswordResetConfirmation.jsx -msgid "Passwords do not match." -msgstr "Øشسسصخقيس يخ رخ٠وشÙذا." +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Width" +msgstr "صهيÙا" -#: common/static/bundles/PasswordResetConfirmation.js -#: lms/static/js/student_account/components/PasswordResetConfirmation.jsx -msgid "Reset My Password" -msgstr "قثسث٠وغ Øشسسصخقي" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Words: {0}" +msgstr "صخقيس: {0}" -#: common/static/bundles/PasswordResetConfirmation.js -#: lms/static/js/student_account/components/PasswordResetConfirmation.jsx -#: lms/static/js/student_account/views/account_settings_factory.js -msgid "Reset Your Password" -msgstr "قثسث٠غخعق Øشسسصخقي" +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "You have unsaved changes are you sure you want to navigate away?" +msgstr "غخع اشدث عرسشدثي ذاشرلثس شقث غخع سعقث غخع صشر٠ÙØ® رشدهلشÙØ« شصشغ?" -#: common/static/bundles/PasswordResetConfirmation.js -#: lms/static/js/student_account/components/PasswordResetInput.jsx -msgid "Error: " -msgstr "ثققخق: " +#. Translators: this is a message from the raw HTML editor displayed in the +#. browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "" +"Your browser doesn't support direct access to the clipboard. Please use the " +"Ctrl+X/C/V keyboard shortcuts instead." +msgstr "" +"غخعق زقخصسثق يخثسر'٠سعØØخق٠يهقثذ٠شذذثسس ÙØ® Ùاث ذمهØزخشقي. Øمثشسث عسث Ùاث " +"Ø°Ùقم+Ø·/Ø°/د نثغزخشقي ساخقÙذعÙس هرسÙثشي." -#: common/static/bundles/ProblemBrowser.js -#: common/static/common/js/components/BlockBrowser/components/BlockBrowser/BlockBrowser.jsx -#: cms/templates/js/move-xblock-list.underscore -msgid "View child items" -msgstr "دهثص ذاهمي Ù‡Ùثوس" +#. Translators: this is a toolbar button tooltip from the raw HTML editor +#. displayed in the browser when a user needs to edit HTML +#: common/lib/xmodule/xmodule/js/src/html/edit.js +msgid "Insert/Edit Image" +msgstr "هرسثقÙ/ثيه٠هوشلث" -#: common/static/bundles/ProblemBrowser.js -#: common/static/common/js/components/BlockBrowser/components/BlockBrowser/BlockBrowser.jsx -msgid "Navigate up" -msgstr "رشدهلشÙØ« عØ" +#: common/lib/xmodule/xmodule/js/src/lti/lti.js +msgid "" +"Click OK to have your username and e-mail address sent to a 3rd party application.\n" +"\n" +"Click Cancel to return to this page without sending your information." +msgstr "" +"ذمهذن خن ÙØ® اشدث غخعق عسثقرشوث شري Ø«-وشهم شييقثسس سثر٠ÙØ® Ø´ 3قي ØشقÙغ Ø´ØØمهذشÙهخر.\n" +"\n" +"ذمهذن ذشرذثم ÙØ® قثÙعقر ÙØ® Ùاهس Øشلث صهÙاخع٠سثريهرل غخعق هربخقوشÙهخر." -#: common/static/bundles/ProblemBrowser.js -#: common/static/common/js/components/BlockBrowser/components/BlockBrowser/BlockBrowser.jsx -msgid "Browsing" -msgstr "زقخصسهرل" +#: common/lib/xmodule/xmodule/js/src/lti/lti.js +msgid "" +"Click OK to have your username sent to a 3rd party application.\n" +"\n" +"Click Cancel to return to this page without sending your information." +msgstr "" +"ذمهذن خن ÙØ® اشدث غخعق عسثقرشوث سثر٠ÙØ® Ø´ 3قي ØشقÙغ Ø´ØØمهذشÙهخر.\n" +"\n" +"ذمهذن ذشرذثم ÙØ® قثÙعقر ÙØ® Ùاهس Øشلث صهÙاخع٠سثريهرل غخعق هربخقوشÙهخر." -#: common/static/bundles/ProblemBrowser.js -#: common/static/common/js/components/BlockBrowser/components/BlockBrowser/BlockBrowser.jsx -msgid "Select" -msgstr "سثمثذÙ" +#: common/lib/xmodule/xmodule/js/src/lti/lti.js +msgid "" +"Click OK to have your e-mail address sent to a 3rd party application.\n" +"\n" +"Click Cancel to return to this page without sending your information." +msgstr "" +"ذمهذن خن ÙØ® اشدث غخعق Ø«-وشهم شييقثسس سثر٠ÙØ® Ø´ 3قي ØشقÙغ Ø´ØØمهذشÙهخر.\n" +"\n" +"ذمهذن ذشرذثم ÙØ® قثÙعقر ÙØ® Ùاهس Øشلث صهÙاخع٠سثريهرل غخعق هربخقوشÙهخر." -#: common/static/bundles/ProblemBrowser.js -#: lms/djangoapps/instructor/static/instructor/ProblemBrowser/components/Main/Main.jsx -msgid "Select a section or problem" -msgstr "سثمثذ٠ش سثذÙهخر خق Øقخزمثو" +#: common/lib/xmodule/xmodule/js/src/problem/edit.js +msgid "incorrect" +msgstr "هرذخققثذÙ" -#: common/static/bundles/ProgramDetailsFactory.js -#: lms/static/js/learner_dashboard/views/program_details_sidebar_view.js -msgid "{type} Progress" -msgstr "{type} Øقخلقثسس" +#: common/lib/xmodule/xmodule/js/src/problem/edit.js +msgid "correct" +msgstr "ذخققثذÙ" -#: common/static/bundles/ProgramDetailsFactory.js -#: lms/static/js/learner_dashboard/views/program_details_sidebar_view.js -msgid "Earned Certificates" -msgstr "ثشقرثي ذثقÙهبهذشÙثس" +#: common/lib/xmodule/xmodule/js/src/problem/edit.js +msgid "answer" +msgstr "شرسصثق" -#: common/static/bundles/ProgramDetailsFactory.js -#: lms/static/js/learner_dashboard/views/program_details_view.js -msgid "Enrolled" -msgstr "ثرقخممثي" +#: common/lib/xmodule/xmodule/js/src/problem/edit.js +msgid "Short explanation" +msgstr "ساخق٠ثطØمشرشÙهخر" -#: common/static/bundles/SingleSupportForm.js -#: lms/djangoapps/support/static/support/jsx/errors_list.jsx -msgid "Please fix the following errors:" -msgstr "Øمثشسث بهط Ùاث بخممخصهرل ثققخقس:" +#: common/lib/xmodule/xmodule/js/src/problem/edit.js +msgid "" +"If you use the Advanced Editor, this problem will be converted to XML and you will not be able to return to the Simple Editor Interface.\n" +"\n" +"Proceed to the Advanced Editor and convert this problem to XML?" +msgstr "" +"هب غخع عسث Ùاث شيدشرذثي ثيهÙخق, Ùاهس Øقخزمثو صهمم زث ذخردثقÙثي ÙØ® طوم شري غخع صهمم رخ٠زث شزمث ÙØ® قثÙعقر ÙØ® Ùاث سهوØمث ثيهÙخق هرÙثقبشذث.\n" +"\n" +"Øقخذثثي ÙØ® Ùاث شيدشرذثي ثيهÙخق شري ذخردثق٠Ùاهس Øقخزمثو ÙØ® طوم?" -#: common/static/bundles/SingleSupportForm.js -#: lms/djangoapps/support/static/support/jsx/file_upload.jsx -msgid "Files that you upload must be smaller than 5MB in size." -msgstr "بهمثس Ùاش٠غخع عØمخشي وعس٠زث سوشممثق Ùاشر 5وز هر سهظث." +#: common/lib/xmodule/xmodule/js/src/problem/edit.js +msgid "Explanation" +msgstr "ثطØمشرشÙهخر" -#: common/static/bundles/SingleSupportForm.js -#: lms/djangoapps/support/static/support/jsx/file_upload.jsx +#: common/lib/xmodule/xmodule/js/src/sequence/display.js msgid "" -"Files that you upload must be PDFs or image files in .gif, .jpg, .jpeg, or " -".png format." +"Sequence error! Cannot navigate to %(tab_name)s in the current " +"SequenceModule. Please contact the course staff." msgstr "" -"بهمثس Ùاش٠غخع عØمخشي وعس٠زث Øيبس خق هوشلث بهمثس هر .لهب, .تØÙ„, .تØثل, خق " -".Øرل بخقوشÙ." +"سثضعثرذث ثققخق! ذشررخ٠رشدهلشÙØ« ÙØ® %(tab_name)s هر Ùاث ذعققثر٠" +"سثضعثرذثوخيعمث. Øمثشسث ذخرÙشذ٠Ùاث ذخعقسث سÙشبب." -#: common/static/bundles/SingleSupportForm.js -#: lms/djangoapps/support/static/support/jsx/file_upload.jsx -#: lms/djangoapps/support/static/support/jsx/single_support_form.jsx -msgid "Something went wrong. Please try again later." -msgstr "سخوثÙاهرل صثر٠صقخرل. Øمثشسث Ùقغ شلشهر مشÙثق." +#: common/lib/xmodule/xmodule/js/src/sequence/display.js +#: openedx/features/course_bookmarks/static/course_bookmarks/js/views/bookmark_button.js +msgid "Bookmarked" +msgstr "زخخنوشقنثي" -#: common/static/bundles/SingleSupportForm.js -#: lms/djangoapps/support/static/support/jsx/file_upload.jsx -msgid "Add Attachment" -msgstr "شيي Ø´ÙÙشذاوثرÙ" +#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js +#: common/lib/xmodule/xmodule/js/src/video/09_play_pause_control.js +#: common/lib/xmodule/xmodule/js/src/video/09_play_skip_control.js +msgid "Play" +msgstr "Øمشغ" -#: common/static/bundles/SingleSupportForm.js -#: lms/djangoapps/support/static/support/jsx/file_upload.jsx -msgid "(Optional)" -msgstr "(Ø®ØÙهخرشم)" +#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js +#: common/lib/xmodule/xmodule/js/src/video/09_play_pause_control.js +msgid "Pause" +msgstr "Øشعسث" -#: common/static/bundles/SingleSupportForm.js -#: lms/djangoapps/support/static/support/jsx/file_upload.jsx -msgid "Remove file" -msgstr "قثوخدث بهمث" +#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js +msgid "Mute" +msgstr "وعÙØ«" -#: common/static/bundles/SingleSupportForm.js -#: lms/djangoapps/support/static/support/jsx/logged_in_user.jsx -msgid "Course Name" -msgstr "ذخعقسث رشوث" +#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js +msgid "Unmute" +msgstr "عروعÙØ«" -#: common/static/bundles/SingleSupportForm.js -#: lms/djangoapps/support/static/support/jsx/logged_in_user.jsx -msgid "Not specific to a course" -msgstr "رخ٠سØثذهبهذ ÙØ® Ø´ ذخعقسث" +#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js +#: common/lib/xmodule/xmodule/js/src/video/04_video_full_screen.js +msgid "Exit full browser" +msgstr "ثطه٠بعمم زقخصسثق" -#: common/static/bundles/SingleSupportForm.js -#: lms/djangoapps/support/static/support/jsx/logged_in_user.jsx -msgid "What can we help you with, {username}?" -msgstr "صاش٠ذشر صث Ø§Ø«Ù…Ø ØºØ®Ø¹ صهÙا, {username}?" +#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js +#: common/lib/xmodule/xmodule/js/src/video/04_video_full_screen.js +msgid "Fill browser" +msgstr "بهمم زقخصسثق" -#: common/static/bundles/SingleSupportForm.js -#: lms/djangoapps/support/static/support/jsx/logged_in_user.jsx -#: lms/static/js/instructor_dashboard/util.js -msgid "Subject" -msgstr "سعزتثذÙ" +#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js +#: common/lib/xmodule/xmodule/js/src/video/08_video_speed_control.js +msgid "Speed" +msgstr "سØثثي" -#: common/static/bundles/SingleSupportForm.js -#: lms/djangoapps/support/static/support/jsx/logged_in_user.jsx -msgid "Details" -msgstr "يثÙشهمس" +#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js +#: common/lib/xmodule/xmodule/js/src/video/08_video_auto_advance_control.js +msgid "Auto-advance" +msgstr "شعÙØ®-شيدشرذث" -#: common/static/bundles/SingleSupportForm.js -#: lms/djangoapps/support/static/support/jsx/logged_in_user.jsx -msgid "The more you tell us, the more quickly and helpfully we can respond!" -msgstr "Ùاث وخقث غخع Ùثمم عس, Ùاث وخقث ضعهذنمغ شري اثمØبعممغ صث ذشر قثسØخري!" +#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js +#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js +msgid "Volume" +msgstr "دخمعوث" -#: common/static/bundles/SingleSupportForm.js -#: lms/djangoapps/support/static/support/jsx/logged_in_user.jsx -#: common/static/common/templates/discussion/new-post.underscore -#: common/static/common/templates/discussion/thread-response.underscore -#: common/static/common/templates/discussion/thread.underscore -#: lms/templates/verify_student/incourse_reverify.underscore -msgid "Submit" -msgstr "سعزوهÙ" +#. Translators: Volume level equals 0%. +#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js +msgid "Muted" +msgstr "وعÙثي" -#: common/static/bundles/SingleSupportForm.js -#: lms/djangoapps/support/static/support/jsx/logged_out_user.jsx -msgid "Sign in to {platform} so we can help you better." -msgstr "سهلر هر ÙØ® {platform} سخ صث ذشر Ø§Ø«Ù…Ø ØºØ®Ø¹ زثÙÙثق." +#. Translators: Volume level in range ]0,20]% +#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js +msgid "Very low" +msgstr "دثقغ مخص" -#: common/static/bundles/SingleSupportForm.js -#: lms/templates/student_account/hinted_login.underscore -#: lms/templates/student_account/login.underscore -msgid "Sign in" -msgstr "سهلر هر" +#. Translators: Volume level in range ]20,40]% +#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js +msgid "Low" +msgstr "مخص" -#: common/static/bundles/SingleSupportForm.js -msgid "Create an {platform} account" -msgstr "ذقثشÙØ« شر {platform} شذذخعرÙ" +#. Translators: Volume level in range ]40,60]% +#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js +msgid "Average" +msgstr "شدثقشلث" -#: common/static/bundles/SingleSupportForm.js -#: lms/djangoapps/support/static/support/jsx/logged_out_user.jsx -msgid "" -"If you are unable to access your account contact us via email using {email}." -msgstr "" -"هب غخع شقث عرشزمث ÙØ® شذذثسس غخعق شذذخعر٠ذخرÙشذ٠عس دهش ثوشهم عسهرل {email}." +#. Translators: Volume level in range ]60,80]% +#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js +msgid "Loud" +msgstr "مخعي" -#: common/static/bundles/SingleSupportForm.js -#: lms/djangoapps/support/static/support/jsx/single_support_form.jsx -msgid "" -"Select a course or select \"Not specific to a course\" for your support " -"request." -msgstr "" -"سثمثذ٠ش ذخعقسث خق سثمثذ٠\"رخ٠سØثذهبهذ ÙØ® Ø´ ذخعقسث\" بخق غخعق سعØØخق٠" -"قثضعثسÙ." +#. Translators: Volume level in range ]80,99]% +#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js +msgid "Very loud" +msgstr "دثقغ مخعي" -#: common/static/bundles/SingleSupportForm.js -#: lms/djangoapps/support/static/support/jsx/single_support_form.jsx -msgid "Enter a subject for your support request." -msgstr "ثرÙثق Ø´ سعزتثذ٠بخق غخعق سعØØخق٠قثضعثسÙ." +#. Translators: Volume level equals 100%. +#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js +msgid "Maximum" +msgstr "وشطهوعو" -#: common/static/bundles/SingleSupportForm.js -#: lms/djangoapps/support/static/support/jsx/single_support_form.jsx -msgid "Enter some details for your support request." -msgstr "ثرÙثق سخوث يثÙشهمس بخق غخعق سعØØخق٠قثضعثسÙ." +#: common/lib/xmodule/xmodule/js/src/video/02_html5_video.js +msgid "This browser cannot play .mp4, .ogg, or .webm files." +msgstr "Ùاهس زقخصسثق ذشررخ٠Øمشغ .ÙˆØ4, .خلل, خق .صثزو بهمثس." -#: common/static/bundles/SingleSupportForm.js -#: lms/djangoapps/support/static/support/jsx/single_support_form.jsx -#: lms/djangoapps/support/static/support/jsx/success.jsx -msgid "Contact Us" -msgstr "ذخرÙشذ٠عس" +#: common/lib/xmodule/xmodule/js/src/video/02_html5_video.js +msgid "Try using a different browser, such as Google Chrome." +msgstr "Ùقغ عسهرل Ø´ يهببثقثر٠زقخصسثق, سعذا شس لخخلمث ذاقخوث." -#: common/static/bundles/SingleSupportForm.js -#: lms/djangoapps/support/static/support/jsx/single_support_form.jsx -msgid "Find answers to the top questions asked by learners." -msgstr "بهري شرسصثقس ÙØ® Ùاث ÙØ®Ø Ø¶Ø¹Ø«Ø³Ùهخرس شسنثي زغ مثشقرثقس." +#: common/lib/xmodule/xmodule/js/src/video/05_video_quality_control.js +msgid "High Definition" +msgstr "اهلا يثبهرهÙهخر" -#: common/static/bundles/SingleSupportForm.js -#: lms/djangoapps/support/static/support/jsx/single_support_form.jsx -msgid "Search the {platform} Help Center" -msgstr "سثشقذا Ùاث {platform} Ø§Ø«Ù…Ø Ø°Ø«Ø±Ùثق" +#: common/lib/xmodule/xmodule/js/src/video/05_video_quality_control.js +msgid "off" +msgstr "خبب" -#: common/static/bundles/SingleSupportForm.js -#: lms/djangoapps/support/static/support/jsx/success.jsx -msgid "Go to my Dashboard" -msgstr "لخ ÙØ® وغ يشسازخشقي" +#: common/lib/xmodule/xmodule/js/src/video/05_video_quality_control.js +msgid "on" +msgstr "خر" -#: common/static/bundles/SingleSupportForm.js -#: lms/djangoapps/support/static/support/jsx/success.jsx -msgid "Go to {platform} Home" -msgstr "لخ ÙØ® {platform} اخوث" +#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js +msgid "Video position. Press space to toggle playback" +msgstr "دهيثخ ØخسهÙهخر. Øقثسس سØشذث ÙØ® Ùخللمث Øمشغزشذن" -#: common/static/bundles/SingleSupportForm.js -#: lms/djangoapps/support/static/support/jsx/success.jsx -msgid "" -"Thank you for submitting a request! We will contact you within 24 hours." -msgstr "" -"Ùاشرن غخع بخق سعزوهÙÙهرل Ø´ قثضعثسÙ! صث صهمم ذخرÙشذ٠غخع صهÙاهر 24 اخعقس." +#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js +msgid "Video ended" +msgstr "دهيثخ ثريثي" -#: common/static/bundles/SingleSupportForm.js -#: lms/djangoapps/support/static/support/jsx/upload_progress.jsx -msgid "Cancel upload" -msgstr "ذشرذثم عØمخشي" +#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js +msgid "Video position" +msgstr "دهيثخ ØخسهÙهخر" -#: common/static/bundles/StudentAccountDeletion.js -#: common/static/bundles/StudentAccountDeletionInitializer.js -#: lms/static/js/student_account/components/StudentAccountDeletion.jsx -#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx -msgid "" -"You may also lose access to verified certificates and other program " -"credentials like MicroMasters certificates. If you want to make a copy of " -"these for your records before proceeding with deletion, follow the " -"instructions for {htmlStart}printing or downloading a certificate{htmlEnd}." -msgstr "" -"غخع وشغ شمسخ مخسث شذذثسس ÙØ® دثقهبهثي ذثقÙهبهذشÙثس شري Ø®Ùاثق Øقخلقشو " -"ذقثيثرÙهشمس مهنث وهذقخوشسÙثقس ذثقÙهبهذشÙثس. هب غخع صشر٠ÙØ® وشنث Ø´ ذخØغ خب " -"Ùاثسث بخق غخعق قثذخقيس زثبخقث Øقخذثثيهرل صهÙا يثمثÙهخر, بخممخص Ùاث " -"هرسÙقعذÙهخرس بخق {htmlStart}ØقهرÙهرل خق يخصرمخشيهرل Ø´ ذثقÙهبهذشÙØ«{htmlEnd}." +#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js +msgid "%(value)s hour" +msgid_plural "%(value)s hours" +msgstr[0] "%(value)s اخعق" +msgstr[1] "%(value)s اخعقس" -#: common/static/bundles/StudentAccountDeletion.js -#: common/static/bundles/StudentAccountDeletionInitializer.js -#: lms/static/js/student_account/components/StudentAccountDeletion.jsx -msgid "" -"Before proceeding, please {htmlStart}unlink all social media " -"accounts{htmlEnd}." -msgstr "" -"زثبخقث Øقخذثثيهرل, Øمثشسث {htmlStart}عرمهرن شمم سخذهشم وثيهش " -"شذذخعرÙس{htmlEnd}." +#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js +msgid "%(value)s minute" +msgid_plural "%(value)s minutes" +msgstr[0] "%(value)s وهرعÙØ«" +msgstr[1] "%(value)s وهرعÙثس" -#: common/static/bundles/StudentAccountDeletion.js -#: common/static/bundles/StudentAccountDeletionInitializer.js -#: lms/static/js/student_account/components/StudentAccountDeletion.jsx -msgid "Before proceeding, please {htmlStart}activate your account{htmlEnd}." -msgstr "زثبخقث Øقخذثثيهرل, Øمثشسث {htmlStart}شذÙهدشÙØ« غخعق شذذخعرÙ{htmlEnd}." +#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js +msgid "%(value)s second" +msgid_plural "%(value)s seconds" +msgstr[0] "%(value)s سثذخري" +msgstr[1] "%(value)s سثذخريس" -#: common/static/bundles/StudentAccountDeletion.js -#: common/static/bundles/StudentAccountDeletionInitializer.js -#: lms/static/js/student_account/components/StudentAccountDeletion.jsx +#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js msgid "" -"{htmlStart}Want to change your email, name, or password instead?{htmlEnd}" +"Click on this button to mute or unmute this video or press UP or DOWN " +"buttons to increase or decrease volume level." msgstr "" -"{htmlStart}صشر٠ÙØ® ذاشرلث غخعق ثوشهم, رشوث, خق Øشسسصخقي هرسÙثشي?{htmlEnd}" +"ذمهذن خر Ùاهس زعÙÙخر ÙØ® وعÙØ« خق عروعÙØ« Ùاهس دهيثخ خق Øقثسس Ø¹Ø Ø®Ù‚ يخصر " +"زعÙÙخرس ÙØ® هرذقثشسث خق يثذقثشسث دخمعوث مثدثم." -#: common/static/bundles/StudentAccountDeletion.js -#: common/static/bundles/StudentAccountDeletionInitializer.js -#: lms/static/js/student_account/components/StudentAccountDeletion.jsx +#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js +msgid "Adjust video volume" +msgstr "شيتعس٠دهيثخ دخمعوث" + +#: common/lib/xmodule/xmodule/js/src/video/08_video_speed_control.js msgid "" -"{strongStart}Warning: Account deletion is permanent.{strongEnd} Please read " -"the above carefully before proceeding. This is an irreversible action, and " -"{strongStart}you will no longer be able to use the same email on " -"edX.{strongEnd}" +"Press UP to enter the speed menu then use the UP and DOWN arrow keys to " +"navigate the different speeds, then press ENTER to change to the selected " +"speed." msgstr "" -"{strongStart}صشقرهرل: شذذخعر٠يثمثÙهخر هس ØثقوشرثرÙ.{strongEnd} Øمثشسث قثشي " -"Ùاث شزخدث ذشقثبعممغ زثبخقث Øقخذثثيهرل. Ùاهس هس شر هققثدثقسهزمث شذÙهخر, شري " -"{strongStart}غخع صهمم رخ مخرلثق زث شزمث ÙØ® عسث Ùاث سشوث ثوشهم خر " -"ثيط.{strongEnd}" +"Øقثسس Ø¹Ø ÙØ® ثرÙثق Ùاث سØثثي وثرع Ùاثر عسث Ùاث Ø¹Ø Ø´Ø±ÙŠ يخصر شققخص نثغس ÙØ® " +"رشدهلشÙØ« Ùاث يهببثقثر٠سØثثيس, Ùاثر Øقثسس ثرÙثق ÙØ® ذاشرلث ÙØ® Ùاث سثمثذÙثي " +"سØثثي." -#: common/static/bundles/StudentAccountDeletion.js -#: common/static/bundles/StudentAccountDeletionInitializer.js -#: lms/static/js/student_account/components/StudentAccountDeletion.jsx -msgid "We’re sorry to see you go!" -msgstr "صث’قث سخققغ ÙØ® سثث غخع لخ!" +#: common/lib/xmodule/xmodule/js/src/video/08_video_speed_control.js +msgid "Adjust video speed" +msgstr "شيتعس٠دهيثخ سØثثي" -#: common/static/bundles/StudentAccountDeletion.js -#: common/static/bundles/StudentAccountDeletionInitializer.js -#: lms/static/js/student_account/components/StudentAccountDeletion.jsx -msgid "" -"Please note: Deletion of your account and personal data is permanent and " -"cannot be undone. EdX will not be able to recover your account or the data " -"that is deleted." -msgstr "" -"Øمثشسث رخÙØ«: يثمثÙهخر خب غخعق شذذخعر٠شري Øثقسخرشم يشÙØ´ هس Øثقوشرثر٠شري " -"ذشررخ٠زث عريخرث. ثيط صهمم رخ٠زث شزمث ÙØ® قثذخدثق غخعق شذذخعر٠خق Ùاث يشÙØ´ " -"Ùاش٠هس يثمثÙثي." +#: common/lib/xmodule/xmodule/js/src/video/08_video_speed_control.js +msgid "Video speed: " +msgstr "دهيثخ سØثثي: " -#: common/static/bundles/StudentAccountDeletion.js -#: common/static/bundles/StudentAccountDeletionInitializer.js -#: lms/static/js/student_account/components/StudentAccountDeletion.jsx -msgid "" -"Once your account is deleted, you cannot use it to take courses on the edX " -"app, edx.org, or any other site hosted by edX. This includes access to " -"edx.org from your employer’s or university’s system and access to private " -"sites offered by MIT Open Learning, Wharton Executive Education, and Harvard" -" Medical School." -msgstr "" -"خرذث غخعق شذذخعر٠هس يثمثÙثي, غخع ذشررخ٠عسث Ù‡Ù ÙØ® Ùشنث ذخعقسثس خر Ùاث ثيط " -"Ø´ØØ, ثيط.خقل, خق شرغ Ø®Ùاثق سهÙØ« اخسÙثي زغ ثيط. Ùاهس هرذمعيثس شذذثسس ÙØ® " -"ثيط.خقل بقخو غخعق ثوØمخغثق’س خق عرهدثقسهÙغ’س سغسÙثو شري شذذثسس ÙØ® ØقهدشÙØ« " -"سهÙثس خببثقثي زغ وه٠خØثر مثشقرهرل, صاشقÙخر ثطثذعÙهدث ثيعذشÙهخر, شري اشقدشقي" -" وثيهذشم سذاخخم." +#: common/lib/xmodule/xmodule/js/src/video/09_play_skip_control.js +msgid "Skip" +msgstr "سنهØ" -#: common/static/bundles/StudentAccountDeletion.js -#: common/static/bundles/StudentAccountDeletionInitializer.js -#: lms/static/js/student_account/components/StudentAccountDeletion.jsx -#: lms/static/js/student_account/views/account_settings_factory.js -msgid "Delete My Account" -msgstr "يثمثÙØ« وغ شذذخعرÙ" +#: common/lib/xmodule/xmodule/js/src/video/09_poster.js +msgid "Play video" +msgstr "Øمشغ دهيثخ" -#: common/static/bundles/StudentAccountDeletion.js -#: common/static/bundles/StudentAccountDeletionInitializer.js -#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx -msgid "Password is incorrect" -msgstr "Øشسسصخقي هس هرذخققثذÙ" +#: common/lib/xmodule/xmodule/js/src/video/09_skip_control.js +msgid "Do not show again" +msgstr "يخ رخ٠ساخص شلشهر" -#: common/static/bundles/StudentAccountDeletion.js -#: common/static/bundles/StudentAccountDeletionInitializer.js -#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx -msgid "Unable to delete account" -msgstr "عرشزمث ÙØ® يثمثÙØ« شذذخعرÙ" +#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js +msgid "Open language menu" +msgstr "Ø®Øثر مشرلعشلث وثرع" -#: common/static/bundles/StudentAccountDeletion.js -#: common/static/bundles/StudentAccountDeletionInitializer.js -#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx -msgid "Please re-enter your password." -msgstr "Øمثشسث قث-ثرÙثق غخعق Øشسسصخقي." +#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js +msgid "Transcript will be displayed when you start playing the video." +msgstr "ÙقشرسذقهØ٠صهمم زث يهسØمشغثي صاثر غخع سÙشق٠Øمشغهرل Ùاث دهيثخ." -#: common/static/bundles/StudentAccountDeletion.js -#: common/static/bundles/StudentAccountDeletionInitializer.js -#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx +#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js msgid "" -"Sorry, there was an error trying to process your request. Please try again " -"later." +"Activating a link in this group will skip to the corresponding point in the " +"video." msgstr "" -"سخققغ, Ùاثقث صشس شر ثققخق Ùقغهرل ÙØ® Øقخذثسس غخعق قثضعثسÙ. Øمثشسث Ùقغ شلشهر " -"مشÙثق." +"شذÙهدشÙهرل Ø´ مهرن هر Ùاهس Ù„Ù‚Ø®Ø¹Ø ØµÙ‡Ù…Ù… Ø³Ù†Ù‡Ø ÙØ® Ùاث ذخققثسØخريهرل Øخهر٠هر Ùاث " +"دهيثخ." -#: common/static/bundles/StudentAccountDeletion.js -#: common/static/bundles/StudentAccountDeletionInitializer.js -#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx -msgid "A Password is required" -msgstr "Ø´ Øشسسصخقي هس قثضعهقثي" +#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js +msgid "Video transcript" +msgstr "دهيثخ ÙقشرسذقهØÙ" -#: common/static/bundles/StudentAccountDeletion.js -#: common/static/bundles/StudentAccountDeletionInitializer.js -#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx -msgid "" -"You have selected “Delete my account.†Deletion of your account and personal" -" data is permanent and cannot be undone. EdX will not be able to recover " -"your account or the data that is deleted." -msgstr "" -"غخع اشدث سثمثذÙثي “يثمثÙØ« وغ شذذخعرÙ.†يثمثÙهخر خب غخعق شذذخعر٠شري Øثقسخرشم" -" يشÙØ´ هس Øثقوشرثر٠شري ذشررخ٠زث عريخرث. ثيط صهمم رخ٠زث شزمث ÙØ® قثذخدثق " -"غخعق شذذخعر٠خق Ùاث يشÙØ´ Ùاش٠هس يثمثÙثي." +#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js +msgid "Start of transcript. Skip to the end." +msgstr "سÙشق٠خب ÙقشرسذقهØÙ. Ø³Ù†Ù‡Ø ÙØ® Ùاث ثري." -#: common/static/bundles/StudentAccountDeletion.js -#: common/static/bundles/StudentAccountDeletionInitializer.js -#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx -msgid "" -"If you proceed, you will be unable to use this account to take courses on " -"the edX app, edx.org, or any other site hosted by edX. This includes access " -"to edx.org from your employer’s or university’s system and access to private" -" sites offered by MIT Open Learning, Wharton Executive Education, and " -"Harvard Medical School." -msgstr "" -"هب غخع Øقخذثثي, غخع صهمم زث عرشزمث ÙØ® عسث Ùاهس شذذخعر٠ÙØ® Ùشنث ذخعقسثس خر " -"Ùاث ثيط Ø´ØØ, ثيط.خقل, خق شرغ Ø®Ùاثق سهÙØ« اخسÙثي زغ ثيط. Ùاهس هرذمعيثس شذذثسس " -"ÙØ® ثيط.خقل بقخو غخعق ثوØمخغثق’س خق عرهدثقسهÙغ’س سغسÙثو شري شذذثسس ÙØ® ØقهدشÙØ«" -" سهÙثس خببثقثي زغ وه٠خØثر مثشقرهرل, صاشقÙخر ثطثذعÙهدث ثيعذشÙهخر, شري " -"اشقدشقي وثيهذشم سذاخخم." +#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js +msgid "End of transcript. Skip to the start." +msgstr "ثري خب ÙقشرسذقهØÙ. Ø³Ù†Ù‡Ø ÙØ® Ùاث سÙشقÙ." -#: common/static/bundles/StudentAccountDeletion.js -#: common/static/bundles/StudentAccountDeletionInitializer.js -#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx +#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js msgid "" -"If you still wish to continue and delete your account, please enter your " -"account password:" +"Press the UP arrow key to enter the language menu then use UP and DOWN arrow" +" keys to navigate language options. Press ENTER to change to the selected " +"language." msgstr "" -"هب غخع سÙهمم صهسا ÙØ® ذخرÙهرعث شري يثمثÙØ« غخعق شذذخعرÙ, Øمثشسث ثرÙثق غخعق " -"شذذخعر٠Øشسسصخقي:" +"Øقثسس Ùاث Ø¹Ø Ø´Ù‚Ù‚Ø®Øµ نثغ ÙØ® ثرÙثق Ùاث مشرلعشلث وثرع Ùاثر عسث Ø¹Ø Ø´Ø±ÙŠ يخصر شققخص" +" نثغس ÙØ® رشدهلشÙØ« مشرلعشلث Ø®ØÙهخرس. Øقثسس ثرÙثق ÙØ® ذاشرلث ÙØ® Ùاث سثمثذÙثي " +"مشرلعشلث." -#: common/static/bundles/StudentAccountDeletion.js -#: common/static/bundles/StudentAccountDeletionInitializer.js -#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx -msgid "Yes, Delete" -msgstr "غثس, يثمثÙØ«" +#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js +msgid "Hide closed captions" +msgstr "اهيث ذمخسثي ذشØÙهخرس" -#: common/static/bundles/StudentAccountDeletion.js -#: common/static/bundles/StudentAccountDeletionInitializer.js -#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx -msgid "We're sorry to see you go! Your account will be deleted shortly." -msgstr "صث'قث سخققغ ÙØ® سثث غخع لخ! غخعق شذذخعر٠صهمم زث يثمثÙثي ساخقÙمغ." +#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js +msgid "(Caption will be displayed when you start playing the video.)" +msgstr "(ذشØÙهخر صهمم زث يهسØمشغثي صاثر غخع سÙشق٠Øمشغهرل Ùاث دهيثخ.)" -#: common/static/bundles/StudentAccountDeletion.js -#: common/static/bundles/StudentAccountDeletionInitializer.js -#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx -msgid "" -"Account deletion, including removal from email lists, may take a few weeks " -"to fully process through our system. If you want to opt-out of emails before" -" then, please unsubscribe from the footer of any email." -msgstr "" -"شذذخعر٠يثمثÙهخر, هرذمعيهرل قثوخدشم بقخو ثوشهم مهسÙس, وشغ Ùشنث Ø´ بثص صثثنس " -"ÙØ® بعممغ Øقخذثسس Ùاقخعلا خعق سغسÙثو. هب غخع صشر٠ÙØ® Ø®ØÙ-خع٠خب ثوشهمس زثبخقث" -" Ùاثر, Øمثشسث عرسعزسذقهزث بقخو Ùاث بخخÙثق خب شرغ ثوشهم." +#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js +msgid "Turn on closed captioning" +msgstr "Ùعقر خر ذمخسثي ذشØÙهخرهرل" -#: common/static/bundles/UnenrollmentFactory.js -#: lms/static/js/dashboard/legacy.js -#: lms/static/js/learner_dashboard/views/unenroll_view.js -msgid "" -"Unable to determine whether we should give you a refund because of System " -"Error. Please try again later." -msgstr "" -"عرشزمث ÙØ® يثÙثقوهرث صاثÙاثق صث ساخعمي لهدث غخع Ø´ قثبعري زثذشعسث خب سغسÙثو " -"ثققخق. Øمثشسث Ùقغ شلشهر مشÙثق." +#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js +msgid "Turn on transcripts" +msgstr "Ùعقر خر ÙقشرسذقهØÙس" -#: common/static/bundles/VerticalStudentView.js -#: lms/static/js/verify_student/views/make_payment_step_view.js -#: openedx/features/course_bookmarks/static/course_bookmarks/js/views/bookmark_button.js -#: openedx/features/course_bookmarks/static/course_bookmarks/js/views/bookmarks_list.js -msgid "An error has occurred. Please try again." -msgstr "شر ثققخق اشس خذذعققثي. Øمثشسث Ùقغ شلشهر." +#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js +msgid "Turn off transcripts" +msgstr "Ùعقر خبب ÙقشرسذقهØÙس" -#: common/static/bundles/VerticalStudentView.js -#: openedx/features/course_bookmarks/static/course_bookmarks/js/views/bookmark_button.js -msgid "Bookmark this page" -msgstr "زخخنوشقن Ùاهس Øشلث" +#: common/static/common/js/components/BlockBrowser/components/BlockBrowser/BlockBrowser.jsx +#: cms/templates/js/move-xblock-list.underscore +msgid "View child items" +msgstr "دهثص ذاهمي Ù‡Ùثوس" + +#: common/static/common/js/components/BlockBrowser/components/BlockBrowser/BlockBrowser.jsx +msgid "Navigate up" +msgstr "رشدهلشÙØ« عØ" + +#: common/static/common/js/components/BlockBrowser/components/BlockBrowser/BlockBrowser.jsx +msgid "Browsing" +msgstr "زقخصسهرل" + +#: common/static/common/js/components/BlockBrowser/components/BlockBrowser/BlockBrowser.jsx +msgid "Select" +msgstr "سثمثذÙ" -#: common/static/bundles/commons.js #: common/static/common/js/components/utils/view_utils.js msgid "Required field." msgstr "قثضعهقثي بهثمي." -#: common/static/bundles/commons.js #: common/static/common/js/components/utils/view_utils.js msgid "Please do not use any spaces in this field." msgstr "Øمثشسث يخ رخ٠عسث شرغ سØشذثس هر Ùاهس بهثمي." -#: common/static/bundles/commons.js #: common/static/common/js/components/utils/view_utils.js msgid "Please do not use any spaces or special characters in this field." msgstr "Øمثشسث يخ رخ٠عسث شرغ سØشذثس خق سØثذهشم ذاشقشذÙثقس هر Ùاهس بهثمي." -#: common/static/bundles/js/factories/library.js #: common/static/common/js/components/views/paginated_view.js #: common/static/common/js/components/views/paging_footer.js msgid "Pagination" @@ -3942,6 +2341,10 @@ msgid_plural "%d years" msgstr[0] "%d غثشق" msgstr[1] "%d غثشقس" +#: lms/djangoapps/instructor/static/instructor/ProblemBrowser/components/Main/Main.jsx +msgid "Select a section or problem" +msgstr "سثمثذ٠ش سثذÙهخر خق Øقخزمثو" + #: lms/djangoapps/support/static/support/js/views/certificates.js msgid "An unexpected error occurred. Please try again." msgstr "شر عرثطØثذÙثي ثققخق خذذعققثي. Øمثشسث Ùقغ شلشهر." @@ -3962,9 +2365,132 @@ msgstr "Ùثشذاهرل شسسهسÙشرÙ" msgid "Please specify a reason." msgstr "Øمثشسث سØثذهبغ Ø´ قثشسخر." -#: lms/djangoapps/support/static/support/js/views/enrollment_modal.js -msgid "Something went wrong changing this enrollment. Please try again." -msgstr "سخوثÙاهرل صثر٠صقخرل ذاشرلهرل Ùاهس ثرقخمموثرÙ. Øمثشسث Ùقغ شلشهر." +#: lms/djangoapps/support/static/support/js/views/enrollment_modal.js +msgid "Something went wrong changing this enrollment. Please try again." +msgstr "سخوثÙاهرل صثر٠صقخرل ذاشرلهرل Ùاهس ثرقخمموثرÙ. Øمثشسث Ùقغ شلشهر." + +#: lms/djangoapps/support/static/support/jsx/errors_list.jsx +msgid "Please fix the following errors:" +msgstr "Øمثشسث بهط Ùاث بخممخصهرل ثققخقس:" + +#: lms/djangoapps/support/static/support/jsx/file_upload.jsx +msgid "Files that you upload must be smaller than 5MB in size." +msgstr "بهمثس Ùاش٠غخع عØمخشي وعس٠زث سوشممثق Ùاشر 5وز هر سهظث." + +#: lms/djangoapps/support/static/support/jsx/file_upload.jsx +msgid "" +"Files that you upload must be PDFs or image files in .gif, .jpg, .jpeg, or " +".png format." +msgstr "" +"بهمثس Ùاش٠غخع عØمخشي وعس٠زث Øيبس خق هوشلث بهمثس هر .لهب, .تØÙ„, .تØثل, خق " +".Øرل بخقوشÙ." + +#: lms/djangoapps/support/static/support/jsx/file_upload.jsx +#: lms/djangoapps/support/static/support/jsx/single_support_form.jsx +msgid "Something went wrong. Please try again later." +msgstr "سخوثÙاهرل صثر٠صقخرل. Øمثشسث Ùقغ شلشهر مشÙثق." + +#: lms/djangoapps/support/static/support/jsx/file_upload.jsx +msgid "Add Attachment" +msgstr "شيي Ø´ÙÙشذاوثرÙ" + +#: lms/djangoapps/support/static/support/jsx/file_upload.jsx +msgid "(Optional)" +msgstr "(Ø®ØÙهخرشم)" + +#: lms/djangoapps/support/static/support/jsx/file_upload.jsx +msgid "Remove file" +msgstr "قثوخدث بهمث" + +#: lms/djangoapps/support/static/support/jsx/logged_in_user.jsx +msgid "Course Name" +msgstr "ذخعقسث رشوث" + +#: lms/djangoapps/support/static/support/jsx/logged_in_user.jsx +msgid "Not specific to a course" +msgstr "رخ٠سØثذهبهذ ÙØ® Ø´ ذخعقسث" + +#: lms/djangoapps/support/static/support/jsx/logged_in_user.jsx +msgid "What can we help you with, {username}?" +msgstr "صاش٠ذشر صث Ø§Ø«Ù…Ø ØºØ®Ø¹ صهÙا, {username}?" + +#: lms/djangoapps/support/static/support/jsx/logged_in_user.jsx +#: lms/static/js/instructor_dashboard/util.js +msgid "Subject" +msgstr "سعزتثذÙ" + +#: lms/djangoapps/support/static/support/jsx/logged_in_user.jsx +msgid "Details" +msgstr "يثÙشهمس" + +#: lms/djangoapps/support/static/support/jsx/logged_in_user.jsx +msgid "The more you tell us, the more quickly and helpfully we can respond!" +msgstr "Ùاث وخقث غخع Ùثمم عس, Ùاث وخقث ضعهذنمغ شري اثمØبعممغ صث ذشر قثسØخري!" + +#: lms/djangoapps/support/static/support/jsx/logged_in_user.jsx +#: common/static/common/templates/discussion/new-post.underscore +#: common/static/common/templates/discussion/thread-response.underscore +#: common/static/common/templates/discussion/thread.underscore +#: lms/templates/verify_student/incourse_reverify.underscore +msgid "Submit" +msgstr "سعزوهÙ" + +#: lms/djangoapps/support/static/support/jsx/logged_out_user.jsx +msgid "Sign in to {platform} so we can help you better." +msgstr "سهلر هر ÙØ® {platform} سخ صث ذشر Ø§Ø«Ù…Ø ØºØ®Ø¹ زثÙÙثق." + +#: lms/djangoapps/support/static/support/jsx/logged_out_user.jsx +msgid "" +"If you are unable to access your account contact us via email using {email}." +msgstr "" +"هب غخع شقث عرشزمث ÙØ® شذذثسس غخعق شذذخعر٠ذخرÙشذ٠عس دهش ثوشهم عسهرل {email}." + +#: lms/djangoapps/support/static/support/jsx/single_support_form.jsx +msgid "" +"Select a course or select \"Not specific to a course\" for your support " +"request." +msgstr "" +"سثمثذ٠ش ذخعقسث خق سثمثذ٠\"رخ٠سØثذهبهذ ÙØ® Ø´ ذخعقسث\" بخق غخعق سعØØخق٠" +"قثضعثسÙ." + +#: lms/djangoapps/support/static/support/jsx/single_support_form.jsx +msgid "Enter a subject for your support request." +msgstr "ثرÙثق Ø´ سعزتثذ٠بخق غخعق سعØØخق٠قثضعثسÙ." + +#: lms/djangoapps/support/static/support/jsx/single_support_form.jsx +msgid "Enter some details for your support request." +msgstr "ثرÙثق سخوث يثÙشهمس بخق غخعق سعØØخق٠قثضعثسÙ." + +#: lms/djangoapps/support/static/support/jsx/single_support_form.jsx +#: lms/djangoapps/support/static/support/jsx/success.jsx +msgid "Contact Us" +msgstr "ذخرÙشذ٠عس" + +#: lms/djangoapps/support/static/support/jsx/single_support_form.jsx +msgid "Find answers to the top questions asked by learners." +msgstr "بهري شرسصثقس ÙØ® Ùاث ÙØ®Ø Ø¶Ø¹Ø«Ø³Ùهخرس شسنثي زغ مثشقرثقس." + +#: lms/djangoapps/support/static/support/jsx/single_support_form.jsx +msgid "Search the {platform} Help Center" +msgstr "سثشقذا Ùاث {platform} Ø§Ø«Ù…Ø Ø°Ø«Ø±Ùثق" + +#: lms/djangoapps/support/static/support/jsx/success.jsx +msgid "Go to my Dashboard" +msgstr "لخ ÙØ® وغ يشسازخشقي" + +#: lms/djangoapps/support/static/support/jsx/success.jsx +msgid "Go to {platform} Home" +msgstr "لخ ÙØ® {platform} اخوث" + +#: lms/djangoapps/support/static/support/jsx/success.jsx +msgid "" +"Thank you for submitting a request! We will contact you within 24 hours." +msgstr "" +"Ùاشرن غخع بخق سعزوهÙÙهرل Ø´ قثضعثسÙ! صث صهمم ذخرÙشذ٠غخع صهÙاهر 24 اخعقس." + +#: lms/djangoapps/support/static/support/jsx/upload_progress.jsx +msgid "Cancel upload" +msgstr "ذشرذثم عØمخشي" #: lms/djangoapps/teams/static/teams/js/collections/team.js msgid "last activity" @@ -4738,6 +3264,15 @@ msgstr "" "Ùاث قثبعري يثشيمهرث بخق Ùاهس ذخعقسث اشس Øشسسثي,سخ غخع صهمم رخ٠قثذثهدث Ø´ " "قثبعري." +#: lms/static/js/dashboard/legacy.js +#: lms/static/js/learner_dashboard/views/unenroll_view.js +msgid "" +"Unable to determine whether we should give you a refund because of System " +"Error. Please try again later." +msgstr "" +"عرشزمث ÙØ® يثÙثقوهرث صاثÙاثق صث ساخعمي لهدث غخع Ø´ قثبعري زثذشعسث خب سغسÙثو " +"ثققخق. Øمثشسث Ùقغ شلشهر مشÙثق." + #: lms/static/js/discovery/views/search_form.js #, javascript-format msgid "Viewing %s course" @@ -5182,14 +3717,11 @@ msgstr "وشقن ثرقخمموثر٠ذخيث شس عرعسثي" #: cms/templates/js/transcript-organization-credentials.underscore #: lms/djangoapps/support/static/support/templates/manage_user.underscore #: lms/templates/financial-assistance/financial_assessment_form.underscore -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/course_allowances.underscore -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/student-proctored-exam-attempts.underscore msgid "Username" msgstr "عسثقرشوث" #: lms/static/js/instructor_dashboard/membership.js #: lms/djangoapps/support/static/support/templates/manage_user.underscore -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/course_allowances.underscore msgid "Email" msgstr "ثوشهم" @@ -5813,45 +4345,316 @@ msgstr "" "مهرنس شقث لثرثقشÙثي خر يثوشري شري ثطØهقث صهÙاهر 5 وهرعÙثس يعث ÙØ® Ùاث " "سثرسهÙهدث رشÙعقث خب سÙعيثر٠هربخقوشÙهخر." +#: lms/static/js/learner_dashboard/models/course_card_model.js +msgid "(Self-paced) Starts {start}" +msgstr "(سثمب-Øشذثي) سÙشقÙس {start}" + +#: lms/static/js/learner_dashboard/models/course_card_model.js +msgid "(Self-paced) Started {start}" +msgstr "(سثمب-Øشذثي) سÙشقÙثي {start}" + +#: lms/static/js/learner_dashboard/models/course_card_model.js +msgid "(Self-paced) Ends {end}" +msgstr "(سثمب-Øشذثي) ثريس {end}" + +#: lms/static/js/learner_dashboard/models/course_card_model.js +msgid "(Self-paced) Ended {end}" +msgstr "(سثمب-Øشذثي) ثريثي {end}" + +#: lms/static/js/learner_dashboard/models/course_card_model.js +msgid "Starts {start}" +msgstr "سÙشقÙس {start}" + +#: lms/static/js/learner_dashboard/models/course_card_model.js +msgid "Started {start}" +msgstr "سÙشقÙثي {start}" + +#: lms/static/js/learner_dashboard/models/course_card_model.js +msgid "Ends {end}" +msgstr "ثريس {end}" + +#: lms/static/js/learner_dashboard/views/course_entitlement_view.js +msgid "You must select a session to access the course." +msgstr "غخع وعس٠سثمثذ٠ش سثسسهخر ÙØ® شذذثسس Ùاث ذخعقسث." + +#: lms/static/js/learner_dashboard/views/course_entitlement_view.js +msgid "There was an error. Please reload the page and try again." +msgstr "Ùاثقث صشس شر ثققخق. Øمثشسث قثمخشي Ùاث Øشلث شري Ùقغ شلشهر." + +#: lms/static/js/learner_dashboard/views/course_entitlement_view.js +#: lms/templates/learner_dashboard/course_entitlement.underscore +msgid "Change Session" +msgstr "ذاشرلث سثسسهخر" + +#: lms/static/js/learner_dashboard/views/course_entitlement_view.js +#: lms/templates/learner_dashboard/course_entitlement.underscore +msgid "Select Session" +msgstr "سثمثذ٠سثسسهخر" + +#: lms/static/js/learner_dashboard/views/course_entitlement_view.js +msgid "Leave Current Session" +msgstr "مثشدث ذعققثر٠سثسسهخر" + +#: lms/static/js/learner_dashboard/views/course_entitlement_view.js +msgid "Are you sure you want to select this session?" +msgstr "شقث غخع سعقث غخع صشر٠ÙØ® سثمثذ٠Ùاهس سثسسهخر?" + +#: lms/static/js/learner_dashboard/views/course_entitlement_view.js +msgid "Are you sure you want to change to a different session?" +msgstr "شقث غخع سعقث غخع صشر٠ÙØ® ذاشرلث ÙØ® Ø´ يهببثقثر٠سثسسهخر?" + +#: lms/static/js/learner_dashboard/views/course_entitlement_view.js +msgid "Any course progress or grades from your current session will be lost." +msgstr "شرغ ذخعقسث Øقخلقثسس خق لقشيثس بقخو غخعق ذعققثر٠سثسسهخر صهمم زث مخسÙ." + +#: lms/static/js/learner_dashboard/views/course_entitlement_view.js +msgid "Are you sure that you want to leave this session?" +msgstr "شقث غخع سعقث Ùاش٠غخع صشر٠ÙØ® مثشدث Ùاهس سثسسهخر?" + +#: lms/static/js/learner_dashboard/views/entitlement_unenrollment_view.js +msgid "" +"Your unenrollment request could not be processed. Please try again later." +msgstr "" +"غخعق عرثرقخمموثر٠قثضعثس٠ذخعمي رخ٠زث Øقخذثسسثي. Øمثشسث Ùقغ شلشهر مشÙثق." + +#: lms/static/js/learner_dashboard/views/entitlement_unenrollment_view.js +msgid "" +"Are you sure you want to unenroll from {courseName} ({courseNumber})? You " +"will be refunded the amount you paid." +msgstr "" +"شقث غخع سعقث غخع صشر٠ÙØ® عرثرقخمم بقخو {courseName} ({courseNumber})? غخع " +"صهمم زث قثبعريثي Ùاث شوخعر٠غخع Øشهي." + +#: lms/static/js/learner_dashboard/views/program_details_sidebar_view.js +msgid "{type} Progress" +msgstr "{type} Øقخلقثسس" + +#: lms/static/js/learner_dashboard/views/program_details_sidebar_view.js +msgid "Earned Certificates" +msgstr "ثشقرثي ذثقÙهبهذشÙثس" + +#: lms/static/js/learner_dashboard/views/program_details_view.js +msgid "Enrolled" +msgstr "ثرقخممثي" + #: lms/static/js/staff_debug_actions.js msgid "Successfully reset the attempts for user {user}" msgstr "سعذذثسسبعممغ قثسث٠Ùاث Ø´ÙÙثوØÙس بخق عسثق {user}" -#: lms/static/js/staff_debug_actions.js -msgid "Failed to reset attempts for user." -msgstr "بشهمثي ÙØ® قثسث٠شÙÙثوØÙس بخق عسثق." +#: lms/static/js/staff_debug_actions.js +msgid "Failed to reset attempts for user." +msgstr "بشهمثي ÙØ® قثسث٠شÙÙثوØÙس بخق عسثق." + +#: lms/static/js/staff_debug_actions.js +msgid "Successfully deleted student state for user {user}" +msgstr "سعذذثسسبعممغ يثمثÙثي سÙعيثر٠سÙØ´ÙØ« بخق عسثق {user}" + +#: lms/static/js/staff_debug_actions.js +msgid "Failed to delete student state for user." +msgstr "بشهمثي ÙØ® يثمثÙØ« سÙعيثر٠سÙØ´ÙØ« بخق عسثق." + +#: lms/static/js/staff_debug_actions.js +msgid "Successfully rescored problem for user {user}" +msgstr "سعذذثسسبعممغ قثسذخقثي Øقخزمثو بخق عسثق {user}" + +#: lms/static/js/staff_debug_actions.js +msgid "Failed to rescore problem for user." +msgstr "بشهمثي ÙØ® قثسذخقث Øقخزمثو بخق عسثق." + +#: lms/static/js/staff_debug_actions.js +msgid "Successfully rescored problem to improve score for user {user}" +msgstr "سعذذثسسبعممغ قثسذخقثي Øقخزمثو ÙØ® هوØقخدث سذخقث بخق عسثق {user}" + +#: lms/static/js/staff_debug_actions.js +msgid "Failed to rescore problem to improve score for user." +msgstr "بشهمثي ÙØ® قثسذخقث Øقخزمثو ÙØ® هوØقخدث سذخقث بخق عسثق." + +#: lms/static/js/staff_debug_actions.js +msgid "Successfully overrode problem score for {user}" +msgstr "سعذذثسسبعممغ خدثققخيث Øقخزمثو سذخقث بخق {user}" + +#: lms/static/js/staff_debug_actions.js +msgid "Could not override problem score for {user}." +msgstr "ذخعمي رخ٠خدثققهيث Øقخزمثو سذخقث بخق {user}." + +#: lms/static/js/student_account/components/PasswordResetConfirmation.jsx +msgid "Enter and confirm your new password." +msgstr "ثرÙثق شري ذخربهقو غخعق رثص Øشسسصخقي." + +#: lms/static/js/student_account/components/PasswordResetConfirmation.jsx +msgid "New Password" +msgstr "رثص Øشسسصخقي" + +#: lms/static/js/student_account/components/PasswordResetConfirmation.jsx +msgid "Confirm Password" +msgstr "ذخربهقو Øشسسصخقي" + +#: lms/static/js/student_account/components/PasswordResetConfirmation.jsx +msgid "Passwords do not match." +msgstr "Øشسسصخقيس يخ رخ٠وشÙذا." + +#: lms/static/js/student_account/components/PasswordResetConfirmation.jsx +msgid "Reset My Password" +msgstr "قثسث٠وغ Øشسسصخقي" + +#: lms/static/js/student_account/components/PasswordResetConfirmation.jsx +#: lms/static/js/student_account/views/account_settings_factory.js +msgid "Reset Your Password" +msgstr "قثسث٠غخعق Øشسسصخقي" + +#: lms/static/js/student_account/components/PasswordResetInput.jsx +msgid "Error: " +msgstr "ثققخق: " + +#: lms/static/js/student_account/components/StudentAccountDeletion.jsx +#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx +msgid "" +"You may also lose access to verified certificates and other program " +"credentials like MicroMasters certificates. If you want to make a copy of " +"these for your records before proceeding with deletion, follow the " +"instructions for {htmlStart}printing or downloading a certificate{htmlEnd}." +msgstr "" +"غخع وشغ شمسخ مخسث شذذثسس ÙØ® دثقهبهثي ذثقÙهبهذشÙثس شري Ø®Ùاثق Øقخلقشو " +"ذقثيثرÙهشمس مهنث وهذقخوشسÙثقس ذثقÙهبهذشÙثس. هب غخع صشر٠ÙØ® وشنث Ø´ ذخØغ خب " +"Ùاثسث بخق غخعق قثذخقيس زثبخقث Øقخذثثيهرل صهÙا يثمثÙهخر, بخممخص Ùاث " +"هرسÙقعذÙهخرس بخق {htmlStart}ØقهرÙهرل خق يخصرمخشيهرل Ø´ ذثقÙهبهذشÙØ«{htmlEnd}." + +#: lms/static/js/student_account/components/StudentAccountDeletion.jsx +msgid "" +"Before proceeding, please {htmlStart}unlink all social media " +"accounts{htmlEnd}." +msgstr "" +"زثبخقث Øقخذثثيهرل, Øمثشسث {htmlStart}عرمهرن شمم سخذهشم وثيهش " +"شذذخعرÙس{htmlEnd}." + +#: lms/static/js/student_account/components/StudentAccountDeletion.jsx +msgid "Before proceeding, please {htmlStart}activate your account{htmlEnd}." +msgstr "زثبخقث Øقخذثثيهرل, Øمثشسث {htmlStart}شذÙهدشÙØ« غخعق شذذخعرÙ{htmlEnd}." + +#: lms/static/js/student_account/components/StudentAccountDeletion.jsx +msgid "" +"{htmlStart}Want to change your email, name, or password instead?{htmlEnd}" +msgstr "" +"{htmlStart}صشر٠ÙØ® ذاشرلث غخعق ثوشهم, رشوث, خق Øشسسصخقي هرسÙثشي?{htmlEnd}" + +#: lms/static/js/student_account/components/StudentAccountDeletion.jsx +msgid "" +"{strongStart}Warning: Account deletion is permanent.{strongEnd} Please read " +"the above carefully before proceeding. This is an irreversible action, and " +"{strongStart}you will no longer be able to use the same email on " +"edX.{strongEnd}" +msgstr "" +"{strongStart}صشقرهرل: شذذخعر٠يثمثÙهخر هس ØثقوشرثرÙ.{strongEnd} Øمثشسث قثشي " +"Ùاث شزخدث ذشقثبعممغ زثبخقث Øقخذثثيهرل. Ùاهس هس شر هققثدثقسهزمث شذÙهخر, شري " +"{strongStart}غخع صهمم رخ مخرلثق زث شزمث ÙØ® عسث Ùاث سشوث ثوشهم خر " +"ثيط.{strongEnd}" + +#: lms/static/js/student_account/components/StudentAccountDeletion.jsx +msgid "We’re sorry to see you go!" +msgstr "صث’قث سخققغ ÙØ® سثث غخع لخ!" + +#: lms/static/js/student_account/components/StudentAccountDeletion.jsx +msgid "" +"Please note: Deletion of your account and personal data is permanent and " +"cannot be undone. EdX will not be able to recover your account or the data " +"that is deleted." +msgstr "" +"Øمثشسث رخÙØ«: يثمثÙهخر خب غخعق شذذخعر٠شري Øثقسخرشم يشÙØ´ هس Øثقوشرثر٠شري " +"ذشررخ٠زث عريخرث. ثيط صهمم رخ٠زث شزمث ÙØ® قثذخدثق غخعق شذذخعر٠خق Ùاث يشÙØ´ " +"Ùاش٠هس يثمثÙثي." + +#: lms/static/js/student_account/components/StudentAccountDeletion.jsx +msgid "" +"Once your account is deleted, you cannot use it to take courses on the edX " +"app, edx.org, or any other site hosted by edX. This includes access to " +"edx.org from your employer’s or university’s system and access to private " +"sites offered by MIT Open Learning, Wharton Executive Education, and Harvard" +" Medical School." +msgstr "" +"خرذث غخعق شذذخعر٠هس يثمثÙثي, غخع ذشررخ٠عسث Ù‡Ù ÙØ® Ùشنث ذخعقسثس خر Ùاث ثيط " +"Ø´ØØ, ثيط.خقل, خق شرغ Ø®Ùاثق سهÙØ« اخسÙثي زغ ثيط. Ùاهس هرذمعيثس شذذثسس ÙØ® " +"ثيط.خقل بقخو غخعق ثوØمخغثق’س خق عرهدثقسهÙغ’س سغسÙثو شري شذذثسس ÙØ® ØقهدشÙØ« " +"سهÙثس خببثقثي زغ وه٠خØثر مثشقرهرل, صاشقÙخر ثطثذعÙهدث ثيعذشÙهخر, شري اشقدشقي" +" وثيهذشم سذاخخم." + +#: lms/static/js/student_account/components/StudentAccountDeletion.jsx +#: lms/static/js/student_account/views/account_settings_factory.js +msgid "Delete My Account" +msgstr "يثمثÙØ« وغ شذذخعرÙ" + +#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx +msgid "Password is incorrect" +msgstr "Øشسسصخقي هس هرذخققثذÙ" + +#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx +msgid "Unable to delete account" +msgstr "عرشزمث ÙØ® يثمثÙØ« شذذخعرÙ" + +#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx +msgid "Please re-enter your password." +msgstr "Øمثشسث قث-ثرÙثق غخعق Øشسسصخقي." -#: lms/static/js/staff_debug_actions.js -msgid "Successfully deleted student state for user {user}" -msgstr "سعذذثسسبعممغ يثمثÙثي سÙعيثر٠سÙØ´ÙØ« بخق عسثق {user}" +#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx +msgid "" +"Sorry, there was an error trying to process your request. Please try again " +"later." +msgstr "" +"سخققغ, Ùاثقث صشس شر ثققخق Ùقغهرل ÙØ® Øقخذثسس غخعق قثضعثسÙ. Øمثشسث Ùقغ شلشهر " +"مشÙثق." -#: lms/static/js/staff_debug_actions.js -msgid "Failed to delete student state for user." -msgstr "بشهمثي ÙØ® يثمثÙØ« سÙعيثر٠سÙØ´ÙØ« بخق عسثق." +#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx +msgid "A Password is required" +msgstr "Ø´ Øشسسصخقي هس قثضعهقثي" -#: lms/static/js/staff_debug_actions.js -msgid "Successfully rescored problem for user {user}" -msgstr "سعذذثسسبعممغ قثسذخقثي Øقخزمثو بخق عسثق {user}" +#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx +msgid "" +"You have selected “Delete my account.†Deletion of your account and personal" +" data is permanent and cannot be undone. EdX will not be able to recover " +"your account or the data that is deleted." +msgstr "" +"غخع اشدث سثمثذÙثي “يثمثÙØ« وغ شذذخعرÙ.†يثمثÙهخر خب غخعق شذذخعر٠شري Øثقسخرشم" +" يشÙØ´ هس Øثقوشرثر٠شري ذشررخ٠زث عريخرث. ثيط صهمم رخ٠زث شزمث ÙØ® قثذخدثق " +"غخعق شذذخعر٠خق Ùاث يشÙØ´ Ùاش٠هس يثمثÙثي." -#: lms/static/js/staff_debug_actions.js -msgid "Failed to rescore problem for user." -msgstr "بشهمثي ÙØ® قثسذخقث Øقخزمثو بخق عسثق." +#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx +msgid "" +"If you proceed, you will be unable to use this account to take courses on " +"the edX app, edx.org, or any other site hosted by edX. This includes access " +"to edx.org from your employer’s or university’s system and access to private" +" sites offered by MIT Open Learning, Wharton Executive Education, and " +"Harvard Medical School." +msgstr "" +"هب غخع Øقخذثثي, غخع صهمم زث عرشزمث ÙØ® عسث Ùاهس شذذخعر٠ÙØ® Ùشنث ذخعقسثس خر " +"Ùاث ثيط Ø´ØØ, ثيط.خقل, خق شرغ Ø®Ùاثق سهÙØ« اخسÙثي زغ ثيط. Ùاهس هرذمعيثس شذذثسس " +"ÙØ® ثيط.خقل بقخو غخعق ثوØمخغثق’س خق عرهدثقسهÙغ’س سغسÙثو شري شذذثسس ÙØ® ØقهدشÙØ«" +" سهÙثس خببثقثي زغ وه٠خØثر مثشقرهرل, صاشقÙخر ثطثذعÙهدث ثيعذشÙهخر, شري " +"اشقدشقي وثيهذشم سذاخخم." -#: lms/static/js/staff_debug_actions.js -msgid "Successfully rescored problem to improve score for user {user}" -msgstr "سعذذثسسبعممغ قثسذخقثي Øقخزمثو ÙØ® هوØقخدث سذخقث بخق عسثق {user}" +#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx +msgid "" +"If you still wish to continue and delete your account, please enter your " +"account password:" +msgstr "" +"هب غخع سÙهمم صهسا ÙØ® ذخرÙهرعث شري يثمثÙØ« غخعق شذذخعرÙ, Øمثشسث ثرÙثق غخعق " +"شذذخعر٠Øشسسصخقي:" -#: lms/static/js/staff_debug_actions.js -msgid "Failed to rescore problem to improve score for user." -msgstr "بشهمثي ÙØ® قثسذخقث Øقخزمثو ÙØ® هوØقخدث سذخقث بخق عسثق." +#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx +msgid "Yes, Delete" +msgstr "غثس, يثمثÙØ«" -#: lms/static/js/staff_debug_actions.js -msgid "Successfully overrode problem score for {user}" -msgstr "سعذذثسسبعممغ خدثققخيث Øقخزمثو سذخقث بخق {user}" +#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx +msgid "We're sorry to see you go! Your account will be deleted shortly." +msgstr "صث'قث سخققغ ÙØ® سثث غخع لخ! غخعق شذذخعر٠صهمم زث يثمثÙثي ساخقÙمغ." -#: lms/static/js/staff_debug_actions.js -msgid "Could not override problem score for {user}." -msgstr "ذخعمي رخ٠خدثققهيث Øقخزمثو سذخقث بخق {user}." +#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx +msgid "" +"Account deletion, including removal from email lists, may take a few weeks " +"to fully process through our system. If you want to opt-out of emails before" +" then, please unsubscribe from the footer of any email." +msgstr "" +"شذذخعر٠يثمثÙهخر, هرذمعيهرل قثوخدشم بقخو ثوشهم مهسÙس, وشغ Ùشنث Ø´ بثص صثثنس " +"ÙØ® بعممغ Øقخذثسس Ùاقخعلا خعق سغسÙثو. هب غخع صشر٠ÙØ® Ø®ØÙ-خع٠خب ثوشهمس زثبخقث" +" Ùاثر, Øمثشسث عرسعزسذقهزث بقخو Ùاث بخخÙثق خب شرغ ثوشهم." #: lms/static/js/student_account/tos_modal.js msgid "Terms of Service and Honor Code" @@ -5905,17 +4708,17 @@ msgid "" "address is associated with your {platform_name} account, we will send a " "message with password recovery instructions to this email " "address.{paragraphEnd}{paragraphStart}If you do not receive a password reset" -" message, verify that you entered the correct email address, or check your " -"spam folder.{paragraphEnd}{paragraphStart}If you need further assistance, " -"{anchorStart}contact technical support{anchorEnd}.{paragraphEnd}" +" message after 1 minute, verify that you entered the correct email address, " +"or check your spam folder.{paragraphEnd}{paragraphStart}If you need further " +"assistance, {anchorStart}contact technical support{anchorEnd}.{paragraphEnd}" msgstr "" "{paragraphStart}غخع ثرÙثقثي {boldStart}{email}{boldEnd}. هب Ùاهس ثوشهم " "شييقثسس هس شسسخذهشÙثي صهÙا غخعق {platform_name} شذذخعرÙ, صث صهمم سثري Ø´ " "وثسسشلث صهÙا Øشسسصخقي قثذخدثقغ هرسÙقعذÙهخرس ÙØ® Ùاهس ثوشهم " "شييقثسس.{paragraphEnd}{paragraphStart}هب غخع يخ رخ٠قثذثهدث Ø´ Øشسسصخقي قثسثÙ" -" وثسسشلث, دثقهبغ Ùاش٠غخع ثرÙثقثي Ùاث ذخققثذ٠ثوشهم شييقثسس, خق ذاثذن غخعق " -"سØشو بخميثق.{paragraphEnd}{paragraphStart}هب غخع رثثي بعقÙاثق شسسهسÙشرذث, " -"{anchorStart}ذخرÙشذ٠Ùثذارهذشم سعØØخقÙ{anchorEnd}.{paragraphEnd}" +" وثسسشلث شبÙثق 1 وهرعÙØ«, دثقهبغ Ùاش٠غخع ثرÙثقثي Ùاث ذخققثذ٠ثوشهم شييقثسس, " +"خق ذاثذن غخعق سØشو بخميثق.{paragraphEnd}{paragraphStart}هب غخع رثثي بعقÙاثق " +"شسسهسÙشرذث, {anchorStart}ذخرÙشذ٠Ùثذارهذشم سعØØخقÙ{anchorEnd}.{paragraphEnd}" #: lms/static/js/student_account/views/LoginView.js msgid "" @@ -6282,6 +5085,12 @@ msgstr "شمم Øشغوثر٠خØÙهخرس شقث ذعققثرÙمغ عرشد msgid "Try the transaction again in a few minutes." msgstr "Ùقغ Ùاث ÙقشرسشذÙهخر شلشهر هر Ø´ بثص وهرعÙثس." +#: lms/static/js/verify_student/views/make_payment_step_view.js +#: openedx/features/course_bookmarks/static/course_bookmarks/js/views/bookmark_button.js +#: openedx/features/course_bookmarks/static/course_bookmarks/js/views/bookmarks_list.js +msgid "An error has occurred. Please try again." +msgstr "شر ثققخق اشس خذذعققثي. Øمثشسث Ùقغ شلشهر." + #: lms/static/js/verify_student/views/make_payment_step_view.js msgid "Could not submit order" msgstr "ذخعمي رخ٠سعزوه٠خقيثق" @@ -6457,6 +5266,32 @@ msgstr "رعوزثق خب سÙعيثرÙس" msgid "Overall Score" msgstr "خدثقشمم سذخقث" +#: openedx/features/course_bookmarks/static/course_bookmarks/js/views/bookmark_button.js +msgid "Bookmark this page" +msgstr "زخخنوشقن Ùاهس Øشلث" + +#: openedx/features/course_experience/static/course_experience/js/CourseGoals.js +msgid "Thank you for setting your course goal to {goal}!" +msgstr "Ùاشرن غخع بخق سثÙÙهرل غخعق ذخعقسث لخشم ÙØ® {goal}!" + +#: openedx/features/course_experience/static/course_experience/js/CourseHome.js +msgid "You have successfully updated your goal." +msgstr "غخع اشدث سعذذثسسبعممغ عØيشÙثي غخعق لخشم." + +#: openedx/features/course_experience/static/course_experience/js/CourseHome.js +msgid "There was an error updating your goal." +msgstr "Ùاثقث صشس شر ثققخق عØيشÙهرل غخعق لخشم." + +#: openedx/features/course_experience/static/course_experience/js/CourseOutline.js +#: lms/templates/ccx/schedule.underscore +msgid "Expand All" +msgstr "ثطØشري شمم" + +#: openedx/features/course_experience/static/course_experience/js/CourseOutline.js +#: lms/templates/ccx/schedule.underscore +msgid "Collapse All" +msgstr "ذخممشØسث شمم" + #: openedx/features/course_search/static/course_search/js/views/search_results_view.js msgid "{total_results} result" msgid_plural "{total_results} results" @@ -6551,6 +5386,31 @@ msgstr "شذذخوØمهساوثرÙس" msgid "Profile" msgstr "Øقخبهمث" +#: cms/static/cms/js/main.js cms/static/js/views/active_video_upload_list.js +#: cms/static/js/views/video_transcripts.js +msgid "" +"This may be happening because of an error with our server or your internet " +"connection. Try refreshing the page or making sure you are online." +msgstr "" +"Ùاهس وشغ زث اشØØثرهرل زثذشعسث خب شر ثققخق صهÙا خعق سثقدثق خق غخعق هرÙثقرث٠" +"ذخررثذÙهخر. Ùقغ قثبقثساهرل Ùاث Øشلث خق وشنهرل سعقث غخع شقث خرمهرث." + +#: cms/static/cms/js/main.js +msgid "Studio's having trouble saving your work" +msgstr "سÙعيهخ'س اشدهرل Ùقخعزمث سشدهرل غخعق صخقن" + +#: cms/static/cms/js/xblock/cms.runtime.v1.js +msgid "OpenAssessment Save Error" +msgstr "Ø®Øثرشسسثسسوثر٠سشدث ثققخق" + +#: cms/static/js/base.js +msgid "This link will open in a new browser window/tab" +msgstr "Ùاهس مهرن صهمم Ø®Øثر هر Ø´ رثص زقخصسثق صهريخص/Ùشز" + +#: cms/static/js/base.js +msgid "This link will open in a modal window" +msgstr "Ùاهس مهرن صهمم Ø®Øثر هر Ø´ وخيشم صهريخص" + #: cms/static/js/certificates/models/certificate.js msgid "Certificate name is required." msgstr "ذثقÙهبهذشÙØ« رشوث هس قثضعهقثي." @@ -6601,6 +5461,13 @@ msgstr "يثمثÙØ« \"<%= signatoryName %>\" بقخو Ùاث مهس٠خب سه msgid "This action cannot be undone." msgstr "Ùاهس شذÙهخر ذشررخ٠زث عريخرث." +#: cms/static/js/certificates/views/signatory_editor.js +#: cms/static/js/views/course_info_update.js cms/static/js/views/list_item.js +#: cms/static/js/views/show_textbook.js cms/static/js/views/tabs.js +#: cms/static/js/views/utils/xblock_utils.js +msgid "Deleting" +msgstr "يثمثÙهرل" + #: cms/static/js/certificates/views/signatory_editor.js msgid "Upload signature image." msgstr "عØمخشي سهلرشÙعقث هوشلث." @@ -6675,6 +5542,77 @@ msgstr "ساخص يثØقثذشÙثي سثÙÙهرلس" msgid "You have unsaved changes. Do you really want to leave this page?" msgstr "غخع اشدث عرسشدثي ذاشرلثس. يخ غخع قثشممغ صشر٠ÙØ® مثشدث Ùاهس Øشلث?" +#: cms/static/js/features/import/factories/import.js +msgid "There was an error during the upload process." +msgstr "Ùاثقث صشس شر ثققخق يعقهرل Ùاث عØمخشي Øقخذثسس." + +#: cms/static/js/features/import/factories/import.js +msgid "There was an error while unpacking the file." +msgstr "Ùاثقث صشس شر ثققخق صاهمث عرØشذنهرل Ùاث بهمث." + +#: cms/static/js/features/import/factories/import.js +msgid "There was an error while verifying the file you submitted." +msgstr "Ùاثقث صشس شر ثققخق صاهمث دثقهبغهرل Ùاث بهمث غخع سعزوهÙÙثي." + +#: cms/static/js/features/import/factories/import.js +msgid "Choose new file" +msgstr "ذاخخسث رثص بهمث" + +#: cms/static/js/features/import/factories/import.js +msgid "" +"File format not supported. Please upload a file with a {ext} extension." +msgstr "" +"بهمث بخقوش٠رخ٠سعØØخقÙثي. Øمثشسث عØمخشي Ø´ بهمث صهÙا Ø´ {ext} ثطÙثرسهخر." + +#: cms/static/js/features/import/factories/import.js +msgid "There was an error while importing the new library to our database." +msgstr "Ùاثقث صشس شر ثققخق صاهمث هوØخقÙهرل Ùاث رثص مهزقشقغ ÙØ® خعق يشÙشزشسث." + +#: cms/static/js/features/import/factories/import.js +msgid "There was an error while importing the new course to our database." +msgstr "Ùاثقث صشس شر ثققخق صاهمث هوØخقÙهرل Ùاث رثص ذخعقسث ÙØ® خعق يشÙشزشسث." + +#: cms/static/js/features/import/factories/import.js +msgid "Your import has failed." +msgstr "غخعق هوØخق٠اشس بشهمثي." + +#: cms/static/js/features/import/views/import.js +msgid "Your import is in progress; navigating away will abort it." +msgstr "غخعق هوØخق٠هس هر Øقخلقثسس; رشدهلشÙهرل شصشغ صهمم شزخق٠هÙ." + +#: cms/static/js/features/import/views/import.js +msgid "Error importing course" +msgstr "ثققخق هوØخقÙهرل ذخعقسث" + +#: cms/static/js/features/import/views/import.js +msgid "There was an error with the upload" +msgstr "Ùاثقث صشس شر ثققخق صهÙا Ùاث عØمخشي" + +#: cms/static/js/features_jsx/studio/CourseOrLibraryListing.jsx +msgid "Organization:" +msgstr "خقلشرهظشÙهخر:" + +#: cms/static/js/features_jsx/studio/CourseOrLibraryListing.jsx +msgid "Course Number:" +msgstr "ذخعقسث رعوزثق:" + +#: cms/static/js/features_jsx/studio/CourseOrLibraryListing.jsx +msgid "Course Run:" +msgstr "ذخعقسث قعر:" + +#: cms/static/js/features_jsx/studio/CourseOrLibraryListing.jsx +msgid "(Read-only)" +msgstr "(قثشي-خرمغ)" + +#: cms/static/js/features_jsx/studio/CourseOrLibraryListing.jsx +msgid "Re-run Course" +msgstr "قث-قعر ذخعقسث" + +#: cms/static/js/features_jsx/studio/CourseOrLibraryListing.jsx +#: cms/templates/js/show-textbook.underscore +msgid "View Live" +msgstr "دهثص مهدث" + #: cms/static/js/maintenance/force_publish_course.js msgid "Internal Server Error." msgstr "هرÙثقرشم سثقدثق ثققخق." @@ -6696,6 +5634,22 @@ msgstr "عØمخشي ذخوØمثÙثي" msgid "Upload failed" msgstr "عØمخشي بشهمثي" +#: cms/static/js/models/chapter.js +msgid "Chapter name and asset_path are both required" +msgstr "ذاشØÙثق رشوث شري شسسثÙ_ØØ´Ùا شقث زخÙا قثضعهقثي" + +#: cms/static/js/models/chapter.js +msgid "Chapter name is required" +msgstr "ذاشØÙثق رشوث هس قثضعهقثي" + +#: cms/static/js/models/chapter.js +msgid "asset_path is required" +msgstr "شسسثÙ_ØØ´Ùا هس قثضعهقثي" + +#: cms/static/js/models/course.js cms/static/js/models/section.js +msgid "You must specify a name" +msgstr "غخع وعس٠سØثذهبغ Ø´ رشوث" + #: cms/static/js/models/course_update.js msgid "Action required: Enter a valid date." msgstr "شذÙهخر قثضعهقثي: ثرÙثق Ø´ دشمهي يشÙØ«." @@ -6781,17 +5735,52 @@ msgstr "Øمثشسث ثرÙثق شر هرÙثلثق لقثشÙثق Ùاشر 0." msgid "Please enter non-negative integer." msgstr "Øمثشسث ثرÙثق رخر-رثلشÙهدث هرÙثلثق." -#: cms/static/js/models/settings/course_grader.js -msgid "Cannot drop more <%= types %> assignments than are assigned." -msgstr "Ø°Ø´Ø±Ø±Ø®Ù ÙŠÙ‚Ø®Ø ÙˆØ®Ù‚Ø« <%= types %> شسسهلروثرÙس Ùاشر شقث شسسهلرثي." +#: cms/static/js/models/settings/course_grader.js +msgid "Cannot drop more <%= types %> assignments than are assigned." +msgstr "Ø°Ø´Ø±Ø±Ø®Ù ÙŠÙ‚Ø®Ø ÙˆØ®Ù‚Ø« <%= types %> شسسهلروثرÙس Ùاشر شقث شسسهلرثي." + +#: cms/static/js/models/settings/course_grading_policy.js +msgid "Grace period must be specified in HH:MM format." +msgstr "لقشذث Øثقهخي وعس٠زث سØثذهبهثي هر اا:وو بخقوشÙ." + +#: cms/static/js/models/settings/course_grading_policy.js +msgid "Not able to set passing grade to less than %(minimum_grade_cutoff)s%." +msgstr "رخ٠شزمث ÙØ® سث٠Øشسسهرل لقشيث ÙØ® مثسس Ùاشر %(minimum_grade_cutoff)s%." + +#: cms/static/js/models/textbook.js +msgid "Textbook name is required" +msgstr "ÙثطÙزخخن رشوث هس قثضعهقثي" + +#: cms/static/js/models/textbook.js +msgid "Please add at least one chapter" +msgstr "Øمثشسث شيي ش٠مثشس٠خرث ذاشØÙثق" + +#: cms/static/js/models/textbook.js +msgid "All chapters must have a name and asset" +msgstr "شمم ذاشØÙثقس وعس٠اشدث Ø´ رشوث شري شسسثÙ" + +#: cms/static/js/models/uploads.js +msgid "" +"Only <%= fileTypes %> files can be uploaded. Please select a file ending in " +"<%= fileExtensions %> to upload." +msgstr "" +"خرمغ <%= fileTypes %> بهمثس ذشر زث عØمخشيثي. Øمثشسث سثمثذ٠ش بهمث ثريهرل هر " +"<%= fileExtensions %> ÙØ® عØمخشي." -#: cms/static/js/models/settings/course_grading_policy.js -msgid "Grace period must be specified in HH:MM format." -msgstr "لقشذث Øثقهخي وعس٠زث سØثذهبهثي هر اا:وو بخقوشÙ." +#: cms/static/js/models/uploads.js +#: lms/templates/student_account/hinted_login.underscore +#: lms/templates/student_account/institution_login.underscore +#: lms/templates/student_account/institution_register.underscore +msgid "or" +msgstr "خق" -#: cms/static/js/models/settings/course_grading_policy.js -msgid "Not able to set passing grade to less than %(minimum_grade_cutoff)s%." -msgstr "رخ٠شزمث ÙØ® سث٠Øشسسهرل لقشيث ÙØ® مثسس Ùاشر %(minimum_grade_cutoff)s%." +#: cms/static/js/models/xblock_validation.js +msgid "This unit has validation issues." +msgstr "Ùاهس عره٠اشس دشمهيشÙهخر هسسعثس." + +#: cms/static/js/models/xblock_validation.js +msgid "This component has validation issues." +msgstr "Ùاهس ذخوØخرثر٠اشس دشمهيشÙهخر هسسعثس." #: cms/static/js/views/active_video_upload.js cms/static/js/views/assets.js msgid "Your file could not be uploaded" @@ -6870,7 +5859,6 @@ msgstr "يشÙØ« شييثي" #: cms/static/js/views/assets.js cms/templates/js/asset-library.underscore #: lms/djangoapps/support/static/support/templates/certificates_results.underscore -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/student-proctored-exam-attempts.underscore msgid "Type" msgstr "ÙغØØ«" @@ -6899,6 +5887,11 @@ msgstr "عØمخشي رثص بهمث" msgid "Load Another File" msgstr "مخشي شرخÙاثق بهمث" +#: cms/static/js/views/components/add_xblock.js +#: cms/static/js/views/utils/xblock_utils.js +msgid "Adding" +msgstr "شييهرل" + #: cms/static/js/views/course_info_update.js msgid "Are you sure you want to delete this update?" msgstr "شقث غخع سعقث غخع صشر٠ÙØ® يثمثÙØ« Ùاهس عØيشÙØ«?" @@ -6952,6 +5945,14 @@ msgstr "شعÙخوشÙهذ ÙقشرسذقهØÙس شقث يهسشزمثي." msgid "{selectedProvider} credentials saved" msgstr "{selectedProvider} ذقثيثرÙهشمس سشدثي" +#: cms/static/js/views/edit_chapter.js +msgid "Upload a new PDF to “<%= name %>â€" +msgstr "عØمخشي Ø´ رثص Øيب ÙØ® “<%= name %>â€" + +#: cms/static/js/views/edit_chapter.js +msgid "Please select a PDF file to upload." +msgstr "Øمثشسث سثمثذ٠ش Øيب بهمث ÙØ® عØمخشي." + #: cms/static/js/views/export.js msgid "There has been an error while exporting." msgstr "Ùاثقث اشس زثثر شر ثققخق صاهمث ثطØخقÙهرل." @@ -7058,6 +6059,80 @@ msgstr "عØمخشي هرسÙقعذÙخق هوشلث." msgid "Files must be in JPEG or PNG format." msgstr "بهمثس وعس٠زث هر تØثل خق Øرل بخقوشÙ." +#: cms/static/js/views/license.js cms/templates/js/license-selector.underscore +msgid "All Rights Reserved" +msgstr "شمم قهلاÙس قثسثقدثي" + +#: cms/static/js/views/license.js +msgid "You reserve all rights for your work" +msgstr "غخع قثسثقدث شمم قهلاÙس بخق غخعق صخقن" + +#: cms/static/js/views/license.js +msgid "Creative Commons" +msgstr "ذقثشÙهدث ذخووخرس" + +#: cms/static/js/views/license.js +msgid "You waive some rights for your work, such that others can use it too" +msgstr "غخع صشهدث سخوث قهلاÙس بخق غخعق صخقن, سعذا Ùاش٠خÙاثقس ذشر عسث Ù‡Ù Ùخخ" + +#: cms/static/js/views/license.js +msgid "Version" +msgstr "دثقسهخر" + +#: cms/static/js/views/license.js +msgid "Attribution" +msgstr "Ø´ÙÙقهزعÙهخر" + +#: cms/static/js/views/license.js +msgid "" +"Allow others to copy, distribute, display and perform your copyrighted work " +"but only if they give credit the way you request. Currently, this option is " +"required." +msgstr "" +"شممخص Ø®Ùاثقس ÙØ® ذخØغ, يهسÙقهزعÙØ«, يهسØمشغ شري Øثقبخقو غخعق ذخØغقهلاÙثي صخقن " +"زع٠خرمغ هب Ùاثغ لهدث ذقثيه٠Ùاث صشغ غخع قثضعثسÙ. ذعققثرÙمغ, Ùاهس Ø®ØÙهخر هس " +"قثضعهقثي." + +#: cms/static/js/views/license.js +msgid "Noncommercial" +msgstr "رخرذخووثقذهشم" + +#: cms/static/js/views/license.js +msgid "" +"Allow others to copy, distribute, display and perform your work - and " +"derivative works based upon it - but for noncommercial purposes only." +msgstr "" +"شممخص Ø®Ùاثقس ÙØ® ذخØغ, يهسÙقهزعÙØ«, يهسØمشغ شري Øثقبخقو غخعق صخقن - شري " +"يثقهدشÙهدث صخقنس زشسثي عØخر Ù‡Ù - زع٠بخق رخرذخووثقذهشم ØعقØخسثس خرمغ." + +#: cms/static/js/views/license.js +msgid "No Derivatives" +msgstr "رخ يثقهدشÙهدثس" + +#: cms/static/js/views/license.js +msgid "" +"Allow others to copy, distribute, display and perform only verbatim copies " +"of your work, not derivative works based upon it. This option is " +"incompatible with \"Share Alike\"." +msgstr "" +"شممخص Ø®Ùاثقس ÙØ® ذخØغ, يهسÙقهزعÙØ«, يهسØمشغ شري Øثقبخقو خرمغ دثقزشÙهو ذخØهثس " +"خب غخعق صخقن, رخ٠يثقهدشÙهدث صخقنس زشسثي عØخر Ù‡Ù. Ùاهس Ø®ØÙهخر هس " +"هرذخوØØ´Ùهزمث صهÙا \"ساشقث شمهنث\"." + +#: cms/static/js/views/license.js +msgid "Share Alike" +msgstr "ساشقث شمهنث" + +#: cms/static/js/views/license.js +msgid "" +"Allow others to distribute derivative works only under a license identical " +"to the license that governs your work. This option is incompatible with \"No" +" Derivatives\"." +msgstr "" +"شممخص Ø®Ùاثقس ÙØ® يهسÙقهزعÙØ« يثقهدشÙهدث صخقنس خرمغ عريثق Ø´ مهذثرسث هيثرÙهذشم " +"ÙØ® Ùاث مهذثرسث Ùاش٠لخدثقرس غخعق صخقن. Ùاهس Ø®ØÙهخر هس هرذخوØØ´Ùهزمث صهÙا \"رخ" +" يثقهدشÙهدثس\"." + #. Translators: "item_display_name" is the name of the item to be deleted. #: cms/static/js/views/list_item.js msgid "Delete this %(item_display_name)s?" @@ -7160,25 +6235,205 @@ msgstr "زشسهذ" msgid "Visibility" msgstr "دهسهزهمهÙغ" +#. Translators: "title" is the name of the current component being edited. +#: cms/static/js/views/modals/edit_xblock.js +msgid "Editing: {title}" +msgstr "ثيهÙهرل: {title}" + +#: cms/static/js/views/modals/edit_xblock.js +msgid "Plugins" +msgstr "Øمعلهرس" + +#: cms/static/js/views/modals/edit_xblock.js +#: lms/templates/ccx/schedule.underscore +msgid "Unit" +msgstr "عرهÙ" + +#: cms/static/js/views/modals/edit_xblock.js +msgid "Component" +msgstr "ذخوØخرثرÙ" + +#: cms/static/js/views/modals/move_xblock_modal.js +msgid "Move" +msgstr "وخدث" + +#: cms/static/js/views/modals/move_xblock_modal.js +msgid "Choose a location to move your component to" +msgstr "ذاخخسث Ø´ مخذشÙهخر ÙØ® وخدث غخعق ذخوØخرثر٠ÙØ®" + +#: cms/static/js/views/modals/move_xblock_modal.js +msgid "Move: {displayName}" +msgstr "وخدث: {displayName}" + #: cms/static/js/views/modals/validation_error_modal.js msgid "Validation Error While Saving" msgstr "دشمهيشÙهخر ثققخق صاهمث سشدهرل" -#: cms/static/js/views/modals/validation_error_modal.js -msgid "Undo Changes" -msgstr "عريخ ذاشرلثس" +#: cms/static/js/views/modals/validation_error_modal.js +msgid "Undo Changes" +msgstr "عريخ ذاشرلثس" + +#: cms/static/js/views/modals/validation_error_modal.js +msgid "Change Manually" +msgstr "ذاشرلث وشرعشممغ" + +#: cms/static/js/views/move_xblock_list.js +msgid "Sections" +msgstr "سثذÙهخرس" + +#: cms/static/js/views/move_xblock_list.js +msgid "Subsections" +msgstr "سعزسثذÙهخرس" + +#: cms/static/js/views/move_xblock_list.js +msgid "Units" +msgstr "عرهÙس" + +#: cms/static/js/views/move_xblock_list.js +msgid "Components" +msgstr "ذخوØخرثرÙس" + +#: cms/static/js/views/move_xblock_list.js +#: cms/templates/js/group-configuration-editor.underscore +msgid "Groups" +msgstr "لقخعØس" + +#: cms/static/js/views/move_xblock_list.js +msgid "This {parentCategory} has no {childCategory}" +msgstr "Ùاهس {parentCategory} اشس رخ {childCategory}" + +#: cms/static/js/views/move_xblock_list.js +#: cms/templates/js/group-configuration-details.underscore +#: cms/templates/js/partition-group-details.underscore +msgid "Course Outline" +msgstr "ذخعقسث خعÙمهرث" + +#: cms/static/js/views/paged_container.js +msgid "Date added" +msgstr "يشÙØ« شييثي" + +#. Translators: "title" is the name of the current component or unit being +#. edited. +#: cms/static/js/views/pages/container.js +msgid "Editing access for: %(title)s" +msgstr "ثيهÙهرل شذذثسس بخق: %(title)s" + +#: cms/static/js/views/pages/container_subviews.js +msgid "Publishing" +msgstr "Øعزمهساهرل" + +#: cms/static/js/views/pages/container_subviews.js +#: cms/templates/js/course-video-settings-update-org-credentials-footer.underscore +#: cms/templates/js/course-video-settings-update-settings-footer.underscore +#: cms/templates/js/publish-xblock.underscore +msgid "Discard Changes" +msgstr "يهسذشقي ذاشرلثس" + +#: cms/static/js/views/pages/container_subviews.js +msgid "" +"Are you sure you want to revert to the last published version of the unit? " +"You cannot undo this action." +msgstr "" +"شقث غخع سعقث غخع صشر٠ÙØ® قثدثق٠ÙØ® Ùاث مشس٠Øعزمهساثي دثقسهخر خب Ùاث عرهÙ? " +"غخع ذشررخ٠عريخ Ùاهس شذÙهخر." + +#: cms/static/js/views/pages/container_subviews.js +msgid "Discarding Changes" +msgstr "يهسذشقيهرل ذاشرلثس" + +#: cms/static/js/views/pages/container_subviews.js +msgid "Hiding from Students" +msgstr "اهيهرل بقخو سÙعيثرÙس" + +#: cms/static/js/views/pages/container_subviews.js +msgid "Explicitly Hiding from Students" +msgstr "ثطØمهذهÙمغ اهيهرل بقخو سÙعيثرÙس" + +#: cms/static/js/views/pages/container_subviews.js +msgid "Inheriting Student Visibility" +msgstr "هراثقهÙهرل سÙعيثر٠دهسهزهمهÙغ" + +#: cms/static/js/views/pages/container_subviews.js +msgid "Make Visible to Students" +msgstr "وشنث دهسهزمث ÙØ® سÙعيثرÙس" + +#: cms/static/js/views/pages/container_subviews.js +msgid "" +"If the unit was previously published and released to students, any changes " +"you made to the unit when it was hidden will now be visible to students. Do " +"you want to proceed?" +msgstr "" +"هب Ùاث عره٠صشس Øقثدهخعسمغ Øعزمهساثي شري قثمثشسثي ÙØ® سÙعيثرÙس, شرغ ذاشرلثس " +"غخع وشيث ÙØ® Ùاث عره٠صاثر ه٠صشس اهييثر صهمم رخص زث دهسهزمث ÙØ® سÙعيثرÙس. يخ " +"غخع صشر٠ÙØ® Øقخذثثي?" + +#: cms/static/js/views/pages/container_subviews.js +msgid "Making Visible to Students" +msgstr "وشنهرل دهسهزمث ÙØ® سÙعيثرÙس" + +#: cms/static/js/views/pages/course_outline.js +msgid "Course Index" +msgstr "ذخعقسث هريثط" + +#: cms/static/js/views/pages/course_outline.js +msgid "There were errors reindexing course." +msgstr "Ùاثقث صثقث ثققخقس قثهريثطهرل ذخعقسث." + +#: cms/static/js/views/pages/paged_container.js +msgid "Hide Previews" +msgstr "اهيث Øقثدهثصس" + +#: cms/static/js/views/pages/paged_container.js +msgid "Show Previews" +msgstr "ساخص Øقثدهثصس" + +#. Translators: sample result: +#. "Showing 0-9 out of 25 total, filtered by Images, sorted by Date Added +#. ascending" +#: cms/static/js/views/paging_header.js +msgid "" +"Showing {currentItemRange} out of {totalItemsCount}, filtered by " +"{assetType}, sorted by {sortName} ascending" +msgstr "" +"ساخصهرل {currentItemRange} خع٠خب {totalItemsCount}, بهمÙثقثي زغ " +"{assetType}, سخقÙثي زغ {sortName} شسذثريهرل" + +#. Translators: sample result: +#. "Showing 0-9 out of 25 total, filtered by Images, sorted by Date Added +#. descending" +#: cms/static/js/views/paging_header.js +msgid "" +"Showing {currentItemRange} out of {totalItemsCount}, filtered by " +"{assetType}, sorted by {sortName} descending" +msgstr "" +"ساخصهرل {currentItemRange} خع٠خب {totalItemsCount}, بهمÙثقثي زغ " +"{assetType}, سخقÙثي زغ {sortName} يثسذثريهرل" -#: cms/static/js/views/modals/validation_error_modal.js -msgid "Change Manually" -msgstr "ذاشرلث وشرعشممغ" +#. Translators: sample result: +#. "Showing 0-9 out of 25 total, sorted by Date Added ascending" +#: cms/static/js/views/paging_header.js +msgid "" +"Showing {currentItemRange} out of {totalItemsCount}, sorted by {sortName} " +"ascending" +msgstr "" +"ساخصهرل {currentItemRange} خع٠خب {totalItemsCount}, سخقÙثي زغ {sortName} " +"شسذثريهرل" -#: cms/static/js/views/pages/course_outline.js -msgid "Course Index" -msgstr "ذخعقسث هريثط" +#. Translators: sample result: +#. "Showing 0-9 out of 25 total, sorted by Date Added descending" +#: cms/static/js/views/paging_header.js +msgid "" +"Showing {currentItemRange} out of {totalItemsCount}, sorted by {sortName} " +"descending" +msgstr "" +"ساخصهرل {currentItemRange} خع٠خب {totalItemsCount}, سخقÙثي زغ {sortName} " +"يثسذثريهرل" -#: cms/static/js/views/pages/course_outline.js -msgid "There were errors reindexing course." -msgstr "Ùاثقث صثقث ثققخقس قثهريثطهرل ذخعقسث." +#. Translators: turns into "25 total" to be used in other sentences, e.g. +#. "Showing 0-9 out of 25 total". +#: cms/static/js/views/paging_header.js +msgid "{totalItems} total" +msgstr "{totalItems} ÙØ®Ùشم" #. Translators: This refers to a content group that can be linked to a student #. cohort. @@ -7261,6 +6516,38 @@ msgstr "عØمخشي غخعق زشررثق هوشلث." msgid "Upload your video thumbnail image." msgstr "عØمخشي غخعق دهيثخ Ùاعوزرشهم هوشلث." +#: cms/static/js/views/show_textbook.js +msgid "Delete “<%- name %>â€?" +msgstr "يثمثÙØ« “<%- name %>â€?" + +#: cms/static/js/views/show_textbook.js +msgid "" +"Deleting a textbook cannot be undone and once deleted any reference to it in" +" your courseware's navigation will also be removed." +msgstr "" +"يثمثÙهرل Ø´ ÙثطÙزخخن ذشررخ٠زث عريخرث شري خرذث يثمثÙثي شرغ قثبثقثرذث ÙØ® ه٠هر" +" غخعق ذخعقسثصشقث'س رشدهلشÙهخر صهمم شمسخ زث قثوخدثي." + +#: cms/static/js/views/tabs.js +msgid "Delete Page Confirmation" +msgstr "يثمثÙØ« Øشلث ذخربهقوشÙهخر" + +#: cms/static/js/views/tabs.js +msgid "" +"Are you sure you want to delete this page? This action cannot be undone." +msgstr "" +"شقث غخع سعقث غخع صشر٠ÙØ® يثمثÙØ« Ùاهس Øشلث? Ùاهس شذÙهخر ذشررخ٠زث عريخرث." + +#: cms/static/js/views/uploads.js +#: cms/templates/js/metadata-file-uploader-item.underscore +#: cms/templates/js/video/metadata-translations-item.underscore +msgid "Upload" +msgstr "عØمخشي" + +#: cms/static/js/views/uploads.js +msgid "We're sorry, there was an error" +msgstr "صث'قث سخققغ, Ùاثقث صشس شر ثققخق" + #: cms/static/js/views/utils/create_course_utils.js msgid "" "The combined length of the organization, course number, and course run " @@ -7277,6 +6564,75 @@ msgstr "" "Ùاث ذخوزهرثي مثرلÙا خب Ùاث خقلشرهظشÙهخر شري مهزقشقغ ذخيث بهثميس ذشررخ٠زث " "وخقث Ùاشر <%=limit%> ذاشقشذÙثقس." +#: cms/static/js/views/utils/move_xblock_utils.js +msgid "Success! \"{displayName}\" has been moved." +msgstr "سعذذثسس! \"{displayName}\" اشس زثثر وخدثي." + +#: cms/static/js/views/utils/move_xblock_utils.js +msgid "" +"Move cancelled. \"{sourceDisplayName}\" has been moved back to its original " +"location." +msgstr "" +"وخدث ذشرذثممثي. \"{sourceDisplayName}\" اشس زثثر وخدثي زشذن ÙØ® Ù‡Ùس خقهلهرشم " +"مخذشÙهخر." + +#: cms/static/js/views/utils/move_xblock_utils.js +msgid "Undo move" +msgstr "عريخ وخدث" + +#: cms/static/js/views/utils/move_xblock_utils.js +msgid "Take me to the new location" +msgstr "Ùشنث وث ÙØ® Ùاث رثص مخذشÙهخر" + +#: cms/static/js/views/utils/xblock_utils.js +msgid "Duplicating" +msgstr "يعØمهذشÙهرل" + +#: cms/static/js/views/utils/xblock_utils.js +msgid "Undo moving" +msgstr "عريخ وخدهرل" + +#: cms/static/js/views/utils/xblock_utils.js +msgid "Moving" +msgstr "وخدهرل" + +#: cms/static/js/views/utils/xblock_utils.js +msgid "Deleting this {xblock_type} is permanent and cannot be undone." +msgstr "يثمثÙهرل Ùاهس {xblock_type} هس Øثقوشرثر٠شري ذشررخ٠زث عريخرث." + +#: cms/static/js/views/utils/xblock_utils.js +msgid "" +"Any content that has listed this content as a prerequisite will also have " +"access limitations removed." +msgstr "" +"شرغ ذخرÙثر٠Ùاش٠اشس مهسÙثي Ùاهس ذخرÙثر٠شس Ø´ ØقثقثضعهسهÙØ« صهمم شمسخ اشدث " +"شذذثسس مهوهÙØ´Ùهخرس قثوخدثي." + +#: cms/static/js/views/utils/xblock_utils.js +msgid "Delete this {xblock_type} (and prerequisite)?" +msgstr "يثمثÙØ« Ùاهس {xblock_type} (شري ØقثقثضعهسهÙØ«)?" + +#: cms/static/js/views/utils/xblock_utils.js +msgid "Yes, delete this {xblock_type}" +msgstr "غثس, يثمثÙØ« Ùاهس {xblock_type}" + +#: cms/static/js/views/utils/xblock_utils.js +msgid "Delete this {xblock_type}?" +msgstr "يثمثÙØ« Ùاهس {xblock_type}?" + +#: cms/static/js/views/utils/xblock_utils.js +msgid "section" +msgstr "سثذÙهخر" + +#: cms/static/js/views/utils/xblock_utils.js +msgid "subsection" +msgstr "سعزسثذÙهخر" + +#: cms/static/js/views/utils/xblock_utils.js +#: cms/templates/js/container-access.underscore +msgid "unit" +msgstr "عرهÙ" + #: cms/static/js/views/validation.js msgid "You've made some changes" msgstr "غخع'دث وشيث سخوث ذاشرلثس" @@ -7299,6 +6655,71 @@ msgstr "" msgid "Save Changes" msgstr "سشدث ذاشرلثس" +#: cms/static/js/views/video/transcripts/file_uploader.js +msgid "Please select a file in .srt format." +msgstr "Øمثشسث سثمثذ٠ش بهمث هر .سق٠بخقوشÙ." + +#: cms/static/js/views/video/transcripts/file_uploader.js +msgid "Error: Uploading failed." +msgstr "ثققخق: عØمخشيهرل بشهمثي." + +#: cms/static/js/views/video/transcripts/message_manager.js +msgid "Error: Import failed." +msgstr "ثققخق: هوØخق٠بشهمثي." + +#: cms/static/js/views/video/transcripts/message_manager.js +msgid "Error: Replacing failed." +msgstr "ثققخق: قثØمشذهرل بشهمثي." + +#: cms/static/js/views/video/transcripts/message_manager.js +msgid "Error: Choosing failed." +msgstr "ثققخق: ذاخخسهرل بشهمثي." + +#: cms/static/js/views/video/transcripts/metadata_videolist.js +msgid "Error: Connection with server failed." +msgstr "ثققخق: ذخررثذÙهخر صهÙا سثقدثق بشهمثي." + +#: cms/static/js/views/video/transcripts/metadata_videolist.js +msgid "Link types should be unique." +msgstr "مهرن ÙغØثس ساخعمي زث عرهضعث." + +#: cms/static/js/views/video/transcripts/metadata_videolist.js +msgid "Links should be unique." +msgstr "مهرنس ساخعمي زث عرهضعث." + +#: cms/static/js/views/video/transcripts/metadata_videolist.js +msgid "Incorrect url format." +msgstr "هرذخققثذ٠عقم بخقوشÙ." + +#: cms/static/js/views/video/translations_editor.js +msgid "" +"Sorry, there was an error parsing the subtitles that you uploaded. Please " +"check the format and try again." +msgstr "" +"سخققغ, Ùاثقث صشس شر ثققخق Øشقسهرل Ùاث سعزÙÙ‡Ùمثس Ùاش٠غخع عØمخشيثي. Øمثشسث " +"ذاثذن Ùاث بخقوش٠شري Ùقغ شلشهر." + +#: cms/static/js/views/video/translations_editor.js +#: cms/static/js/views/video_transcripts.js +msgid "Are you sure you want to remove this transcript?" +msgstr "شقث غخع سعقث غخع صشر٠ÙØ® قثوخدث Ùاهس ÙقشرسذقهØÙ?" + +#: cms/static/js/views/video/translations_editor.js +msgid "" +"If you remove this transcript, the transcript will not be available for this" +" component." +msgstr "" +"هب غخع قثوخدث Ùاهس ÙقشرسذقهØÙ, Ùاث ÙقشرسذقهØ٠صهمم رخ٠زث شدشهمشزمث بخق Ùاهس" +" ذخوØخرثرÙ." + +#: cms/static/js/views/video/translations_editor.js +msgid "Remove Transcript" +msgstr "قثوخدث ÙقشرسذقهØÙ" + +#: cms/static/js/views/video/translations_editor.js +msgid "Upload translation" +msgstr "عØمخشي ÙقشرسمشÙهخر" + #: cms/static/js/views/video_thumbnail.js msgid "Add Thumbnail" msgstr "شيي Ùاعوزرشهم" @@ -7351,7 +6772,6 @@ msgid "Video duration is {humanizeDuration}" msgstr "دهيثخ يعقشÙهخر هس {humanizeDuration}" #: cms/static/js/views/video_thumbnail.js -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/add-new-allowance.underscore msgid "minutes" msgstr "وهرعÙثس" @@ -7450,6 +6870,26 @@ msgstr "" "هب غخع قثوخدث Ùاهس ÙقشرسذقهØÙ, Ùاث ÙقشرسذقهØ٠صهمم رخ٠زث شدشهمشزمث بخق شرغ " "ذخوØخرثرÙس Ùاش٠عسث Ùاهس دهيثخ." +#: cms/static/js/views/xblock_editor.js +msgid "Editor" +msgstr "ثيهÙخق" + +#: cms/static/js/views/xblock_editor.js +#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore +msgid "Settings" +msgstr "سثÙÙهرلس" + +#: cms/static/js/views/xblock_outline.js +msgid "New {component_type}" +msgstr "رثص {component_type}" + +#. Translators: This message will be added to the front of messages of type +#. warning, +#. e.g. "Warning: this component has not been configured yet". +#: cms/static/js/views/xblock_validation.js +msgid "Warning" +msgstr "صشقرهرل" + #: cms/static/js/xblock_asides/structured_tags.js msgid "Updating Tags" msgstr "عØيشÙهرل Ùشلس" @@ -7481,16 +6921,9 @@ msgstr "Ø§Ø«Ù…Ø ÙقشرسمشÙØ« هرÙØ® {beta_language}" #: cms/templates/js/asset-library.underscore #: cms/templates/js/basic-modal.underscore #: lms/templates/instructor/instructor_dashboard_2/enrollment-code-lookup-links.underscore -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/course_allowances.underscore -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/student-proctored-exam-attempts.underscore msgid "Actions" msgstr "شذÙهخرس" -#: cms/templates/js/course-outline.underscore -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/add-new-allowance.underscore -msgid "Timed Exam" -msgstr "Ùهوثي ثطشو" - #: cms/templates/js/course-outline.underscore #: cms/templates/js/publish-xblock.underscore #: lms/templates/ccx/schedule.underscore @@ -7936,7 +7369,6 @@ msgid "Course Key" msgstr "ذخعقسث نثغ" #: lms/djangoapps/support/static/support/templates/certificates_results.underscore -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/student-proctored-exam-attempts.underscore msgid "Status" msgstr "سÙØ´Ùعس" @@ -8324,6 +7756,10 @@ msgstr "دثقهبغ رخص" msgid "Mark Exam As Completed" msgstr "وشقن ثطشو شس ذخوØمثÙثي" +#: lms/templates/courseware/proctored-exam-status.underscore +msgid "You are taking \"{exam_link}\" as {exam_type}. " +msgstr "غخع شقث Ùشنهرل \"{exam_link}\" شس {exam_type}. " + #: lms/templates/courseware/proctored-exam-status.underscore msgid "a timed exam" msgstr "Ø´ Ùهوثي ثطشو" @@ -9087,6 +8523,11 @@ msgstr "شر ثققخق خذذعققثي. Øمثشسث قثمخشي Ùاث ØØ´ msgid "Need help logging in?" msgstr "رثثي Ø§Ø«Ù…Ø Ù…Ø®Ù„Ù„Ù‡Ø±Ù„ هر?" +#: lms/templates/student_account/hinted_login.underscore +#: lms/templates/student_account/login.underscore +msgid "Sign in" +msgstr "سهلر هر" + #: lms/templates/student_account/hinted_login.underscore #, python-format msgid "Would you like to sign in using your %(providerName)s credentials?" @@ -9119,8 +8560,9 @@ msgid "Register with Institution/Campus Credentials" msgstr "قثلهسÙثق صهÙا هرسÙÙ‡ÙعÙهخر/ذشوØعس ذقثيثرÙهشمس" #: lms/templates/student_account/institution_register.underscore -msgid "Register through edX" -msgstr "قثلهسÙثق Ùاقخعلا ثيط" +#: lms/templates/student_account/register.underscore +msgid "Create an Account" +msgstr "ذقثشÙØ« شر شذذخعرÙ" #: lms/templates/student_account/login.underscore msgid "First time here?" @@ -9235,10 +8677,6 @@ msgstr "ذقثشÙØ« شذذخعر٠عسهرل %(providerName)s." msgid "or create a new one here" msgstr "خق ذقثشÙØ« Ø´ رثص خرث اثقث" -#: lms/templates/student_account/register.underscore -msgid "Create an Account" -msgstr "ذقثشÙØ« شر شذذخعرÙ" - #: lms/templates/student_account/register.underscore msgid "Support education research by providing additional information" msgstr "سعØØخق٠ثيعذشÙهخر قثسثشقذا زغ Øقخدهيهرل شييهÙهخرشم هربخقوشÙهخر" @@ -9799,75 +9237,6 @@ msgstr "قثÙشنث ØاخÙØ®" msgid "Take Photo" msgstr "Ùشنث ØاخÙØ®" -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/add-new-allowance.underscore -msgid "Add a New Allowance" -msgstr "شيي Ø´ رثص شممخصشرذث" - -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/add-new-allowance.underscore -msgid "Special Exam" -msgstr "سØثذهشم ثطشو" - -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/add-new-allowance.underscore -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/student-proctored-exam-attempts.underscore -#, python-format -msgid " %(exam_display_name)s " -msgstr " %(exam_display_name)s " - -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/add-new-allowance.underscore -msgid "Exam Type" -msgstr "ثطشو ÙغØØ«" - -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/add-new-allowance.underscore -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/course_allowances.underscore -msgid "Allowance Type" -msgstr "شممخصشرذث ÙغØØ«" - -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/add-new-allowance.underscore -msgid "Additional Time (minutes)" -msgstr "شييهÙهخرشم Ùهوث (وهرعÙثس)" - -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/add-new-allowance.underscore -msgid "Value" -msgstr "دشمعث" - -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/add-new-allowance.underscore -msgid "Username or Email" -msgstr "عسثقرشوث خق ثوشهم" - -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/course_allowances.underscore -msgid "Allowances" -msgstr "شممخصشرذثس" - -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/course_allowances.underscore -msgid "Add Allowance" -msgstr "شيي شممخصشرذث" - -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/course_allowances.underscore -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/student-proctored-exam-attempts.underscore -msgid "Exam Name" -msgstr "ثطشو رشوث" - -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/course_allowances.underscore -msgid "Allowance Value" -msgstr "شممخصشرذث دشمعث" - -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/student-proctored-exam-attempts.underscore -msgid "Time Limit" -msgstr "Ùهوث مهوهÙ" - -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/student-proctored-exam-attempts.underscore -msgid "Started At" -msgstr "سÙشقÙثي Ø´Ù" - -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/student-proctored-exam-attempts.underscore -msgid "Completed At" -msgstr "ذخوØمثÙثي Ø´Ù" - -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/student-proctored-exam-attempts.underscore -#, python-format -msgid " %(username)s " -msgstr " %(username)s " - #: openedx/features/course_bookmarks/static/course_bookmarks/templates/bookmarks-list.underscore msgid "Bookmarked on" msgstr "زخخنوشقنثي خر" @@ -10451,6 +9820,10 @@ msgstr "ØقشذÙهذث ØقخذÙخقثي ثطشو" msgid "Proctored Exam" msgstr "ØقخذÙخقثي ثطشو" +#: cms/templates/js/course-outline.underscore +msgid "Timed Exam" +msgstr "Ùهوثي ثطشو" + #: cms/templates/js/course-outline.underscore #: cms/templates/js/xblock-outline.underscore #, python-format diff --git a/conf/locale/ru/LC_MESSAGES/django.mo b/conf/locale/ru/LC_MESSAGES/django.mo index 1f58feaf48818d4c3b3db8b09e7c5c307f72189e..75cbe418801e64611300a8adbe38561a3d53662a 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/djangojs.mo b/conf/locale/ru/LC_MESSAGES/djangojs.mo index 675de310ed1c83d3b54bca0e10e693399f5c5efe..0f50cbf607180c8c0292c322fa2f91ec5b435cc7 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 ad4a74be585d6eb1d42082e4b1af6218876d6e2b..508c57ed817628e1577c0c450746a9ee2cdf616e 100644 --- a/conf/locale/ru/LC_MESSAGES/djangojs.po +++ b/conf/locale/ru/LC_MESSAGES/djangojs.po @@ -6,6 +6,7 @@ # Translators: # dfxedx <ah532@ya.ru>, 2014 # Alena Koneva <alenakoneva@ya.ru>, 2014 +# Alexander Eroshkin <gjrfytne@gmail.com>, 2019 # Alexandr Kosharny <acosarnii@gmail.com>, 2016 # Alexey Yuriev <yurievac@gmail.com>, 2018 # AndyZ <Andrey.Zakhvatov@gmail.com>, 2014 @@ -82,6 +83,7 @@ # Evgeniya <eugenia000@gmail.com>, 2013 # Elena Freundorfer <e_freundorfer@gmx.de>, 2014 # Evgeniya <eugenia000@gmail.com>, 2013 +# Ivan Morozov <xmorozov@gmail.com>, 2019 # Liubov Fomicheva <liubov.nelapa@gmail.com>, 2015-2017 # Madina Kanlybaeva <madika.kanlybaeva@mail.ru>, 2016 # Maksimenkova Olga <omaksimenkova@hse.ru>, 2014 @@ -102,6 +104,17 @@ # Ðндрей Сандлер <inactive+asandler@transifex.com>, 2013 # Ðичик Дмитрий Валерьевич <dmi.nichik@gmail.com>, 2013 # Павел Жилкин, 2018-2019 +# #-#-#-#-# djangojs-account-settings-view.po (0.1a) #-#-#-#-# +# edX community translations have been downloaded from Russian (https://www.transifex.com/open-edx/teams/6205/ru/). +# Copyright (C) 2019 EdX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# EdX Team <info@edx.org>, 2019. +# +# Translators: +# Liubov Fomicheva <liubov.nelapa@gmail.com>, 2019 +# YummyTranslations Edx <yummytranslations.edx@gmail.com>, 2019 +# Валентина Пицик <lushalusha007@gmail.com>, 2019 +# # #-#-#-#-# underscore.po (edx-platform) #-#-#-#-# # edX community translations have been downloaded from Russian (http://www.transifex.com/open-edx/edx-platform/language/ru/) # Copyright (C) 2019 edX @@ -162,9 +175,9 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2019-02-17 20:42+0000\n" -"PO-Revision-Date: 2019-02-10 20:45+0000\n" -"Last-Translator: edx_transifex_bot <i18n-working-group+edx-transifex-bot@edx.org>\n" +"POT-Creation-Date: 2019-06-09 20:42+0000\n" +"PO-Revision-Date: 2019-05-01 16:57+0000\n" +"Last-Translator: Валентина Пицик <lushalusha007@gmail.com>\n" "Language-Team: Russian (http://www.transifex.com/open-edx/edx-platform/language/ru/)\n" "Language: ru\n" "MIME-Version: 1.0\n" @@ -214,7 +227,6 @@ msgstr "Удалить" #. #-#-#-#-# djangojs-partial.po (edx-platform) #-#-#-#-# #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: cms/static/js/certificates/views/signatory_editor.js #: cms/static/js/views/asset.js cms/static/js/views/course_info_update.js #: cms/static/js/views/export.js cms/static/js/views/manage_users_and_roles.js @@ -225,6 +237,7 @@ msgstr "Удалить" #: common/lib/xmodule/xmodule/js/src/html/edit.js #: common/static/common/js/components/utils/view_utils.js #: lms/static/js/Markdown.Editor.js +#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx #: cms/templates/js/add-xblock-component-menu-problem.underscore #: cms/templates/js/add-xblock-component-menu.underscore #: cms/templates/js/certificate-editor.underscore @@ -247,6 +260,7 @@ msgstr "Удалить" msgid "Cancel" msgstr "Отмена" +#. Translators: This is the status of an active video upload #: cms/static/js/models/active_video_upload.js cms/static/js/views/assets.js #: cms/static/js/views/video_thumbnail.js lms/static/js/views/image_field.js msgid "Uploading" @@ -255,7 +269,6 @@ msgstr "Загрузка" #. #-#-#-#-# djangojs-partial.po (edx-platform) #-#-#-#-# #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: cms/static/js/views/active_video_upload.js #: cms/static/js/views/modals/edit_xblock.js #: cms/static/js/views/video_transcripts.js @@ -273,7 +286,6 @@ msgstr "Закрыть" #. #-#-#-#-# djangojs-partial.po (edx-platform) #-#-#-#-# #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: cms/static/js/views/assets.js #: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/asset-library.underscore @@ -292,7 +304,6 @@ msgstr "Выберите файл" #. #-#-#-#-# djangojs-partial.po (edx-platform) #-#-#-#-# #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: cms/static/js/views/course_info_update.js cms/static/js/views/tabs.js #: common/lib/xmodule/xmodule/js/src/html/edit.js #: lms/static/js/Markdown.Editor.js @@ -304,7 +315,6 @@ msgstr "ОК" #. #-#-#-#-# djangojs-partial.po (edx-platform) #-#-#-#-# #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: cms/static/js/views/course_video_settings.js #: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/timed-examination-preference-editor.underscore @@ -324,7 +334,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/js/views/manage_users_and_roles.js #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Ok" @@ -347,7 +356,6 @@ msgstr "Загрузить файл" #. #-#-#-#-# djangojs-partial.po (edx-platform) #-#-#-#-# #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: cms/static/js/views/modals/base_modal.js #: cms/static/js/views/modals/course_outline_modals.js #: common/lib/xmodule/xmodule/js/src/html/edit.js @@ -369,7 +377,6 @@ msgstr "Сохранить" #. #-#-#-#-# djangojs-partial.po (edx-platform) #-#-#-#-# #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: cms/static/js/views/modals/course_outline_modals.js #: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/add-xblock-component-menu-problem.underscore @@ -389,6 +396,9 @@ msgstr "Удаление" msgid "Your changes have been saved." msgstr "Ð˜Ð·Ð¼ÐµÐ½ÐµÐ½Ð¸Ñ Ñохранены." +#. Translators: This message will be added to the front of messages of type +#. error, +#. e.g. "Error: required field is missing". #: cms/static/js/views/xblock_validation.js #: common/static/common/js/discussion/utils.js #: common/static/common/js/discussion/views/discussion_inline_view.js @@ -452,6 +462,8 @@ msgstr "Комментарий" msgid "Reply to Annotation" msgstr "Ответить на поÑÑнение" +#. Translators: %(num_points)s is the number of points possible (examples: 1, +#. 3, 10).; #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "%(num_points)s point possible (graded, results hidden)" msgid_plural "%(num_points)s points possible (graded, results hidden)" @@ -460,6 +472,8 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. Translators: %(num_points)s is the number of points possible (examples: 1, +#. 3, 10).; #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "%(num_points)s point possible (ungraded, results hidden)" msgid_plural "%(num_points)s points possible (ungraded, results hidden)" @@ -468,6 +482,8 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. Translators: %(num_points)s is the number of points possible (examples: 1, +#. 3, 10).; #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "%(num_points)s point possible (graded)" msgid_plural "%(num_points)s points possible (graded)" @@ -476,6 +492,8 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. Translators: %(num_points)s is the number of points possible (examples: 1, +#. 3, 10).; #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "%(num_points)s point possible (ungraded)" msgid_plural "%(num_points)s points possible (ungraded)" @@ -484,6 +502,10 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. Translators: %(earned)s is the number of points earned. %(possible)s is the +#. total number of points (examples: 0/1, 1/1, 2/3, 5/10). The total number of +#. points will always be at least 1. We pluralize based on the total number of +#. points (example: 0/1 point; 1/2 points); #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "%(earned)s/%(possible)s point (graded)" msgid_plural "%(earned)s/%(possible)s points (graded)" @@ -492,6 +514,10 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. Translators: %(earned)s is the number of points earned. %(possible)s is the +#. total number of points (examples: 0/1, 1/1, 2/3, 5/10). The total number of +#. points will always be at least 1. We pluralize based on the total number of +#. points (example: 0/1 point; 1/2 points); #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "%(earned)s/%(possible)s point (ungraded)" msgid_plural "%(earned)s/%(possible)s points (ungraded)" @@ -538,6 +564,8 @@ msgstr "Ð’Ñ‹ не отправили необходимые файлы: {require msgid "You did not select any files to submit." msgstr "Ð’Ñ‹ не выбрали ни одного файла Ð´Ð»Ñ Ð¾Ñ‚Ð¿Ñ€Ð°Ð²ÐºÐ¸." +#. Translators: This is only translated to allow for reordering of label and +#. associated status.; #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "{label}: {status}" msgstr "{label}: {status}" @@ -552,7 +580,6 @@ msgstr "не отправлено" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paragraph" msgstr "Ðбзац" @@ -563,105 +590,90 @@ msgstr "Шаблон форматированиÑ" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 3" msgstr "Заголовок 3" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 4" msgstr "Заголовок 4" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 5" msgstr "Заголовок 5" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 6" msgstr "Заголовок 6" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Add to Dictionary" msgstr "Добавить в Ñловарь" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Align center" msgstr "По центру" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Align left" msgstr "По левому краю" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Align right" msgstr "По правому краю" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Alignment" msgstr "Выравнивание" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Alternative source" msgstr "Ðльтернативный иÑточник" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Anchor" msgstr "Якорь" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Anchors" msgstr "ЯкорÑ" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Author" msgstr "Ðвтор" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Background color" msgstr "Цвет фона" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js #: lms/static/js/Markdown.Editor.js msgid "Blockquote" @@ -669,122 +681,104 @@ msgstr "Цитата" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Blocks" msgstr "Блоки" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Body" msgstr "ОÑновной текÑÑ‚" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Bold" msgstr "Жирный" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Border color" msgstr "Цвет границы" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Border" msgstr "Граница" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Bottom" msgstr "По нижнему краю" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Bullet list" msgstr "Маркированный ÑпиÑок" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Caption" msgstr "Титр" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Cell padding" msgstr "Границы Ñчейки" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Cell properties" msgstr "СвойÑтва Ñчейки" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Cell spacing" msgstr "Интервал между Ñчейками" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Cell type" msgstr "Тип Ñчейки" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Cell" msgstr "Ячейка" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Center" msgstr "По центру" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Circle" msgstr "По кругу" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Clear formatting" msgstr "Удалить форматирование" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #. Translators: this is a toolbar button tooltip from the raw HTML editor #. displayed in the browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Code block" msgstr "Блок программного кода" @@ -792,7 +786,6 @@ msgstr "Блок программного кода" #. #-#-#-#-# djangojs-partial.po (edx-platform) #-#-#-#-# #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js #: lms/templates/instructor/instructor_dashboard_2/enrollment-code-lookup-links.underscore msgid "Code" @@ -800,119 +793,102 @@ msgstr "Код" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Color" msgstr "Цвет" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Cols" msgstr "атрибут" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Column group" msgstr "Группа Ñтолбцов" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Column" msgstr "Столбец" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Constrain proportions" msgstr "СохранÑÑ‚ÑŒ пропорции" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Copy row" msgstr "Копировать Ñтроку" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Copy" msgstr "Копировать" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Could not find the specified string." msgstr "Ðе удалоÑÑŒ обнаружить заданную Ñтроку" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Custom color" msgstr "ПользовательÑкий цвет" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Custom..." msgstr "ÐаÑтройки пользователÑ..." #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Cut row" msgstr "Вырезать Ñ€Ñд" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Cut" msgstr "Вырезать" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Decrease indent" msgstr "Уменьшить отÑтуп" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Default" msgstr "По умолчанию" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Delete column" msgstr "Удалить Ñтолбец" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Delete row" msgstr "Удалить Ñ€Ñд" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Delete table" msgstr "Удалить таблицу" @@ -920,7 +896,6 @@ msgstr "Удалить таблицу" #. #-#-#-#-# djangojs-partial.po (edx-platform) #-#-#-#-# #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/certificate-editor.underscore #: cms/templates/js/group-configuration-editor.underscore @@ -931,35 +906,30 @@ msgstr "ОпиÑание" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Dimensions" msgstr "Размеры" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Disc" msgstr "диÑк" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Div" msgstr "Div" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Document properties" msgstr "СвойÑтва документа" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Edit HTML" msgstr "Редактировать HTML" @@ -967,7 +937,6 @@ msgstr "Редактировать HTML" #. #-#-#-#-# djangojs-partial.po (edx-platform) #-#-#-#-# #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/certificate-details.underscore #: cms/templates/js/course_info_handouts.underscore @@ -983,98 +952,84 @@ msgstr "Редактировать" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Embed" msgstr "Ð’Ñтавить" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Emoticons" msgstr "Смайлы" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Encoding" msgstr "Кодировка" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "File" msgstr "Файл" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Find and replace" msgstr "Ðайти и заменить" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Find next" msgstr "Ðайти Ñледующее" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Find previous" msgstr "Ðайти предыдущее" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Find" msgstr "Ðайти" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Finish" msgstr "Закончить" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Font Family" msgstr "Группа шрифтов" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Font Sizes" msgstr "Размеры шрифтов" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Footer" msgstr "Ðижний колонтитул" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Format" msgstr "Форматировать" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Formats" msgstr "Виды форматированиÑ" @@ -1082,7 +1037,6 @@ msgstr "Виды форматированиÑ" #. #-#-#-#-# djangojs-partial.po (edx-platform) #-#-#-#-# #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js #: common/static/common/templates/image-modal.underscore msgid "Fullscreen" @@ -1090,70 +1044,60 @@ msgstr "Во веÑÑŒ Ñкран" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "General" msgstr "Общий" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "H Align" msgstr "Выравнивание по горизонтали" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Header 1" msgstr "Заголовок 1" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Header 2" msgstr "Заголовок 2" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Header 3" msgstr "Заголовок 3" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Header 4" msgstr "Заголовок 4" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Header 5" msgstr "Заголовок 5" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Header 6" msgstr "Заголовок 6" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Header cell" msgstr "Ячейка заголовка" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "Header" @@ -1161,280 +1105,240 @@ msgstr "Верхний колонтитул" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Headers" msgstr "Верхние колонтитулы" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 1" msgstr "Заголовок 1" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 2" msgstr "Заголовок 2" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Headings" msgstr "Заголовки" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Height" msgstr "Ð’Ñ‹Ñота" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Horizontal line" msgstr "Ð“Ð¾Ñ€Ð¸Ð·Ð¾Ð½Ñ‚Ð°Ð»ÑŒÐ½Ð°Ñ Ð»Ð¸Ð½Ð¸Ñ" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Horizontal space" msgstr "ОтÑтуп по ширине" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "HTML source code" msgstr "ИÑходный код HTML" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Ignore all" msgstr "ПропуÑтить вÑе" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Ignore" msgstr "ПропуÑтить" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Image description" msgstr "ОпиÑание изображениÑ" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Increase indent" msgstr "Увеличить отÑтуп" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Inline" msgstr "Ð’ текÑте" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Insert column after" msgstr "Ð’Ñтавить Ñтолбец Ñправа" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Insert column before" msgstr "Ð’Ñтавить Ñтолбец Ñлева" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Insert date/time" msgstr "Ð’Ñтавить дату/времÑ" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Insert image" msgstr "Ð’Ñтавить изображение" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Insert link" msgstr "Ð’Ñтавить ÑÑылку" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Insert row after" msgstr "Ð’Ñтавить Ñтроку ниже" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Insert row before" msgstr "Ð’Ñтавить Ñтроку выше" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Insert table" msgstr "Ð’Ñтавить таблицу" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Insert template" msgstr "Ð’Ñтавить шаблон" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Insert video" msgstr "Ð’Ñтавить видео" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Insert" msgstr "Ð’Ñтавить" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Insert/edit image" msgstr "Ð’Ñтавить/редактировать изображение" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Insert/edit link" msgstr "Ð’Ñтавить/редактировать ÑÑылку" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Insert/edit video" msgstr "Ð’Ñтавить/редактировать видео" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Italic" msgstr "КурÑив" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Justify" msgstr "ВыровнÑÑ‚ÑŒ по ширине" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Keywords" msgstr "Ключевые Ñлова" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Left to right" msgstr "Слева направо" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Left" msgstr "По левому краю" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Lower Alpha" msgstr "Строчные латинÑкие буквы" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Lower Greek" msgstr "Строчные гречеÑкие буквы" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Lower Roman" msgstr "РимÑкие чиÑла в нижнем региÑтре" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Match case" msgstr "Учитывать региÑÑ‚Ñ€" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Merge cells" msgstr "Объединить Ñчейки" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Middle" msgstr "Средний" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "New document" msgstr "Ðовый документ" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "New window" msgstr "Ðовое окно" @@ -1442,7 +1346,6 @@ msgstr "Ðовое окно" #. #-#-#-#-# djangojs-partial.po (edx-platform) #-#-#-#-# #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/paging-header.underscore #: common/static/common/templates/components/paging-footer.underscore @@ -1452,42 +1355,36 @@ msgstr "Вперёд" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "No color" msgstr "БеÑцветный" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Nonbreaking space" msgstr "Ðеразрывный пробел" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Numbered list" msgstr "Ðумерованный ÑпиÑок" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Page break" msgstr "Конец Ñтраницы" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paste as text" msgstr "Ð’Ñтавить как текÑÑ‚" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "" "Paste is now in plain text mode. Contents will now be pasted as plain text " @@ -1498,49 +1395,42 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paste row after" msgstr "Ð’Ñтавить Ñтроку ниже" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paste row before" msgstr "Ð’Ñтавить Ñтроку выше" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paste your embed code below:" msgstr "Ð’Ñтавьте код ниже" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paste" msgstr "Ð’Ñтавить" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Poster" msgstr "плакат" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Pre" msgstr "тег" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Prev" msgstr "Пред" @@ -1548,7 +1438,6 @@ msgstr "Пред" #. #-#-#-#-# djangojs-partial.po (edx-platform) #-#-#-#-# #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js lms/static/js/customwmd.js #: cms/templates/js/asset-library.underscore msgid "Preview" @@ -1556,35 +1445,30 @@ msgstr "Предварительный проÑмотр" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Print" msgstr "Печать" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Redo" msgstr "Вернуть" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Remove link" msgstr "Убрать ÑÑылку" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Replace all" msgstr "Заменить вÑÑ‘" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Replace with" msgstr "Заменить на" @@ -1592,7 +1476,6 @@ msgstr "Заменить на" #. #-#-#-#-# djangojs-partial.po (edx-platform) #-#-#-#-# #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/metadata-file-uploader-item.underscore #: cms/templates/js/video-transcripts.underscore @@ -1602,14 +1485,12 @@ msgstr "Заменить" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Restore last draft" msgstr "ВоÑÑтановить поÑледний черновик" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "" "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press " @@ -1620,210 +1501,180 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Right to left" msgstr "Справа налево" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Right" msgstr "По правому краю" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Robots" msgstr "роботы" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Row group" msgstr "Группа Ñтрок" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Row properties" msgstr "СвойÑтва Ñтроки" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Row type" msgstr "Тип Ñтроки" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Row" msgstr "Строка" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Rows" msgstr "Строки" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Scope" msgstr "Scope" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Select all" msgstr "Выбрать вÑÑ‘" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Show blocks" msgstr "Показать блоки" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Show invisible characters" msgstr "Показать Ñкрытые Ñимволы" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Source code" msgstr "ИÑходный код" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Source" msgstr "ИÑточник" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Special character" msgstr "Специальный Ñимвол" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Spellcheck" msgstr "Проверка орфографии" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Split cell" msgstr "Разбить Ñчейку" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Square" msgstr "Квадрат" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Start search" msgstr "Ðачать поиÑк" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Strikethrough" msgstr "Зачёркнутый" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Style" msgstr "Стиль" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Subscript" msgstr "индекÑ" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Superscript" msgstr "верхний индекÑ" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Table properties" msgstr "СвойÑтва таблицы" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Table" msgstr "Таблица" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Target" msgstr "Цель" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Templates" msgstr "Шаблоны" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Text color" msgstr "Цвет текÑта" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Text to display" msgstr "Отображаемый текÑÑ‚" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "" "The URL you entered seems to be an email address. Do you want to add the " @@ -1834,7 +1685,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "" "The URL you entered seems to be an external link. Do you want to add the " @@ -1846,7 +1696,6 @@ msgstr "" #. #-#-#-#-# djangojs-partial.po (edx-platform) #-#-#-#-# #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/course-instructor-details.underscore #: cms/templates/js/signatory-details.underscore @@ -1857,63 +1706,54 @@ msgstr "Заголовок" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Tools" msgstr "ИнÑтрументы" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Top" msgstr "верхушка" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Underline" msgstr "Подчёркнутый" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Undo" msgstr "Отмена" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Upper Alpha" msgstr "выше альфа" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Upper Roman" msgstr "выше римÑкий" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Url" msgstr "URL" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "V Align" msgstr "Выравнивание по вертикали" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Vertical space" msgstr "ОтÑтуп по выÑоте" @@ -1921,7 +1761,6 @@ msgstr "ОтÑтуп по выÑоте" #. #-#-#-#-# djangojs-partial.po (edx-platform) #-#-#-#-# #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js #: openedx/features/course_bookmarks/static/course_bookmarks/templates/bookmarks-list.underscore #: openedx/features/course_search/static/course_search/templates/course_search_item.underscore @@ -1931,42 +1770,36 @@ msgstr "ПроÑмотреть" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Visual aids" msgstr "ÐаглÑдные подÑказки" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Whole words" msgstr "Слова целиком" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Width" msgstr "Ширина" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Words: {0}" msgstr "Слова: {0}" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "You have unsaved changes are you sure you want to navigate away?" msgstr "У Ð²Ð°Ñ ÐµÑÑ‚ÑŒ неÑохранённые изменениÑ. Ð’Ñ‹ дейÑтвительно хотите уйти?" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "" "Your browser doesn't support direct access to the clipboard. Please use the " @@ -1977,7 +1810,6 @@ msgstr "" #. Translators: this is a toolbar button tooltip from the raw HTML editor #. displayed in the browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Insert/Edit Image" msgstr "Ð’Ñтавить/редактировать изображение" @@ -2100,30 +1932,37 @@ msgstr "" msgid "Volume" msgstr "ГромкоÑÑ‚ÑŒ" +#. Translators: Volume level equals 0%. #: common/lib/xmodule/xmodule/js/src/video/00_i18n.js msgid "Muted" msgstr "Без звука" +#. Translators: Volume level in range ]0,20]% #: common/lib/xmodule/xmodule/js/src/video/00_i18n.js msgid "Very low" msgstr "Очень тихо" +#. Translators: Volume level in range ]20,40]% #: common/lib/xmodule/xmodule/js/src/video/00_i18n.js msgid "Low" msgstr "Тихо" +#. Translators: Volume level in range ]40,60]% #: common/lib/xmodule/xmodule/js/src/video/00_i18n.js msgid "Average" msgstr "СреднÑÑ Ð³Ñ€Ð¾Ð¼ÐºÐ¾ÑÑ‚ÑŒ" +#. Translators: Volume level in range ]60,80]% #: common/lib/xmodule/xmodule/js/src/video/00_i18n.js msgid "Loud" msgstr "Громко" +#. Translators: Volume level in range ]80,99]% #: common/lib/xmodule/xmodule/js/src/video/00_i18n.js msgid "Very loud" msgstr "Очень громко" +#. Translators: Volume level equals 100%. #: common/lib/xmodule/xmodule/js/src/video/00_i18n.js msgid "Maximum" msgstr "МакÑÐ¸Ð¼Ð°Ð»ÑŒÐ½Ð°Ñ Ð³Ñ€Ð¾Ð¼ÐºÐ¾ÑÑ‚ÑŒ" @@ -2292,6 +2131,18 @@ msgstr "Отключить вÑтроенные Ñубтитры" msgid "View child items" msgstr "ПроÑмотр дочерних Ñлементов" +#: common/static/common/js/components/BlockBrowser/components/BlockBrowser/BlockBrowser.jsx +msgid "Navigate up" +msgstr "" + +#: common/static/common/js/components/BlockBrowser/components/BlockBrowser/BlockBrowser.jsx +msgid "Browsing" +msgstr "" + +#: common/static/common/js/components/BlockBrowser/components/BlockBrowser/BlockBrowser.jsx +msgid "Select" +msgstr "" + #: common/static/common/js/components/utils/view_utils.js msgid "Required field." msgstr "ОбÑзательное поле." @@ -2605,11 +2456,13 @@ msgstr "перемещено на ленту" msgid "dropped on target" msgstr "перемещено на цель" +#. Translators: %s will be a time quantity, such as "4 minutes" or "1 day" #: common/static/js/src/jquery.timeago.locale.js #, javascript-format msgid "%s ago" msgstr "%s назад" +#. Translators: %s will be a time quantity, such as "4 minutes" or "1 day" #: common/static/js/src/jquery.timeago.locale.js #, javascript-format msgid "%s from now" @@ -2739,6 +2592,10 @@ msgstr "Добавить вложение" msgid "(Optional)" msgstr "(необÑзательно)" +#: lms/djangoapps/support/static/support/jsx/file_upload.jsx +msgid "Remove file" +msgstr "" + #: lms/djangoapps/support/static/support/jsx/logged_in_user.jsx msgid "Course Name" msgstr "Ðазвание курÑа" @@ -2747,10 +2604,23 @@ msgstr "Ðазвание курÑа" msgid "Not specific to a course" msgstr "ÐšÑƒÑ€Ñ Ð½Ðµ определен" +#: lms/djangoapps/support/static/support/jsx/logged_in_user.jsx +msgid "What can we help you with, {username}?" +msgstr "" + +#: lms/djangoapps/support/static/support/jsx/logged_in_user.jsx +#: lms/static/js/instructor_dashboard/util.js +msgid "Subject" +msgstr "Тема" + #: lms/djangoapps/support/static/support/jsx/logged_in_user.jsx msgid "Details" msgstr "ПодробноÑти" +#: lms/djangoapps/support/static/support/jsx/logged_in_user.jsx +msgid "The more you tell us, the more quickly and helpfully we can respond!" +msgstr "" + #: lms/djangoapps/support/static/support/jsx/logged_in_user.jsx #: common/static/common/templates/discussion/new-post.underscore #: common/static/common/templates/discussion/thread-response.underscore @@ -2764,13 +2634,8 @@ msgid "Sign in to {platform} so we can help you better." msgstr "" #: lms/djangoapps/support/static/support/jsx/logged_out_user.jsx -#: lms/templates/student_account/hinted_login.underscore -#: lms/templates/student_account/login.underscore -msgid "Sign in" -msgstr "Вход" - -#: lms/djangoapps/support/static/support/jsx/logged_out_user.jsx -msgid "Create an {platform} account" +msgid "" +"If you are unable to access your account contact us via email using {email}." msgstr "" #: lms/djangoapps/support/static/support/jsx/single_support_form.jsx @@ -2789,10 +2654,19 @@ msgstr "" msgid "Enter some details for your support request." msgstr "" +#: lms/djangoapps/support/static/support/jsx/single_support_form.jsx +#: lms/djangoapps/support/static/support/jsx/success.jsx +msgid "Contact Us" +msgstr "СвÑжитеÑÑŒ Ñ Ð½Ð°Ð¼Ð¸" + #: lms/djangoapps/support/static/support/jsx/single_support_form.jsx msgid "Find answers to the top questions asked by learners." msgstr "Ðайдите ответы на главные вопроÑÑ‹, заданные ÑлушателÑми." +#: lms/djangoapps/support/static/support/jsx/single_support_form.jsx +msgid "Search the {platform} Help Center" +msgstr "" + #: lms/djangoapps/support/static/support/jsx/success.jsx msgid "Go to my Dashboard" msgstr "Перейти к моей панели управлениÑ" @@ -2802,8 +2676,13 @@ msgid "Go to {platform} Home" msgstr "Перейти {platform} Домой" #: lms/djangoapps/support/static/support/jsx/success.jsx -msgid "Contact Us" -msgstr "СвÑжитеÑÑŒ Ñ Ð½Ð°Ð¼Ð¸" +msgid "" +"Thank you for submitting a request! We will contact you within 24 hours." +msgstr "" + +#: lms/djangoapps/support/static/support/jsx/upload_progress.jsx +msgid "Cancel upload" +msgstr "" #: lms/djangoapps/teams/static/teams/js/collections/team.js msgid "last activity" @@ -2817,6 +2696,8 @@ msgstr "вакантные меÑта" msgid "name" msgstr "имÑ" +#. Translators: This refers to the number of teams (a count of how many teams +#. there are) #: lms/djangoapps/teams/static/teams/js/collections/topic.js msgid "team count" msgstr "количеÑтво команд" @@ -2914,10 +2795,14 @@ msgstr "" msgid "This team does not have any members." msgstr "Ð’ Ñтой команде нет учаÑтников." +#. Translators: 'date' is a placeholder for a fuzzy, relative timestamp (see: +#. https://github.com/rmm5t/jquery-timeago) #: lms/djangoapps/teams/static/teams/js/views/edit_team_members.js msgid "Joined %(date)s" msgstr "Дата приÑÐ¾ÐµÐ´Ð¸Ð½ÐµÐ½Ð¸Ñ %(date)s" +#. Translators: 'date' is a placeholder for a fuzzy, relative timestamp (see: +#. https://github.com/rmm5t/jquery-timeago) #: lms/djangoapps/teams/static/teams/js/views/edit_team_members.js msgid "Last Activity %(date)s" msgstr "ПоÑледнÑÑ Ð°ÐºÑ‚Ð¸Ð²Ð½Ð¾ÑÑ‚ÑŒ %(date)s" @@ -2955,10 +2840,14 @@ msgstr "Команда «{team}» уÑпешно удалена." msgid "You are not currently a member of any team." msgstr "Ð’ наÑтоÑщий момент вы не входите в ÑоÑтав ни одной команды." +#. Translators: "and others" refers to fact that additional members of a team +#. exist that are not displayed. #: lms/djangoapps/teams/static/teams/js/views/team_card.js msgid "and others" msgstr "и другие" +#. Translators: 'date' is a placeholder for a fuzzy, relative timestamp (see: +#. http://momentjs.com/) #: lms/djangoapps/teams/static/teams/js/views/team_card.js msgid "Last activity %(date)s" msgstr "ПоÑледнÑÑ Ð°ÐºÑ‚Ð¸Ð²Ð½Ð¾ÑÑ‚ÑŒ %(date)s" @@ -3133,6 +3022,14 @@ msgstr "Тема" msgid "View Teams in the %(topic_name)s Topic" msgstr "ПроÑмотреть команды, изучающие тему %(topic_name)s" +#. Translators: this string is shown at the bottom of the teams page +#. to find a team to join or else to create a new one. There are three +#. links that need to be included in the message: +#. 1. Browse teams in other topics +#. 2. search teams +#. 3. create a new team +#. Be careful to start each link with the appropriate start indicator +#. (e.g. {browse_span_start} for #1) and finish it with {span_end}. #: lms/djangoapps/teams/static/teams/js/views/topic_teams.js msgid "" "{browse_span_start}Browse teams in other topics{span_end} or " @@ -3223,6 +3120,7 @@ msgstr "URL" msgid "Please provide a valid URL." msgstr "ПожалуйÑта, укажите корректный URL." +#. Translators: 'errorCount' is the number of errors found in the form. #: lms/static/js/Markdown.Editor.js msgid "%(errorCount)s error found in form." msgid_plural "%(errorCount)s errors found in form." @@ -3529,29 +3427,24 @@ msgstr "Вам не будет возвращена Ñумма, которую #: lms/static/js/dashboard/legacy.js msgid "" -"Are you sure you want to unenroll from the purchased course %(courseName)s " -"(%(courseNumber)s)?" +"Are you sure you want to unenroll from the purchased course {courseName} " +"({courseNumber})?" msgstr "" -"Ð’Ñ‹ уверены, что хотите отменить запиÑÑŒ на оплаченный вами ÐºÑƒÑ€Ñ " -"%(courseName)s (%(courseNumber)s)?" #: lms/static/js/dashboard/legacy.js -msgid "" -"Are you sure you want to unenroll from %(courseName)s (%(courseNumber)s)?" +msgid "Are you sure you want to unenroll from {courseName} ({courseNumber})?" msgstr "" -"Ð’Ñ‹ уверены, что хотите отменить запиÑÑŒ на курÑ%(courseName)s " -"(%(courseNumber)s)?" #: lms/static/js/dashboard/legacy.js msgid "" -"Are you sure you want to unenroll from the verified %(certNameLong)s track " -"of %(courseName)s (%(courseNumber)s)?" +"Are you sure you want to unenroll from the verified {certNameLong} track of" +" {courseName} ({courseNumber})?" msgstr "" #: lms/static/js/dashboard/legacy.js msgid "" -"Are you sure you want to unenroll from the verified %(certNameLong)s track " -"of %(courseName)s (%(courseNumber)s)?" +"Are you sure you want to unenroll from the verified {certNameLong} track of " +"{courseName} ({courseNumber})?" msgstr "" #: lms/static/js/dashboard/legacy.js @@ -3711,10 +3604,21 @@ msgstr "" msgid "Search Results" msgstr "Результаты поиÑка" +#. Translators: this is a title shown before all Notes that have no associated +#. tags. It is put within +#. brackets to differentiate it from user-defined tags, but it should still be +#. translated. #: lms/static/js/edxnotes/views/tabs/tags.js msgid "[no tags]" msgstr "[нет тегов]" +#. Translators: 'Tags' is the name of the view (noun) within the Student Notes +#. page that shows all +#. notes organized by the tags the student has associated with them (if any). +#. When defining a +#. note in the courseware, the student can choose to associate 1 or more tags +#. with the note +#. in order to group similar notes together and help with search. #: lms/static/js/edxnotes/views/tabs/tags.js msgid "Tags" msgstr "Теги" @@ -4105,6 +4009,7 @@ msgstr "Ð’Ñе учётные запиÑи уÑпешно Ñозданы." msgid "Error adding/removing users as beta testers." msgstr "Ошибка добавлениÑ/ÑƒÐ´Ð°Ð»ÐµÐ½Ð¸Ñ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»ÐµÐ¹ в команду бета-теÑтеров." +#. Translators: A list of users appears after this sentence; #: lms/static/js/instructor_dashboard/membership.js msgid "These users were successfully added as beta testers:" msgstr "" @@ -4118,14 +4023,17 @@ msgstr "" "Следующие Ñлушатели не добавлены в ÑпиÑок бета-теÑтеров, поÑкольку их " "учётные запиÑи ещё не активированы:" +#. Translators: A list of users appears after this sentence; #: lms/static/js/instructor_dashboard/membership.js msgid "These users were successfully removed as beta testers:" msgstr "Следующие пользователи были уÑпешно удалены из команды бета-теÑтеров:" +#. Translators: A list of users appears after this sentence; #: lms/static/js/instructor_dashboard/membership.js msgid "These users were not added as beta testers:" msgstr "Следующие пользователи не были добавлены в команду бета-теÑтеров:" +#. Translators: A list of users appears after this sentence; #: lms/static/js/instructor_dashboard/membership.js msgid "These users were not removed as beta testers:" msgstr "Следующие пользователи не были удалены из команды бета-теÑтеров:" @@ -4166,10 +4074,12 @@ msgstr "" "Следующие пользователи уÑпешно запиÑаны на курÑ, им на Ñлектронную почту " "выÑланы уведомлениÑ:" +#. Translators: A list of users appears after this sentence; #: lms/static/js/instructor_dashboard/membership.js msgid "Successfully enrolled the following users:" msgstr "Следующие пользователи уÑпешно запиÑаны на курÑ:" +#. Translators: A list of users appears after this sentence; #: lms/static/js/instructor_dashboard/membership.js msgid "" "Successfully sent enrollment emails to the following users. They will be " @@ -4179,12 +4089,14 @@ msgstr "" "пользователÑм. Они Ñмогут зарегиÑтрироватьÑÑ, как только Ñоздадут Ñвои " "учётные запиÑи:" +#. Translators: A list of users appears after this sentence; #: lms/static/js/instructor_dashboard/membership.js msgid "These users will be allowed to enroll once they register:" msgstr "" "Ðти пользователи Ñмогут запиÑатьÑÑ Ð½Ð° курÑ, как только Ñоздадут Ñвои учётные" " запиÑи:" +#. Translators: A list of users appears after this sentence; #: lms/static/js/instructor_dashboard/membership.js msgid "" "Successfully sent enrollment emails to the following users. They will be " @@ -4194,12 +4106,14 @@ msgstr "" "пользователÑм. Они будут зарегиÑтрированы, как только Ñоздадут Ñвои учётные " "запиÑи." +#. Translators: A list of users appears after this sentence; #: lms/static/js/instructor_dashboard/membership.js msgid "These users will be enrolled once they register:" msgstr "" "Ðти пользователи будут запиÑаны на курÑ, как только Ñоздадут Ñвои учётные " "запиÑи." +#. Translators: A list of users appears after this sentence; #: lms/static/js/instructor_dashboard/membership.js msgid "" "Emails successfully sent. The following users are no longer enrolled in the " @@ -4208,6 +4122,7 @@ msgstr "" "Ðлектронные ÑÐ¾Ð¾Ð±Ñ‰ÐµÐ½Ð¸Ñ ÑƒÑпешно отправлены. Следующие пользователи отчиÑлены Ñ" " курÑа:" +#. Translators: A list of users appears after this sentence; #: lms/static/js/instructor_dashboard/membership.js msgid "The following users are no longer enrolled in the course:" msgstr "Следующие пользователи отчиÑлены Ñ ÐºÑƒÑ€Ñа:" @@ -4537,63 +4452,54 @@ msgstr "" #. Translators: a "Task" is a background process such as grading students or #. sending email -#. */ #: lms/static/js/instructor_dashboard/util.js msgid "Task Type" msgstr "Тип заданиÑ" #. Translators: a "Task" is a background process such as grading students or #. sending email -#. */ #: lms/static/js/instructor_dashboard/util.js msgid "Task inputs" msgstr "Ввод заданиÑ" #. Translators: a "Task" is a background process such as grading students or #. sending email -#. */ #: lms/static/js/instructor_dashboard/util.js msgid "Task ID" msgstr "Идентификатор задачи" #. Translators: a "Requester" is a username that requested a task such as #. sending email -#. */ #: lms/static/js/instructor_dashboard/util.js msgid "Requester" msgstr "Запрашивающий" #. Translators: A timestamp of when a task (eg, sending email) was submitted #. appears after this -#. */ #: lms/static/js/instructor_dashboard/util.js msgid "Submitted" msgstr "ПриÑланное на раÑмотрение" #. Translators: The length of a task (eg, sending email) in seconds appears #. this -#. */ #: lms/static/js/instructor_dashboard/util.js msgid "Duration (sec)" msgstr "ПродолжительноÑÑ‚ÑŒ (Ñек.)" #. Translators: The state (eg, "In progress") of a task (eg, sending email) #. appears after this. -#. */ #: lms/static/js/instructor_dashboard/util.js msgid "State" msgstr "СоÑтоÑние" #. Translators: a "Task" is a background process such as grading students or #. sending email -#. */ #: lms/static/js/instructor_dashboard/util.js msgid "Task Status" msgstr "СоÑтоÑние процеÑÑа" #. Translators: a "Task" is a background process such as grading students or #. sending email -#. */ #: lms/static/js/instructor_dashboard/util.js msgid "Task Progress" msgstr "ПрогреÑÑ Ð·Ð°Ð´Ð°Ð½Ð¸Ñ" @@ -4606,10 +4512,6 @@ msgstr "" "Произошла ошибка при поиÑке вашего пиÑьма. ПожалуйÑта, попытайтеÑÑŒ позже; " "ÑвÑжитеÑÑŒ Ñ Ñ‚ÐµÑ…. поддержкой, еÑли проблема ÑохранитÑÑ." -#: lms/static/js/instructor_dashboard/util.js -msgid "Subject" -msgstr "Тема" - #: lms/static/js/instructor_dashboard/util.js msgid "Sent By" msgstr "От кого" @@ -4795,10 +4697,31 @@ msgstr "" msgid "Could not override problem score for {user}." msgstr "" +#: lms/static/js/student_account/components/PasswordResetConfirmation.jsx +msgid "Enter and confirm your new password." +msgstr "" + #: lms/static/js/student_account/components/PasswordResetConfirmation.jsx msgid "New Password" msgstr "Ðовый пароль" +#: lms/static/js/student_account/components/PasswordResetConfirmation.jsx +msgid "Confirm Password" +msgstr "" + +#: lms/static/js/student_account/components/PasswordResetConfirmation.jsx +msgid "Passwords do not match." +msgstr "" + +#: lms/static/js/student_account/components/PasswordResetConfirmation.jsx +msgid "Reset My Password" +msgstr "" + +#: lms/static/js/student_account/components/PasswordResetConfirmation.jsx +#: lms/static/js/student_account/views/account_settings_factory.js +msgid "Reset Your Password" +msgstr "СброÑить пароль" + #: lms/static/js/student_account/components/PasswordResetInput.jsx msgid "Error: " msgstr "Ошибка:" @@ -4839,6 +4762,13 @@ msgstr "" msgid "We’re sorry to see you go!" msgstr "" +#: lms/static/js/student_account/components/StudentAccountDeletion.jsx +msgid "" +"Please note: Deletion of your account and personal data is permanent and " +"cannot be undone. EdX will not be able to recover your account or the data " +"that is deleted." +msgstr "" + #: lms/static/js/student_account/components/StudentAccountDeletion.jsx msgid "" "Once your account is deleted, you cannot use it to take courses on the edX " @@ -4882,12 +4812,25 @@ msgid "" "your account or the data that is deleted." msgstr "" +#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx +msgid "" +"If you proceed, you will be unable to use this account to take courses on " +"the edX app, edx.org, or any other site hosted by edX. This includes access " +"to edx.org from your employer’s or university’s system and access to private" +" sites offered by MIT Open Learning, Wharton Executive Education, and " +"Harvard Medical School." +msgstr "" + #: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx msgid "" "If you still wish to continue and delete your account, please enter your " "account password:" msgstr "" +#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx +msgid "Yes, Delete" +msgstr "" + #: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx msgid "We're sorry to see you go! Your account will be deleted shortly." msgstr "" @@ -4927,7 +4870,6 @@ msgstr "Произошла ошибка" #. Translators: This string is appended to optional field labels on the #. student login, registration, and #. profile forms. -#. */ #: lms/static/js/student_account/views/FormView.js msgid "(optional)" msgstr "(необÑзательно)" @@ -5062,10 +5004,6 @@ msgstr "" msgid "Password" msgstr "Пароль" -#: lms/static/js/student_account/views/account_settings_factory.js -msgid "Reset Your Password" -msgstr "СброÑить пароль" - #: lms/static/js/student_account/views/account_settings_factory.js msgid "Check your email account for instructions to reset your password." msgstr "" @@ -5256,26 +5194,6 @@ msgstr "ПривÑзка к учётной запиÑи" msgid "Successfully unlinked." msgstr "Удалено." -#: lms/static/js/student_account/views/account_settings_view.js -msgid "Account Information" -msgstr "Ð˜Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð¾Ð± учётной запиÑи" - -#: lms/static/js/student_account/views/account_settings_view.js -msgid "Order History" -msgstr "ИÑÑ‚Ð¾Ñ€Ð¸Ñ Ð·Ð°ÐºÐ°Ð·Ð¾Ð²" - -#: lms/static/js/student_account/views/account_settings_view.js -msgid "" -"You have set your language to {beta_language}, which is currently not fully " -"translated. You can help us translate this language fully by joining the " -"Transifex community and adding translations from English for learners that " -"speak {beta_language}." -msgstr "" - -#: lms/static/js/student_account/views/account_settings_view.js -msgid "Help Translate into {beta_language}" -msgstr "" - #: lms/static/js/verify_student/views/image_input_view.js msgid "Image Upload Error" msgstr "Ошибка загрузки изображениÑ" @@ -5320,6 +5238,8 @@ msgstr "Оплатить" msgid "Checkout with PayPal" msgstr "Оплатить Ñ Ð¿Ð¾Ð¼Ð¾Ñ‰ÑŒÑŽ PayPal" +#. Translators: 'processor' is the name of a third-party payment processing +#. vendor (example: "PayPal") #: lms/static/js/verify_student/views/make_payment_step_view.js msgid "Checkout with {processor}" msgstr "Оплатить Ñ Ð¿Ð¾Ð¼Ð¾Ñ‰ÑŒÑŽ {processor}" @@ -5689,6 +5609,8 @@ msgstr "" msgid "Yes, allow edits to the active Certificate" msgstr "Да, разрешить редактирование активного Ñертификата" +#. Translators: This field pertains to the custom label for a certificate. +#. Translators: this refers to a collection of certificates. #: cms/static/js/certificates/views/certificate_item.js #: cms/static/js/certificates/views/certificates_list.js msgid "certificate" @@ -5698,6 +5620,8 @@ msgstr "Ñертификат" msgid "Set up your certificate" msgstr "ÐаÑтройте Ñвой Ñертификат" +#. Translators: This line refers to the initial state of the form when no data +#. has been inserted #: cms/static/js/certificates/views/certificates_list.js msgid "You have not created any certificates yet." msgstr "Ð’Ñ‹ ещё не Ñоздали ни одного Ñертификата." @@ -5734,7 +5658,6 @@ msgstr "Группа %s" #. Translators: Dictionary used for creation ids that are used in #. default group names. For example: A, B, AA in Group A, #. Group B, ..., Group AA, etc. -#. */ #: cms/static/js/collections/group.js msgid "ABCDEFGHIJKLMNOPQRSTUVWXYZ" msgstr "ÐБВГДЕЖЗИКЛМÐОПРСТУФХЦЧШЩÐЮЯ" @@ -5838,26 +5761,47 @@ msgstr "" msgid "There was an error with the upload" msgstr "" +#: cms/static/js/features_jsx/studio/CourseOrLibraryListing.jsx +msgid "Organization:" +msgstr "" + #: cms/static/js/features_jsx/studio/CourseOrLibraryListing.jsx msgid "Course Number:" msgstr "" +#: cms/static/js/features_jsx/studio/CourseOrLibraryListing.jsx +msgid "Course Run:" +msgstr "" + #: cms/static/js/features_jsx/studio/CourseOrLibraryListing.jsx msgid "(Read-only)" msgstr "" +#: cms/static/js/features_jsx/studio/CourseOrLibraryListing.jsx +msgid "Re-run Course" +msgstr "" + +#: cms/templates/js/show-textbook.underscore +msgid "View Live" +msgstr "ПроÑмотр курÑа" + #: cms/static/js/maintenance/force_publish_course.js msgid "Internal Server Error." msgstr "ВнутреннÑÑ Ð¾ÑˆÐ¸Ð±ÐºÐ° Ñервера." +#. Translators: This is the status of a video upload that is queued +#. waiting for other uploads to complete #: cms/static/js/models/active_video_upload.js msgid "Queued" msgstr "Ожидание" +#. Translators: This is the status of a video upload that has +#. completed successfully #: cms/static/js/models/active_video_upload.js msgid "Upload completed" msgstr "Загрузка завершена" +#. Translators: This is the status of a video upload that has failed #: cms/static/js/models/active_video_upload.js msgid "Upload failed" msgstr "Загрузка не удалаÑÑŒ" @@ -6250,7 +6194,6 @@ msgstr "Произошла ошибка Ñ Ð²Ð°ÑˆÐ¸Ð¼ ÑкÑпортом" #. Translators: 'count' is number of groups that the group #. configuration contains. -#. */ #: cms/static/js/views/group_configuration_details.js msgid "Contains {count} group" msgid_plural "Contains {count} groups" @@ -6266,10 +6209,8 @@ msgstr "Ðе иÑпользуетÑÑ" #. Translators: 'count' is number of units that the group #. configuration is used in. -#. */ #. Translators: 'count' is number of locations that the group #. configuration is used in. -#. */ #: cms/static/js/views/group_configuration_details.js #: cms/static/js/views/partition_group_details.js msgid "Used in {count} location" @@ -6279,6 +6220,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. Translators: this refers to a collection of groups. #: cms/static/js/views/group_configuration_item.js #: cms/static/js/views/group_configurations_list.js msgid "group configuration" @@ -6363,10 +6305,12 @@ msgid "" " Derivatives\"." msgstr "" +#. Translators: "item_display_name" is the name of the item to be deleted. #: cms/static/js/views/list_item.js msgid "Delete this %(item_display_name)s?" msgstr "Удалить %(item_display_name)s?" +#. Translators: "item_display_name" is the name of the item to be deleted. #: cms/static/js/views/list_item.js msgid "Deleting this %(item_display_name)s is permanent and cannot be undone." msgstr "Удаление %(item_display_name)s невозможно будет отменить." @@ -6463,6 +6407,7 @@ msgstr "ОÑновное" msgid "Visibility" msgstr "ВидимоÑÑ‚ÑŒ" +#. Translators: "title" is the name of the current component being edited. #: cms/static/js/views/modals/edit_xblock.js msgid "Editing: {title}" msgstr "" @@ -6536,6 +6481,8 @@ msgstr "Структура курÑа" msgid "Date added" msgstr "" +#. Translators: "title" is the name of the current component or unit being +#. edited. #: cms/static/js/views/pages/container.js msgid "Editing access for: %(title)s" msgstr "" @@ -6603,34 +6550,48 @@ msgstr "" msgid "Show Previews" msgstr "" +#. Translators: sample result: +#. "Showing 0-9 out of 25 total, filtered by Images, sorted by Date Added +#. ascending" #: cms/static/js/views/paging_header.js msgid "" "Showing {currentItemRange} out of {totalItemsCount}, filtered by " "{assetType}, sorted by {sortName} ascending" msgstr "" +#. Translators: sample result: +#. "Showing 0-9 out of 25 total, filtered by Images, sorted by Date Added +#. descending" #: cms/static/js/views/paging_header.js msgid "" "Showing {currentItemRange} out of {totalItemsCount}, filtered by " "{assetType}, sorted by {sortName} descending" msgstr "" +#. Translators: sample result: +#. "Showing 0-9 out of 25 total, sorted by Date Added ascending" #: cms/static/js/views/paging_header.js msgid "" "Showing {currentItemRange} out of {totalItemsCount}, sorted by {sortName} " "ascending" msgstr "" +#. Translators: sample result: +#. "Showing 0-9 out of 25 total, sorted by Date Added descending" #: cms/static/js/views/paging_header.js msgid "" "Showing {currentItemRange} out of {totalItemsCount}, sorted by {sortName} " "descending" msgstr "" +#. Translators: turns into "25 total" to be used in other sentences, e.g. +#. "Showing 0-9 out of 25 total". #: cms/static/js/views/paging_header.js msgid "{totalItems} total" msgstr "" +#. Translators: This refers to a content group that can be linked to a student +#. cohort. #: cms/static/js/views/partition_group_item.js #: cms/static/js/views/partition_group_list.js msgid "content group" @@ -6911,6 +6872,7 @@ msgstr "" msgid "Edit Thumbnail" msgstr "" +#. Translators: This is a 2 part text which tells the image requirements. #: cms/static/js/views/video_thumbnail.js msgid "" "{InstructionsSpanStart}{videoImageResoultion}{lineBreak} " @@ -6921,24 +6883,30 @@ msgstr "" msgid "Image upload failed" msgstr "" +#. Translators: This is a 3 part text which tells the image requirements. #: cms/static/js/views/video_thumbnail.js msgid "" "{ReqTextSpanStart}Requirements{spanEnd}{lineBreak}{InstructionsSpanStart}{videoImageResoultion}{lineBreak}" " {videoImageSupportedFileFormats}{spanEnd}" msgstr "" +#. Translators: message will be like 1280x720 pixels #: cms/static/js/views/video_thumbnail.js msgid "{maxWidth}x{maxHeight} pixels" msgstr "" +#. Translators: message will be like Thumbnail for Arrow.mp4 #: cms/static/js/views/video_thumbnail.js msgid "Thumbnail for {videoName}" msgstr "" +#. Translators: message will be like Add Thumbnail - Arrow.mp4 #: cms/static/js/views/video_thumbnail.js msgid "Add Thumbnail - {videoName}" msgstr "" +#. Translators: humanizeDuration will be like 10 minutes, an hour and 20 +#. minutes etc #: cms/static/js/views/video_thumbnail.js msgid "Video duration is {humanizeDuration}" msgstr "" @@ -6951,6 +6919,7 @@ msgstr "минут" msgid "minute" msgstr "" +#. Translators: message will be like 15 minutes, 1 minute #: cms/static/js/views/video_thumbnail.js msgid "{minutes} {unit}" msgstr "" @@ -6963,10 +6932,13 @@ msgstr "" msgid "second" msgstr "" +#. Translators: message will be like 20 seconds, 1 second #: cms/static/js/views/video_thumbnail.js msgid "{seconds} {unit}" msgstr "" +#. Translators: `and` will be used to combine both miuntes and seconds like +#. `13 minutes and 45 seconds` #: cms/static/js/views/video_thumbnail.js msgid " and " msgstr "» и «" @@ -6985,10 +6957,12 @@ msgid "" "{supportedFileFormats}." msgstr "" +#. Translators: maxFileSizeInMB will be like 2 MB. #: cms/static/js/views/video_thumbnail.js msgid "The selected image must be smaller than {maxFileSizeInMB}." msgstr "" +#. Translators: minFileSizeInKB will be like 2 KB. #: cms/static/js/views/video_thumbnail.js msgid "The selected image must be larger than {minFileSizeInKB}." msgstr "" @@ -7042,6 +7016,9 @@ msgstr "ÐаÑтройки" msgid "New {component_type}" msgstr "" +#. Translators: This message will be added to the front of messages of type +#. warning, +#. e.g. "Warning: this component has not been configured yet". #: cms/static/js/views/xblock_validation.js msgid "Warning" msgstr "" @@ -7050,6 +7027,30 @@ msgstr "" msgid "Updating Tags" msgstr "Обновление тегов" +#: lms/static/js/student_account/views/account_settings_view.js +msgid "Account Information" +msgstr "Ð˜Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð¾Ð± учётной запиÑи" + +#: lms/static/js/student_account/views/account_settings_view.js +msgid "Order History" +msgstr "ИÑÑ‚Ð¾Ñ€Ð¸Ñ Ð·Ð°ÐºÐ°Ð·Ð¾Ð²" + +#: lms/static/js/student_account/views/account_settings_view.js +msgid "" +"You have set your language to {beta_language}, which is currently not fully " +"translated. You can help us translate this language fully by joining the " +"Transifex community and adding translations from English for learners that " +"speak {beta_language}." +msgstr "" +"Ð’Ñ‹ уÑтановили Ð´Ð»Ñ Ñзыка значение {beta_language}, которое в наÑтоÑщее Ð²Ñ€ÐµÐ¼Ñ " +"не полноÑтью переведено. Ð’Ñ‹ можете помочь нам полноÑтью перевеÑти Ñтот Ñзык," +" приÑоединившиÑÑŒ к ÑообщеÑтву Transifex и добавив переводы Ñ Ð°Ð½Ð³Ð»Ð¸Ð¹Ñкого " +"Ñзыка Ð´Ð»Ñ Ñ‚ÐµÑ…, кто говорит на {beta_language}." + +#: lms/static/js/student_account/views/account_settings_view.js +msgid "Help Translate into {beta_language}" +msgstr "Помощь в переводе {beta_language}" + #: cms/templates/js/asset-library.underscore #: cms/templates/js/basic-modal.underscore #: lms/templates/instructor/instructor_dashboard_2/enrollment-code-lookup-links.underscore @@ -7892,6 +7893,10 @@ msgstr "Подтвердить" msgid "Mark Exam As Completed" msgstr "Отметить Ñкзамен, как завершённый" +#: lms/templates/courseware/proctored-exam-status.underscore +msgid "You are taking \"{exam_link}\" as {exam_type}. " +msgstr "" + #: lms/templates/courseware/proctored-exam-status.underscore msgid "a timed exam" msgstr "" @@ -8670,6 +8675,11 @@ msgstr "Произошла ошибка. Перезагрузите Ñтрани msgid "Need help logging in?" msgstr "" +#: lms/templates/student_account/hinted_login.underscore +#: lms/templates/student_account/login.underscore +msgid "Sign in" +msgstr "Вход" + #: lms/templates/student_account/hinted_login.underscore #, python-format msgid "Would you like to sign in using your %(providerName)s credentials?" @@ -8703,8 +8713,9 @@ msgstr "" "ЗарегиÑтрироватьÑÑ, иÑÐ¿Ð¾Ð»ÑŒÐ·ÑƒÑ Ð»Ð¾Ð³Ð¸Ð½ и пароль ÑÐ»ÑƒÑˆÐ°Ñ‚ÐµÐ»Ñ Ð¸Ð»Ð¸ преподавателÑ" #: lms/templates/student_account/institution_register.underscore -msgid "Register through edX" -msgstr "ЗарегиÑтрироватьÑÑ Ñ‡ÐµÑ€ÐµÐ· edX" +#: lms/templates/student_account/register.underscore +msgid "Create an Account" +msgstr "Создать учётную запиÑÑŒ" #: lms/templates/student_account/login.underscore msgid "First time here?" @@ -8812,10 +8823,6 @@ msgstr "Создать учётную запиÑÑŒ в %(providerName)s." msgid "or create a new one here" msgstr "или Ñоздать новую в Ñтом ÑервиÑе" -#: lms/templates/student_account/register.underscore -msgid "Create an Account" -msgstr "Создать учётную запиÑÑŒ" - #: lms/templates/student_account/register.underscore msgid "Support education research by providing additional information" msgstr "" @@ -10725,10 +10732,6 @@ msgstr "" msgid "PDF Chapters" msgstr "" -#: cms/templates/js/show-textbook.underscore -msgid "View Live" -msgstr "ПроÑмотр курÑа" - #: cms/templates/js/signatory-details.underscore #: cms/templates/js/signatory-editor.underscore msgid "Signatory" diff --git a/conf/locale/sk/LC_MESSAGES/django.mo b/conf/locale/sk/LC_MESSAGES/django.mo index 4abd3f284623b6aeccf1723a4dc2180a53194704..03ba420f512f05035f744ab723eebe7f84d72899 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/djangojs.mo b/conf/locale/sk/LC_MESSAGES/djangojs.mo index 2220d3dee446fd6dc5f4480f8c1948dfcae42709..04cbf2ff963630bc0b6840513ee6e3b412a88cf2 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/sw_KE/LC_MESSAGES/django.mo b/conf/locale/sw_KE/LC_MESSAGES/django.mo index c2b8d71b9596281197f6ab984fd2b62a7d74de92..b5de28bfd87947feadfd2dc660fed5be7227d021 100644 Binary files a/conf/locale/sw_KE/LC_MESSAGES/django.mo and b/conf/locale/sw_KE/LC_MESSAGES/django.mo differ diff --git a/conf/locale/sw_KE/LC_MESSAGES/django.po b/conf/locale/sw_KE/LC_MESSAGES/django.po index 95cf9c406e634cab113fab9aaa5161bb74965578..6ba505c679790bff5f7e3a6f2ef5fdd71384840f 100644 --- a/conf/locale/sw_KE/LC_MESSAGES/django.po +++ b/conf/locale/sw_KE/LC_MESSAGES/django.po @@ -41,6 +41,7 @@ # JOHN MASANDA <translations_6@camara.ie>, 2017 # Mathieu Lacasse <mathieulacasse@camara.org>, 2017,2019 # Mikias Ephrem <mikiasephrem@camara.org>, 2019 +# Muhammad Adeel Khan <adeel@edx.org>, 2019 # Nasry Uronu <translations_4@camara.ie>, 2017 # Said Mlima <saidmohamedmlima@camara.ie>, 2017 # swaleh amin <mkupuofirstnameswaleh@yahoo.com>, 2016 @@ -57,6 +58,7 @@ # Isihaka Issa <translations_8@camara.ie>, 2017 # JOHN MASANDA <translations_6@camara.ie>, 2017 # Mathieu Lacasse <mathieulacasse@camara.org>, 2017 +# Muhammad Adeel Khan <adeel@edx.org>, 2019 # Nasry Uronu <translations_4@camara.ie>, 2017 # swaleh amin <mkupuofirstnameswaleh@yahoo.com>, 2016 # swalehe manture <translations_3@camara.ie>, 2017 @@ -83,7 +85,7 @@ msgid "" msgstr "" "Project-Id-Version: 0.1a\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2019-04-22 10:50+0000\n" +"POT-Creation-Date: 2019-06-09 20:42+0000\n" "PO-Revision-Date: 2019-01-20 20:43+0000\n" "Last-Translator: Waheed Ahmed <waheed@edx.org>, 2019\n" "Language-Team: Swahili (Kenya) (https://www.transifex.com/open-edx/teams/6205/sw_KE/)\n" @@ -407,28 +409,6 @@ msgstr "Kiasi batili kimechaguliwa." msgid "No selected price or selected price is too low." msgstr "Hakuna bei iliyochaguliwa au bei iliyochaguliwa ni ndogo sana." -#: common/djangoapps/django_comment_common/models.py -msgid "Administrator" -msgstr "Msimamizi/Mtawala" - -#: common/djangoapps/django_comment_common/models.py -msgid "Moderator" -msgstr "Msimamizi" - -#: common/djangoapps/django_comment_common/models.py -msgid "Group Moderator" -msgstr "" - -#: common/djangoapps/django_comment_common/models.py -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Community TA" -msgstr "Jamii TA" - -#: common/djangoapps/django_comment_common/models.py -#: lms/djangoapps/instructor/paidcourse_enrollment_report.py -msgid "Student" -msgstr "Mwanafunzi" - #: common/djangoapps/student/admin.py msgid "User profile" msgstr "Wasifu wa Mtumiaji" @@ -490,8 +470,8 @@ msgid "A properly formatted e-mail is required" msgstr "Anwani ya barua pepe iliyo na mfumo sahihi inahitajika" #: common/djangoapps/student/forms.py -msgid "Your legal name must be a minimum of two characters long" -msgstr "Jina lako halali kwa uchache liwe na urefu wa herufi mbili " +msgid "Your legal name must be a minimum of one character long" +msgstr "" #: common/djangoapps/student/forms.py #, python-format @@ -882,11 +862,11 @@ msgstr "Kozi unayoitafuta usajili umefungwa tangu {date}." #: common/djangoapps/student/views/management.py msgid "No inactive user with this e-mail exists" -msgstr "Hakuna mtumiaji asiye hai mwenye hii \"barua pepe\" anayeonekana" +msgstr "" #: common/djangoapps/student/views/management.py msgid "Unable to send reactivation email" -msgstr "Imeshindikana kutuma \"barua pepe\" ya kuwezesha tena" +msgstr "" #: common/djangoapps/student/views/management.py msgid "Course id not specified" @@ -1033,6 +1013,12 @@ msgid "" "\"Institution\" login providers." msgstr "" +#: common/djangoapps/third_party_auth/models.py +msgid "" +"optional. If this provider is an Organization, this attribute can be used " +"reference users in that Organization" +msgstr "" + #: common/djangoapps/third_party_auth/models.py msgid "The Site that this provider configuration belongs to." msgstr "Tovuti ambayo mgavi wa usanidi huu anaimiliki." @@ -2822,13 +2808,13 @@ msgstr "Upangaji Mada ya Majadiliano" msgid "" "Enter discussion categories in the following format: \"CategoryName\": " "{\"id\": \"i4x-InstitutionName-CourseNumber-course-CourseRun\"}. For " -"example, one discussion category may be \"Lydian Mode\": {\"id\": \"i4x-" -"UniversityX-MUS101-course-2015_T1\"}. The \"id\" value for each category " -"must be unique. In \"id\" values, the only special characters that are " -"supported are underscore, hyphen, and period. You can also specify a " +"example, one discussion category may be \"Lydian Mode\": {\"id\": " +"\"i4x-UniversityX-MUS101-course-2015_T1\"}. The \"id\" value for each " +"category must be unique. In \"id\" values, the only special characters that " +"are supported are underscore, hyphen, and period. You can also specify a " "category as the default for new posts in the Discussion page by setting its " -"\"default\" attribute to true. For example, \"Lydian Mode\": {\"id\": \"i4x-" -"UniversityX-MUS101-course-2015_T1\", \"default\": true}." +"\"default\" attribute to true. For example, \"Lydian Mode\": {\"id\": " +"\"i4x-UniversityX-MUS101-course-2015_T1\", \"default\": true}." msgstr "" #: common/lib/xmodule/xmodule/course_module.py @@ -4978,13 +4964,13 @@ msgstr "" msgid "Take free online courses at edX.org" msgstr "" -#. Translators: 'EdX', 'edX', and 'Open edX' are trademarks of 'edX Inc.'. +#. Translators: 'edX' and 'Open edX' are trademarks of 'edX Inc.'. #. Please do not translate any of these trademarks and company names. #: lms/djangoapps/branding/api.py #, python-brace-format msgid "" -"© {org_name}. All rights reserved except where noted. EdX, Open edX and " -"their respective logos are trademarks or registered trademarks of edX Inc." +"© {org_name}. All rights reserved except where noted. edX, Open edX and " +"their respective logos are registered trademarks of edX Inc." msgstr "" #. Translators: 'Open edX' is a brand, please keep this untranslated. See @@ -6055,6 +6041,18 @@ msgstr "Cheti chako kinapatikana" msgid "To see course content, {sign_in_link} or {register_link}." msgstr "" +#: lms/djangoapps/courseware/views/views.py +#: openedx/features/course_experience/views/course_home_messages.py +#, python-brace-format +msgid "{sign_in_link} or {register_link}." +msgstr "" + +#: lms/templates/header/navbar-not-authenticated.html +#: lms/templates/navigation/navbar-not-authenticated.html +#: themes/edx.org/lms/templates/header/navbar-not-authenticated.html +msgid "Sign in" +msgstr "Ingia mtandaoni " + #: lms/djangoapps/courseware/views/views.py #, python-brace-format msgid "" @@ -6165,7 +6163,7 @@ msgstr "" #: lms/djangoapps/dashboard/git_import.py msgid "" "Non usable git url provided. Expecting something like: " -"git@github.com:mitocw/edx4edx_lite.git" +"git@github.com:edx/edx4edx_lite.git" msgstr "" #: lms/djangoapps/dashboard/git_import.py @@ -6346,47 +6344,47 @@ msgstr "jukumu" msgid "full_name" msgstr "jina_kamili" -#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.html -#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.txt -#, python-format -msgid "%(comment_username)s replied to <b>%(thread_title)s</b>:" -msgstr "" - -#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.html -#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.txt -msgid "View discussion" -msgstr "" - -#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/subject.txt -#, python-format -msgid "Response to %(thread_title)s" -msgstr "" - -#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/discussion/django_comment_client/base/views.py msgid "Title can't be empty" msgstr "Kichwa hakiwezi kuachwa wazi" -#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/discussion/django_comment_client/base/views.py msgid "Body can't be empty" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/discussion/django_comment_client/base/views.py msgid "Topic doesn't exist" msgstr "Mada haipo" -#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/discussion/django_comment_client/base/views.py msgid "Comment level too deep" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/discussion/django_comment_client/base/views.py msgid "" "Error uploading file. Please contact the site administrator. Thank you." msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/discussion/django_comment_client/base/views.py msgid "Good" msgstr "Vizuri" +#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.html +#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.txt +#, python-format +msgid "%(comment_username)s replied to <b>%(thread_title)s</b>:" +msgstr "" + +#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.html +#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.txt +msgid "View discussion" +msgstr "" + +#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/subject.txt +#, python-format +msgid "Response to %(thread_title)s" +msgstr "" + #: lms/djangoapps/edxnotes/helpers.py msgid "EdxNotes Service is unavailable. Please try again in a few minutes." msgstr "" @@ -6509,6 +6507,11 @@ msgstr "" msgid "Course Staff" msgstr "Walimu wa Kozi" +#: lms/djangoapps/instructor/paidcourse_enrollment_report.py +#: openedx/core/djangoapps/django_comment_common/models.py +msgid "Student" +msgstr "Mwanafunzi" + #: lms/templates/preview_menu.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Staff" @@ -7292,10 +7295,6 @@ msgstr "" msgid "An extended due date must be later than the original due date." msgstr "" -#: lms/djangoapps/instructor/views/tools.py -msgid "No due date extension is set for that student and unit." -msgstr "" - #. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# #. Translators: This label appears above a field on the registration form #. meant to hold the user's full name. @@ -7737,6 +7736,10 @@ msgstr "" msgid "My Notes" msgstr "Nukuu Zangu" +#: lms/djangoapps/program_enrollments/models.py +msgid "One of user or external_user_key must not be null." +msgstr "" + #: lms/djangoapps/shoppingcart/models.py msgid "Order Payment Confirmation" msgstr "" @@ -8756,8 +8759,8 @@ msgstr "Hakuna wasifu wa mtumiaji " #: lms/djangoapps/verify_student/views.py #, python-brace-format -msgid "Name must be at least {min_length} characters long." -msgstr "Jina lazima liwe japo na urefu wa herufi {min_length}." +msgid "Name must be at least {min_length} character long." +msgstr "" #: lms/djangoapps/verify_student/views.py msgid "Image data is not valid." @@ -9190,8 +9193,9 @@ msgid "Hello %(full_name)s," msgstr "" #: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt #, python-format -msgid "Your %(platform_name)s ID verification has expired.\" " +msgid "Your %(platform_name)s ID verification has expired. " msgstr "" #: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html @@ -9242,11 +9246,6 @@ msgstr "" msgid "Hello %(full_name)s, " msgstr "" -#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt -#, python-format -msgid "Your %(platform_name)s ID verification has expired. " -msgstr "" - #: lms/templates/verify_student/edx_ace/verificationexpiry/email/subject.txt #, python-format msgid "Your %(platform_name)s Verification has Expired" @@ -9808,15 +9807,6 @@ msgstr "URL ya tovuti ihusianayo na mtumiaji wa API hii. " msgid "The reason this user wants to access the API." msgstr "Sababu ya 'mtumiaji' kuhitaji kutumia API." -#: openedx/core/djangoapps/api_admin/models.py -#, python-brace-format -msgid "API access request from {company}" -msgstr "Ombi la kutumia API kutoka kwa {company} " - -#: openedx/core/djangoapps/api_admin/models.py -msgid "API access request" -msgstr "Ombi la kutumia API" - #: openedx/core/djangoapps/api_admin/widgets.py #, python-brace-format msgid "" @@ -10152,6 +10142,23 @@ msgstr "" msgid "This is a test error" msgstr "" +#: openedx/core/djangoapps/django_comment_common/models.py +msgid "Administrator" +msgstr "Msimamizi/Mtawala" + +#: openedx/core/djangoapps/django_comment_common/models.py +msgid "Moderator" +msgstr "Msimamizi" + +#: openedx/core/djangoapps/django_comment_common/models.py +msgid "Group Moderator" +msgstr "" + +#: openedx/core/djangoapps/django_comment_common/models.py +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Community TA" +msgstr "Jamii TA" + #: openedx/core/djangoapps/embargo/forms.py #: openedx/core/djangoapps/verified_track_content/forms.py msgid "COURSE NOT FOUND. Please check that the course ID is valid." @@ -10717,8 +10724,11 @@ msgid "Specialty" msgstr "" #: openedx/core/djangoapps/user_api/accounts/utils.py +#, python-brace-format msgid "" -" Make sure that you are providing a valid username or a URL that contains \"" +"Make sure that you are providing a valid username or a URL that contains " +"\"{url_stub}\". To remove the link from your edX profile, leave this field " +"blank." msgstr "" #: openedx/core/djangoapps/user_api/accounts/views.py @@ -10861,11 +10871,11 @@ msgstr "Lazima ukubaliane na {platform_name} {terms_of_service}." #: openedx/core/djangoapps/user_api/api.py #, python-brace-format msgid "" -"By creating an account with {platform_name}, you agree to " -"abide by our {platform_name} " +"By creating an account, you agree to the " "{terms_of_service_link_start}{terms_of_service}{terms_of_service_link_end}" -" and agree to our {privacy_policy_link_start}Privacy " -"Policy{privacy_policy_link_end}." +" and you acknowledge that {platform_name} and each Member " +"process your personal data in accordance with the " +"{privacy_policy_link_start}Privacy Policy{privacy_policy_link_end}." msgstr "" #. Translators: "Terms of service" is a legal document users must agree to @@ -11310,17 +11320,18 @@ msgstr "Ukimilishaji" msgid "Reviews" msgstr "Mapitio" +#: openedx/features/course_experience/utils.py +#, no-python-format, python-brace-format +msgid "" +"{banner_open}{percentage}% off your first upgrade.{span_close} Discount " +"automatically applied.{div_close}" +msgstr "" + #: openedx/features/course_experience/views/course_home_messages.py #, python-brace-format msgid "{sign_in_link} or {register_link} and then enroll in this course." msgstr "" -#: lms/templates/header/navbar-not-authenticated.html -#: lms/templates/navigation/navbar-not-authenticated.html -#: themes/edx.org/lms/templates/header/navbar-not-authenticated.html -msgid "Sign in" -msgstr "Ingia mtandaoni " - #: openedx/features/course_experience/views/course_home_messages.py #, python-brace-format msgid "Welcome to {course_display_name}" @@ -11360,6 +11371,29 @@ msgstr "" msgid "Set goal to: {goal_text}" msgstr "" +#: openedx/features/discounts/admin.py +msgid "" +"These define the context to disable lms-controlled discounts on. If no " +"values are set, then the configuration applies globally. If a single value " +"is set, then the configuration applies to all courses within that context. " +"At most one value can be set at a time.<br>If multiple contexts apply to a " +"course (for example, if configuration is specified for the course " +"specifically, and for the org that the course is in, then the more specific " +"context overrides the more general context." +msgstr "" + +#: openedx/features/discounts/admin.py +msgid "" +"If any of these values is left empty or \"Unknown\", then their value at " +"runtime will be retrieved from the next most specific context that applies. " +"For example, if \"Disabled\" is left as \"Unknown\" in the course context, " +"then that course will be Disabled only if the org that it is in is Disabled." +msgstr "" + +#: openedx/features/discounts/models.py +msgid "Disabled" +msgstr "" + #: openedx/features/enterprise_support/api.py #, python-brace-format msgid "Enrollment in {course_title} was not complete." @@ -11471,10 +11505,8 @@ msgstr "" #: cms/djangoapps/contentstore/git_export_utils.py msgid "" "Non writable git url provided. Expecting something like: " -"git@github.com:mitocw/edx4edx_lite.git" +"git@github.com:edx/edx4edx_lite.git" msgstr "" -"KIRASA kilichotolewa cha Git isiyo andikika. Kutarajia kitu kama: " -"git@github.com:mitocw/edx4edx_lite.git" #: cms/djangoapps/contentstore/git_export_utils.py msgid "" @@ -12324,6 +12356,15 @@ msgstr "Tegesha upya" msgid "Legal" msgstr "Halali" +#. Translators: 'edX' and 'Open edX' are trademarks of 'edX Inc.'. Please do +#. not translate any of these trademarks and company names. +#: cms/templates/widgets/footer.html +#: themes/red-theme/lms/templates/footer.html +msgid "" +"edX, Open edX, and the edX and Open edX logos are registered trademarks of " +"{link_start}edX Inc.{link_end}" +msgstr "" + #: cms/templates/widgets/header.html lms/templates/header/header.html #: lms/templates/navigation/navigation.html #: lms/templates/widgets/footer-language-selector.html @@ -12712,6 +12753,10 @@ msgstr "Tafuta na ondoa kasoro:" msgid "External Authentication failed" msgstr "Uthibitisho wa nje haukufaulu" +#: lms/templates/footer.html +msgid "organization logo" +msgstr "" + #: lms/templates/forgot_password_modal.html msgid "" "Please enter your e-mail address below, and we will e-mail instructions for " @@ -12926,18 +12971,15 @@ msgstr "" msgid "Search for a course" msgstr "Tafuta \"kozi\"" -#. Translators: 'Open edX' is a registered trademark, please keep this -#. untranslated. See http://open.edx.org for more information. -#: lms/templates/index_overlay.html -msgid "Welcome to the Open edX{registered_trademark} platform!" -msgstr "Karibu kwenye jukwaa huru la edX {registered_trademark}!" +#: lms/templates/index_overlay.html lms/templates/register-sidebar.html +msgid "Welcome to {platform_name}" +msgstr "Karibu kwenye {platform_name}" #. Translators: 'Open edX' is a registered trademark, please keep this #. untranslated. See http://open.edx.org for more information. #: lms/templates/index_overlay.html -msgid "It works! This is the default homepage for this Open edX instance." +msgid "It works! Powered by Open edX{registered_trademark}" msgstr "" -"Iko sawa! Huu ndio ukurasa halisi wa mwanzo wa tovuti 'hii' ya Open edX." #: lms/templates/invalid_email_key.html msgid "Invalid email change key" @@ -13242,6 +13284,10 @@ msgstr "Hifadhi majibu yako" msgid "Reset your answer" msgstr "Futa/Ondoa majibu yako" +#: lms/templates/problem.html +msgid "Answers are displayed within the problem" +msgstr "" + #: lms/templates/problem_notifications.html msgid "Next Hint" msgstr "Dondoo zifuatazo" @@ -13443,10 +13489,6 @@ msgstr "Tayari Umesajiliwa?" msgid "Log in" msgstr "Ingia mtandaoni" -#: lms/templates/register-sidebar.html -msgid "Welcome to {platform_name}" -msgstr "Karibu kwenye {platform_name}" - #: lms/templates/register-sidebar.html msgid "" "Registering with {platform_name} gives you access to all of our current and " @@ -13811,11 +13853,6 @@ msgstr "Kitambulisho cha Kozi au dir" msgid "Delete course from site" msgstr "Futa 'kozi' kutoka kwenye tovuti" -#. Translators: A version number appears after this string -#: lms/templates/sysadmin_dashboard.html -msgid "Platform Version" -msgstr "Tafsiri ya Jukwaa" - #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Page {current_page} of {total_pages}" msgstr "Ukurasa {current_page} wa {total_pages}" @@ -14487,7 +14524,7 @@ msgstr "" "{platform_name} AU YOYOTE KATI YA {platform_name} WAHUSIKA ATAKUWA NA " "DHAMANA KWA YATOKEYAYO, SIO KWA DHAHIRI, KUPONEA, MAALUM, KIMFANO AU " "KIBAHATI MBAYA YA HASARA, IKIWA IMEWEZA KUONEKANA KABLA AU ISO ONEKANA NA " -"IKIWA AU ISWE {platform_name} AU AU YOYOTE YA {platform-name} WAHUSIKA " +"IKIWA AU ISWE {platform_name} AU AU YOYOTE YA {platform_name} WAHUSIKA " "ALIEPUUZA AU KIVYOVYOTE KUKOSEA (PAMOJA, LAKINI BILA VIKOMO KWA, MALALAMISHI" " YA UHARIBIFU WA JINA, HITLAFU, UPOTEZAJI WA FAIDA, UPOTEZAJI WA TAKWIMU AU " "KWA UINGILIAJI KATI KATIKA UPATAJI WA TAKWIMU)" @@ -14692,8 +14729,8 @@ msgid "" " Students{guide_link_end}." msgstr "" "Kwa habari za utondoti, tizama {math_link_start}Uingizaji wa Maelezo ya " -"Kihesabu na Sayansi{math_link_end} katika {guide_link_started} Muongozo wa " -"edX kwa wanafunzi{guide_link_end}." +"Kihesabu na Sayansi{math_link_end} katika {guide_link_start} Muongozo wa edX" +" kwa wanafunzi{guide_link_end}." #: lms/templates/calculator/toggle_calculator.html msgid "Tips" @@ -15206,6 +15243,20 @@ msgstr "Upakiaji wa maelezo ya uagizishaji" msgid "Please wait while we retrieve your order details." msgstr "Tafadhali subiri tukiwa tunarudisha uagizaji wako." +#: lms/templates/course_modes/_upgrade_button.html +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/_upgrade_button.html +#: themes/edx.org/lms/templates/course_modes/choose.html +msgid "Pursue the Verified Track" +msgstr "" + +#: lms/templates/course_modes/_upgrade_button.html +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/_upgrade_button.html +#: themes/edx.org/lms/templates/course_modes/choose.html +msgid "Pursue a Verified Certificate" +msgstr "Tafuta Cheti Kilichothibitishwa" + #: lms/templates/course_modes/choose.html #: themes/edx.org/lms/templates/course_modes/choose.html msgid "Enroll In {course_name} | Choose Your Track" @@ -15296,16 +15347,6 @@ msgstr "" "{b_start}Ni rahisi kuituma kwa wengine:{b_end} Weka cheti katika CV yako au " "anza tena, au chapisha makala moja kwa moja kwenye Linkedln" -#: lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -msgid "Pursue a Verified Certificate" -msgstr "Tafuta Cheti Kilichothibitishwa" - -#: lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -msgid "Pursue the Verified Track" -msgstr "" - #: lms/templates/course_modes/choose.html #: themes/edx.org/lms/templates/course_modes/choose.html msgid "" @@ -15426,6 +15467,10 @@ msgstr "Maudhui haya yamepangwa kwenye madaraja" msgid "An error occurred. Please try again later." msgstr "Hitilafu imetokea. Tafadhali jaribu tena baadae." +#: lms/templates/courseware/course_about.html +msgid "An error has occurred. Please ensure that you are logged in to enroll." +msgstr "" + #: lms/templates/courseware/course_about.html msgid "You are enrolled in this course" msgstr "Umesajiliwa katika kozi hii" @@ -15568,7 +15613,6 @@ msgstr "Rekebisha Utafutaji Wako" #: lms/templates/courseware/courseware-chromeless.html #: lms/templates/courseware/courseware.html #: openedx/features/course_bookmarks/templates/course_bookmarks/course-bookmarks.html -#: openedx/features/learner_analytics/templates/learner_analytics/dashboard.html msgid "{course_number} Courseware" msgstr "{course_number} Maudhui ya kozi" @@ -15600,7 +15644,7 @@ msgstr "" #: lms/templates/courseware/courseware.html msgid "Your score is {current_score}%. You have passed the entrance exam." -msgstr "Alama ulizopata ni %{current-score}. Umefaulu mtihani wa kujiunga." +msgstr "Alama ulizopata ni %{current_score}. Umefaulu mtihani wa kujiunga." #: lms/templates/courseware/gradebook.html msgid "Gradebook" @@ -15799,8 +15843,8 @@ msgid "View Grading in studio" msgstr "Tizama Utoaji Daraja katika studio" #: lms/templates/courseware/progress.html -msgid "Course Progress for Student '{username}' ({email})" -msgstr "Maendeleo ya Kozi kwa Mwanafunzi '{username}' ({email})" +msgid "Course Progress for '{username}' ({email})" +msgstr "" #: lms/templates/courseware/progress.html msgid "View Certificate" @@ -16044,10 +16088,10 @@ msgid "" " know by contacting {email}." msgstr "" "Cheti {cert_name_long} kimezuiwa kusubiri uhakikishaji kuwa utoaji wa " -"{cert_name_long} una kubaliana na vikwazo vikali vya MAREKANI dhidi ya Iran," -" Cuba, Syria na Sudan. Kama unaona mpagilio wetu umekutambua wewe kwa makosa" -" kuwa na uhusiano na moja ya hizo nchi, tafadhali tujulishe kwa kuwasiliana " -"na {email}." +"{cert_name_short} una kubaliana na vikwazo vikali vya MAREKANI dhidi ya " +"Iran, Cuba, Syria na Sudan. Kama unaona mpagilio wetu umekutambua wewe kwa " +"makosa kuwa na uhusiano na moja ya hizo nchi, tafadhali tujulishe kwa " +"kuwasiliana na {email}." #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "" @@ -16071,7 +16115,7 @@ msgstr "Kiungo-wavuti hiki kitafungua tovuti ya kukuonesha cheti" #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "View {cert_name_short}" -msgstr "Angalia {sert_name_short}" +msgstr "Angalia {cert_name_short}" #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "This link will open/download a PDF document" @@ -16083,7 +16127,7 @@ msgstr "Pakua {cert_name_short} (PDF)" #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "Download Your {cert_name_short} (PDF)" -msgstr "Pakua {cert_name-short} (PDF) yako" +msgstr "Pakua {cert_name_short} (PDF) yako" #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "" @@ -16322,7 +16366,7 @@ msgid "" "{cert_name_long}{link_end}." msgstr "" "Ni rasmi. Ni rahisi kushirikiana. Ni kichochezi kilichothibitishwa kumaliza " -"kozi. {link_break}{link_start}JIfunze mengi kuhusu " +"kozi. {line_break}{link_start}JIfunze mengi kuhusu " "{cert_name_long}iliothibitishwa{link_end}." #. Translators: provider_name is the name of a credit provider or university @@ -16394,7 +16438,7 @@ msgid "" "information, contact {link_to_provider_site} directly." msgstr "" "{provider_name} haikuidhinisha ombi lako la mkopo wa kozi. Kwa habari zaidi," -" wasiliana na {link_to_provider-site} moja kwa moja." +" wasiliana na {link_to_provider_site} moja kwa moja." #: lms/templates/dashboard/_dashboard_credit_info.html msgid "" @@ -16754,34 +16798,26 @@ msgid "" "engaging, high-quality {platform_name} courses. Note that you will not be " "able to log back into your account until you have activated it." msgstr "" -"Tayari umefika! Tumia kiungo wavuti kuamsha akaunti yako ili uweze kuzipata " -"kozi shirikishi na zenye ubora kwenye {platform_name}. Kumbuka kwamba " -"hautaweza kuingia mtandaoni tena kwenye akaunti yako mpaka uiamshe tena." #: lms/templates/emails/activation_email.txt msgid "Enjoy learning with {platform_name}." -msgstr "Furahia kujifunza kwenye {platform_name}." +msgstr "" #: lms/templates/emails/activation_email.txt msgid "" "If you need help, please use our web form at {support_url} or email " "{support_email}." msgstr "" -"Kama unahitaji msaada, tafadhali wasiliana nasi kupitia tovuti yetu " -"{support_url} au tuma barua pepe {support_email}." #: lms/templates/emails/activation_email.txt msgid "" "This email message was automatically sent by {lms_url} because someone " "attempted to create an account on {platform_name} using this email address." msgstr "" -"Ujumbe wa barua pepe hii ulitumwa moja kwa moja na {site_name} kwasababu " -"kuna mtu alijaribu kutengeneza akaunti kwenye{platform_name} kwa kutumia " -"anwani hii ya barua pepe." #: lms/templates/emails/activation_email_subject.txt msgid "Action Required: Activate your {platform_name} account" -msgstr "Hatua muhimu inahitajika: Amsha akaunti yako ya {platform_name} " +msgstr "" #: lms/templates/emails/business_order_confirmation_email.txt msgid "Thank you for your purchase of " @@ -17694,7 +17730,7 @@ msgid "" "View detailed Git import logs for this course {link_start}by clicking " "here{link_end}." msgstr "" -"Angalia tondoti za habari za mapokezi ya Git kwa kozi hii {llink_start}kwa " +"Angalia tondoti za habari za mapokezi ya Git kwa kozi hii {link_start}kwa " "kubonyeza hapa{link_end}. " #: lms/templates/instructor/instructor_dashboard_2/course_info.html @@ -17864,15 +17900,9 @@ msgstr "Ripoti Iliyopo kwa ajili ya Kupakuliwa" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The reports listed below are available for download. A link to every report " -"remains available on this page, identified by the UTC date and time of " -"generation. Reports are not deleted, so you will always be able to access " -"previously generated reports from this page." +"The reports listed below are available for download, identified by UTC date " +"and time of generation." msgstr "" -"Habari zilizo orodheshwa hapo chini zapatikana kwa upakuaji. Kiungo-wavuti " -"cha kila habari kipatikana kwenye ukurasa huu, zikitambuliwa kwa tarehe na " -"wakati wa UTC ya uzalishaji. Habari hazifutwi, kwa hivyo daima utaweza " -"kufikia habari zilizotangulia kuzalishwa kutoka kwenye ukurasa huu. " #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" @@ -17888,13 +17918,13 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"{strong_start}Note{strong_end}: To keep student data secure, you cannot save" -" or email these links for direct access. Copies of links expire within 5 " -"minutes." +"{strong_start}Note{strong_end}: {ul_start}{li_start}To keep student data " +"secure, you cannot save or email these links for direct access. Copies of " +"links expire within 5 minutes.{li_end}{li_start}Report files are deleted 90 " +"days after generation. If you will need access to old reports, download and " +"store the files, in accordance with your institution's data security " +"policies.{li_end}{ul_end}" msgstr "" -"{strong_start}Zingatia{strong_end}: Kuweka taarifa za mwanafunzi salama, " -"huwezi kuhifadhi au kuvituma kwa barua pepe viunganishi hivi ili kuvipata " -"moja kwa moja. Nakala za viunganishi hudumu kwa muda wa dakika 5." #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Enrollment Codes" @@ -18286,15 +18316,11 @@ msgstr "Tarehe za mwisho zilizoongezwa kwa kila mmoja" #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "" -"In this section, you have the ability to grant extensions on specific units " -"to individual students. Please note that the latest date is always taken; " -"you cannot use this tool to make an assignment due earlier for a particular " -"student." +"In this section, you have the ability to grant extensions on specific " +"subsections to individual students. Please note that the latest date is " +"always taken; you cannot use this tool to make an assignment due earlier for" +" a particular student." msgstr "" -"Katika kifungu hiki, una uwezo kuidhinisha uongezaji wa vitengo maalum mpaka" -" kwa wanafunzi. Tafadhali tambua ya kwamba tarehe ya mwisho kawaida ina " -"chukuliwa; huwezi kutumia chombo hiki kufanya kazi iliyotolewa kumalizika " -"mapema kwa mwanafunzi fulani. " #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "" @@ -18308,8 +18334,8 @@ msgid "Student Email or Username" msgstr "Anwani ya Barua pepe au Jinatumishi" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -msgid "Choose the graded unit:" -msgstr "Chagua kitu kilichopewa alama:" +msgid "Choose the graded subsection:" +msgstr "" #. Translators: "format_string" is the string MM/DD/YYYY HH:MM, as that is the #. format the system requires. @@ -18320,6 +18346,10 @@ msgid "" msgstr "" "Taja tarehe na mda iliyoongezwa (in UTC; please specify {format_string})." +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Reason for extension" +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Change due date for student" msgstr "Badilisha tarehe ya mwanafunzi ya kumaliza" @@ -18330,19 +18360,15 @@ msgstr "Kuangalia nyongeza iliyotolewa" #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "" -"Here you can see what extensions have been granted on particular units or " -"for a particular student." +"Here you can see what extensions have been granted on particular subsection " +"or for a particular student." msgstr "" -"Hapa unaweza kuona nyongeza iliyotolewa kwa kila kimoja au kwa kila " -"mwanafunzi." #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "" -"Choose a graded unit and click the button to obtain a list of all students " -"who have extensions for the given unit." +"Choose a graded subsection and click the button to obtain a list of all " +"students who have extensions for the given subsection." msgstr "" -"Chagua fomu na bofya kitufe kupata orodha ya wanafunzi wote waliopata " -"ongezeko kwa kila kitu alichopewa." #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "List all students with due date extensions" @@ -18363,12 +18389,13 @@ msgstr "Kurekebisha ongezeko" #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "" "Resetting a problem's due date rescinds a due date extension for a student " -"on a particular unit. This will revert the due date for the student back to " -"the problem's original due date." +"on a particular subsection. This will revert the due date for the student " +"back to the problem's original due date." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Reason for reset" msgstr "" -"Uwekaji upya wa tarehe ya mwisho ya tatizo una tangua tarehe ya mwisho wa " -"maongezi kwa mwanafunzi kwenye kitengo maalum. Hii itarudisha tarehe ya " -"mwisho kwa mwanafunzi kwa tarehe ya mwisho asili." #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Reset due date for student" @@ -19835,8 +19862,8 @@ msgid "" "{course_names} has been removed because the enrollment period has closed." msgid_plural "" "{course_names} have been removed because the enrollment period has closed." -msgstr[0] "{course-name} imeondolewa kwa sababu muda wa kusajili umefungwa." -msgstr[1] "{course_name} zimeondolewa kwa sababu muda ya kusajili umefungwa." +msgstr[0] "{course_names} imeondolewa kwa sababu muda wa kusajili umefungwa." +msgstr[1] "{course_names} zimeondolewa kwa sababu muda ya kusajili umefungwa." #: lms/templates/shoppingcart/shopping_cart.html msgid "Cover Image" @@ -20217,7 +20244,7 @@ msgstr "Risiti ya {course_name}" #: lms/templates/verify_student/pay_and_verify.html msgid "Verify For {course_name}" -msgstr "Thibitisha Kwa ajili ya {course-name}" +msgstr "Thibitisha Kwa ajili ya {course_name}" #: lms/templates/verify_student/pay_and_verify.html msgid "Enroll In {course_name}" @@ -20236,9 +20263,9 @@ msgid "" msgstr "" "Tafadhali hakikisha kivinjari chako kime sasishwa " "{strong_start}{a_start}kwenye toleo jipya{a_end}{strong_end}. Pia, tafadhali" -" hakikisha webcam{strong_browser}yako imewekwa kwenye umeme, imewashwa, na " +" hakikisha webcam{strong_start}yako imewekwa kwenye umeme, imewashwa, na " "imeruhusiwa kufanya kazi kwenye kivinjari cha wavuti yako (inarekebishika " -"kwenye mitegesho ya kivinjari chako).{strong-end}" +"kwenye mitegesho ya kivinjari chako).{strong_end}" #: lms/templates/verify_student/reverify.html msgid "Re-Verification" @@ -20539,10 +20566,6 @@ msgstr "" msgid "Explore journals and courses" msgstr "" -#: openedx/features/learner_analytics/templates/learner_analytics/dashboard.html -msgid "My Stats (Beta)" -msgstr "" - #. Translators: this section lists all the third-party authentication #. providers #. (for example, Google and LinkedIn) the user can link with or unlink from @@ -20644,7 +20667,7 @@ msgid "© 2012–{year} edX Inc. " msgstr "" #: themes/edx.org/lms/templates/footer.html -msgid "EdX, Open edX, and MicroMasters are registered trademarks of edX Inc. " +msgid "edX, Open edX, and MicroMasters are registered trademarks of edX Inc. " msgstr "" #: themes/edx.org/lms/templates/certificates/_about-accomplishments.html @@ -20710,7 +20733,7 @@ msgstr "" #: themes/edx.org/lms/templates/certificates/_accomplishment-footer.html msgid "" "All rights reserved except where noted. edX, Open edX and the edX and Open " -"edX logos are registered trademarks or trademarks of edX Inc." +"edX logos are registered trademarks of edX Inc." msgstr "" #: themes/edx.org/lms/templates/course_modes/choose.html @@ -20736,17 +20759,6 @@ msgstr "Tafuta Kozi" msgid "Schools & Partners" msgstr "Shule & Wabia" -#. Translators: 'EdX', 'edX', and 'Open edX' are trademarks of 'edX Inc.'. -#. Please do not translate any of these trademarks and company names. -#: themes/red-theme/lms/templates/footer.html -msgid "" -"EdX, Open edX, and the edX and Open edX logos are registered trademarks or " -"trademarks of {link_start}edX Inc.{link_end}" -msgstr "" -"Nembo za EdX, Open edX, na edX na Open edX ni alama za kibiashara zilizo " -"ordheshwa kihalali na serikali au alama za kibiashara za {link_start}edX " -"Inc.{link_end}" - #: themes/red-theme/lms/templates/footer.html msgid "" "{tos_link_start}Terms of Service{tos_link_end} and {honor_link_start}Honor " @@ -20873,8 +20885,8 @@ msgid "" "Go back to the {homepage} or let us know about any pages that may have been " "moved at {email}." msgstr "" -"Rudi nyuma kwenye {ukurasa wa mwanzo} au tujulishe kuhusu ukurasa wowote " -"ambao umewekwa kwenye {email}." +"Rudi nyuma kwenye {homepage} au tujulishe kuhusu ukurasa wowote ambao " +"umewekwa kwenye {email}." #: cms/templates/500.html msgid "{studio_name} Server Error" @@ -21140,7 +21152,7 @@ msgid "" "Click the {strong_start}Edit{strong_end} icon in a component to edit its " "content." msgstr "" -"Bofya {strong_start}Hariri{strong-end} ikoni katika kiambajengo ili uhariri " +"Bofya {strong_start}Hariri{strong_end} ikoni katika kiambajengo ili uhariri " "maudhui yake." #: cms/templates/container.html @@ -23061,10 +23073,10 @@ msgid "" "members, teaching assistants and course staff, and members of instructional " "technology groups." msgstr "" -"{Jina_la studio} ni kwa yoyote anaehitaji kubuni kozi inayotawaliwa " -"mtandaoni inayo enua jukwaa {platform_name} la kilimwengu. Watumiaji wetu " -"aghlabu ni wanafanni, wasaidizi wa kufundisha na wafanya kazi wa kozi, na " -"wanachama wa makundi ya kufundisha taaluma. " +"{studio_name} ni kwa yoyote anaehitaji kubuni kozi inayotawaliwa mtandaoni " +"inayo enua jukwaa {platform_name} la kilimwengu. Watumiaji wetu aghlabu ni " +"wanafanni, wasaidizi wa kufundisha na wafanya kazi wa kozi, na wanachama wa " +"makundi ya kufundisha taaluma. " #: cms/templates/register.html msgid "" @@ -24036,14 +24048,6 @@ msgstr "" msgid "LMS" msgstr "" -#. Translators: 'EdX', 'edX', 'Studio', and 'Open edX' are trademarks of 'edX -#. Inc.'. Please do not translate any of these trademarks and company names. -#: cms/templates/widgets/footer.html -msgid "" -"EdX, Open edX, Studio, and the edX and Open edX logos are registered " -"trademarks or trademarks of {link_start}edX Inc.{link_end}" -msgstr "" - #: cms/templates/widgets/header.html msgid "Current Course:" msgstr "Kozi ya Sasa:" diff --git a/conf/locale/sw_KE/LC_MESSAGES/djangojs.mo b/conf/locale/sw_KE/LC_MESSAGES/djangojs.mo index 54e8680d73cf882734d07751e5e0d22770b395a5..d3d98d76c45df1e3c135ae5a60d490beb1dcbdc2 100644 Binary files a/conf/locale/sw_KE/LC_MESSAGES/djangojs.mo and b/conf/locale/sw_KE/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/sw_KE/LC_MESSAGES/djangojs.po b/conf/locale/sw_KE/LC_MESSAGES/djangojs.po index e86db0699c7db0ba9105d9e7c09f883aec19d791..5ebae0acba5f5490390fd8a721607734602b9e50 100644 --- a/conf/locale/sw_KE/LC_MESSAGES/djangojs.po +++ b/conf/locale/sw_KE/LC_MESSAGES/djangojs.po @@ -11,6 +11,7 @@ # JOHN MASANDA <translations_6@camara.ie>, 2017 # Keith Magee <keithmagee@camara.ie>, 2016 # Masoud Mohamed Ali <masoudali@camara.org>, 2016 +# Muhammad Adeel Khan <adeel@edx.org>, 2019 # swaleh amin <mkupuofirstnameswaleh@yahoo.com>, 2016 # swalehe manture <translations_3@camara.ie>, 2017 # YAHAYA MWAVURIZI <translations_1@camara.ie>, 2017 @@ -24,6 +25,7 @@ # Isihaka Issa <translations_8@camara.ie>, 2017 # JOHN MASANDA <translations_6@camara.ie>, 2017 # Mathieu Lacasse <mathieulacasse@camara.org>, 2017 +# Muhammad Adeel Khan <adeel@edx.org>, 2019 # swaleh amin <mkupuofirstnameswaleh@yahoo.com>, 2016 # swalehe manture <translations_3@camara.ie>, 2017 # YAHAYA MWAVURIZI <translations_1@camara.ie>, 2017 @@ -69,7 +71,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2019-04-22 10:49+0000\n" +"POT-Creation-Date: 2019-06-09 20:42+0000\n" "PO-Revision-Date: 2019-02-10 20:45+0000\n" "Last-Translator: edx_transifex_bot <i18n-working-group+edx-transifex-bot@edx.org>\n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/open-edx/edx-platform/language/sw_KE/)\n" @@ -4058,9 +4060,8 @@ msgid "" "are complete and correct." msgstr "" "Kosa limetokea wakti wa kuanza shughuli ya utoaji upya alama za swali '<%- " -"swali_kitambulisho %>' kwa ajili ya mwanafunzi '<%- mwanafunzi_kitambulisho " -"%>'. Hakikisha vitambuzi vya swali na mwanafunzi viko sahihi na " -"vimekamilika." +"problem_id %>' kwa ajili ya mwanafunzi '<%- student_id %>'. Hakikisha " +"vitambuzi vya swali na mwanafunzi viko sahihi na vimekamilika." #: lms/static/js/instructor_dashboard/student_admin.js msgid "Please enter a score." @@ -4098,17 +4099,16 @@ msgstr "" #: lms/static/js/instructor_dashboard/student_admin.js msgid "Rescore problem '<%- problem_id %>' for all students?" -msgstr "" -"Toa upya alama za swali '<%- swali _kitambulisho %>' kwa ajili ya wanafunzi?" +msgstr "Toa upya alama za swali '<%- problem_id %>' kwa ajili ya wanafunzi?" #: lms/static/js/instructor_dashboard/student_admin.js msgid "" "Successfully started task to rescore problem '<%- problem_id %>' for all " "students. Click the 'Show Task Status' button to see the status of the task." msgstr "" -"Imefanikiwa kuanza kushughulikia utoaji upya alama za swali '<%- " -"swali_kitambulisho %>' kwa ajili ya wanafunzi wote. Bofya kibonye cha 'Show " -"Task Status' kuona shughuli inavyoendele." +"Imefanikiwa kuanza kushughulikia utoaji upya alama za swali '<%- problem_id " +"%>' kwa ajili ya wanafunzi wote. Bofya kibonye cha 'Show Task Status' kuona " +"shughuli inavyoendele." #: lms/static/js/instructor_dashboard/student_admin.js msgid "" @@ -4116,8 +4116,7 @@ msgid "" " the problem identifier is complete and correct." msgstr "" "Kosa limetokea katika kuanza kushughulikia utoaji upya alama za swali '<%- " -"swali_kitambulisho %>'. Hakikisha kitambuzi cha swali kiko sahihi na " -"kimekamilika." +"problem_id %>'. Hakikisha kitambuzi cha swali kiko sahihi na kimekamilika." #. Translators: a "Task" is a background process such as grading students or #. sending email @@ -5552,7 +5551,7 @@ msgstr "Tafadhali ingiza namba kamili isiyo hasi." #: cms/static/js/models/settings/course_grader.js msgid "Cannot drop more <%= types %> assignments than are assigned." -msgstr "Haiwezi kutoa majaribio mengi zaidi <%=types%> ya yaliyotolewa." +msgstr "Haiwezi kutoa majaribio mengi zaidi <%= types %> ya yaliyotolewa." #: cms/static/js/models/settings/course_grading_policy.js msgid "Grace period must be specified in HH:MM format." @@ -7479,6 +7478,10 @@ msgstr "'Thibitisha Sasa'" msgid "Mark Exam As Completed" msgstr "Usahihishaji wa Mtihani 'umekamilika'" +#: lms/templates/courseware/proctored-exam-status.underscore +msgid "You are taking \"{exam_link}\" as {exam_type}. " +msgstr "" + #: lms/templates/courseware/proctored-exam-status.underscore msgid "a timed exam" msgstr "" @@ -8256,8 +8259,9 @@ msgid "Register with Institution/Campus Credentials" msgstr "Jisajili na Sifa/Hati za Taasisi/Chuo " #: lms/templates/student_account/institution_register.underscore -msgid "Register through edX" -msgstr "Jiandikishe kupitia edX" +#: lms/templates/student_account/register.underscore +msgid "Create an Account" +msgstr "" #: lms/templates/student_account/login.underscore msgid "First time here?" @@ -8365,10 +8369,6 @@ msgstr "Tengeneza akaunti ukitumia %(providerName)s." msgid "or create a new one here" msgstr "au unda moja mpya hapa" -#: lms/templates/student_account/register.underscore -msgid "Create an Account" -msgstr "" - #: lms/templates/student_account/register.underscore msgid "Support education research by providing additional information" msgstr "" diff --git a/conf/locale/th/LC_MESSAGES/django.mo b/conf/locale/th/LC_MESSAGES/django.mo index 3f1e163d6e1f221a51c8c61b7943811ad2529142..a745c81fe96d15d2520d00e1a129e9b46af5a237 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/djangojs.mo b/conf/locale/th/LC_MESSAGES/djangojs.mo index 5f124cd5620f34c3713a2ffd2de2236364626a1f..5741e2a0ec2befb7fdbe132a99f12d326d81fa3b 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/tr_TR/LC_MESSAGES/django.mo b/conf/locale/tr_TR/LC_MESSAGES/django.mo index c0b3137c0f4e9653ebfc9b80fbdcc799512b5387..b3dcea6f5eb24edfb68cf0f18cfb02517110702d 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 26f48a3ed07292ff7dec395584d0b1b6818f6037..cf041da31497d45bbe6ad72124351bb0512a9594 100644 --- a/conf/locale/tr_TR/LC_MESSAGES/django.po +++ b/conf/locale/tr_TR/LC_MESSAGES/django.po @@ -72,6 +72,7 @@ # Kubilay <kubilayinceoren10@gmail.com>, 2015 # mehmet gülöz <mehmetguloz47@gmail.com>, 2015 # msare <mervesareakin@gmail.com>, 2014 +# Muhammad Adeel Khan <adeel@edx.org>, 2019 # Murat BiÅŸkin <murat@muratbiskin.com>, 2013 # Onur Bektas <mustafaonurbektas@gmail.com>, 2013 # Onur Bektas <mustafaonurbektas@gmail.com>, 2013 @@ -127,7 +128,7 @@ msgid "" msgstr "" "Project-Id-Version: 0.1a\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2019-04-22 10:50+0000\n" +"POT-Creation-Date: 2019-06-09 20:42+0000\n" "PO-Revision-Date: 2019-01-20 20:43+0000\n" "Last-Translator: Ali Işıngör <ali@artistanbul.io>, 2019\n" "Language-Team: Turkish (Turkey) (https://www.transifex.com/open-edx/teams/6205/tr_TR/)\n" @@ -453,28 +454,6 @@ msgstr "Geçersiz miktar seçildi." msgid "No selected price or selected price is too low." msgstr "Ãœcret seçilmedi veya seçili ücret çok düşük." -#: common/djangoapps/django_comment_common/models.py -msgid "Administrator" -msgstr "Yönetici" - -#: common/djangoapps/django_comment_common/models.py -msgid "Moderator" -msgstr "Moderatör" - -#: common/djangoapps/django_comment_common/models.py -msgid "Group Moderator" -msgstr "Grup Moderatörü" - -#: common/djangoapps/django_comment_common/models.py -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Community TA" -msgstr "Topluluk Öğretim Elemanı" - -#: common/djangoapps/django_comment_common/models.py -#: lms/djangoapps/instructor/paidcourse_enrollment_report.py -msgid "Student" -msgstr "Öğrenci" - #: common/djangoapps/student/admin.py msgid "User profile" msgstr "Kullanıcı profili" @@ -538,8 +517,8 @@ msgid "A properly formatted e-mail is required" msgstr "Geçerli biçimde e-posta adresi 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 ve kimliÄŸinizde yazan isminiz gerekiyor" +msgid "Your legal name must be a minimum of one character long" +msgstr "" #: common/djangoapps/student/forms.py #, python-format @@ -1101,6 +1080,12 @@ msgstr "" "Ä°kincil saÄŸlayıcılar, \"Kurumsal\" giriÅŸ saÄŸlayıcıların ayrı bir listesinde " "daha az belirgin bir ÅŸekilde görüntülenir." +#: common/djangoapps/third_party_auth/models.py +msgid "" +"optional. If this provider is an Organization, this attribute can be used " +"reference users in that Organization" +msgstr "" + #: common/djangoapps/third_party_auth/models.py msgid "The Site that this provider configuration belongs to." msgstr "Bu saÄŸlayıcı yapılandırmasının ait olduÄŸu Site." @@ -2930,13 +2915,13 @@ msgstr "Tartışma Konusu EÅŸleÅŸtirme" msgid "" "Enter discussion categories in the following format: \"CategoryName\": " "{\"id\": \"i4x-InstitutionName-CourseNumber-course-CourseRun\"}. For " -"example, one discussion category may be \"Lydian Mode\": {\"id\": \"i4x-" -"UniversityX-MUS101-course-2015_T1\"}. The \"id\" value for each category " -"must be unique. In \"id\" values, the only special characters that are " -"supported are underscore, hyphen, and period. You can also specify a " +"example, one discussion category may be \"Lydian Mode\": {\"id\": " +"\"i4x-UniversityX-MUS101-course-2015_T1\"}. The \"id\" value for each " +"category must be unique. In \"id\" values, the only special characters that " +"are supported are underscore, hyphen, and period. You can also specify a " "category as the default for new posts in the Discussion page by setting its " -"\"default\" attribute to true. For example, \"Lydian Mode\": {\"id\": \"i4x-" -"UniversityX-MUS101-course-2015_T1\", \"default\": true}." +"\"default\" attribute to true. For example, \"Lydian Mode\": {\"id\": " +"\"i4x-UniversityX-MUS101-course-2015_T1\", \"default\": true}." msgstr "" "Tartışma kategorilerini belirtilen formatta girin: \"KategoriAdı\": {\"id\":" " \"i4x-InstitutionName-CourseNumber-course-CourseRun\"}. ÖrneÄŸin bir " @@ -5103,7 +5088,7 @@ msgstr "" #: common/templates/admin/student/loginfailures/change_form_template.html msgid "Unlock Account" -msgstr "" +msgstr "Hesap Kilidini Aç" #. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# #. Translators: this is a control to allow users to exit out of this modal @@ -5398,19 +5383,17 @@ msgstr "Lütfen girdinizin imlasını kontrol edin." msgid "Take free online courses at edX.org" msgstr "edX.org üzerinden ücretsiz eÄŸitimler alın" -#. Translators: 'EdX', 'edX', and 'Open edX' are trademarks of 'edX Inc.'. +#. Translators: 'edX' and 'Open edX' are trademarks of 'edX Inc.'. #. Please do not translate any of these trademarks and company names. #: lms/djangoapps/branding/api.py #, python-brace-format msgid "" -"© {org_name}. All rights reserved except where noted. EdX, Open edX and " -"their respective logos are trademarks or registered trademarks of edX Inc." +"© {org_name}. All rights reserved except where noted. edX, Open edX and " +"their respective logos are registered trademarks of edX Inc." msgstr "" -"© {org_name}. Belirtilen yerler dışında tüm hakları saklıdır. EdX, Open edX" -" ve ilgili logoları edX Inc'in tescilli ticari markalarıdır." #. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# -#. Translators: 'Open edX' is a brand, please keep this untranslated. +#. Translators: 'Open edX' is a trademark, please keep this untranslated. #. See http://openedx.org for more information. #. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# #. Translators: 'Open edX' is a brand, please keep this untranslated. See @@ -6545,6 +6528,20 @@ msgstr "Sertifikanız hazır" msgid "To see course content, {sign_in_link} or {register_link}." msgstr "Ders içeriÄŸini görmek için, {sign_in_link} ya da {register_link}." +#: lms/djangoapps/courseware/views/views.py +#: openedx/features/course_experience/views/course_home_messages.py +#, python-brace-format +msgid "{sign_in_link} or {register_link}." +msgstr "" + +#: lms/djangoapps/courseware/views/views.py +#: openedx/features/course_experience/views/course_home_messages.py +#: lms/templates/header/navbar-not-authenticated.html +#: lms/templates/navigation/navbar-not-authenticated.html +#: themes/edx.org/lms/templates/header/navbar-not-authenticated.html +msgid "Sign in" +msgstr "GiriÅŸ Yap" + #: lms/djangoapps/courseware/views/views.py #, python-brace-format msgid "" @@ -6663,10 +6660,8 @@ msgstr "" #: lms/djangoapps/dashboard/git_import.py msgid "" "Non usable git url provided. Expecting something like: " -"git@github.com:mitocw/edx4edx_lite.git" +"git@github.com:edx/edx4edx_lite.git" msgstr "" -"Kullanılamayan git url'si verildi. Bunun gibi bir ÅŸey bekliyoruz: " -"git@github.com:mitocw/edx4edx_lite.git" #: lms/djangoapps/dashboard/git_import.py msgid "Unable to get git log" @@ -6848,49 +6843,49 @@ msgstr "rol" msgid "full_name" msgstr "tam_isim" -#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.html -#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.txt -#, python-format -msgid "%(comment_username)s replied to <b>%(thread_title)s</b>:" -msgstr "" - -#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.html -#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.txt -msgid "View discussion" -msgstr "Tartışmayı görüntüle" - -#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/subject.txt -#, python-format -msgid "Response to %(thread_title)s" -msgstr "%(thread_title)s baÅŸlığına cevap" - -#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/discussion/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/discussion/django_comment_client/base/views.py msgid "Body can't be empty" msgstr "Gövde boÅŸ olamaz" -#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/discussion/django_comment_client/base/views.py msgid "Topic doesn't exist" msgstr "Konu yok" -#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/discussion/django_comment_client/base/views.py msgid "Comment level too deep" msgstr "Yorum seviyesi çok derin" -#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/discussion/django_comment_client/base/views.py msgid "" "Error uploading file. Please contact the site administrator. Thank you." msgstr "" "Dosya yükleme hatası. Lütfen site yöneticinizle iletiÅŸime geçin. " "TeÅŸekkürler." -#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/discussion/django_comment_client/base/views.py msgid "Good" msgstr "Ä°yi" +#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.html +#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.txt +#, python-format +msgid "%(comment_username)s replied to <b>%(thread_title)s</b>:" +msgstr "" + +#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.html +#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.txt +msgid "View discussion" +msgstr "Tartışmayı görüntüle" + +#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/subject.txt +#, python-format +msgid "Response to %(thread_title)s" +msgstr "%(thread_title)s baÅŸlığına cevap" + #: lms/djangoapps/edxnotes/helpers.py msgid "EdxNotes Service is unavailable. Please try again in a few minutes." msgstr "" @@ -7013,6 +7008,11 @@ msgstr "{platform_name} Personel" msgid "Course Staff" msgstr "Ders Personeli" +#: lms/djangoapps/instructor/paidcourse_enrollment_report.py +#: openedx/core/djangoapps/django_comment_common/models.py +msgid "Student" +msgstr "Öğrenci" + #: lms/djangoapps/instructor/paidcourse_enrollment_report.py #: lms/templates/preview_menu.html #: lms/templates/instructor/instructor_dashboard_2/membership.html @@ -7845,10 +7845,6 @@ msgstr "Ãœnite {0} uzatılacak bitiÅŸ tarihine sahip deÄŸil." msgid "An extended due date must be later than the original due date." msgstr "Uzatılmış bitiÅŸ tarihi esas bitiÅŸ tarihinden daha sonra olmalıdır." -#: lms/djangoapps/instructor/views/tools.py -msgid "No due date extension is set for that student and unit." -msgstr "Bu öğrenci ve ünite için bitiÅŸ tarihi uzatması ayarlanmamış." - #. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# #. Translators: This label appears above a field on the registration form #. meant to hold the user's full name. @@ -8323,6 +8319,10 @@ msgstr "" msgid "My Notes" msgstr "Notlarım" +#: lms/djangoapps/program_enrollments/models.py +msgid "One of user or external_user_key must not be null." +msgstr "" + #: lms/djangoapps/shoppingcart/models.py msgid "Order Payment Confirmation" msgstr "Ödeme Talimatı Onayı" @@ -9451,8 +9451,8 @@ msgstr "Kullanıcı için bir profil bulunamadı" #: lms/djangoapps/verify_student/views.py #, python-brace-format -msgid "Name must be at least {min_length} characters long." -msgstr "Ä°sim en az {min_length} karakter uzunluÄŸunda olmalıdır." +msgid "Name must be at least {min_length} character long." +msgstr "" #: lms/djangoapps/verify_student/views.py msgid "Image data is not valid." @@ -9923,8 +9923,9 @@ msgid "Hello %(full_name)s," msgstr "Merhaba %(full_name)s," #: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt #, python-format -msgid "Your %(platform_name)s ID verification has expired.\" " +msgid "Your %(platform_name)s ID verification has expired. " msgstr "" #: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html @@ -9957,6 +9958,8 @@ msgstr "" msgid "ID verification FAQ : %(help_center_link)s " msgstr "" +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt #: lms/templates/emails/failed_verification_email.txt #: lms/templates/emails/order_confirmation_email.txt #: lms/templates/emails/passed_verification_email.txt @@ -9975,11 +9978,6 @@ msgstr "" msgid "Hello %(full_name)s, " msgstr "" -#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt -#, python-format -msgid "Your %(platform_name)s ID verification has expired. " -msgstr "" - #: lms/templates/verify_student/edx_ace/verificationexpiry/email/subject.txt #, python-format msgid "Your %(platform_name)s Verification has Expired" @@ -10604,15 +10602,6 @@ msgstr "Bu API kullanıcısıyla iliÅŸkili web sitesinin URL'i." msgid "The reason this user wants to access the API." msgstr "Bu kullanıcının API eriÅŸimi isteme nedeni." -#: openedx/core/djangoapps/api_admin/models.py -#, python-brace-format -msgid "API access request from {company}" -msgstr "{company} tarafından gelen API eriÅŸim isteÄŸi" - -#: openedx/core/djangoapps/api_admin/models.py -msgid "API access request" -msgstr "API eriÅŸim isteÄŸi" - #: openedx/core/djangoapps/api_admin/widgets.py #, python-brace-format msgid "" @@ -10965,6 +10954,23 @@ msgstr "Bu bir test uyarısıdır" msgid "This is a test error" msgstr "Bu bir test hatasıdır" +#: openedx/core/djangoapps/django_comment_common/models.py +msgid "Administrator" +msgstr "Yönetici" + +#: openedx/core/djangoapps/django_comment_common/models.py +msgid "Moderator" +msgstr "Moderatör" + +#: openedx/core/djangoapps/django_comment_common/models.py +msgid "Group Moderator" +msgstr "Grup Moderatörü" + +#: openedx/core/djangoapps/django_comment_common/models.py +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Community TA" +msgstr "Topluluk Öğretim Elemanı" + #: openedx/core/djangoapps/embargo/forms.py #: openedx/core/djangoapps/verified_track_content/forms.py msgid "COURSE NOT FOUND. Please check that the course ID is valid." @@ -11549,11 +11555,12 @@ msgid "Specialty" msgstr "Uzmanlık" #: openedx/core/djangoapps/user_api/accounts/utils.py +#, python-brace-format msgid "" -" Make sure that you are providing a valid username or a URL that contains \"" +"Make sure that you are providing a valid username or a URL that contains " +"\"{url_stub}\". To remove the link from your edX profile, leave this field " +"blank." msgstr "" -" Lütfen geçerli bir kullanıcı adı ya da ÅŸunu içeren bir URL saÄŸladığınıza " -"emin olun: \"" #: openedx/core/djangoapps/user_api/accounts/views.py #: openedx/core/djangoapps/user_authn/views/login.py @@ -11700,17 +11707,12 @@ msgstr "{platform_name} {terms_of_service}'nı kabul etmelisiniz" #: openedx/core/djangoapps/user_api/api.py #, python-brace-format msgid "" -"By creating an account with {platform_name}, you agree to " -"abide by our {platform_name} " +"By creating an account, you agree to the " "{terms_of_service_link_start}{terms_of_service}{terms_of_service_link_end}" -" and agree to our {privacy_policy_link_start}Privacy " -"Policy{privacy_policy_link_end}." +" and you acknowledge that {platform_name} and each Member " +"process your personal data in accordance with the " +"{privacy_policy_link_start}Privacy Policy{privacy_policy_link_end}." msgstr "" -"{platform_name} platformunda bir hesap oluÅŸturarak, {platform_name}" -" " -"{terms_of_service_link_start}{terms_of_service}{terms_of_service_link_end} " -"ve {privacy_policy_link_start}Privacy Policy{privacy_policy_link_end} " -"kurallarına uymayı kabul ediyorsunuz." #. Translators: "Terms of service" is a legal document users must agree to #. in order to register a new account. @@ -12070,7 +12072,7 @@ msgstr "" #: openedx/features/content_type_gating/templates/content_type_gating/access_denied_message.html msgid "Verified Track Access" -msgstr "" +msgstr "DoÄŸrulanmış Kayıtlanma Yolu EriÅŸimi" #: openedx/features/content_type_gating/templates/content_type_gating/access_denied_message.html msgid "Upgrade to unlock" @@ -12166,19 +12168,19 @@ msgstr "Güncellemeler" msgid "Reviews" msgstr "Ä°ncelemeler" +#: openedx/features/course_experience/utils.py +#, no-python-format, python-brace-format +msgid "" +"{banner_open}{percentage}% off your first upgrade.{span_close} Discount " +"automatically applied.{div_close}" +msgstr "" + #: openedx/features/course_experience/views/course_home_messages.py #, python-brace-format msgid "{sign_in_link} or {register_link} and then enroll in this course." msgstr "" "{sign_in_link} ya da {register_link} ile bu derse kayıt olabilirsiniz." -#: openedx/features/course_experience/views/course_home_messages.py -#: lms/templates/header/navbar-not-authenticated.html -#: lms/templates/navigation/navbar-not-authenticated.html -#: themes/edx.org/lms/templates/header/navbar-not-authenticated.html -msgid "Sign in" -msgstr "GiriÅŸ Yap" - #: openedx/features/course_experience/views/course_home_messages.py #, python-brace-format msgid "Welcome to {course_display_name}" @@ -12222,6 +12224,29 @@ msgstr "" msgid "Set goal to: {goal_text}" msgstr "Hedefinizi belirleyin: {goal_text}" +#: openedx/features/discounts/admin.py +msgid "" +"These define the context to disable lms-controlled discounts on. If no " +"values are set, then the configuration applies globally. If a single value " +"is set, then the configuration applies to all courses within that context. " +"At most one value can be set at a time.<br>If multiple contexts apply to a " +"course (for example, if configuration is specified for the course " +"specifically, and for the org that the course is in, then the more specific " +"context overrides the more general context." +msgstr "" + +#: openedx/features/discounts/admin.py +msgid "" +"If any of these values is left empty or \"Unknown\", then their value at " +"runtime will be retrieved from the next most specific context that applies. " +"For example, if \"Disabled\" is left as \"Unknown\" in the course context, " +"then that course will be Disabled only if the org that it is in is Disabled." +msgstr "" + +#: openedx/features/discounts/models.py +msgid "Disabled" +msgstr "" + #: openedx/features/enterprise_support/api.py #, python-brace-format msgid "Enrollment in {course_title} was not complete." @@ -12346,10 +12371,8 @@ msgstr "" #: cms/djangoapps/contentstore/git_export_utils.py msgid "" "Non writable git url provided. Expecting something like: " -"git@github.com:mitocw/edx4edx_lite.git" +"git@github.com:edx/edx4edx_lite.git" msgstr "" -"Yazılamaz git url'si verildi. Åžunun gibi bir içerik beklenmektedir: " -"git@github.com:mitocw/edx4edx_lite.git" #: cms/djangoapps/contentstore/git_export_utils.py msgid "" @@ -13222,6 +13245,15 @@ msgstr "Sıfırla" msgid "Legal" msgstr "Yasal" +#. Translators: 'edX' and 'Open edX' are trademarks of 'edX Inc.'. Please do +#. not translate any of these trademarks and company names. +#: cms/templates/widgets/footer.html +#: themes/red-theme/lms/templates/footer.html +msgid "" +"edX, Open edX, and the edX and Open edX logos are registered trademarks of " +"{link_start}edX Inc.{link_end}" +msgstr "" + #: cms/templates/widgets/header.html lms/templates/header/header.html #: lms/templates/navigation/navigation.html #: lms/templates/widgets/footer-language-selector.html @@ -13616,6 +13648,10 @@ msgstr "Hata Ayıklama:" msgid "External Authentication failed" msgstr "Harici Kimlik Denetleme baÅŸarısız oldu" +#: lms/templates/footer.html +msgid "organization logo" +msgstr "" + #: lms/templates/forgot_password_modal.html msgid "" "Please enter your e-mail address below, and we will e-mail instructions for " @@ -13829,17 +13865,15 @@ msgstr "" msgid "Search for a course" msgstr "Bir ders ara" -#. Translators: 'Open edX' is a registered trademark, please keep this -#. untranslated. See http://open.edx.org for more information. -#: lms/templates/index_overlay.html -msgid "Welcome to the Open edX{registered_trademark} platform!" -msgstr "Open edX{registered_trademark} platformuna hoÅŸ geldiniz!" +#: lms/templates/index_overlay.html lms/templates/register-sidebar.html +msgid "Welcome to {platform_name}" +msgstr "{platform_name} platformuna hoÅŸ geldiniz" #. Translators: 'Open edX' is a registered trademark, please keep this #. untranslated. See http://open.edx.org for more information. #: lms/templates/index_overlay.html -msgid "It works! This is the default homepage for this Open edX instance." -msgstr "Harika! Bu sayfa Open edX için varsayılan ana sayfadır." +msgid "It works! Powered by Open edX{registered_trademark}" +msgstr "" #: lms/templates/invalid_email_key.html msgid "Invalid email change key" @@ -14139,6 +14173,10 @@ msgstr "Cevabınızı kaydedin" msgid "Reset your answer" msgstr "Cevabınızı sıfırlayın" +#: lms/templates/problem.html +msgid "Answers are displayed within the problem" +msgstr "" + #: lms/templates/problem_notifications.html msgid "Next Hint" msgstr "Sonraki Ä°pucu" @@ -14342,10 +14380,6 @@ msgstr "Zaten kayıtlı mısın?" msgid "Log in" msgstr "GiriÅŸ yap" -#: lms/templates/register-sidebar.html -msgid "Welcome to {platform_name}" -msgstr "{platform_name} platformuna hoÅŸ geldiniz" - #: lms/templates/register-sidebar.html msgid "" "Registering with {platform_name} gives you access to all of our current and " @@ -14712,11 +14746,6 @@ msgstr "Ders numarası veya dizini" msgid "Delete course from site" msgstr "Siteden dersi sil" -#. Translators: A version number appears after this string -#: lms/templates/sysadmin_dashboard.html -msgid "Platform Version" -msgstr "Platform Sürümü" - #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Page {current_page} of {total_pages}" msgstr "{total_pages} sayfanın {current_page}. sayfası" @@ -15011,7 +15040,7 @@ msgstr "" "Discovery API, Kurumsal API ve zaman zaman sunabileceÄŸimiz ek API'lerini " "(genel olarak, \"API'ler\") kullandığınız için teÅŸekkür ederiz. Lütfen söz " "konusu API'leri kullanmadan önce Hizmet Åžartları'nı okuyun. Bu Hizmet " -"Åžartları, beraberindeki API belgelerindeki ek ÅŸartlar ve {platform_adı} " +"Åžartları, beraberindeki API belgelerindeki ek ÅŸartlar ve {platform_name} " "platformunun kullanıma sunduÄŸu mevcut politika ve yönergeler ve/veya zaman " "zaman gelecek güncellemeleriyle birlikte, siz ve {platform_name} platformu " "arasındaki anlaÅŸmalar (topluca \"Åžartlar\") bütünüdür. Bu Åžartlar, kuruluÅŸun" @@ -15025,12 +15054,13 @@ msgstr "" "kayıtlı bir kullanıcı olsanız da olmasanız da Åžartlar'a yasal olarak baÄŸlı " "olduÄŸunuzu kabul edersiniz. Bir ÅŸirket, kuruluÅŸ veya baÅŸka bir tüzel kiÅŸi " "adına API'lere eriÅŸiyorsanız veya bunları kullanıyorsanız, söz konusu " -"Åžartları kabul etmiÅŸ olursunuz ve {platform_adı} platformunun bu koÅŸullarını" -" kabul etmek için tam yetkiye sahip olduÄŸunuzu kabul eder ve onaylarsınız. " -"Böyle bir tüzel yapı, bu durumda, \"siz\", \"sizin\" veya ilgili terimlerle " -"ilgili terimler, API'lere eriÅŸtiÄŸiniz veya API'leri kullandığınız tarafa " -"atıfta bulunacaktır. Böyle bir yetkiniz yoksa veya Åžartlar'a uymayı " -"istemediÄŸiniz veya bunlara uymadığınız takdirde, API'leri kullanmamalısınız." +"Åžartları kabul etmiÅŸ olursunuz ve {platform_name} platformunun bu " +"koÅŸullarını kabul etmek için tam yetkiye sahip olduÄŸunuzu kabul eder ve " +"onaylarsınız. Böyle bir tüzel yapı, bu durumda, \"siz\", \"sizin\" veya " +"ilgili terimlerle ilgili terimler, API'lere eriÅŸtiÄŸiniz veya API'leri " +"kullandığınız tarafa atıfta bulunacaktır. Böyle bir yetkiniz yoksa veya " +"Åžartlar'a uymayı istemediÄŸiniz veya bunlara uymadığınız takdirde, API'leri " +"kullanmamalısınız." #: lms/templates/api_admin/terms_of_service.html msgid "API Access" @@ -16046,6 +16076,20 @@ msgstr "SipariÅŸ Verisi Yükleniyor..." msgid "Please wait while we retrieve your order details." msgstr "Lütfen sipariÅŸinizle ilgili detaylar hazırlanırken bekleyin." +#: lms/templates/course_modes/_upgrade_button.html +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/_upgrade_button.html +#: themes/edx.org/lms/templates/course_modes/choose.html +msgid "Pursue the Verified Track" +msgstr "" + +#: lms/templates/course_modes/_upgrade_button.html +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/_upgrade_button.html +#: themes/edx.org/lms/templates/course_modes/choose.html +msgid "Pursue a Verified Certificate" +msgstr "Bir Onaylı Sertifikayı takip edin" + #: lms/templates/course_modes/choose.html #: themes/edx.org/lms/templates/course_modes/choose.html msgid "Enroll In {course_name} | Choose Your Track" @@ -16136,16 +16180,6 @@ msgstr "" "{b_start}Kolayca paylaşılabilir:{b_end} Sertifikayı CV nize ekleyin veya " "devam edin, veya LinkedIn üzerinden doÄŸrudan postalayın" -#: lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -msgid "Pursue a Verified Certificate" -msgstr "Bir Onaylı Sertifikayı takip edin" - -#: lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -msgid "Pursue the Verified Track" -msgstr "" - #: lms/templates/course_modes/choose.html #: themes/edx.org/lms/templates/course_modes/choose.html msgid "" @@ -16266,6 +16300,10 @@ msgstr "Bu içerik puanlandı" msgid "An error occurred. Please try again later." msgstr "Bir hata oluÅŸtu. Lütfen daha sonra tekrar deneyin" +#: lms/templates/courseware/course_about.html +msgid "An error has occurred. Please ensure that you are logged in to enroll." +msgstr "" + #: lms/templates/courseware/course_about.html msgid "You are enrolled in this course" msgstr "Bu derse kaydoldunuz" @@ -16408,7 +16446,6 @@ msgstr "Aramanızı Sınırlandırın" #: lms/templates/courseware/courseware-chromeless.html #: lms/templates/courseware/courseware.html #: openedx/features/course_bookmarks/templates/course_bookmarks/course-bookmarks.html -#: openedx/features/learner_analytics/templates/learner_analytics/dashboard.html msgid "{course_number} Courseware" msgstr "{course_number} Ders yazılımları" @@ -16639,8 +16676,8 @@ msgid "View Grading in studio" msgstr "Stüdyo'da Notlandırmayı Görüntüle" #: lms/templates/courseware/progress.html -msgid "Course Progress for Student '{username}' ({email})" -msgstr "{username}' ({email}) Öğrencisi için Ders Ä°lerlemesi" +msgid "Course Progress for '{username}' ({email})" +msgstr "" #: lms/templates/courseware/progress.html msgid "View Certificate" @@ -17640,7 +17677,7 @@ msgstr "" #: lms/templates/emails/activation_email_subject.txt msgid "Action Required: Activate your {platform_name} account" -msgstr "Eylem Gerekiyor: {platform_name} hesabınızı etkinleÅŸtirin" +msgstr "Ä°ÅŸlem Bekleniyor: {platform_name} hesabınızı etkinleÅŸtirin" #: lms/templates/emails/business_order_confirmation_email.txt msgid "Thank you for your purchase of " @@ -18734,15 +18771,9 @@ msgstr "Ä°ndirme için Hazır Raporlar" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The reports listed below are available for download. A link to every report " -"remains available on this page, identified by the UTC date and time of " -"generation. Reports are not deleted, so you will always be able to access " -"previously generated reports from this page." +"The reports listed below are available for download, identified by UTC date " +"and time of generation." msgstr "" -"AÅŸağıda listelenen raporlar indirmek için uygundur. Her rapora bir baÄŸlantı " -"bu sayfada mevcut kalır, UTC tarihi ve oluÅŸturma zamanı tarafından " -"tanımlanmıştır. Raporlar silinmez, bu yüzden her zaman bu sayfadan önce " -"oluÅŸturulan raporlara eriÅŸmek mümkün olacak." #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" @@ -18758,13 +18789,13 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"{strong_start}Note{strong_end}: To keep student data secure, you cannot save" -" or email these links for direct access. Copies of links expire within 5 " -"minutes." +"{strong_start}Note{strong_end}: {ul_start}{li_start}To keep student data " +"secure, you cannot save or email these links for direct access. Copies of " +"links expire within 5 minutes.{li_end}{li_start}Report files are deleted 90 " +"days after generation. If you will need access to old reports, download and " +"store the files, in accordance with your institution's data security " +"policies.{li_end}{ul_end}" msgstr "" -"{strong_start}Not{strong_end}: Öğrenci verilerini güvende tutmak için bu " -"baÄŸlantıları kaydedemez ve doÄŸrudan eriÅŸim için baÅŸkalarına e-postayla " -"gönderemezsiniz. Bu baÄŸlantılar 5 dakika içinde geçerliliÄŸini yitirecek." #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Enrollment Codes" @@ -19152,14 +19183,11 @@ msgstr "bireysel teslim süresi uzatımları" #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "" -"In this section, you have the ability to grant extensions on specific units " -"to individual students. Please note that the latest date is always taken; " -"you cannot use this tool to make an assignment due earlier for a particular " -"student." +"In this section, you have the ability to grant extensions on specific " +"subsections to individual students. Please note that the latest date is " +"always taken; you cannot use this tool to make an assignment due earlier for" +" a particular student." msgstr "" -"Bu bölümde, spesifik ünitelerde bazı öğrencilere uzatma verme olanağına " -"sahipsiniz. En son günün her zaman için son olduÄŸunu ve bu araçla herhangi " -"bir öğrenci için teslim tarihini öne çekemeyeceÄŸinizi bilmelisiniz." #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "" @@ -19173,8 +19201,8 @@ msgid "Student Email or Username" msgstr "Öğrenci E-postası ve Kullanıcı Adı" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -msgid "Choose the graded unit:" -msgstr "Notlandırılmış üniteyi seçin:" +msgid "Choose the graded subsection:" +msgstr "Notlandırılmış altbölümü seçiniz:" #. Translators: "format_string" is the string MM/DD/YYYY HH:MM, as that is the #. format the system requires. @@ -19186,6 +19214,10 @@ msgstr "" "Uzatılan teslim tarihini ve saatini belirleyiniz (UTC olarak; lütfen " "{format_string} olarak belirleyin)." +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Reason for extension" +msgstr "Uzatma için gerekçe" + #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Change due date for student" msgstr "Öğrenci için teslim tarihini deÄŸiÅŸtirin" @@ -19196,19 +19228,15 @@ msgstr "Ä°zin verilmiÅŸ uzatımları görüntüleme" #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "" -"Here you can see what extensions have been granted on particular units or " -"for a particular student." +"Here you can see what extensions have been granted on particular subsection " +"or for a particular student." msgstr "" -"Burada bazı ünitelerde özel bir öğrenci için ne uzatmanın yapıldığını " -"görebilirsiniz." #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "" -"Choose a graded unit and click the button to obtain a list of all students " -"who have extensions for the given unit." +"Choose a graded subsection and click the button to obtain a list of all " +"students who have extensions for the given subsection." msgstr "" -"Notlandırılmış bir ünite seçiniz ve bu ünite için uzatma verilmiÅŸ tüm " -"öğrencilerin listesini elde etmek için düğmeye tıklayınız." #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "List all students with due date extensions" @@ -19229,12 +19257,13 @@ msgstr "Eklentiler sıfırlanıyor" #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "" "Resetting a problem's due date rescinds a due date extension for a student " -"on a particular unit. This will revert the due date for the student back to " -"the problem's original due date." +"on a particular subsection. This will revert the due date for the student " +"back to the problem's original due date." msgstr "" -"Bir problemin teslim tarihini sıfırlamak, herhangi bir ünitedeki öğrencinin " -"teslim tarih uzatımını fesheder. Bu, öğrencinin problemin ilk teslim " -"tarihine dönmesine neden olacaktır." + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Reason for reset" +msgstr "Sıfırlama için gerekçe" #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Reset due date for student" @@ -21410,10 +21439,6 @@ msgstr "" msgid "Explore journals and courses" msgstr "" -#: openedx/features/learner_analytics/templates/learner_analytics/dashboard.html -msgid "My Stats (Beta)" -msgstr "Ä°statistiklerim (Beta)" - #. Translators: this section lists all the third-party authentication #. providers #. (for example, Google and LinkedIn) the user can link with or unlink from @@ -21517,8 +21542,8 @@ msgid "© 2012–{year} edX Inc. " msgstr "© 2012–{year} edX Inc. " #: themes/edx.org/lms/templates/footer.html -msgid "EdX, Open edX, and MicroMasters are registered trademarks of edX Inc. " -msgstr "EdX, Open edX ve MicroMasters, edX Inc.'in tescilli markalarıdır." +msgid "edX, Open edX, and MicroMasters are registered trademarks of edX Inc. " +msgstr "edX, Open edX ve MicroMasters, edX Inc.'in tescilli markalarıdır." #: themes/edx.org/lms/templates/certificates/_about-accomplishments.html msgid "About edX Verified Certificates" @@ -21597,7 +21622,7 @@ msgstr "edX Inc." #: themes/edx.org/lms/templates/certificates/_accomplishment-footer.html msgid "" "All rights reserved except where noted. edX, Open edX and the edX and Open " -"edX logos are registered trademarks or trademarks of edX Inc." +"edX logos are registered trademarks of edX Inc." msgstr "" "Belirtilen yerler dışında tüm hakları saklıdır. edX, Open edX ile edX ve " "Open edX logoları edX Inc.'in tescilli ticari markalarıdır." @@ -21627,16 +21652,6 @@ msgstr "Ders Ara" msgid "Schools & Partners" msgstr "Okullar & Partnerler" -#. Translators: 'EdX', 'edX', and 'Open edX' are trademarks of 'edX Inc.'. -#. Please do not translate any of these trademarks and company names. -#: themes/red-theme/lms/templates/footer.html -msgid "" -"EdX, Open edX, and the edX and Open edX logos are registered trademarks or " -"trademarks of {link_start}edX Inc.{link_end}" -msgstr "" -"EdX, Open edX, edX ve Open edX logoları tescil edilen markalardır veya " -"{link_start}edX Inc.{link_end}'in tescilli markalarıdır. " - #: themes/red-theme/lms/templates/footer.html msgid "" "{tos_link_start}Terms of Service{tos_link_end} and {honor_link_start}Honor " @@ -25087,7 +25102,7 @@ msgid "" " any more email from us. Please do not reply to this e-mail; if you require " "assistance, check the help section of the {studio_name} web site." msgstr "" -"EÄŸer bunu talep etmediyseniz, hiçbir ÅŸey yapmaya ihtiyacınız yoktur; bizden " +"EÄŸer bunu talep etmediyseniz, hiçbir ÅŸey yapmaya ihtiyacınız yok; bizden " "daha fazla e-posta almayacaksınız. Lütfen bu e-postayı cevaplamayın; eÄŸer " "yardıma ihtiyaç duyarsanız, {studio_name} websitesinin yardım bölümünü " "kontrol edin." @@ -25257,16 +25272,6 @@ msgstr "EriÅŸilebilirlik Karşılama Ä°steÄŸi" msgid "LMS" msgstr "LMS" -#. Translators: 'EdX', 'edX', 'Studio', and 'Open edX' are trademarks of 'edX -#. Inc.'. Please do not translate any of these trademarks and company names. -#: cms/templates/widgets/footer.html -msgid "" -"EdX, Open edX, Studio, and the edX and Open edX logos are registered " -"trademarks or trademarks of {link_start}edX Inc.{link_end}" -msgstr "" -"EdX, Open edX, Studio isimleri ile edX ve Open edX logoları {link_start}edX " -"Inc'in.{link_end} tescilli markalarıdır." - #: cms/templates/widgets/header.html msgid "Current Course:" msgstr "Mevcut Ders:" diff --git a/conf/locale/tr_TR/LC_MESSAGES/djangojs.mo b/conf/locale/tr_TR/LC_MESSAGES/djangojs.mo index a249149163ae18be5f83498cdd1fc02c4c0bd26d..25cb541a57c2ccf85113e02130be0472f4e24b6a 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 0c478467375a8841eb68dd0ce4d39ba6c01d3b04..f10f842d362a3397d6576fb5c306b1331903484d 100644 --- a/conf/locale/tr_TR/LC_MESSAGES/djangojs.po +++ b/conf/locale/tr_TR/LC_MESSAGES/djangojs.po @@ -107,8 +107,8 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2019-04-22 10:49+0000\n" -"PO-Revision-Date: 2019-03-21 15:41+0000\n" +"POT-Creation-Date: 2019-06-09 20:42+0000\n" +"PO-Revision-Date: 2019-06-01 11:57+0000\n" "Last-Translator: Ali Işıngör <ali@artistanbul.io>\n" "Language-Team: Turkish (Turkey) (http://www.transifex.com/open-edx/edx-platform/language/tr_TR/)\n" "Language: tr_TR\n" @@ -5663,7 +5663,7 @@ msgstr "Yüklemede bir sorun oluÅŸtu" #: cms/static/js/features_jsx/studio/CourseOrLibraryListing.jsx msgid "Organization:" -msgstr "" +msgstr "Kurum:" #: cms/static/js/features_jsx/studio/CourseOrLibraryListing.jsx msgid "Course Number:" @@ -5671,7 +5671,7 @@ msgstr "Ders Numarası:" #: cms/static/js/features_jsx/studio/CourseOrLibraryListing.jsx msgid "Course Run:" -msgstr "" +msgstr "Ders Yayını:" #: cms/static/js/features_jsx/studio/CourseOrLibraryListing.jsx msgid "(Read-only)" @@ -5679,8 +5679,9 @@ msgstr "(Salt-okunur)" #: cms/static/js/features_jsx/studio/CourseOrLibraryListing.jsx msgid "Re-run Course" -msgstr "" +msgstr "Dersi Yeniden Çalıştır" +#: cms/static/js/features_jsx/studio/CourseOrLibraryListing.jsx #: cms/templates/js/show-textbook.underscore msgid "View Live" msgstr "Canlı Görüntüle" @@ -7820,6 +7821,10 @@ msgstr "Åžimdi DoÄŸrula" msgid "Mark Exam As Completed" msgstr "Sınavı Tamamlandı Olarak Ä°ÅŸaretle" +#: lms/templates/courseware/proctored-exam-status.underscore +msgid "You are taking \"{exam_link}\" as {exam_type}. " +msgstr "" + #: lms/templates/courseware/proctored-exam-status.underscore msgid "a timed exam" msgstr "bir süreli sınav" @@ -8612,8 +8617,9 @@ msgid "Register with Institution/Campus Credentials" msgstr "Kurum / Kampüs Kimlik Bilgileri ile Kayıt" #: lms/templates/student_account/institution_register.underscore -msgid "Register through edX" -msgstr "edX'e Kayıt Ol" +#: lms/templates/student_account/register.underscore +msgid "Create an Account" +msgstr "Bir Hesap OluÅŸtur" #: lms/templates/student_account/login.underscore msgid "First time here?" @@ -8722,10 +8728,6 @@ msgstr "%(providerName)s kullanarak bir hesap oluÅŸtur." msgid "or create a new one here" msgstr "ya da burada yeni bir tane oluÅŸturunuz" -#: lms/templates/student_account/register.underscore -msgid "Create an Account" -msgstr "Bir Hesap OluÅŸtur" - #: lms/templates/student_account/register.underscore msgid "Support education research by providing additional information" msgstr "Daha fazla bilgi saÄŸlayarak eÄŸitim araÅŸtırmasına katkıda bulun." diff --git a/conf/locale/uk/LC_MESSAGES/django.mo b/conf/locale/uk/LC_MESSAGES/django.mo index fbb9e7b1bdb667bc6339c0118fdce63338124880..3980fefde2773efd03f47f4eb0a21985fc581f92 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 2a59fca4f71e7df361d477a89d9ad4cff6826b82..2f24e1838d266a0e7a0944ae5fe43ed08f3a1696 100644 --- a/conf/locale/uk/LC_MESSAGES/django.po +++ b/conf/locale/uk/LC_MESSAGES/django.po @@ -121,7 +121,7 @@ msgid "" msgstr "" "Project-Id-Version: 0.1a\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2019-04-22 10:50+0000\n" +"POT-Creation-Date: 2019-06-09 20:42+0000\n" "PO-Revision-Date: 2019-01-20 20:43+0000\n" "Last-Translator: Waheed Ahmed <waheed@edx.org>, 2019\n" "Language-Team: Ukrainian (https://www.transifex.com/open-edx/teams/6205/uk/)\n" @@ -434,27 +434,6 @@ msgstr "Обрано невірну Ñуму." msgid "No selected price or selected price is too low." msgstr "Ðе обрано вартіÑÑ‚ÑŒ або обрана вартіÑÑ‚ÑŒ занизька." -#: common/djangoapps/django_comment_common/models.py -msgid "Administrator" -msgstr "ÐдмініÑтратор" - -#: common/djangoapps/django_comment_common/models.py -msgid "Moderator" -msgstr "Модератор" - -#: common/djangoapps/django_comment_common/models.py -msgid "Group Moderator" -msgstr "Модератор груп" - -#: common/djangoapps/django_comment_common/models.py -msgid "Community TA" -msgstr "Спільнота аÑиÑтентів" - -#: common/djangoapps/django_comment_common/models.py -#: lms/djangoapps/instructor/paidcourse_enrollment_report.py -msgid "Student" -msgstr "Студент" - #: common/djangoapps/student/admin.py msgid "User profile" msgstr "Профіль кориÑтувача" @@ -520,8 +499,8 @@ msgid "A properly formatted e-mail is required" msgstr "Потрібен e-mail вÑтановленої форми" #: common/djangoapps/student/forms.py -msgid "Your legal name must be a minimum of two characters long" -msgstr "Ваше Ñправжнє ім'Ñ Ð¿Ð¾Ð²Ð¸Ð½Ð½Ð¾ міÑтити не менше двох Ñимволів" +msgid "Your legal name must be a minimum of one character long" +msgstr "" #: common/djangoapps/student/forms.py #, python-format @@ -922,11 +901,11 @@ msgstr "КурÑ, Ñкий ви шукаєте, закритий Ð´Ð»Ñ Ñ€ÐµÑ”Ñ #: common/djangoapps/student/views/management.py msgid "No inactive user with this e-mail exists" -msgstr "Ðеактивного кориÑтувача з даною електронною адреÑою не Ñ–Ñнує" +msgstr "" #: common/djangoapps/student/views/management.py msgid "Unable to send reactivation email" -msgstr "Ðеможливо відправити лиÑта із відновленнÑм активації" +msgstr "" #: common/djangoapps/student/views/management.py msgid "Course id not specified" @@ -1085,6 +1064,12 @@ msgid "" "\"Institution\" login providers." msgstr "ДругорÑдні провайдери показані в окремому ÑпиÑку \"УÑтанови\"." +#: common/djangoapps/third_party_auth/models.py +msgid "" +"optional. If this provider is an Organization, this attribute can be used " +"reference users in that Organization" +msgstr "" + #: common/djangoapps/third_party_auth/models.py msgid "The Site that this provider configuration belongs to." msgstr "Сайт, до Ñкого належить ÐºÐ¾Ð½Ñ„Ð¸Ð³ÑƒÑ€Ð°Ñ†Ñ–Ñ Ñ†ÑŒÐ¾Ð³Ð¾ провайдера." @@ -3033,23 +3018,24 @@ msgstr "Схема тем обговореннÑ" msgid "" "Enter discussion categories in the following format: \"CategoryName\": " "{\"id\": \"i4x-InstitutionName-CourseNumber-course-CourseRun\"}. For " -"example, one discussion category may be \"Lydian Mode\": {\"id\": \"i4x-" -"UniversityX-MUS101-course-2015_T1\"}. The \"id\" value for each category " -"must be unique. In \"id\" values, the only special characters that are " -"supported are underscore, hyphen, and period. You can also specify a " +"example, one discussion category may be \"Lydian Mode\": {\"id\": " +"\"i4x-UniversityX-MUS101-course-2015_T1\"}. The \"id\" value for each " +"category must be unique. In \"id\" values, the only special characters that " +"are supported are underscore, hyphen, and period. You can also specify a " "category as the default for new posts in the Discussion page by setting its " -"\"default\" attribute to true. For example, \"Lydian Mode\": {\"id\": \"i4x-" -"UniversityX-MUS101-course-2015_T1\", \"default\": true}." +"\"default\" attribute to true. For example, \"Lydian Mode\": {\"id\": " +"\"i4x-UniversityX-MUS101-course-2015_T1\", \"default\": true}." msgstr "" "Введіть категорії Ð¾Ð±Ð³Ð¾Ð²Ð¾Ñ€ÐµÐ½Ð½Ñ Ñƒ такому форматі: \"Ðазва категорії\": " "{\"id\": \"i4x-InstitutionName-CourseNumber-course-CourseRun\"}. Ðаприклад, " -"одна ÐºÐ°Ñ‚ÐµÐ³Ð¾Ñ€Ñ–Ñ Ð¾Ð±Ð³Ð¾Ð²Ð¾Ñ€ÐµÐ½Ð½Ñ Ð¼Ð¾Ð¶Ðµ бути \"Lydian Mode\": {\"id\": \"i4x-" -"UniversityX-MUS101-course-2015_T1\"}. Ð—Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ \"id\" Ð´Ð»Ñ ÐºÐ¾Ð¶Ð½Ð¾Ñ— категорії " -"має бути унікальним. У значеннÑÑ… \"id\" підтримуютьÑÑ Ð»Ð¸ÑˆÐµ такі Ñпеціальні " -"Ñимволи, Ñк нижнє підкреÑленнÑ, Ð´ÐµÑ„Ñ–Ñ Ñ‚Ð° точка. Ви також можете вказати " -"категорію Ñк Ñтандартну Ð´Ð»Ñ Ð½Ð¾Ð²Ð¸Ñ… публікацій на Ñторінці \"ОбговореннÑ\", " -"вÑтановивши Ñ—Ñ— атрибут \"default\" Ñк \"true\". Ðаприклад, \"Lydian Mode\": " -"{\"id\": \"i4x-UniversityX-MUS101-course-2015_T1\", \"default\": true}." +"одна ÐºÐ°Ñ‚ÐµÐ³Ð¾Ñ€Ñ–Ñ Ð¾Ð±Ð³Ð¾Ð²Ð¾Ñ€ÐµÐ½Ð½Ñ Ð¼Ð¾Ð¶Ðµ бути \"Lydian Mode\": {\"id\": " +"\"i4x-UniversityX-MUS101-course-2015_T1\"}. Ð—Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ \"id\" Ð´Ð»Ñ ÐºÐ¾Ð¶Ð½Ð¾Ñ— " +"категорії має бути унікальним. У значеннÑÑ… \"id\" підтримуютьÑÑ Ð»Ð¸ÑˆÐµ такі " +"Ñпеціальні Ñимволи, Ñк нижнє підкреÑленнÑ, Ð´ÐµÑ„Ñ–Ñ Ñ‚Ð° точка. Ви також можете " +"вказати категорію Ñк Ñтандартну Ð´Ð»Ñ Ð½Ð¾Ð²Ð¸Ñ… публікацій на Ñторінці " +"\"ОбговореннÑ\", вÑтановивши Ñ—Ñ— атрибут \"default\" Ñк \"true\". Ðаприклад, " +"\"Lydian Mode\": {\"id\": \"i4x-UniversityX-MUS101-course-2015_T1\", " +"\"default\": true}." #: common/lib/xmodule/xmodule/course_module.py msgid "Discussion Sorting Alphabetical" @@ -5550,18 +5536,16 @@ msgstr "Будь лаÑка, перевірте ÑинтакÑÐ¸Ñ Ð·Ð°Ð¿Ð¸Ñу. msgid "Take free online courses at edX.org" msgstr "ÐавчайтеÑÑŒ безкоштовно на онлайн-курÑах від edX.org" -#. Translators: 'EdX', 'edX', and 'Open edX' are trademarks of 'edX Inc.'. +#. Translators: 'edX' and 'Open edX' are trademarks of 'edX Inc.'. #. Please do not translate any of these trademarks and company names. #: lms/djangoapps/branding/api.py #, python-brace-format msgid "" -"© {org_name}. All rights reserved except where noted. EdX, Open edX and " -"their respective logos are trademarks or registered trademarks of edX Inc." +"© {org_name}. All rights reserved except where noted. edX, Open edX and " +"their respective logos are registered trademarks of edX Inc." msgstr "" -"© {org_name}. Ð’ÑÑ– права захищені. EdX, Open edX Ñ– логотипи edX и Open EdX Ñ” " -"зареєÑтрованими торговими марками або торговими марками edX Inc." -#. Translators: 'Open edX' is a brand, please keep this untranslated. +#. Translators: 'Open edX' is a trademark, please keep this untranslated. #. See http://openedx.org for more information. #: lms/djangoapps/branding/api.py msgid "Powered by Open edX" @@ -6679,6 +6663,17 @@ msgstr "Ваш Ñертифікат доÑтупний" msgid "To see course content, {sign_in_link} or {register_link}." msgstr "Ð”Ð»Ñ Ð¿ÐµÑ€ÐµÐ³Ð»Ñду зміÑту курÑу, {sign_in_link} або {register_link}" +#: lms/djangoapps/courseware/views/views.py +#: openedx/features/course_experience/views/course_home_messages.py +#, python-brace-format +msgid "{sign_in_link} or {register_link}." +msgstr "" + +#: lms/djangoapps/courseware/views/views.py +#: openedx/features/course_experience/views/course_home_messages.py +msgid "Sign in" +msgstr "Увійти" + #: lms/djangoapps/courseware/views/views.py #, python-brace-format msgid "" @@ -6799,10 +6794,8 @@ msgstr "" #: lms/djangoapps/dashboard/git_import.py msgid "" "Non usable git url provided. Expecting something like: " -"git@github.com:mitocw/edx4edx_lite.git" +"git@github.com:edx/edx4edx_lite.git" msgstr "" -"Ðадано некоректний git адреÑу. Приклад коректної адреÑи: " -"git@github.com:mitocw/edx4edx_lite.git" #: lms/djangoapps/dashboard/git_import.py msgid "Unable to get git log" @@ -6988,49 +6981,49 @@ msgstr "роль" msgid "full_name" msgstr "повне_iм'Ñ" -#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.html -#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.txt -#, python-format -msgid "%(comment_username)s replied to <b>%(thread_title)s</b>:" -msgstr "%(comment_username)s відповів на <b>%(thread_title)s</b>:" - -#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.html -#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.txt -msgid "View discussion" -msgstr "ПереглÑнути тему" - -#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/subject.txt -#, python-format -msgid "Response to %(thread_title)s" -msgstr "Відповідь на %(thread_title)s" - -#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/discussion/django_comment_client/base/views.py msgid "Title can't be empty" msgstr "Заголовок не може бути пуÑтим" -#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/discussion/django_comment_client/base/views.py msgid "Body can't be empty" msgstr "ОÑновна чаÑтина не може бути пуÑтою" -#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/discussion/django_comment_client/base/views.py msgid "Topic doesn't exist" msgstr "Такої теми не Ñ–Ñнує" -#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/discussion/django_comment_client/base/views.py msgid "Comment level too deep" msgstr "Рівень ÐºÐ¾Ð¼ÐµÐ½Ñ‚Ð°Ñ€Ñ Ð½Ð°Ð´Ñ‚Ð¾ глибокий" -#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/discussion/django_comment_client/base/views.py msgid "" "Error uploading file. Please contact the site administrator. Thank you." msgstr "" "Помилка при завантаженні файлу. Будь лаÑка, зв'ÑжітьÑÑ Ñ–Ð· адмініÑтратором " "Ñайту. ДÑкуємо." -#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/discussion/django_comment_client/base/views.py msgid "Good" msgstr "Добре" +#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.html +#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.txt +#, python-format +msgid "%(comment_username)s replied to <b>%(thread_title)s</b>:" +msgstr "%(comment_username)s відповів на <b>%(thread_title)s</b>:" + +#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.html +#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.txt +msgid "View discussion" +msgstr "ПереглÑнути тему" + +#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/subject.txt +#, python-format +msgid "Response to %(thread_title)s" +msgstr "Відповідь на %(thread_title)s" + #: lms/djangoapps/edxnotes/helpers.py msgid "EdxNotes Service is unavailable. Please try again in a few minutes." msgstr "" @@ -7157,6 +7150,11 @@ msgstr "ÐдмініÑтратори {platform_name}" msgid "Course Staff" msgstr "ПерÑонал курÑу" +#: lms/djangoapps/instructor/paidcourse_enrollment_report.py +#: openedx/core/djangoapps/django_comment_common/models.py +msgid "Student" +msgstr "Студент" + #: lms/djangoapps/instructor/paidcourse_enrollment_report.py #: lms/templates/preview_menu.html #: lms/templates/instructor/instructor_dashboard_2/membership.html @@ -7984,10 +7982,6 @@ msgstr "" "Дата продовженого терміну здачі Ð·Ð°Ð²Ð´Ð°Ð½Ð½Ñ Ð¿Ð¾Ð²Ð¸Ð½Ð½Ð° бути пізнішою, ніж дата, " "зазначена раніше." -#: lms/djangoapps/instructor/views/tools.py -msgid "No due date extension is set for that student and unit." -msgstr "Термін здачі Ð·Ð°Ð²Ð´Ð°Ð½Ð½Ñ Ð´Ð»Ñ Ñ†ÑŒÐ¾Ð³Ð¾ Ñлухача не був продовжений." - #. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# #. Translators: This label appears above a field on the registration form #. meant to hold the user's full name. @@ -8463,6 +8457,10 @@ msgstr "" msgid "My Notes" msgstr "Мої нотатки" +#: lms/djangoapps/program_enrollments/models.py +msgid "One of user or external_user_key must not be null." +msgstr "" + #: lms/djangoapps/shoppingcart/models.py msgid "Order Payment Confirmation" msgstr "ÐŸÑ–Ð´Ñ‚Ð²ÐµÑ€Ð´Ð¶ÐµÐ½Ð½Ñ Ð¾Ð¿Ð»Ð°Ñ‚Ð¸ замовленнÑ" @@ -9547,8 +9545,8 @@ msgstr "ОÑобиÑÑ‚Ñ– дані кориÑтувача не знайдені" #: lms/djangoapps/verify_student/views.py #, python-brace-format -msgid "Name must be at least {min_length} characters long." -msgstr "Ім'Ñ Ð¿Ð¾Ð²Ð¸Ð½Ð½Ðµ ÑкладатиÑÑ Ð½Ðµ менш ніж з {min_length} Ñимволів." +msgid "Name must be at least {min_length} character long." +msgstr "" #: lms/djangoapps/verify_student/views.py msgid "Image data is not valid." @@ -10037,8 +10035,9 @@ msgid "Hello %(full_name)s," msgstr "ЗдраÑтуйте %(full_name)s," #: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt #, python-format -msgid "Your %(platform_name)s ID verification has expired.\" " +msgid "Your %(platform_name)s ID verification has expired. " msgstr "" #: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html @@ -10091,11 +10090,6 @@ msgstr "" msgid "Hello %(full_name)s, " msgstr "" -#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt -#, python-format -msgid "Your %(platform_name)s ID verification has expired. " -msgstr "" - #: lms/templates/verify_student/edx_ace/verificationexpiry/email/subject.txt #, python-format msgid "Your %(platform_name)s Verification has Expired" @@ -10707,15 +10701,6 @@ msgstr "URL-адреÑа веб-Ñайту, пов'Ñзаного з цим ко msgid "The reason this user wants to access the API." msgstr "ПідÑтава Ð´Ð»Ñ Ð´Ð¾Ñтупу до API Ð´Ð»Ñ Ð´Ð°Ð½Ð¾Ð³Ð¾ кориÑтувача." -#: openedx/core/djangoapps/api_admin/models.py -#, python-brace-format -msgid "API access request from {company}" -msgstr "Запит доÑтупу до API від {company}" - -#: openedx/core/djangoapps/api_admin/models.py -msgid "API access request" -msgstr "Запит доÑтупу до API" - #: openedx/core/djangoapps/api_admin/widgets.py #, python-brace-format msgid "" @@ -11077,6 +11062,22 @@ msgstr "Це теÑтове попередженнÑ" msgid "This is a test error" msgstr "Це теÑтова помилка" +#: openedx/core/djangoapps/django_comment_common/models.py +msgid "Administrator" +msgstr "ÐдмініÑтратор" + +#: openedx/core/djangoapps/django_comment_common/models.py +msgid "Moderator" +msgstr "Модератор" + +#: openedx/core/djangoapps/django_comment_common/models.py +msgid "Group Moderator" +msgstr "Модератор груп" + +#: openedx/core/djangoapps/django_comment_common/models.py +msgid "Community TA" +msgstr "Спільнота аÑиÑтентів" + #: openedx/core/djangoapps/embargo/forms.py #: openedx/core/djangoapps/verified_track_content/forms.py msgid "COURSE NOT FOUND. Please check that the course ID is valid." @@ -11701,11 +11702,12 @@ msgid "Specialty" msgstr "СпеціальніÑÑ‚ÑŒ" #: openedx/core/djangoapps/user_api/accounts/utils.py +#, python-brace-format msgid "" -" Make sure that you are providing a valid username or a URL that contains \"" +"Make sure that you are providing a valid username or a URL that contains " +"\"{url_stub}\". To remove the link from your edX profile, leave this field " +"blank." msgstr "" -" ПереконайтеÑÑŒ, що ви надали дійÑне ім'Ñ ÐºÐ¾Ñ€Ð¸Ñтувача або URL-адреÑу, Ñка " -"міÑтить \"" #: openedx/core/djangoapps/user_api/accounts/views.py #: openedx/core/djangoapps/user_authn/views/login.py @@ -11847,17 +11849,12 @@ msgstr "Ви повинні прийнÑти {terms_of_service} {platform_name}" #: openedx/core/djangoapps/user_api/api.py #, python-brace-format msgid "" -"By creating an account with {platform_name}, you agree to " -"abide by our {platform_name} " +"By creating an account, you agree to the " "{terms_of_service_link_start}{terms_of_service}{terms_of_service_link_end}" -" and agree to our {privacy_policy_link_start}Privacy " -"Policy{privacy_policy_link_end}." +" and you acknowledge that {platform_name} and each Member " +"process your personal data in accordance with the " +"{privacy_policy_link_start}Privacy Policy{privacy_policy_link_end}." msgstr "" -"Створюючи обліковий Ð·Ð°Ð¿Ð¸Ñ Ð· {platform_name}, ви погоджуєтеÑÑŒ " -"дотримуватиÑÑ Ð½Ð°ÑˆÐ¾Ð³Ð¾ {platform_name} {terms_of_service_link_start} " -"{terms_of_service} {terms_of_service_link_end} Ñ– погоджуєтеÑÑ Ð½Ð° " -"нашу {privacy_policy_link_start} політику конфіденційноÑÑ‚Ñ– " -"{privacy_policy_link_end}." #. Translators: "Terms of service" is a legal document users must agree to #. in order to register a new account. @@ -12278,8 +12275,9 @@ msgid "" "{expiration_date}{span_close}{a_close}" msgstr "" "{line_break}Оновіть за {upgrade_deadline}щоб отримати необмежений доÑтуп до " -"курÑу, Ñкщо він Ñ–Ñнує на Ñайті. {a_open} Оновити зараз {sronly_span_open} " -"Ð´Ð»Ñ Ð·Ð±ÐµÑ€ÐµÐ¶ÐµÐ½Ð½Ñ Ð´Ð¾Ñтупу до минулого {expiration_date}{span_close}{a_close}" +"курÑу, Ñкщо він Ñ–Ñнує на Ñайті. {a_open} Оновити зараз " +"{sronly_span_open}Â Ð´Ð»Ñ Ð·Ð±ÐµÑ€ÐµÐ¶ÐµÐ½Ð½Ñ Ð´Ð¾Ñтупу до минулого " +"{expiration_date}{span_close}{a_close}" #: openedx/features/course_duration_limits/resolvers.py msgid "%b. %d, %Y" @@ -12331,16 +12329,19 @@ msgstr "ОновленнÑ" msgid "Reviews" msgstr "Відгуки" +#: openedx/features/course_experience/utils.py +#, no-python-format, python-brace-format +msgid "" +"{banner_open}{percentage}% off your first upgrade.{span_close} Discount " +"automatically applied.{div_close}" +msgstr "" + #: openedx/features/course_experience/views/course_home_messages.py #, python-brace-format msgid "{sign_in_link} or {register_link} and then enroll in this course." msgstr "" "{sign_in_link} або {register_link}, а потім зареєÑтруйтеÑÑŒ на цьому курÑÑ–." -#: openedx/features/course_experience/views/course_home_messages.py -msgid "Sign in" -msgstr "Увійти" - #: openedx/features/course_experience/views/course_home_messages.py #, python-brace-format msgid "Welcome to {course_display_name}" @@ -12384,6 +12385,29 @@ msgstr "{choice}" msgid "Set goal to: {goal_text}" msgstr "Ð’Ñтановіть мету до: {goal_text}" +#: openedx/features/discounts/admin.py +msgid "" +"These define the context to disable lms-controlled discounts on. If no " +"values are set, then the configuration applies globally. If a single value " +"is set, then the configuration applies to all courses within that context. " +"At most one value can be set at a time.<br>If multiple contexts apply to a " +"course (for example, if configuration is specified for the course " +"specifically, and for the org that the course is in, then the more specific " +"context overrides the more general context." +msgstr "" + +#: openedx/features/discounts/admin.py +msgid "" +"If any of these values is left empty or \"Unknown\", then their value at " +"runtime will be retrieved from the next most specific context that applies. " +"For example, if \"Disabled\" is left as \"Unknown\" in the course context, " +"then that course will be Disabled only if the org that it is in is Disabled." +msgstr "" + +#: openedx/features/discounts/models.py +msgid "Disabled" +msgstr "" + #: openedx/features/enterprise_support/api.py #, python-brace-format msgid "Enrollment in {course_title} was not complete." @@ -12509,10 +12533,8 @@ msgstr "" #: cms/djangoapps/contentstore/git_export_utils.py msgid "" "Non writable git url provided. Expecting something like: " -"git@github.com:mitocw/edx4edx_lite.git" +"git@github.com:edx/edx4edx_lite.git" msgstr "" -"Ðадано некоректний git адреÑ. Приклад коректної адреÑи: " -"git@github.com:mitocw/edx4edx_lite.git" #: cms/djangoapps/contentstore/git_export_utils.py msgid "" @@ -13381,6 +13403,15 @@ msgstr "" msgid "Legal" msgstr "" +#. Translators: 'edX' and 'Open edX' are trademarks of 'edX Inc.'. Please do +#. not translate any of these trademarks and company names. +#: cms/templates/widgets/footer.html +#: themes/red-theme/lms/templates/footer.html +msgid "" +"edX, Open edX, and the edX and Open edX logos are registered trademarks of " +"{link_start}edX Inc.{link_end}" +msgstr "" + #: cms/templates/widgets/header.html lms/templates/header/header.html #: lms/templates/navigation/navigation.html #: lms/templates/widgets/footer-language-selector.html @@ -13772,6 +13803,10 @@ msgstr "" msgid "External Authentication failed" msgstr "" +#: lms/templates/footer.html +msgid "organization logo" +msgstr "" + #: lms/templates/forgot_password_modal.html msgid "" "Please enter your e-mail address below, and we will e-mail instructions for " @@ -13959,16 +13994,14 @@ msgstr "" msgid "Search for a course" msgstr "" -#. Translators: 'Open edX' is a registered trademark, please keep this -#. untranslated. See http://open.edx.org for more information. -#: lms/templates/index_overlay.html -msgid "Welcome to the Open edX{registered_trademark} platform!" -msgstr "Вітаємо на платформі Open edX {registered_trademark}!" +#: lms/templates/index_overlay.html lms/templates/register-sidebar.html +msgid "Welcome to {platform_name}" +msgstr "" #. Translators: 'Open edX' is a registered trademark, please keep this #. untranslated. See http://open.edx.org for more information. #: lms/templates/index_overlay.html -msgid "It works! This is the default homepage for this Open edX instance." +msgid "It works! Powered by Open edX{registered_trademark}" msgstr "" #: lms/templates/invalid_email_key.html @@ -14256,6 +14289,10 @@ msgstr "" msgid "Reset your answer" msgstr "" +#: lms/templates/problem.html +msgid "Answers are displayed within the problem" +msgstr "" + #: lms/templates/problem_notifications.html msgid "Next Hint" msgstr "" @@ -14450,10 +14487,6 @@ msgstr "" msgid "Log in" msgstr "Увійти" -#: lms/templates/register-sidebar.html -msgid "Welcome to {platform_name}" -msgstr "" - #: lms/templates/register-sidebar.html msgid "" "Registering with {platform_name} gives you access to all of our current and " @@ -14805,11 +14838,6 @@ msgstr "" msgid "Delete course from site" msgstr "" -#. Translators: A version number appears after this string -#: lms/templates/sysadmin_dashboard.html -msgid "Platform Version" -msgstr "" - #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Page {current_page} of {total_pages}" msgstr "Сторінка {current_page} з {total_pages}" @@ -16072,6 +16100,20 @@ msgstr "" msgid "Please wait while we retrieve your order details." msgstr "" +#: lms/templates/course_modes/_upgrade_button.html +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/_upgrade_button.html +#: themes/edx.org/lms/templates/course_modes/choose.html +msgid "Pursue the Verified Track" +msgstr "" + +#: lms/templates/course_modes/_upgrade_button.html +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/_upgrade_button.html +#: themes/edx.org/lms/templates/course_modes/choose.html +msgid "Pursue a Verified Certificate" +msgstr "" + #: lms/templates/course_modes/choose.html #: themes/edx.org/lms/templates/course_modes/choose.html msgid "Enroll In {course_name} | Choose Your Track" @@ -16153,16 +16195,6 @@ msgid "" "or post it directly on LinkedIn" msgstr "" -#: lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -msgid "Pursue a Verified Certificate" -msgstr "" - -#: lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -msgid "Pursue the Verified Track" -msgstr "" - #: lms/templates/course_modes/choose.html #: themes/edx.org/lms/templates/course_modes/choose.html msgid "" @@ -16269,6 +16301,10 @@ msgstr "" msgid "An error occurred. Please try again later." msgstr "" +#: lms/templates/courseware/course_about.html +msgid "An error has occurred. Please ensure that you are logged in to enroll." +msgstr "" + #: lms/templates/courseware/course_about.html msgid "You are enrolled in this course" msgstr "" @@ -16409,7 +16445,6 @@ msgstr "" #: lms/templates/courseware/courseware-chromeless.html #: lms/templates/courseware/courseware.html #: openedx/features/course_bookmarks/templates/course_bookmarks/course-bookmarks.html -#: openedx/features/learner_analytics/templates/learner_analytics/dashboard.html msgid "{course_number} Courseware" msgstr "{course_number} Ðавчальна Програма" @@ -16638,8 +16673,8 @@ msgid "View Grading in studio" msgstr "ПереглÑнути оцінки в Студії" #: lms/templates/courseware/progress.html -msgid "Course Progress for Student '{username}' ({email})" -msgstr "ÐŸÑ€Ð¾Ð³Ñ€ÐµÑ Ñтудента '{username}' ({email}) на курÑÑ–" +msgid "Course Progress for '{username}' ({email})" +msgstr "" #: lms/templates/courseware/progress.html msgid "View Certificate" @@ -18533,15 +18568,9 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The reports listed below are available for download. A link to every report " -"remains available on this page, identified by the UTC date and time of " -"generation. Reports are not deleted, so you will always be able to access " -"previously generated reports from this page." +"The reports listed below are available for download, identified by UTC date " +"and time of generation." msgstr "" -"СпиÑок звітів доÑтупний Ð´Ð»Ñ Ð·Ð°Ð²Ð°Ð½Ñ‚Ð°Ð¶ÐµÐ½Ð½Ñ. ПоÑÐ¸Ð»Ð°Ð½Ð½Ñ Ð½Ð° кожний звіт " -"залишаютьÑÑ Ð´Ð¾Ñтупними на цій Ñторінці, визначеній за датою та чаÑом " -"генерації UTC. Звіти не видалÑÑŽÑ‚ÑŒÑÑ, тому ви завжди зможете переглÑнути " -"Ñтворені раніше звіти з цієї Ñторінки." #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" @@ -18553,13 +18582,13 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"{strong_start}Note{strong_end}: To keep student data secure, you cannot save" -" or email these links for direct access. Copies of links expire within 5 " -"minutes." +"{strong_start}Note{strong_end}: {ul_start}{li_start}To keep student data " +"secure, you cannot save or email these links for direct access. Copies of " +"links expire within 5 minutes.{li_end}{li_start}Report files are deleted 90 " +"days after generation. If you will need access to old reports, download and " +"store the files, in accordance with your institution's data security " +"policies.{li_end}{ul_end}" msgstr "" -"{strong_start}Примітка{strong_end}: щоб захиÑтити дані Ñтудентів, ви " -"зобов'Ñзані не зберігати Ñ– не надÑилати ці поÑÐ¸Ð»Ð°Ð½Ð½Ñ ÐµÐ»ÐµÐºÑ‚Ñ€Ð¾Ð½Ð½Ð¾ÑŽ поштою. " -"Копії поÑилань дійÑні протÑгом 5 хвилин." #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Enrollment Codes" @@ -18933,10 +18962,10 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "" -"In this section, you have the ability to grant extensions on specific units " -"to individual students. Please note that the latest date is always taken; " -"you cannot use this tool to make an assignment due earlier for a particular " -"student." +"In this section, you have the ability to grant extensions on specific " +"subsections to individual students. Please note that the latest date is " +"always taken; you cannot use this tool to make an assignment due earlier for" +" a particular student." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html @@ -18949,7 +18978,7 @@ msgid "Student Email or Username" msgstr "Електронна пошта Ñтудента або ім'Ñ ÐºÐ¾Ñ€Ð¸Ñтувача" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -msgid "Choose the graded unit:" +msgid "Choose the graded subsection:" msgstr "" #. Translators: "format_string" is the string MM/DD/YYYY HH:MM, as that is the @@ -18960,6 +18989,10 @@ msgid "" "{format_string})." msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Reason for extension" +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Change due date for student" msgstr "" @@ -18970,14 +19003,14 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "" -"Here you can see what extensions have been granted on particular units or " -"for a particular student." +"Here you can see what extensions have been granted on particular subsection " +"or for a particular student." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "" -"Choose a graded unit and click the button to obtain a list of all students " -"who have extensions for the given unit." +"Choose a graded subsection and click the button to obtain a list of all " +"students who have extensions for the given subsection." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html @@ -18999,8 +19032,12 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "" "Resetting a problem's due date rescinds a due date extension for a student " -"on a particular unit. This will revert the due date for the student back to " -"the problem's original due date." +"on a particular subsection. This will revert the due date for the student " +"back to the problem's original due date." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Reason for reset" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html @@ -21037,10 +21074,6 @@ msgstr "" msgid "Explore journals and courses" msgstr "" -#: openedx/features/learner_analytics/templates/learner_analytics/dashboard.html -msgid "My Stats (Beta)" -msgstr "" - #. Translators: this section lists all the third-party authentication #. providers #. (for example, Google and LinkedIn) the user can link with or unlink from @@ -21138,7 +21171,7 @@ msgid "© 2012–{year} edX Inc. " msgstr "" #: themes/edx.org/lms/templates/footer.html -msgid "EdX, Open edX, and MicroMasters are registered trademarks of edX Inc. " +msgid "edX, Open edX, and MicroMasters are registered trademarks of edX Inc. " msgstr "" #: themes/edx.org/lms/templates/certificates/_about-accomplishments.html @@ -21204,7 +21237,7 @@ msgstr "" #: themes/edx.org/lms/templates/certificates/_accomplishment-footer.html msgid "" "All rights reserved except where noted. edX, Open edX and the edX and Open " -"edX logos are registered trademarks or trademarks of edX Inc." +"edX logos are registered trademarks of edX Inc." msgstr "" #: themes/edx.org/lms/templates/course_modes/choose.html @@ -21227,14 +21260,6 @@ msgstr "" msgid "Schools & Partners" msgstr "" -#. Translators: 'EdX', 'edX', and 'Open edX' are trademarks of 'edX Inc.'. -#. Please do not translate any of these trademarks and company names. -#: themes/red-theme/lms/templates/footer.html -msgid "" -"EdX, Open edX, and the edX and Open edX logos are registered trademarks or " -"trademarks of {link_start}edX Inc.{link_end}" -msgstr "" - #: themes/red-theme/lms/templates/footer.html msgid "" "{tos_link_start}Terms of Service{tos_link_end} and {honor_link_start}Honor " @@ -24512,14 +24537,6 @@ msgstr "" msgid "LMS" msgstr "" -#. Translators: 'EdX', 'edX', 'Studio', and 'Open edX' are trademarks of 'edX -#. Inc.'. Please do not translate any of these trademarks and company names. -#: cms/templates/widgets/footer.html -msgid "" -"EdX, Open edX, Studio, and the edX and Open edX logos are registered " -"trademarks or trademarks of {link_start}edX Inc.{link_end}" -msgstr "" - #: cms/templates/widgets/header.html msgid "Current Course:" msgstr "" diff --git a/conf/locale/uk/LC_MESSAGES/djangojs.mo b/conf/locale/uk/LC_MESSAGES/djangojs.mo index 3d95fd2ac277e7b156404fa9aea974213b77a5d1..f177ff2c7af222a629233b3fef0a957b79677a3c 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 d4515b10f2e05dc78e1eaee6389eda1c90cc46c4..4e6f82dcbc11dba02321144be0691e2b1eb7760f 100644 --- a/conf/locale/uk/LC_MESSAGES/djangojs.po +++ b/conf/locale/uk/LC_MESSAGES/djangojs.po @@ -18,6 +18,7 @@ # marichkafox <marichka.fox@gmail.com>, 2014 # marichkafox <marichka.fox@gmail.com>, 2014 # Maryna Holovnova <MGG-2008@yandex.ru>, 2014 +# Muhammad Adeel Khan <adeel@edx.org>, 2019 # Natalia Vynogradenko <tannaha@gmail.com>, 2017-2018 # olexiim <olexiim@gmail.com>, 2014-2016 # Olga Filipova <chudaol@gmail.com>, 2015-2016 @@ -46,6 +47,7 @@ # Denis <prohibiti@gmail.com>, 2015 # Irene Korotkova <irca.gav@gmail.com>, 2017 # IvanPrimachenko <jastudent1@gmail.com>, 2014 +# Muhammad Adeel Khan <adeel@edx.org>, 2019 # Natalia Vynogradenko <tannaha@gmail.com>, 2017-2018 # Zapadenska <oruda@ymail.com>, 2014 # Zoriana Zaiats, 2015 @@ -96,7 +98,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2019-04-22 10:49+0000\n" +"POT-Creation-Date: 2019-06-09 20:42+0000\n" "PO-Revision-Date: 2019-03-09 21:43+0000\n" "Last-Translator: Anastasiia Bondarenko <anastasiia.bondarenko@raccoongang.com>\n" "Language-Team: Ukrainian (http://www.transifex.com/open-edx/edx-platform/language/uk/)\n" @@ -3687,7 +3689,7 @@ msgid "" msgstr "" "Цей ÐºÑƒÑ€Ñ Ð¼Ð°Ñ” автоматичний когортинг Ð´Ð»Ñ Ð¿ÐµÑ€ÐµÐ²Ñ–Ñ€ÐµÐ½Ð¸Ñ… учнів, але необхідна " "когорта не Ñ–Ñнує. Вам необхідно Ñтворити когорту вручну, з назвою " -"'{verifyCohortName}', щоб Ñ„ÑƒÐ½ÐºÑ†Ñ–Ñ Ð¿Ñ€Ð°Ñ†ÑŽÐ²Ð°Ð»Ð°." +"'{verifiedCohortName}', щоб Ñ„ÑƒÐ½ÐºÑ†Ñ–Ñ Ð¿Ñ€Ð°Ñ†ÑŽÐ²Ð°Ð»Ð°." #: lms/static/js/groups/views/verified_track_settings_notification.js msgid "" @@ -4121,8 +4123,8 @@ msgid "" "Success! Problem attempts reset for problem '<%- problem_id %>' and student " "'<%- student_id %>'." msgstr "" -"Спроби уÑпішно Ñкинуті Ð´Ð»Ñ Ð·Ð°Ð²Ð´Ð°Ð½Ð½Ñ '<% - problem_id%>' та ÑƒÑ‡Ð½Ñ '<% - " -"student_id%>'." +"Спроби уÑпішно Ñкинуті Ð´Ð»Ñ Ð·Ð°Ð²Ð´Ð°Ð½Ð½Ñ '<%- problem_id %>' та ÑƒÑ‡Ð½Ñ '<%- " +"student_id %>'." #: lms/static/js/instructor_dashboard/student_admin.js msgid "" @@ -4130,15 +4132,15 @@ msgid "" " '<%- student_id %>'. Make sure that the problem and student identifiers are" " complete and correct." msgstr "" -"Помилка при ÑкиданнÑÑ… Ñпроб Ð´Ð»Ñ Ð·Ð°Ð²Ð´Ð°Ð½Ð½Ñ '<% = problem_id%>' та Ñтудента '<%" -" - student_id%>'. ПереконайтеÑÑ, що Ð·Ð°Ð²Ð´Ð°Ð½Ð½Ñ Ñ‚Ð° ідентифікатори Ñтудентів Ñ” " -"повними та правильними." +"Помилка при ÑкиданнÑÑ… Ñпроб Ð´Ð»Ñ Ð·Ð°Ð²Ð´Ð°Ð½Ð½Ñ '<%= problem_id %>' та Ñтудента " +"'<%- student_id %>'. ПереконайтеÑÑ, що Ð·Ð°Ð²Ð´Ð°Ð½Ð½Ñ Ñ‚Ð° ідентифікатори Ñтудентів " +"Ñ” повними та правильними." #: lms/static/js/instructor_dashboard/student_admin.js msgid "" "Delete student '<%- student_id %>'s state on problem '<%- problem_id %>'?" msgstr "" -"Видалити Ñтан Ñтудента '<%- student_id %>' Ð´Ð»Ñ Ð¿Ñ€Ð¾Ð±Ð»ÐµÐ¼Ð¸ '<%= problem_id %>'?" +"Видалити Ñтан Ñтудента '<%- student_id %>' Ð´Ð»Ñ Ð¿Ñ€Ð¾Ð±Ð»ÐµÐ¼Ð¸ '<%- problem_id %>'?" #: lms/static/js/instructor_dashboard/student_admin.js msgid "" @@ -4225,7 +4227,7 @@ msgid "" "Successfully started task to reset attempts for problem '<%- problem_id %>'." " Click the 'Show Task Status' button to see the status of the task." msgstr "" -"УÑпішно розпочато задачу Ñкинути Ñпроби Ð´Ð»Ñ Ð·Ð°Ð²Ð´Ð°Ð½Ð½Ñ '<% - problem_id%>'. " +"УÑпішно розпочато задачу Ñкинути Ñпроби Ð´Ð»Ñ Ð·Ð°Ð²Ð´Ð°Ð½Ð½Ñ '<%- problem_id %>'. " "ÐатиÑніть кнопку «Показати Ñтан задачі», щоб побачити ÑÑ‚Ð°Ñ‚ÑƒÑ Ð·Ð°Ð´Ð°Ñ‡Ñ–." #: lms/static/js/instructor_dashboard/student_admin.js @@ -4234,8 +4236,8 @@ msgid "" "problem_id %>'. Make sure that the problem identifier is complete and " "correct." msgstr "" -"Помилка при запуÑку задачі Ð´Ð»Ñ ÑÐºÐ¸Ð´Ð°Ð½Ð½Ñ Ñпроб уÑÑ–Ñ… Ñтудентів на завданні '<%" -" - problem_id%>'. ПереконайтеÑÑ, що ідентифікатор Ð·Ð°Ð²Ð´Ð°Ð½Ð½Ñ Ñ” повним Ñ– " +"Помилка при запуÑку задачі Ð´Ð»Ñ ÑÐºÐ¸Ð´Ð°Ð½Ð½Ñ Ñпроб уÑÑ–Ñ… Ñтудентів на завданні " +"'<%- problem_id %>'. ПереконайтеÑÑ, що ідентифікатор Ð·Ð°Ð²Ð´Ð°Ð½Ð½Ñ Ñ” повним Ñ– " "правильним." #: lms/static/js/instructor_dashboard/student_admin.js @@ -4284,9 +4286,9 @@ msgid "" "student '<%- student_id %>'. Make sure that the the score and the problem " "and student identifiers are complete and correct." msgstr "" -"Помилка запуÑку Ð·Ð°Ð²Ð´Ð°Ð½Ð½Ñ Ð´Ð»Ñ Ð¿ÐµÑ€ÐµÐ²Ð¸Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð¾Ñ†Ñ–Ð½ÐºÐ¸ Ð´Ð»Ñ Ð·Ð°Ð´Ð°Ñ‡Ñ– \"<% - " -"problem_id%> ' Ð´Ð»Ñ Ñтудента\" <% - student_id%>'. ПереконайтеÑÑ, що оцінка " -"та ідентифікатори задачі та Ñтудента Ñ” повними та правильними." +"Помилка запуÑку Ð·Ð°Ð²Ð´Ð°Ð½Ð½Ñ Ð´Ð»Ñ Ð¿ÐµÑ€ÐµÐ²Ð¸Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð¾Ñ†Ñ–Ð½ÐºÐ¸ Ð´Ð»Ñ Ð·Ð°Ð´Ð°Ñ‡Ñ– '<%- " +"problem_id %>' Ð´Ð»Ñ Ñтудента '<%- student_id %>'. ПереконайтеÑÑ, що оцінка та" +" ідентифікатори задачі та Ñтудента Ñ” повними та правильними." #: lms/static/js/instructor_dashboard/student_admin.js msgid "" @@ -4640,7 +4642,7 @@ msgid "" "{htmlStart}Want to change your email, name, or password instead?{htmlEnd}" msgstr "" "{htmlStart}Бажаєте замінити адреÑу електронної пошти, імені або паролÑ? " -"{HtmlEnd}" +"{htmlEnd}" #: lms/static/js/student_account/components/StudentAccountDeletion.jsx msgid "" @@ -4652,7 +4654,7 @@ msgstr "" "{strongStart}ПопередженнÑ: Ð²Ð¸Ð´Ð°Ð»ÐµÐ½Ð½Ñ Ðккаунту Ñ” поÑтійним. {strongEnd} Будь " "лаÑка, уважно прочитайте вище, перш ніж продовжити. Це незворотні дії, Ñ– " "{strongStart} ви більше не зможете викориÑтовувати ту Ñаму пошту на edX. " -"{StrongEnd}" +"{strongEnd}" #: lms/static/js/student_account/components/StudentAccountDeletion.jsx msgid "We’re sorry to see you go!" @@ -4817,7 +4819,7 @@ msgstr "" "ÑÐºÐ¸Ð´Ð°Ð½Ð½Ñ Ð¿Ð°Ñ€Ð¾Ð»Ñ, переконайтеÑÑ, що ви ввели правильну адреÑу електронної " "пошти або перевірте папку зі Ñпамом.{paragraphEnd}{paragraphStart}Якщо вам " "потрібна допомога, {anchorStart} звернітьÑÑ Ð´Ð¾ Ñлужби технічної підтримки " -"{anchorEnd}. {ParagraphEnd}" +"{anchorEnd}. {paragraphEnd}" #: lms/static/js/student_account/views/LoginView.js msgid "" @@ -5977,8 +5979,8 @@ msgstr "Тип" #: cms/static/js/views/assets.js msgid "File {filename} exceeds maximum size of {maxFileSizeInMBs} MB" msgstr "" -"Файл {filename} перевищує макÑимально допуÑтимий розмір в " -"{maximum_size_in_megabytes} MБ" +"Файл {filename} перевищує макÑимально допуÑтимий розмір в {maxFileSizeInMBs}" +" MБ" #: cms/static/js/views/assets.js msgid "" @@ -7850,6 +7852,10 @@ msgstr "" msgid "Mark Exam As Completed" msgstr "" +#: lms/templates/courseware/proctored-exam-status.underscore +msgid "You are taking \"{exam_link}\" as {exam_type}. " +msgstr "" + #: lms/templates/courseware/proctored-exam-status.underscore msgid "a timed exam" msgstr "" @@ -8624,7 +8630,8 @@ msgid "Register with Institution/Campus Credentials" msgstr "" #: lms/templates/student_account/institution_register.underscore -msgid "Register through edX" +#: lms/templates/student_account/register.underscore +msgid "Create an Account" msgstr "" #: lms/templates/student_account/login.underscore @@ -8731,10 +8738,6 @@ msgstr "" msgid "or create a new one here" msgstr "" -#: lms/templates/student_account/register.underscore -msgid "Create an Account" -msgstr "" - #: lms/templates/student_account/register.underscore msgid "Support education research by providing additional information" msgstr "" diff --git a/conf/locale/vi/LC_MESSAGES/django.mo b/conf/locale/vi/LC_MESSAGES/django.mo index a0c3b8eac1659c43c978cbaeb2ea0ed2ee06fd27..243449f2b7462ea41e0e43033e82ba3d98ed8671 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/djangojs.mo b/conf/locale/vi/LC_MESSAGES/djangojs.mo index 0f74d65c314b0a17cd286bfe36a89f1d71772041..07b20ae3f763d0e92d1c43cd99ef5fb9ffb2c00e 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 8c3749f9eaa1383c352841711ccd1942dbea9906..34df3b102cab7b4ba29fb208277dd3e42b74a82b 100644 --- a/conf/locale/vi/LC_MESSAGES/djangojs.po +++ b/conf/locale/vi/LC_MESSAGES/djangojs.po @@ -17,6 +17,7 @@ # Hoang Ha <halink0803@gmail.com>, 2014 # Minh Trang Dao <minhtrang@kaist.ac.kr>, 2015 # Minh Tue Vo <mvo@edx.org>, 2014 +# Muhammad Adeel Khan <adeel@edx.org>, 2019 # Minh Tue Vo <mvo@edx.org>, 2014 # Ha Ngoc Chung <ngocchung75@gmail.com>, 2013 # NGUYEN CONG NAM <congnam0409@gmail.com>, 2014 @@ -103,7 +104,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2019-04-22 10:49+0000\n" +"POT-Creation-Date: 2019-06-09 20:42+0000\n" "PO-Revision-Date: 2019-04-25 10:55+0000\n" "Last-Translator: Waheed Ahmed <waheed@edx.org>\n" "Language-Team: Vietnamese (http://www.transifex.com/open-edx/edx-platform/language/vi/)\n" @@ -4054,9 +4055,6 @@ msgid "" " '<%- student_id %>'. Make sure that the problem and student identifiers are" " complete and correct." msgstr "" -"Lá»—i khi tái thiết láºp số lần có quyá»n ná»™p bà i cho câu há»i '<%= problem_id " -"%>' cho há»c viên '<%= student_id %>'. Xin kiểm tra xem tên của câu há»i và " -"của há»c viên viết đã đầy đủ và đúng chÆ°a." #: lms/static/js/instructor_dashboard/student_admin.js msgid "" @@ -4146,15 +4144,13 @@ msgstr "" #: lms/static/js/instructor_dashboard/student_admin.js msgid "Reset attempts for all students on problem '<%- problem_id %>'?" msgstr "" -"Tái thiết láºp số lần có quyá»n ná»™p bà i của tất cả các há»c viên cho câu há»i " -"'<%= problem_id %>'?" #: lms/static/js/instructor_dashboard/student_admin.js msgid "" "Successfully started task to reset attempts for problem '<%- problem_id %>'." " Click the 'Show Task Status' button to see the status of the task." msgstr "" -"Äã bắt đầu tác vụ tái thiết láºp số lần có quyá»n ná»™p bà i cho câu há»i '<%= " +"Äã bắt đầu tác vụ tái thiết láºp số lần có quyá»n ná»™p bà i cho câu há»i '<%- " "problem_id %>'. Bấm nút 'Hiển thị lịch sá» tác vụ' để xem trạng thái của tác " "vụ." @@ -4165,7 +4161,7 @@ msgid "" "correct." msgstr "" "Lá»—i khi bắt đầu tác vụ tái thiết láºp số lần tất cả các há»c viên có quyá»n ná»™p" -" bà i đối vá»›i câu há»i '<%= problem_id %>'. Xin kiểm tra xem tên của câu há»i " +" bà i đối vá»›i câu há»i '<%- problem_id %>'. Xin kiểm tra xem tên của câu há»i " "viết đã đầy đủ và đúng chÆ°a." #: lms/static/js/instructor_dashboard/student_admin.js @@ -4178,8 +4174,6 @@ msgid "" "'<%- student_id %>'. Click the 'Show Task Status' button to see the status " "of the task." msgstr "" -"Äã bắt đầu chấm lại câu há»i '<%= problem_id %>' cho há»c viên '<%= student_id" -" %>'. Nhấn nút 'Hiển thị Trạng thái Tác vụ' để xem trạng thái của tác vụ." #: lms/static/js/instructor_dashboard/student_admin.js msgid "" @@ -4187,9 +4181,6 @@ msgid "" "'<%- student_id %>'. Make sure that the the problem and student identifiers " "are complete and correct." msgstr "" -"Lá»—i khi bắt đầu việc chấm lại câu há»i'<%= problem_id %>' cho há»c viên '<%= " -"student_id %>'. Äá» nghị kiểm tra câu há»i và tên của há»c viên viết đã đầy đủ " -"và đúng chÆ°a." #: lms/static/js/instructor_dashboard/student_admin.js msgid "Please enter a score." @@ -4201,8 +4192,6 @@ msgid "" "student '<%- student_id %>'. Click the 'Show Task Status' button to see the " "status of the task." msgstr "" -"Äã bắt đầu chấm lại câu há»i '<%= problem_id %>' cho há»c viên '<%= student_id" -" %>'. Nhấn nút 'Hiển thị Trạng thái Tác vụ' để xem trạng thái của tác vụ." #: lms/static/js/instructor_dashboard/student_admin.js msgid "" @@ -4210,9 +4199,6 @@ msgid "" "student '<%- student_id %>'. Make sure that the the score and the problem " "and student identifiers are complete and correct." msgstr "" -"Lá»—i khi bắt đầu việc cho Ä‘iểm lại câu há»i '<%= problem_id %>' cho há»c viên " -"'<%= student_id %>'. Äá» nghị kiểm tra Ä‘iểm, câu há»i và tên của há»c viên viết" -" đã đầy đủ và đúng chÆ°a." #: lms/static/js/instructor_dashboard/student_admin.js msgid "" @@ -4234,14 +4220,14 @@ msgstr "" #: lms/static/js/instructor_dashboard/student_admin.js msgid "Rescore problem '<%- problem_id %>' for all students?" -msgstr "Chấm lại câu há»i '<%= problem_id %>' cho tất cả các há»c viên?" +msgstr "" #: lms/static/js/instructor_dashboard/student_admin.js msgid "" "Successfully started task to rescore problem '<%- problem_id %>' for all " "students. Click the 'Show Task Status' button to see the status of the task." msgstr "" -"Äã bắt đầu tác vụ chấm lại câu há»i '<%= problem_id %>' cho tất cả các há»c " +"Äã bắt đầu tác vụ chấm lại câu há»i '<%- problem_id %>' cho tất cả các há»c " "viên. Nhấn nút 'Hiển thị Trạng thái Tác vụ' để xem trạng thái của tác vụ." #: lms/static/js/instructor_dashboard/student_admin.js @@ -4249,8 +4235,6 @@ msgid "" "Error starting a task to rescore problem '<%- problem_id %>'. Make sure that" " the problem identifier is complete and correct." msgstr "" -"Lá»—i khi bắt đầu tác vụ chấm lại bà i '<%= problem_id %>'. Xin kiểm tra xem mã" -" câu há»i viết đã đầy đủ và đúng chÆ°a." #. Translators: a "Task" is a background process such as grading students or #. sending email @@ -7751,6 +7735,10 @@ msgstr "Xác nháºn ngay bây giá»" msgid "Mark Exam As Completed" msgstr "Äánh dấu bà i thi đã hoà n thà nh" +#: lms/templates/courseware/proctored-exam-status.underscore +msgid "You are taking \"{exam_link}\" as {exam_type}. " +msgstr "" + #: lms/templates/courseware/proctored-exam-status.underscore msgid "a timed exam" msgstr "" @@ -8510,8 +8498,9 @@ msgid "Register with Institution/Campus Credentials" msgstr "Äăng ký vá»›i thông tin của tổ chức / trÆ°á»ng" #: lms/templates/student_account/institution_register.underscore -msgid "Register through edX" -msgstr "Äăng ký qua edX" +#: lms/templates/student_account/register.underscore +msgid "Create an Account" +msgstr "" #: lms/templates/student_account/login.underscore msgid "First time here?" @@ -8617,10 +8606,6 @@ msgstr "" msgid "or create a new one here" msgstr "" -#: lms/templates/student_account/register.underscore -msgid "Create an Account" -msgstr "" - #: lms/templates/student_account/register.underscore msgid "Support education research by providing additional information" msgstr "" diff --git a/conf/locale/zh_CN/LC_MESSAGES/django.mo b/conf/locale/zh_CN/LC_MESSAGES/django.mo index 1a770c53d5bf31376fdff9f5f692d4accc9cedd1..59e7a90b38a64226218ab0e1177b2ca6d1daa6d3 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 4e15283d7d7030326bce0e561a51a5f42c8bb55d..91d4c8807380a59d873430aec727fbdda5f51a3f 100644 --- a/conf/locale/zh_CN/LC_MESSAGES/django.po +++ b/conf/locale/zh_CN/LC_MESSAGES/django.po @@ -1,11 +1,11 @@ # #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# # edX community translations have been downloaded from Chinese (China) (http://www.transifex.com/open-edx/edx-platform/language/zh_CN/). -# Copyright (C) 2018 EdX +# Copyright (C) 2019 EdX # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. # # Translators: # vingte <411029240@qq.com>, 2014 -# abby li <yc.li@eliteu.cn>, 2018 +# abby li <yc.li@eliteu.cn>, 2018-2019 # Alfred <alfredhuang211@qq.com>, 2015 # alisan617, 2017 # BertZou <turingcat@gmail.com>, 2015 @@ -22,13 +22,13 @@ # focusheart <focusheart@gmail.com>, 2014 # freakylemon <freakylemon@ymail.com>, 2014 # freakylemon <freakylemon@ymail.com>, 2014 -# ckyOL, 2015 +# 1c836b125659bc943ac07aaf233cadb5, 2015 # GoodLuck <1833447072@qq.com>, 2014 # Wentao Han <wentao.han@gmail.com>, 2013 # bnw, 2014 # bnw, 2014 -# HYY <wingyin.wong@outlook.com>, 2018 -# ifLab <webmaster@iflab.org>, 2015,2018 +# HYY <wingyin.wong@outlook.com>, 2018-2019 +# ifLab <webmaster@iflab.org>, 2015,2018-2019 # Jerome Huang <canni3269@gmail.com>, 2014 # jg Ma <jg20040308@126.com>, 2016 # Jiadong Zhang <fighting-dong@qq.com>, 2015 @@ -95,10 +95,11 @@ # èµµå®é‘« <zhaohongxinxin@aol.com>, 2015 # #-#-#-#-# django-studio.po (edx-platform) #-#-#-#-# # edX community translations have been downloaded from Chinese (China) (http://www.transifex.com/open-edx/edx-platform/language/zh_CN/). -# Copyright (C) 2018 EdX +# Copyright (C) 2019 EdX # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. # # Translators: +# abby li <yc.li@eliteu.cn>, 2019 # 肖寒 <bookman@vip.163.com>, 2013 # Changyue Wang <peterwang.dut@gmail.com>, 2014-2015 # focusheart <focusheart@gmail.com>, 2014 @@ -107,7 +108,7 @@ # Harry Li <harry75369@gmail.com>, 2014 # hohomi <hohomi@gmail.com>, 2016 # hohomi <hohomi@gmail.com>, 2016 -# ifLab <webmaster@iflab.org>, 2018 +# ifLab <webmaster@iflab.org>, 2018-2019 # Iris Zeng <yz3535@nyu.edu>, 2016 # Jerome Huang <canni3269@gmail.com>, 2014 # Jianfei Wang <me@thinxer.com>, 2013 @@ -134,6 +135,7 @@ # 刘知远 <liuliudong@163.com>, 2013 # å¼ å¤ªçº¢ <zth@xjau.edu.cn>, 2014 # å¾® æŽ <w.li@eliteu.com.cn>, 2018 +# æ–¹ 明旗 <mingflag@outlook.com>, 2019 # 汤和果 <hgtang93@163.com>, 2015 # 沈世奇 <vicapple22@gmail.com>, 2013 # ç†Šå†¬å‡ <xdsnet@gmail.com>, 2013 @@ -141,12 +143,13 @@ # 肖寒 <bookman@vip.163.com>, 2013 # #-#-#-#-# mako.po (edx-platform) #-#-#-#-# # edX community translations have been downloaded from Chinese (China) (http://www.transifex.com/open-edx/edx-platform/language/zh_CN/) -# Copyright (C) 2018 edX +# Copyright (C) 2019 edX # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. # # Translators: # perypery <410224186@qq.com>, 2014 # vingte <411029240@qq.com>, 2014 +# abby li <yc.li@eliteu.cn>, 2019 # Alfred <alfredhuang211@qq.com>, 2015 # alisan617, 2017 # 刘家骅 <alphaf52@gmail.com>, 2013 @@ -173,8 +176,9 @@ # Hu Tong <buildmindht@outlook.com>, 2014 # bnw, 2014 # bnw, 2014 +# HYY <wingyin.wong@outlook.com>, 2019 # ifLab <webmaster@iflab.org>, 2014-2015 -# ifLab <webmaster@iflab.org>, 2018 +# ifLab <webmaster@iflab.org>, 2018-2019 # j <786855796@qq.com>, 2015 # Jerome Huang <canni3269@gmail.com>, 2014 # Jerome Huang <canni3269@gmail.com>, 2014 @@ -265,12 +269,13 @@ # 黄鸿飞 <853885165@qq.com>, 2015 # #-#-#-#-# mako-studio.po (edx-platform) #-#-#-#-# # edX community translations have been downloaded from Chinese (China) (http://www.transifex.com/open-edx/edx-platform/language/zh_CN/) -# Copyright (C) 2018 edX +# Copyright (C) 2019 edX # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. # # Translators: # dcschwester <244876839@qq.com>, 2014 # AdiaCheng <75707teen@gmail.com>, 2014 +# abby li <yc.li@eliteu.cn>, 2019 # AdiaCheng <75707teen@gmail.com>, 2014 # 刘家骅 <alphaf52@gmail.com>, 2013 # BertZou <turingcat@gmail.com>, 2015 @@ -284,7 +289,7 @@ # Wentao Han <wentao.han@gmail.com>, 2013 # æŽèŽ‰ <happylily0516@foxmail.com>, 2013 # Harry Li <harry75369@gmail.com>, 2014 -# ifLab <webmaster@iflab.org>, 2018 +# ifLab <webmaster@iflab.org>, 2018-2019 # Jerome Huang <canni3269@gmail.com>, 2014 # jg Ma <jg20040308@126.com>, 2016 # Jianfei Wang <me@thinxer.com>, 2013 @@ -345,10 +350,11 @@ # 黄鸿飞 <853885165@qq.com>, 2015 # #-#-#-#-# wiki.po (edx-platform) #-#-#-#-# # edX community translations have been downloaded from Chinese (China) (http://www.transifex.com/open-edx/edx-platform/language/zh_CN/) -# Copyright (C) 2018 edX +# Copyright (C) 2019 edX # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. # # Translators: +# abby li <yc.li@eliteu.cn>, 2019 # focusheart <focusheart@gmail.com>, 2014 # focusheart <focusheart@gmail.com>, 2014 # Harry Li <harry75369@gmail.com>, 2014 @@ -373,14 +379,23 @@ # Yu-Hua Hsieh <beiluo.shimen@icloud.com>, 2014 # zhoubizhang <zbzcool@163.com>, 2014 # 汤和果 <hgtang93@163.com>, 2015 +# #-#-#-#-# edx_proctoring_proctortrack.po (0.1a) #-#-#-#-# +# edX community translations have been downloaded from Chinese (China) (https://www.transifex.com/open-edx/teams/6205/zh_CN/) +# Copyright (C) 2019 edX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# EdX Team <info@edx.org>, 2019. +# +# Translators: +# ifLab <webmaster@iflab.org>, 2019 +# msgid "" msgstr "" -"Project-Id-Version: edx-platform\n" +"Project-Id-Version: 0.1a\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2018-12-30 20:42+0000\n" -"PO-Revision-Date: 2018-12-12 13:57+0000\n" -"Last-Translator: å¾® æŽ <w.li@eliteu.com.cn>\n" -"Language-Team: Chinese (China) (http://www.transifex.com/open-edx/edx-platform/language/zh_CN/)\n" +"POT-Creation-Date: 2019-06-09 20:42+0000\n" +"PO-Revision-Date: 2019-01-20 20:43+0000\n" +"Last-Translator: ifLab <webmaster@iflab.org>, 2019\n" +"Language-Team: Chinese (China) (https://www.transifex.com/open-edx/teams/6205/zh_CN/)\n" "Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -572,7 +587,7 @@ msgstr "诚信准则" #: common/djangoapps/course_modes/helpers.py msgid "You're enrolled as a professional education student" -msgstr "ä½ å·²ä½œä¸ºä¸“ä¸šæ•™è‚²å¦ç”Ÿé€‰è¯¾" +msgstr "您已作为专业教育å¦ç”Ÿé€‰è¯¾" #: common/djangoapps/course_modes/helpers.py msgid "Professional Ed" @@ -633,11 +648,14 @@ msgstr "è£èª‰" msgid "" "Professional education modes are not allowed to have expiration_datetime " "set." -msgstr "专业的教育模å¼ä¸å…许有过期的日期时间设置。" +msgstr "专业教育模å¼ä¸å…许有过期的日期时间设置。" #: common/djangoapps/course_modes/models.py -msgid "Verified modes cannot be free." -msgstr "已验è¯çš„模å¼è¦æ”¶å–费用。" +#, python-brace-format +msgid "" +"The {course_mode} course mode has a minimum price of {min_price}. You must " +"set a price greater than or equal to {min_price}." +msgstr "这个 {course_mode} 课程模å¼çš„æœ€ä½Žä»·æ ¼ä¸º{min_price}。您必须设置一个大于或ç‰äºŽ{min_price}çš„ä»·æ ¼ã€‚" #. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# #. Translators: This will look like '$50', where {currency_symbol} is a symbol @@ -687,35 +705,13 @@ msgstr "选择的数é‡æ— 效。" msgid "No selected price or selected price is too low." msgstr "æœªé€‰æ‹©ä»·æ ¼æˆ–é€‰æ‹©çš„ä»·æ ¼è¿‡ä½Žã€‚" -#: common/djangoapps/django_comment_common/models.py -msgid "Administrator" -msgstr "管ç†å‘˜" - -#: common/djangoapps/django_comment_common/models.py -msgid "Moderator" -msgstr "版主" - -#: common/djangoapps/django_comment_common/models.py -msgid "Group Moderator" -msgstr "群主" - -#: common/djangoapps/django_comment_common/models.py -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Community TA" -msgstr "社区助教" - -#: common/djangoapps/django_comment_common/models.py -#: lms/djangoapps/instructor/paidcourse_enrollment_report.py -msgid "Student" -msgstr "å¦ç”Ÿ" - #: common/djangoapps/student/admin.py msgid "User profile" msgstr "用户资料" #: common/djangoapps/student/admin.py msgid "Account recovery" -msgstr "æ¢å¤è´¦å·" +msgstr "验è¯è´¦æˆ·" #. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# #. Translators: This label appears above a field on the login form @@ -738,17 +734,23 @@ msgid "" "password." msgstr "未å˜å‚¨åŽŸå§‹å¯†ç ï¼Œå› æ¤æ— 法查看æ¤ç”¨æˆ·çš„密ç 。" +#: common/djangoapps/student/admin.py +#, python-format +msgid "%(count)d student account was unlocked." +msgid_plural "%(count)d student accounts were unlocked." +msgstr[0] "%(count)då¦ç”Ÿè´¦æˆ·æœªè¢«è§£é”。" + #: common/djangoapps/student/forms.py msgid "" "That e-mail address doesn't have an associated user account. Are you sure " "you've registered?" -msgstr "该电å邮件地å€ä¸å…·æœ‰ç›¸å…³è”的用户å¸æˆ·ã€‚ä½ ç¡®å®šä½ å·²ç»æ³¨å†Œï¼Ÿ" +msgstr "æ¤é‚®ç®±æœªå…³è”任何用户账å·ã€‚您确定æ¤é‚®ç®±å·²ç»æ³¨å†Œï¼Ÿ" #: common/djangoapps/student/forms.py msgid "" "The user account associated with this e-mail address cannot reset the " "password." -msgstr "与æ¤ç”µå邮件地å€å…³è”的用户å¸æˆ·ä¸èƒ½é‡æ–°è®¾ç½®å¯†ç 。" +msgstr "与æ¤é‚®ç®±å…³è”的用户账å·æ— 法é‡æ–°è®¾ç½®å¯†ç 。" #: common/djangoapps/student/forms.py msgid "Full Name cannot contain the following characters: < >" @@ -759,13 +761,13 @@ msgid "A properly formatted e-mail is required" msgstr "需è¦æ£ç¡®çš„é‚®ä»¶æ ¼å¼" #: common/djangoapps/student/forms.py -msgid "Your legal name must be a minimum of two characters long" -msgstr "ä½ çš„åˆæ³•åå—必须至少包å«ä¸¤ä¸ªå—符的长度" +msgid "Your legal name must be a minimum of one character long" +msgstr "" #: common/djangoapps/student/forms.py #, python-format msgid "Email cannot be more than %(limit_value)s characters long" -msgstr "Email长度ä¸èƒ½è¶…过 %(limit_value)s 个å—符" +msgstr "邮箱长度ä¸èƒ½è¶…过 %(limit_value)s 个å—符" #: common/djangoapps/student/forms.py msgid "You must accept the terms of service." @@ -777,19 +779,19 @@ msgstr "需è¦ä»¥ä¸Šå¦åŽ†" #: common/djangoapps/student/forms.py msgid "Your gender is required" -msgstr "ä½ çš„æ€§åˆ«æ˜¯å¿…å¡«é¡¹" +msgstr "您的性别是必填项" #: common/djangoapps/student/forms.py msgid "Your year of birth is required" -msgstr "ä½ çš„å‡ºç”Ÿå¹´ä»½æ˜¯å¿…å¡«é¡¹" +msgstr "您的出生年份是必填项" #: common/djangoapps/student/forms.py msgid "Your mailing address is required" -msgstr "ä½ çš„é‚®ä»¶åœ°å€æ˜¯å¿…填项" +msgstr "您的邮箱是必填项" #: common/djangoapps/student/forms.py msgid "A description of your goals is required" -msgstr "ä½ çš„ç›®æ ‡æ述是必填项" +msgstr "æ‚¨çš„ç›®æ ‡æ述是必填项" #: common/djangoapps/student/forms.py msgid "A city is required" @@ -809,24 +811,25 @@ msgstr "您é—æ¼äº†ä¸€ä¸ªæˆ–多个必须填写å—段" #: common/djangoapps/student/forms.py msgid "Unauthorized email address." -msgstr "未ç»æŽˆæƒçš„电å邮件地å€" +msgstr "未ç»æŽˆæƒçš„邮箱" #: common/djangoapps/student/forms.py +#: common/djangoapps/student/views/management.py #, python-brace-format msgid "" "It looks like {email} belongs to an existing account. Try again with a " "different email address." -msgstr "看起æ¥åƒçŽ°æœ‰çš„å¸æˆ· {email} 。使用ä¸åŒçš„电å邮件地å€å†è¯•ä¸€æ¬¡ã€‚" +msgstr "邮箱 {email} 已被其他账å·å…³è”。请使用å¦ä¸€ä¸ªé‚®ç®±é‡è¯•ã€‚" #: common/djangoapps/student/helpers.py #, python-brace-format msgid "An account with the Public Username '{username}' already exists." -msgstr "公开用户å'{username}'对应的账户已å˜åœ¨ã€‚" +msgstr "公开用户å'{username}'对应的账å·å·²å˜åœ¨ã€‚" #: common/djangoapps/student/helpers.py #, python-brace-format msgid "An account with the Email '{email}' already exists." -msgstr "电å邮件'{email}'对应的账户已å˜åœ¨ã€‚" +msgstr "邮箱'{email}'对应的账å·å·²å˜åœ¨ã€‚" #: common/djangoapps/student/management/commands/manage_group.py msgid "Removed group: \"{}\"" @@ -881,7 +884,7 @@ msgstr "设置用户\"{username}\"çš„{attribute}值为\"{new_value}\"" msgid "" "Skipping user \"{}\" because the specified and existing email addresses do " "not match." -msgstr "设置的邮箱与现å˜é‚®ç®±åœ°å€ä¸åŒ¹é…,跳过用户\"{}\"。" +msgstr "设置的邮箱与现å˜é‚®ç®±ä¸åŒ¹é…,跳过用户\"{}\"。" #: common/djangoapps/student/management/commands/manage_user.py msgid "Did not find a user with username \"{}\" - skipping." @@ -926,11 +929,11 @@ msgstr "把用户 \"{username}\" 从{group_names}组ä¸ç§»é™¤" msgid "" "Your account has been disabled. If you believe this was done in error, " "please contact us at {support_email}" -msgstr "您的账户已ç»è¢«ç¦ç”¨ã€‚如果您有任何疑问请è”系我们{support_email}" +msgstr "您账å·å·²ç»è¢«ç¦ç”¨ã€‚如果您有任何疑问请è”系我们{support_email}" #: common/djangoapps/student/middleware.py msgid "Disabled Account" -msgstr "å·²åœç”¨çš„账户" +msgstr "å·²åœç”¨çš„è´¦å·" #: common/djangoapps/student/models.py msgid "Male" @@ -1056,11 +1059,11 @@ msgstr "æ¤ç”¨æˆ·å±žæ€§å€¼ã€‚" #: common/djangoapps/student/models.py msgid "Secondary email address" -msgstr "辅助电å邮件地å€" +msgstr "备选邮箱" #: common/djangoapps/student/models.py msgid "Secondary email address to recover linked account." -msgstr "辅助电å邮件地å€ä»¥æ¢å¤å…³è”å¸æˆ·ã€‚" +msgstr "用于æ¢å¤å…³è”è´¦å·çš„备选邮箱。" #: common/djangoapps/student/views/dashboard.py msgid " and " @@ -1106,7 +1109,7 @@ msgid "" "{link_start}{platform_name} Support{link_end}." msgstr "" "查看{email_start} {email} " -"{email_end}收件箱ä¸çš„{platform_name}å¸æˆ·æ¿€æ´»é“¾æŽ¥ã€‚如果您需è¦å¸®åŠ©ï¼Œè¯·è”ç³»{link_start} " +"{email_end}收件箱ä¸çš„{platform_name}è´¦å·æ¿€æ´»é“¾æŽ¥ã€‚如果您需è¦å¸®åŠ©ï¼Œè¯·è”ç³»{link_start} " "{platform_name}支æŒ{link_end}。" #: common/djangoapps/student/views/dashboard.py @@ -1114,7 +1117,13 @@ msgstr "" msgid "" "Add a recovery email to retain access when single-sign on is not available. " "Go to {link_start}your Account Settings{link_end}." -msgstr "" +msgstr "æ·»åŠ éªŒè¯ç”µåé‚®ä»¶ï¼Œä»¥ä¾¿åœ¨æ— æ³•ä½¿ç”¨å•ç‚¹ç™»å½•æ—¶ä¿ç•™è®¿é—®æƒé™ã€‚转到{link_start}您的账户设置{link_end}。" + +#: common/djangoapps/student/views/dashboard.py +msgid "" +"Recovery email is not activated yet. Kindly visit your email and follow the " +"instructions to activate it." +msgstr "验è¯é‚®ä»¶å°šæœªæ¿€æ´»ã€‚请访问您的电å邮件,并按照说明已激活它。" #: common/djangoapps/student/views/dashboard.py #, python-brace-format @@ -1124,15 +1133,15 @@ msgstr "您查找的课程将在{date}åŽå¼€è¯¾ã€‚" #: common/djangoapps/student/views/dashboard.py #, python-brace-format msgid "The course you are looking for is closed for enrollment as of {date}." -msgstr "ä½ æœç´¢çš„课程登记关é—时间截æ¢è‡³ {date}。" +msgstr "您æœç´¢çš„课程登记关é—时间截æ¢è‡³ {date}。" #: common/djangoapps/student/views/management.py msgid "No inactive user with this e-mail exists" -msgstr "æ— éžæ¿€æ´»ç”¨æˆ·ä¸Žæœ¬é‚®ä»¶åœ°å€å…³è”。" +msgstr "" #: common/djangoapps/student/views/management.py msgid "Unable to send reactivation email" -msgstr "æ— æ³•å‘é€é‡æ–°æ¿€æ´»çš„电å邮件" +msgstr "" #: common/djangoapps/student/views/management.py msgid "Course id not specified" @@ -1176,15 +1185,15 @@ msgstr "用户å {} ä¸å˜åœ¨" #: common/djangoapps/student/views/management.py msgid "Successfully disabled {}'s account" -msgstr "æˆåŠŸåœç”¨{}的账户" +msgstr "æˆåŠŸåœç”¨{}çš„è´¦å·" #: common/djangoapps/student/views/management.py msgid "Successfully reenabled {}'s account" -msgstr "æˆåŠŸé‡æ–°å¯ç”¨{}的账户" +msgstr "æˆåŠŸé‡æ–°å¯ç”¨{}çš„è´¦å·" #: common/djangoapps/student/views/management.py msgid "Unexpected account status" -msgstr "异常的账户状æ€" +msgstr "异常的账å·çŠ¶æ€" #: common/djangoapps/student/views/management.py #, python-brace-format @@ -1193,7 +1202,7 @@ msgid "" "wrong, please <a href=\"{support_url}\">contact support</a> to resolve this " "issue." msgstr "" -"{html_start}您的å¸æˆ·æ— 法激活{html_end}出现问题,请与<a " +"{html_start}您的账å·æ— 法激活{html_end}出现问题,请与<a " "href=\"{support_url}\">支æŒå°ç»„</a>è”系以解决æ¤é—®é¢˜ã€‚" #: common/djangoapps/student/views/management.py @@ -1213,7 +1222,7 @@ msgid "" "receive email updates and alerts from us related to the courses you are " "enrolled in. Sign In to continue." msgstr "" -"{html_start}æˆåŠŸï¼æ‚¨å·²æ¿€æ´»å¸æˆ·ã€‚{html_end}您现在将收到我们å‘é€çš„与您注册的课程相关的电å邮件更新和æ醒。请登录以继ç»ã€‚" +"{html_start}æˆåŠŸï¼æ‚¨å·²æ¿€æ´»è´¦å·ã€‚{html_end}您现在将收到我们å‘é€çš„与您注册的课程相关的电å邮件更新和æ醒。请登录以继ç»ã€‚" #: common/djangoapps/student/views/management.py msgid "Some error occured during password change. Please try again" @@ -1221,7 +1230,7 @@ msgstr "é‡è®¾å¯†ç æ—¶å‘生错误,请é‡è¯•" #: common/djangoapps/student/views/management.py msgid "No email address provided." -msgstr "未æä¾›Email地å€ã€‚" +msgstr "未æ供邮箱。" #: common/djangoapps/student/views/management.py msgid "Password reset unsuccessful" @@ -1235,13 +1244,21 @@ msgstr "é‡è®¾å¯†ç æ—¶å‘生错误。" msgid "Error in resetting your password. Please try again." msgstr "é‡ç½®å¯†ç æ“作å‘生错误。请é‡è¯•ã€‚" +#: common/djangoapps/student/views/management.py +#, python-brace-format +msgid "" +"{html_start}Password Creation Complete{html_end}Your password has been " +"created. {bold_start}{email}{bold_end} is now your primary login email." +msgstr "" +"{html_start}密ç 创建完æˆ{html_end}å·²ç»åˆ›å»ºäº†æ‚¨çš„密ç 。{bold_start}{email}{bold_end}现在是您的主登录电å邮件。" + #: common/djangoapps/student/views/management.py msgid "Valid e-mail address required." -msgstr "需è¦æœ‰æ•ˆçš„电å邮件地å€" +msgstr "需è¦æœ‰æ•ˆçš„邮箱" #: common/djangoapps/student/views/management.py msgid "Old email is the same as the new email." -msgstr "新邮件地å€ä¸Žæ—§é‚®ä»¶åœ°å€ç›¸åŒã€‚" +msgstr "新邮箱与旧邮箱相åŒã€‚" #: common/djangoapps/student/views/management.py msgid "Cannot be same as your sign in email address." @@ -1273,6 +1290,12 @@ msgid "" "\"Institution\" login providers." msgstr "二级供应商ä¸ä¼šçªå‡ºæ˜¾ç¤ºï¼Œå°†å‡ºçŽ°åœ¨ä¸€ä¸ªå•ç‹¬çš„“机构â€åˆ—表ä¸ã€‚" +#: common/djangoapps/third_party_auth/models.py +msgid "" +"optional. If this provider is an Organization, this attribute can be used " +"reference users in that Organization" +msgstr "" + #: common/djangoapps/third_party_auth/models.py msgid "The Site that this provider configuration belongs to." msgstr "æ¤æ供商é…置所属的网站。" @@ -1299,7 +1322,7 @@ msgstr "" msgid "" "If this option is selected, users will not be required to confirm their " "email, and their account will be activated immediately upon registration." -msgstr "如果选择该选项,用户将ä¸ä¼šè¢«è¦æ±‚验è¯ä»–们的邮箱,他们的账户将在注册åŽç«‹åˆ»è¢«æ¿€æ´»ã€‚" +msgstr "如果选择该选项,用户将ä¸ä¼šè¢«è¦æ±‚验è¯ä»–们的邮箱,他们的账å·å°†åœ¨æ³¨å†ŒåŽç«‹åˆ»è¢«æ¿€æ´»ã€‚" #: common/djangoapps/third_party_auth/models.py msgid "" @@ -1336,7 +1359,7 @@ msgid "" "edX user account on each SSO login. The user will be notified if the email " "address associated with their account is changed as a part of this " "synchronization." -msgstr "在æ¯æ¬¡SSO登录ä¸ï¼Œå°†æ¥è‡ªèº«ä»½æ供商的用户账户数æ®ä¸ŽedX用户账å·åŒæ¥ã€‚当修改绑定邮箱时,用户会收到通知。" +msgstr "在æ¯æ¬¡SSO登录ä¸ï¼Œå°†æ¥è‡ªèº«ä»½æ供商的用户账å·æ•°æ®ä¸ŽedX用户账å·åŒæ¥ã€‚当修改绑定邮箱时,用户会收到通知。" #: common/djangoapps/third_party_auth/models.py msgid "The Site that this SAML configuration belongs to." @@ -2457,6 +2480,20 @@ msgstr "已完æˆ" msgid "Correct or Past Due" msgstr "æ£ç¡®æˆ–超过截æ¢æ—¥æœŸ" +#: common/lib/xmodule/xmodule/capa_base.py +msgid "After Some Number of Attempts" +msgstr "ç»è¿‡ä¸€äº›å°è¯•" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Show Answer: Number of Attempts" +msgstr "显示ç”案:å°è¯•çš„次数" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "" +"Number of times the student must attempt to answer the question before the " +"Show Answer button appears." +msgstr "在“显示ç”案â€æŒ‰é’®å‡ºçŽ°ä¹‹å‰ï¼Œå¦ç”Ÿå¿…é¡»å°è¯•å›žç”问题的次数。" + #: common/lib/xmodule/xmodule/capa_base.py msgid "Whether to force the save button to appear on the page" msgstr "是å¦å¼ºåˆ¶æ˜¾ç¤ºä¿å˜æŒ‰é’®" @@ -2575,16 +2612,18 @@ msgid "" "contact moocsupport@mathworks.com" msgstr "" "输入 " -"MATLAB讬管æœåŠ¡æä¾›MathWorkså…¬å¸çš„API密钥。这个密钥被授予通过本课程的指定时间独家使用。请ä¸è¦å…±äº«çš„API密钥与其他课程,并立å³é€šçŸ¥MathWorkså…¬å¸ï¼Œå¦‚æžœä½ è®¤ä¸ºå¯†é’¥è¢«æš´éœ²æˆ–æŸå®³ã€‚为了获得一个关键的课程,或报告的问题,请è”ç³»moocsupport@mathworks.com" +"MATLAB讬管æœåŠ¡æä¾›MathWorkså…¬å¸çš„API密钥。这个密钥被授予通过本课程的指定时间独家使用。请ä¸è¦å…±äº«çš„API密钥与其他课程,并立å³é€šçŸ¥MathWorkså…¬å¸ï¼Œå¦‚果您认为密钥被暴露或æŸå®³ã€‚为了获得一个关键的课程,或报告的问题,请è”ç³»moocsupport@mathworks.com" #: common/lib/xmodule/xmodule/capa_base.py #: lms/templates/admin/user_api/accounts/cancel_retirement_action.html -#: cms/templates/index.html lms/templates/help_modal.html -#: lms/templates/manage_user_standing.html lms/templates/register-shib.html +#: cms/templates/index.html cms/templates/videos_index_pagination.html +#: lms/templates/help_modal.html lms/templates/manage_user_standing.html +#: lms/templates/register-shib.html #: lms/templates/dashboard/_entitlement_reason_survey.html #: lms/templates/dashboard/_reason_survey.html #: lms/templates/peer_grading/peer_grading_problem.html #: lms/templates/survey/survey.html +#: lms/templates/widgets/footer-language-selector.html #: openedx/core/djangoapps/dark_lang/templates/dark_lang/preview-language-fragment.html #: openedx/core/djangoapps/theming/templates/theming/theming-admin-fragment.html #: themes/stanford-style/lms/templates/register-shib.html @@ -2674,7 +2713,7 @@ msgstr "在æ交之å‰é—®é¢˜å¿…é¡»é‡ç½®ã€‚ " #: common/lib/xmodule/xmodule/capa_base.py #, python-brace-format msgid "You must wait at least {wait} seconds between submissions." -msgstr "在两次å‘å¸ƒä¹‹é—´ä½ è‡³å°‘éœ€è¦ç‰å¾…{wait}秒。" +msgstr "在两次å‘布之间您至少需è¦ç‰å¾…{wait}秒。" #: common/lib/xmodule/xmodule/capa_base.py #, python-brace-format @@ -2707,7 +2746,7 @@ msgstr "问题在ä¿å˜ä¹‹å‰éœ€è¦é‡ç½®ã€‚" #: common/lib/xmodule/xmodule/capa_base.py msgid "Your answers have been saved." -msgstr "ä½ çš„ç”案已ä¿å˜ã€‚" +msgstr "您的ç”案已ä¿å˜ã€‚" #: common/lib/xmodule/xmodule/capa_base.py #, python-brace-format @@ -2740,13 +2779,13 @@ msgstr "回ç”问题åŽæ‰èƒ½å¤Ÿé‡æ–°è¯„定。" msgid "" "We're sorry, there was an error with processing your request. Please try " "reloading your page and trying again." -msgstr "很抱æ‰ï¼Œåœ¨å¤„ç†ä½ 的请求时出现错误。请é‡æ–°åŠ è½½ä½ çš„é¡µé¢å¹¶å†æ¬¡å°è¯•æ“作。" +msgstr "很抱æ‰ï¼Œåœ¨å¤„ç†æ‚¨çš„请求时出现错误。请é‡æ–°åŠ 载您的页é¢å¹¶å†æ¬¡å°è¯•æ“作。" #: common/lib/xmodule/xmodule/capa_module.py msgid "" "The state of this problem has changed since you loaded this page. Please " "refresh your page." -msgstr "该问题的æè¿°åœ¨ä½ åŠ è½½æœ¬é¡µé¢ä¹‹åŽå·²ç»å‘生å˜åŒ–äº†ã€‚è¯·åˆ·æ–°ä½ çš„é¡µé¢ã€‚" +msgstr "该问题的æè¿°åœ¨æ‚¨åŠ è½½æœ¬é¡µé¢ä¹‹åŽå·²ç»å‘生å˜åŒ–了。请刷新您的页é¢ã€‚" #: common/lib/xmodule/xmodule/capa_module.py msgid "Answer ID" @@ -2827,9 +2866,16 @@ msgstr "æ¤ç»„件尚未é…ç½®æºç»„件。" msgid "Configure list of sources" msgstr "é…ç½®æ¥æºåˆ—表" +#: common/lib/xmodule/xmodule/course_module.py +#, python-brace-format +msgid "" +"The selected proctoring provider, {proctoring_provider}, is not a valid " +"provider. Please select from one of {available_providers}." +msgstr "所选的处ç†æ供程åº{proctoring_provider}ä¸æ˜¯æœ‰æ•ˆçš„æ供程åºã€‚请从{available_providers}ä¸é€‰æ‹©ã€‚" + #: common/lib/xmodule/xmodule/course_module.py msgid "LTI Passports" -msgstr "LTI 账户" +msgstr "LTI 通行è¯" #: common/lib/xmodule/xmodule/course_module.py msgid "" @@ -3031,7 +3077,7 @@ msgstr "手机端å¯è§çš„课程" msgid "" "Enter true or false. If true, the course will be available to mobile " "devices." -msgstr "请输入真或者å‡,如果为真,这门课程将支æŒç§»åŠ¨è®¾å¤‡ä¸Šå¦ä¹ " +msgstr "请输入真或者å‡ï¼Œå¦‚果为真,这门课程将支æŒç§»åŠ¨è®¾å¤‡ä¸Šå¦ä¹ 。" #: common/lib/xmodule/xmodule/course_module.py msgid "Video Upload Credentials" @@ -3235,7 +3281,7 @@ msgid "" "Files & Uploads page. You can also set the course image on the Settings & " "Details page." msgstr "" -"编辑课程图片文件的åå—ã€‚ä½ å¿…é¡»åœ¨Files & Uploads页é¢ä¸Šä¼ è¿™ä¸ªæ–‡ä»¶ã€‚ä½ ä¹Ÿå¯ä»¥åœ¨ Settings & Details页é¢è®¾ç½®è¯¾ç¨‹å›¾ç‰‡ã€‚" +"编辑课程图片文件的åå—。您必须在Files & Uploads页é¢ä¸Šä¼ 这个文件。您也å¯ä»¥åœ¨ Settings & Details页é¢è®¾ç½®è¯¾ç¨‹å›¾ç‰‡ã€‚" #: common/lib/xmodule/xmodule/course_module.py cms/templates/settings.html msgid "Course Banner Image" @@ -3361,7 +3407,7 @@ msgid "" "setting overrides the organization that you entered when you created the " "course. To use the organization that you entered when you created the " "course, enter null." -msgstr "è¾“å…¥ä½ æƒ³åœ¨è¯¾ç¨‹ä¸å‡ºçŽ°çš„课程安排。æ¤è®¾ç½®å°†è¦†ç›–ä½ åœ¨åˆ›å»ºè¯¾ç¨‹æ—¶è¾“å…¥çš„è¯¾ç¨‹å®‰æŽ’ã€‚è¦ä½¿ç”¨ä½ 在创建课程时输入的课程安排,请输入空值。" +msgstr "输入您想在课程ä¸å‡ºçŽ°çš„课程安排。æ¤è®¾ç½®å°†è¦†ç›–您在创建课程时输入的课程安排。è¦ä½¿ç”¨æ‚¨åœ¨åˆ›å»ºè¯¾ç¨‹æ—¶è¾“入的课程安排,请输入空值。" #: common/lib/xmodule/xmodule/course_module.py msgid "Course Number Display String" @@ -3373,7 +3419,7 @@ msgid "" "overrides the course number that you entered when you created the course. To" " use the course number that you entered when you created the course, enter " "null." -msgstr "è¾“å…¥ä½ æƒ³åœ¨è¯¾ç¨‹ä¸å‡ºçŽ°çš„课程编å·ã€‚æ¤è®¾ç½®å°†è¦†ç›–ä½ åœ¨åˆ›å»ºè¯¾ç¨‹æ—¶è¾“å…¥çš„è¯¾ç¨‹ç¼–å·ã€‚è¦ä½¿ç”¨ä½ 在创建课程时输入的课程编å·ï¼Œè¯·è¾“入空值。" +msgstr "输入您想在课程ä¸å‡ºçŽ°çš„课程编å·ã€‚æ¤è®¾ç½®å°†è¦†ç›–您在创建课程时输入的课程编å·ã€‚è¦ä½¿ç”¨æ‚¨åœ¨åˆ›å»ºè¯¾ç¨‹æ—¶è¾“入的课程编å·ï¼Œè¯·è¾“入空值。" #: common/lib/xmodule/xmodule/course_module.py msgid "Course Maximum Student Enrollment" @@ -3426,6 +3472,8 @@ msgstr "指定å¦ç”Ÿåœ¨æŸ¥çœ‹æ‚¨çš„课程内容之å‰æ˜¯å¦å¿…须完æˆä¸€é¡¹è°ƒ msgid "Course Visibility In Catalog" msgstr "目录ä¸è¯¾ç¨‹å¯è§æ€§" +#. Translators: the quoted words 'both', 'about', and 'none' must be +#. left untranslated. Leave them as English words. #: common/lib/xmodule/xmodule/course_module.py msgid "" "Defines the access permissions for showing the course in the course catalog." @@ -3435,22 +3483,6 @@ msgid "" msgstr "" "定义在课程目录ä¸çš„显示课程的访问æƒé™ã€‚å¯ä»¥è®¾ç½®ä¸ºä»¥ä¸‹ä¸‰ä¸ªå€¼çš„å…¶ä¸ä¹‹ä¸€ï¼šâ€œbothâ€(在目录ä¸æ˜¾ç¤ºä¸”å…许访问关于æ¤é¡µ),“aboutâ€(åªå…许访问关于æ¤é¡µ),“noneâ€(ä¸åœ¨ç›®å½•ä¸æ˜¾ç¤ºä¸”ä¸å…许访问关于æ¤é¡µ)。" -#: common/lib/xmodule/xmodule/course_module.py -msgid "Both" -msgstr "两者都" - -#: common/lib/xmodule/xmodule/course_module.py lms/djangoapps/branding/api.py -#: lms/templates/footer.html lms/templates/static_templates/about.html -#: themes/red-theme/lms/templates/footer.html -#: themes/stanford-style/lms/templates/footer.html -#: themes/stanford-style/lms/templates/static_templates/about.html -msgid "About" -msgstr "关于我们" - -#: common/lib/xmodule/xmodule/course_module.py cms/templates/settings.html -msgid "None" -msgstr "æ— " - #: common/lib/xmodule/xmodule/course_module.py msgid "Entrance Exam Enabled" msgstr "å…¥å¦è€ƒè¯•å¼€å¯" @@ -3531,7 +3563,18 @@ msgid "" "Enter true or false. If this value is true, proctored exams are enabled in " "your course. Note that enabling proctored exams will also enable timed " "exams." -msgstr "输入 true 或 false。如果该值为trueï¼Œç›‘è€ƒçš„è€ƒè¯•æ˜¯åœ¨ä½ çš„è¯¾ç¨‹å¯ç”¨ã€‚请注æ„,使监考考试也将å¯åŠ¨ é™æ—¶è€ƒè¯•ã€‚" +msgstr "输入 true 或 false。如果该值为true,监考的考试是在您的课程å¯ç”¨ã€‚请注æ„,使监考考试也将å¯åŠ¨ é™æ—¶è€ƒè¯•ã€‚" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Proctoring Provider" +msgstr "监考æ供者" + +#: common/lib/xmodule/xmodule/course_module.py +#, python-brace-format +msgid "" +"Enter the proctoring provider you want to use for this course run. Choose " +"from the following options: {available_providers}." +msgstr "输入è¦ç”¨äºŽæœ¬è¯¾ç¨‹è¿è¡Œçš„监考æ供程åºã€‚ 从以下选项ä¸é€‰æ‹©ï¼š {available_providers}" #: common/lib/xmodule/xmodule/course_module.py msgid "Allow Opting Out of Proctored Exams" @@ -3613,7 +3656,7 @@ msgstr "å¯åˆ†æ®µå…ˆä¿®ä¹‹è¦æ±‚" msgid "" "Enter true or false. If this value is true, you can hide a subsection until " "learners earn a minimum score in another, prerequisite subsection." -msgstr "输入 true 或 false。如果该值为 trueï¼Œä½ å¯ä»¥éšè—æŸåˆ†æ®µï¼Œç›´åˆ°å¦ä¹ 者获得最低分数为æ¢ã€‚" +msgstr "输入 true 或 false。如果该值为 true,您å¯ä»¥éšè—æŸåˆ†æ®µï¼Œç›´åˆ°å¦ä¹ 者获得最低分数为æ¢ã€‚" #: common/lib/xmodule/xmodule/course_module.py msgid "Course Learning Information" @@ -3627,6 +3670,8 @@ msgstr "请æ述课程教å¦ç»†èŠ‚。" msgid "Course Visibility For Unenrolled Learners" msgstr "未选课å¦å‘˜è¯¾ç¨‹å¯è§æƒ…况" +#. Translators: the quoted words 'private', 'public_outline', and 'public' +#. must be left untranslated. Leave them as English words. #: common/lib/xmodule/xmodule/course_module.py msgid "" "Defines the access permissions for unenrolled learners. This can be set to " @@ -3637,18 +3682,6 @@ msgstr "" "定义未登记å¦å‘˜çš„访问æƒé™ã€‚è¿™å¯ä»¥è®¾ç½®ä¸ºä¸‰ä¸ªå€¼ä¹‹ä¸€ï¼š “private†(默认å¯è§æ€§ï¼Œåªå…许在册å¦ç”Ÿä½¿ç”¨ï¼‰ã€â€œpublic_outline†" "(å…许访问课程概述)和 “publicâ€ï¼ˆå…许访问概述和课程内容)。" -#: common/lib/xmodule/xmodule/course_module.py -msgid "private" -msgstr "ä¸å…¬å¼€" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "public_outline" -msgstr "公开概述" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "public" -msgstr "公开" - #: common/lib/xmodule/xmodule/course_module.py msgid "Course Instructor" msgstr "授课è€å¸ˆ" @@ -3920,7 +3953,7 @@ msgid "" "Settings page.<br />See {docs_anchor_open}the edX LTI " "documentation{anchor_close} for more details on this setting." msgstr "" -"输入外部LTIæ供商æ供的LTIç¼–å·ã€‚è¯¥å€¼å¿…é¡»å’Œä½ çš„LTI账户里高级设置里的LTIç¼–å·ç›¸åŒã€‚<br />关于该设置的更多信æ¯è¯·è®¿é—® " +"输入外部LTIæ供商æ供的LTIç¼–å·ã€‚该值必须和您的LTIè´¦å·é‡Œé«˜çº§è®¾ç½®é‡Œçš„LTIç¼–å·ç›¸åŒã€‚<br />关于该设置的更多信æ¯è¯·è®¿é—® " "{docs_anchor_open}edx LTI 文档{anchor_close} " #: common/lib/xmodule/xmodule/lti_module.py @@ -3950,7 +3983,7 @@ msgid "" "{docs_anchor_open}the edX LTI documentation{anchor_close} for more details " "on this setting." msgstr "" -"ä»»æ„自定义的å‚数都è¦æ·»åŠ é”®/值且æˆå¯¹ï¼Œä¾‹å¦‚ä½ è¦æ‰“开的电å书的页é¢æˆ–者这个组件的背景颜色。<br " +"ä»»æ„自定义的å‚数都è¦æ·»åŠ é”®/值且æˆå¯¹ï¼Œä¾‹å¦‚您è¦æ‰“开的电å书的页é¢æˆ–者这个组件的背景颜色。<br " "/>这项设置的更多信æ¯è¯·æŸ¥çœ‹{docs_anchor_open}edX LTI文档{anchor_close} " #: common/lib/xmodule/xmodule/lti_module.py @@ -3964,7 +3997,7 @@ msgid "" "in the current page. This setting is only used when Hide External Tool is " "set to False. " msgstr "" -"å¦‚æžœä½ æƒ³è¦å¦ç”Ÿé€šè¿‡ç‚¹å‡»ä¸€ä¸ªé“¾æŽ¥åœ¨ä¸€ä¸ªæ–°çª—å£ä¸æ‰“å¼€LTI工具,选择Trueã€‚å¦‚æžœä½ æƒ³è¦åœ¨å½“å‰é¡µé¢çš„一个IFrameä¸æ‰“å¼€LTI内容,选择False。这个设置åªæœ‰åœ¨" +"如果您想è¦å¦ç”Ÿé€šè¿‡ç‚¹å‡»ä¸€ä¸ªé“¾æŽ¥åœ¨ä¸€ä¸ªæ–°çª—å£ä¸æ‰“å¼€LTI工具,选择True。如果您想è¦åœ¨å½“å‰é¡µé¢çš„一个IFrameä¸æ‰“å¼€LTI内容,选择False。这个设置åªæœ‰åœ¨" " éšè—外部工具 设置为False的时候æ‰èƒ½ä½¿ç”¨ã€‚" #: common/lib/xmodule/xmodule/lti_module.py @@ -4027,7 +4060,7 @@ msgstr "需è¦ç”¨æˆ·é‚®ç®±" #. service. #: common/lib/xmodule/xmodule/lti_module.py msgid "Select True to request the user's email address." -msgstr "选择True 以è¦æ±‚用户的电å邮件地å€ã€‚" +msgstr "选择True 以请求用户的邮箱。" #: common/lib/xmodule/xmodule/lti_module.py msgid "LTI Application Information" @@ -4038,7 +4071,7 @@ msgid "" "Enter a description of the third party application. If requesting username " "and/or email, use this text box to inform users why their username and/or " "email will be forwarded to a third party application." -msgstr "输入第三方应用程åºçš„æ述。用æ¥å‘Šè¯‰ç”¨æˆ·ä¸ºä»€ä¹ˆç¬¬ä¸‰æ–¹åº”用程åºéœ€è¦ç”¨æˆ·çš„用户ååŠE-mail。" +msgstr "输入第三方应用程åºçš„æ述。用æ¥å‘Šè¯‰ç”¨æˆ·ä¸ºä»€ä¹ˆç¬¬ä¸‰æ–¹åº”用程åºéœ€è¦ç”¨æˆ·çš„用户ååŠç”µå邮箱。" #: common/lib/xmodule/xmodule/lti_module.py msgid "Button Text" @@ -4135,7 +4168,7 @@ msgid "" "problems in your course. Valid values are \"always\", \"onreset\", " "\"never\", and \"per_student\"." msgstr "" -"指定éšå«å˜é‡å€¼å¤šä¹…会å‘生问题是采éšæœºç³»ç»Ÿé»˜è®¤ã€‚æ¤è®¾å®šåº”设为“从ä¸â€ï¼Œé™¤éžä½ 打算æ供一个Python script " +"指定éšå«å˜é‡å€¼å¤šä¹…会å‘生问题是采éšæœºç³»ç»Ÿé»˜è®¤ã€‚æ¤è®¾å®šåº”设为“从ä¸â€ï¼Œé™¤éžæ‚¨æ‰“ç®—æ供一个Python script " "æ¥éšæœºè¾¨è¯†æ‚¨çš„课程ä¸å¤§éƒ¨åˆ†é—®é¢˜ã€‚有效å—段为“永远â€ï¼Œâ€œå½“reset æ—¶â€ï¼Œâ€œä»Žä¸â€ï¼Œä»¥åŠâ€œæ¯åå¦ç”Ÿâ€ã€‚" #: common/lib/xmodule/xmodule/modulestore/inheritance.py @@ -4251,7 +4284,7 @@ msgid "" "settings. All existing problems are affected when this course-wide setting " "is changed." msgstr "" -"输入true或false。为true时,课程ä¸çš„问题总是默认显示一个“é‡ç½®â€æŒ‰é’®ï¼Œä½ å¯ä»¥åœ¨æ¯ä¸ªé—®é¢˜çš„设置ä¸é‡è®¾ã€‚当该课程范围内的设置改å˜æ—¶ï¼Œæ‰€æœ‰å·²å˜åœ¨çš„问题都将å—å½±å“。" +"输入true或false。为true时,课程ä¸çš„问题总是默认显示一个“é‡ç½®â€æŒ‰é’®ï¼Œæ‚¨å¯ä»¥åœ¨æ¯ä¸ªé—®é¢˜çš„设置ä¸é‡è®¾ã€‚当该课程范围内的设置改å˜æ—¶ï¼Œæ‰€æœ‰å·²å˜åœ¨çš„问题都将å—å½±å“。" #: common/lib/xmodule/xmodule/modulestore/inheritance.py msgid "Enable Student Notes" @@ -4379,6 +4412,14 @@ msgid "" "Practice exams are not verified." msgstr "该设置表明这场考试是å¦ä»…用于测试目的。模拟考试未ç»è¿‡èº«ä»½è®¤è¯ã€‚" +#: common/lib/xmodule/xmodule/seq_module.py +msgid "Is Onboarding Exam" +msgstr "是入èŒè€ƒè¯•" + +#: common/lib/xmodule/xmodule/seq_module.py +msgid "This setting indicates whether this exam is an onboarding exam." +msgstr "该设置表明这场考试是å¦æ˜¯ä¸€åœºå…¥èŒè€ƒè¯•ã€‚" + #: common/lib/xmodule/xmodule/seq_module.py msgid "" "This subsection is unlocked for learners when they meet the prerequisite " @@ -4559,7 +4600,7 @@ msgid "" "The URL for your video. This can be a YouTube URL or a link to an .mp4, " ".ogg, or .webm video file hosted elsewhere on the Internet." msgstr "" -"该地å€æŒ‡å‘视频链接。这å¯èƒ½æ˜¯ä¸€ä¸ªYouTube的网å€æˆ–者一个å˜å‚¨äºŽå…¶ä»–互è”网æœåŠ¡å™¨çš„ .mp4, .ogg, 或者.webm æ ¼å¼è§†é¢‘的链接地å€ã€‚" +"该地å€æŒ‡å‘视频链接。这å¯èƒ½æ˜¯ä¸€ä¸ªYouTube的网å€æˆ–者一个å˜å‚¨äºŽå…¶ä»–互è”网æœåŠ¡å™¨çš„ .mp4,.ogg,或者.webm æ ¼å¼è§†é¢‘的链接地å€ã€‚" #: common/lib/xmodule/xmodule/video_module/video_module.py msgid "Default Video URL" @@ -4861,9 +4902,94 @@ msgstr "所有å¦å‘˜å‘布的所有è¯æ±‡" msgid "Top num_top_words words for word cloud." msgstr "è¯äº‘ä¸çš„最çƒé—¨è¯æ±‡" +#: common/lib/xmodule/xmodule/x_module.py +#, python-brace-format +msgid "" +"{display_name} is only accessible to enrolled learners. Sign in or register," +" and enroll in this course to view it." +msgstr "{display_name} 仅供注册的å¦å‘˜ä½¿ç”¨ã€‚ 登录或注册,并注册æ¤è¯¾ç¨‹ä»¥æŸ¥çœ‹å®ƒã€‚" + +#: common/templates/admin/student/loginfailures/change_form_template.html +msgid "Unlock Account" +msgstr "解é”账户" + +#. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# +#. 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) +#: common/templates/admin/student/loginfailures/change_form_template.html +#: lms/templates/wiki/edit.html lms/templates/wiki/history.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/ccx/schedule.html +#: lms/templates/dashboard/_dashboard_entitlement_unenrollment_modal.html +#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html +#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +#: lms/templates/instructor/instructor_dashboard_2/invalidate_registration_code_modal.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html +#: lms/templates/modal/_modal-settings-language.html +#: themes/edx.org/lms/templates/dashboard.html +#: themes/edx.org/lms/templates/dashboard/_dashboard_entitlement_unenrollment_modal.html +msgid "Close" +msgstr "å…³é—" + +#: common/templates/student/edx_ace/accountrecovery/email/body.html +msgid "Create Password" +msgstr "创建密ç " + +#: common/templates/student/edx_ace/accountrecovery/email/body.html +#: common/templates/student/edx_ace/accountrecovery/email/body.txt +#, python-format +msgid "" +"You're receiving this e-mail because you requested to create a password for " +"your user account at %(platform_name)s." +msgstr "您收到æ¤ç”µåé‚®ä»¶æ˜¯å› ä¸ºæ‚¨åœ¨%(platform_name)s申请了账户密ç 创建" + +#: common/templates/student/edx_ace/accountrecovery/email/body.html +#: common/templates/student/edx_ace/accountrecovery/email/body.txt +#, python-format +msgid "" +"We've restored access to your %(platform_name)s account using the recovery " +"email you provided at registration." +msgstr "我们已使用您在注册时æ供的验è¯é‚®ç®±æ¢å¤äº†å¯¹æ‚¨çš„%(platform_name)s账户的访问æƒé™" + +#: common/templates/student/edx_ace/accountrecovery/email/body.html +#: common/templates/student/edx_ace/accountrecovery/email/body.txt +#, python-format +msgid "" +"Once you've created a password [below], you will be able to log in to " +"%(platform_name)s with this email (%(email)s) and your new password." +msgstr "[below]创建密ç åŽï¼Œæ‚¨å°†å¯ä»¥ä½¿ç”¨æ¤ç”µå邮件(%(email)s)和新密ç 登录%(platform_name)s。" + +#: common/templates/student/edx_ace/accountrecovery/email/body.html +#: common/templates/student/edx_ace/accountrecovery/email/body.txt +#: common/templates/student/edx_ace/passwordreset/email/body.html +#: common/templates/student/edx_ace/passwordreset/email/body.txt +msgid "" +"If you didn't request this change, you can disregard this email - we have " +"not yet reset your password." +msgstr "如您本人并没有请求该å˜æ›´ï¼Œè¯·å¿½ç•¥æœ¬é‚®ä»¶â€”—我们尚未é‡ç½®æ‚¨çš„密ç 。" + +#: common/templates/student/edx_ace/accountrecovery/email/body.txt +#: common/templates/student/edx_ace/passwordreset/email/body.txt +msgid "Thanks for using our site!" +msgstr "谢谢您访问我们的网站ï¼" + +#: common/templates/student/edx_ace/accountrecovery/email/body.txt +#: common/templates/student/edx_ace/passwordreset/email/body.txt +#, python-format +msgid "The %(platform_name)s Team" +msgstr "%(platform_name)s 团队" + +#: common/templates/student/edx_ace/accountrecovery/email/subject.txt +#, python-format +msgid "Password creation on %(platform_name)s" +msgstr "%(platform_name)s创建密ç " + #: common/templates/student/edx_ace/emailchange/email/body.html msgid "Email Change" -msgstr "电å邮件å˜æ›´" +msgstr "邮箱å˜æ›´" #: common/templates/student/edx_ace/emailchange/email/body.html #: common/templates/student/edx_ace/emailchange/email/body.txt @@ -4873,8 +4999,8 @@ msgid "" "%(platform_name)s account from %(old_email)s to %(new_email)s. If this is " "correct, please confirm your new e-mail address by visiting:" msgstr "" -"我们收到了您需è¦å°†%(platform_name)s 账户的电å邮箱关è”ç”± %(old_email)s å˜æ›´ä¸º %(new_email)s " -"çš„è¯·æ±‚ã€‚å¦‚è¯¥è¯·æ±‚æ— è¯¯ï¼Œè¯·è®¿é—®å¦‚ä¸‹ç½‘é¡µä»¥ç¡®è®¤æ‚¨çš„æ–°ç”µå邮箱地å€ï¼š" +"我们收到了您需è¦å°†%(platform_name)s è´¦å·çš„邮箱关è”ç”± %(old_email)s å˜æ›´ä¸º %(new_email)s " +"çš„è¯·æ±‚ã€‚å¦‚è¯¥è¯·æ±‚æ— è¯¯ï¼Œè¯·è®¿é—®å¦‚ä¸‹ç½‘é¡µä»¥ç¡®è®¤æ‚¨çš„æ–°é‚®ç®±ï¼š" #: common/templates/student/edx_ace/emailchange/email/body.html msgid "Confirm Email Change" @@ -4888,12 +5014,37 @@ msgid "" " any more email from us. Please do not reply to this e-mail; if you require " "assistance, check the help section of the %(platform_name)s web site." msgstr "" -"如果您没å‘出过该请求,您å¯ä»¥å¿½ç•¥è¯¥é‚®ä»¶ï¼›ä½ å°†ä¸ä¼šæ”¶åˆ°å…¶å®ƒä»»ä½•æˆ‘们的邮件。请ä¸è¦å›žå¤æ¤é‚®ä»¶ï¼›å¦‚需帮助,请访问%(platform_name)s网站的帮助区域。" +"如果您没å‘出过该请求,您å¯ä»¥å¿½ç•¥è¯¥é‚®ä»¶ï¼›æ‚¨å°†ä¸ä¼šæ”¶åˆ°å…¶å®ƒä»»ä½•æˆ‘们的邮件。请ä¸è¦å›žå¤æ¤é‚®ä»¶ï¼›å¦‚需帮助,请访问%(platform_name)s网站的帮助区域。" #: common/templates/student/edx_ace/emailchange/email/subject.txt #, python-format msgid "Request to change %(platform_name)s account e-mail" -msgstr "å˜æ›´%(platform_name)s电å邮箱账户的请求" +msgstr "å˜æ›´%(platform_name)s电å邮箱账å·çš„请求" + +#: common/templates/student/edx_ace/emailchangeconfirmation/email/body.html +#: common/templates/student/edx_ace/emailchangeconfirmation/email/subject.txt +#, python-format +msgid "Email Change Confirmation for %(platform_name)s" +msgstr "%(platform_name)s电å邮件更改确认" + +#: common/templates/student/edx_ace/emailchangeconfirmation/email/body.html +#: common/templates/student/edx_ace/emailchangeconfirmation/email/body.txt +#, python-format +msgid "" +"This is to confirm that you changed the e-mail associated with " +"%(platform_name)s from %(old_email)s to %(new_email)s. If you did not make " +"this request, please contact us immediately. Contact information is listed " +"at:" +msgstr "" +"è¿™å°ç”µå邮件是为了确认您与%(platform_name)så…³è”的邮箱由%(old_email)så˜æ›´ä¸º%(new_email)s。如果您并没有å‘出该请求,请立刻通过以下方å¼è”系我们。" + +#: common/templates/student/edx_ace/emailchangeconfirmation/email/body.html +#: common/templates/student/edx_ace/emailchangeconfirmation/email/body.txt +#: themes/stanford-style/lms/templates/emails/confirm_email_change.txt +msgid "" +"We keep a log of old e-mails, so if this request was unintentional, we can " +"investigate." +msgstr "我们ä¿å˜ç€æ—§ç”µå邮件信æ¯çš„日志,所以如果该请求并éžæ˜¯æ‚¨æœ‰æ„å‘出的,我们å¯ä»¥å¯¹æ¤è¿›è¡Œè°ƒæŸ¥ã€‚" #: common/templates/student/edx_ace/passwordreset/email/body.html #: lms/templates/forgot_password_modal.html @@ -4906,7 +5057,7 @@ msgstr "密ç é‡ç½®" msgid "" "You're receiving this e-mail because you requested a password reset for your" " user account at %(platform_name)s." -msgstr "由于您在%(platform_name)s申请了账户密ç é‡ç½®ï¼Œå› 而收到æ¤é‚®ä»¶ã€‚" +msgstr "您收到æ¤é‚®ä»¶æ˜¯å› 为您在%(platform_name)s申请了账å·å¯†ç é‡ç½®ã€‚" #: common/templates/student/edx_ace/passwordreset/email/body.html #: common/templates/student/edx_ace/passwordreset/email/body.txt @@ -4914,20 +5065,13 @@ msgstr "由于您在%(platform_name)s申请了账户密ç é‡ç½®ï¼Œå› 而收到 msgid "" "However, there is currently no user account associated with your email " "address: %(email_address)s." -msgstr "您的邮箱地å€%(email_address)s当å‰æœªä¸Žä»»ä½•è´¦å·ç›¸å…³è”。" +msgstr "您的邮箱%(email_address)s当å‰æœªä¸Žä»»ä½•è´¦å·ç›¸å…³è”。" #: common/templates/student/edx_ace/passwordreset/email/body.html #: common/templates/student/edx_ace/passwordreset/email/body.txt msgid "If you did not request this change, you can ignore this email." msgstr "如果您没有申请作出更改,请忽略æ¤é‚®ä»¶ã€‚" -#: common/templates/student/edx_ace/passwordreset/email/body.html -#: common/templates/student/edx_ace/passwordreset/email/body.txt -msgid "" -"If you didn't request this change, you can disregard this email - we have " -"not yet reset your password." -msgstr "å¦‚æžœä½ æ²¡æœ‰è¯·æ±‚è¯¥å˜æ›´ï¼Œè¯·å¿½ç•¥æœ¬é‚®ä»¶â€”—我们尚未é‡ç½®ä½ 的密ç 。" - #: common/templates/student/edx_ace/passwordreset/email/body.html msgid "Change my Password" msgstr "修改密ç " @@ -4936,26 +5080,46 @@ msgstr "修改密ç " msgid "Please go to the following page and choose a new password:" msgstr "请到以下页é¢è®¾ç½®æ–°çš„密ç :" -#: common/templates/student/edx_ace/passwordreset/email/body.txt -msgid "Thanks for using our site!" -msgstr "谢谢您访问我们的网站ï¼" - -#: common/templates/student/edx_ace/passwordreset/email/body.txt -#, python-format -msgid "The %(platform_name)s Team" -msgstr "%(platform_name)s 团队" - #: common/templates/student/edx_ace/passwordreset/email/subject.txt #, python-format msgid "Password reset on %(platform_name)s" msgstr "%(platform_name)sé‡ç½®å¯†ç " +#: common/templates/student/edx_ace/recoveryemailcreate/email/body.html +msgid "Create Recovery Email" +msgstr "创建验è¯é‚®ç®±" + +#: common/templates/student/edx_ace/recoveryemailcreate/email/body.html +#: common/templates/student/edx_ace/recoveryemailcreate/email/body.txt +#, python-format +msgid "You've registered this recovery email address for %(platform_name)s." +msgstr "您已为%(platform_name)s注册验è¯é‚®ç®±" + +#: common/templates/student/edx_ace/recoveryemailcreate/email/body.html +#: common/templates/student/edx_ace/recoveryemailcreate/email/body.txt +msgid "" +"If you set this email address, click \"confirm email.\" If you didn't " +"request this change, you can disregard this email." +msgstr "å¦‚æžœä½ è¦è®¾ç½®è¯¥ç”µå邮箱,点击“邮箱确认â€ã€‚如果您没有申请åšå‡ºæ›´æ”¹ï¼Œè¯·å¿½ç•¥æ¤é‚®ä»¶ã€‚" + +#. Translators: This label appears above a field on the registration form +#. meant to confirm the user's email address. +#: common/templates/student/edx_ace/recoveryemailcreate/email/body.html +#: openedx/core/djangoapps/user_api/api.py +msgid "Confirm Email" +msgstr "确认邮箱" + +#: common/templates/student/edx_ace/recoveryemailcreate/email/subject.txt +#, python-format +msgid "Confirm your recovery email for %(platform_name)s" +msgstr "%(platform_name)s验è¯é‚®ç®±ç¡®è®¤" + #: lms/djangoapps/badges/events/course_complete.py #, python-brace-format msgid "" "Completed the course \"{course_name}\" ({course_mode}, {start_date} - " "{end_date})" -msgstr "已修完课程“{course_name}â€({course_mode}, {start_date} - {end_date})" +msgstr "已修完课程“{course_name}â€({course_mode},{start_date} - {end_date})" #: lms/djangoapps/badges/events/course_complete.py #, python-brace-format @@ -5000,7 +5164,7 @@ msgid "" "comma, and the slug of a badge class you have created that has the issuing " "component 'openedx__course'. For example: 3,enrolled_3_courses" msgstr "" -"在æ¯ä¸€è¡Œä¸Šï¼Œåˆ—å‡ºä¸ºäº†èŽ·å¾—å¾½ç« çš„å·²å®Œæˆè¯¾ç¨‹çš„æ•°ç›®ã€ä¸€ä¸ªé€—å·ä»¥åŠä½ 创建的具有å‘行组件“openedx__courseâ€çš„å¾½ç« ç±»åˆ«æ ‡è¯ã€‚例如:3, " +"在æ¯ä¸€è¡Œä¸Šï¼Œåˆ—å‡ºä¸ºäº†èŽ·å¾—å¾½ç« çš„å·²å®Œæˆè¯¾ç¨‹çš„æ•°ç›®ã€ä¸€ä¸ªé€—å·ä»¥åŠæ‚¨åˆ›å»ºçš„具有å‘行组件“openedx__courseâ€çš„å¾½ç« ç±»åˆ«æ ‡è¯ã€‚例如:3, " "已登记_3_个课程" #: lms/djangoapps/badges/models.py @@ -5009,7 +5173,7 @@ msgid "" "comma, and the slug of a badge class you have created that has the issuing " "component 'openedx__course'. For example: 3,enrolled_3_courses" msgstr "" -"在æ¯ä¸€è¡Œä¸Šï¼Œåˆ—å‡ºä¸ºäº†èŽ·å¾—å¾½ç« çš„å·²ç™»è®°è¯¾ç¨‹çš„æ•°ç›®ã€ä¸€ä¸ªé€—å·ä»¥åŠä½ 创建的具有å‘行组件“openedx__courseâ€çš„å¾½ç« ç±»åˆ«æ ‡è¯ã€‚例如:3, " +"在æ¯ä¸€è¡Œä¸Šï¼Œåˆ—å‡ºä¸ºäº†èŽ·å¾—å¾½ç« çš„å·²ç™»è®°è¯¾ç¨‹çš„æ•°ç›®ã€ä¸€ä¸ªé€—å·ä»¥åŠæ‚¨åˆ›å»ºçš„具有å‘行组件“openedx__courseâ€çš„å¾½ç« ç±»åˆ«æ ‡è¯ã€‚例如:3, " "已登记_3_个课程" #: lms/djangoapps/badges/models.py @@ -5020,27 +5184,27 @@ msgid "" "learner needs to complete to be awarded the badge. For example: " "slug_for_compsci_courses_group_badge,course-v1:CompSci+Course+First,course-v1:CompsSci+Course+Second" msgstr "" -"æ¯ä¸€è¡Œéƒ½æ˜¯ä»¥é€—å·åˆ†éš”的列表。æ¯ä¸€è¡Œçš„ç¬¬ä¸€é¡¹æ˜¯ä½ åˆ›å»ºçš„å…·æœ‰å‘行组件“openedx__courseâ€çš„å¾½ç« ç±»åˆ«æ ‡è¯ã€‚æ¯ä¸€è¡Œçš„其余项是å¦å‘˜ä¸ºäº†èŽ·å¾—å¾½ç« éœ€è¦å®Œæˆçš„课程è¦é¢†ã€‚例如:slug_for_compsci_courses_group_badge,course-v1:CompSci+Course+First,course-v1:CompsSci+Course+Second" +"æ¯ä¸€è¡Œéƒ½æ˜¯ä»¥é€—å·åˆ†éš”的列表。æ¯ä¸€è¡Œçš„第一项是您创建的具有å‘行组件“openedx__courseâ€çš„å¾½ç« ç±»åˆ«æ ‡è¯ã€‚æ¯ä¸€è¡Œçš„其余项是å¦å‘˜ä¸ºäº†èŽ·å¾—å¾½ç« éœ€è¦å®Œæˆçš„课程è¦é¢†ã€‚例如:slug_for_compsci_courses_group_badge,course-v1:CompSci+Course+First,course-v1:CompsSci+Course+Second" #: lms/djangoapps/badges/models.py msgid "Please check the syntax of your entry." -msgstr "è¯·æ£€æŸ¥ä½ çš„æ¡ç›®çš„å¥æ³•ã€‚" +msgstr "请检查æ¡ç›®çš„å¥æ³•ã€‚" #: lms/djangoapps/branding/api.py msgid "Take free online courses at edX.org" msgstr "在 edX.org å¦ä¹ å…费课程" -#. Translators: 'EdX', 'edX', and 'Open edX' are trademarks of 'edX Inc.'. +#. Translators: 'edX' and 'Open edX' are trademarks of 'edX Inc.'. #. Please do not translate any of these trademarks and company names. #: lms/djangoapps/branding/api.py #, python-brace-format msgid "" -"© {org_name}. All rights reserved except where noted. EdX, Open edX and " -"their respective logos are trademarks or registered trademarks of edX Inc." -msgstr "© {org_name}。版æƒæ‰€æœ‰ï¼Œé™¤éžå¦æœ‰æ³¨æ˜Žã€‚EdXã€Open edXåŠå…¶å„è‡ªçš„æ ‡è¯†çš†ä¸ºedX Incçš„å•†æ ‡æˆ–æ³¨å†Œå•†æ ‡ã€‚" +"© {org_name}. All rights reserved except where noted. edX, Open edX and " +"their respective logos are registered trademarks of edX Inc." +msgstr "" #. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# -#. Translators: 'Open edX' is a brand, please keep this untranslated. +#. Translators: 'Open edX' is a trademark, please keep this untranslated. #. See http://openedx.org for more information. #. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# #. Translators: 'Open edX' is a brand, please keep this untranslated. See @@ -5074,15 +5238,19 @@ msgstr "多媒体工具箱" msgid "Donate" msgstr "æ助" +#: lms/djangoapps/branding/api.py lms/templates/footer.html +#: lms/templates/static_templates/about.html +#: themes/red-theme/lms/templates/footer.html +#: themes/stanford-style/lms/templates/footer.html +#: themes/stanford-style/lms/templates/static_templates/about.html +msgid "About" +msgstr "关于我们" + #: lms/djangoapps/branding/api.py #, python-brace-format msgid "{platform_name} for Business" msgstr "ä¼ä¸š{platform_name} " -#: lms/djangoapps/branding/api.py themes/red-theme/lms/templates/footer.html -msgid "News" -msgstr "æ–°é—»" - #: lms/djangoapps/branding/api.py lms/templates/static_templates/contact.html #: themes/red-theme/lms/templates/footer.html #: themes/stanford-style/lms/templates/footer.html @@ -5096,6 +5264,10 @@ msgstr "è”系我们" msgid "Careers" msgstr "æ‹›è˜" +#: lms/djangoapps/branding/api.py themes/red-theme/lms/templates/footer.html +msgid "News" +msgstr "æ–°é—»" + #: lms/djangoapps/branding/api.py lms/djangoapps/certificates/views/webview.py #: themes/edx.org/lms/templates/certificates/_accomplishment-footer.html msgid "Terms of Service & Honor Code" @@ -5118,10 +5290,6 @@ msgstr "éšç§æ”¿ç–" msgid "Accessibility Policy" msgstr "å¯è®¿é—®ç–ç•¥" -#: lms/djangoapps/branding/api.py -msgid "Sitemap" -msgstr "网站导航" - #. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# #. Translators: This is a legal document users must agree to #. in order to register a new account. @@ -5133,6 +5301,10 @@ msgstr "网站导航" msgid "Terms of Service" msgstr "æœåŠ¡æ¡æ¬¾" +#: lms/djangoapps/branding/api.py +msgid "Sitemap" +msgstr "网站导航" + #: lms/djangoapps/branding/api.py msgid "Affiliates" msgstr "附属机构" @@ -5169,7 +5341,7 @@ msgstr "CCX指导" msgid "" "A CCX can only be created on this course through an external service. " "Contact a course admin to give you access." -msgstr "CCX ä»…å¯ä»¥é€šè¿‡å¤–部æœåŠ¡åœ¨æ¤è¯¾ç¨‹ä¸Šåˆ›å»ºã€‚è”系课程管ç†å‘˜æŽˆäºˆä½ 访问æƒé™ã€‚" +msgstr "CCX ä»…å¯ä»¥é€šè¿‡å¤–部æœåŠ¡åœ¨æ¤è¯¾ç¨‹ä¸Šåˆ›å»ºã€‚è”系课程管ç†å‘˜æŽˆäºˆæ‚¨è®¿é—®æƒé™ã€‚" #: lms/djangoapps/ccx/utils.py #, python-brace-format @@ -5178,7 +5350,7 @@ msgstr "æ¤é—¨è¯¾å·²é¢æ»¡:人数é™åˆ¶ä¸º {max_student_enrollments_allowed}" #: lms/djangoapps/ccx/views.py msgid "You must be a CCX Coach to access this view." -msgstr "ä½ éœ€è¦æˆä¸ºCCX指导æ‰èƒ½è®¿é—®è¯¥è§†å›¾ã€‚" +msgstr "您需è¦æˆä¸ºCCX指导æ‰èƒ½è®¿é—®è¯¥è§†å›¾ã€‚" #: lms/djangoapps/ccx/views.py msgid "You must be the coach for this ccx to access this view" @@ -5561,7 +5733,7 @@ msgstr "关于 {user_name} è¯ä¹¦çš„更多信æ¯ï¼š" #: lms/djangoapps/certificates/views/webview.py #, python-brace-format msgid "{fullname}, you earned a certificate!" -msgstr "{fullname}ï¼Œä½ å·²ç»å–å¾—è¯ä¹¦ï¼" +msgstr "{fullname},您已ç»å–å¾—è¯ä¹¦ï¼" #. Translators: This line congratulates the user and instructs them to share #. their accomplishment on social networks @@ -5569,7 +5741,7 @@ msgstr "{fullname}ï¼Œä½ å·²ç»å–å¾—è¯ä¹¦ï¼" msgid "" "Congratulations! This page summarizes what you accomplished. Show it off to " "family, friends, and colleagues in your social and professional networks." -msgstr "æå–œ!本页总结您所完æˆä¹‹é¡¹ç›®ã€‚在您的社交和专业网络展示给家人,朋å‹å’ŒåŒäº‹ã€‚" +msgstr "æå–œï¼æœ¬é¡µæ€»ç»“了您所获得的æˆå°±ã€‚在您的社交网络å‘家人ã€æœ‹å‹å’ŒåŒäº‹ç‚«è€€ä¸€ä¸‹å§ã€‚" #. Translators: This line leads the reader to understand more about the #. certificate that a student has been awarded @@ -5637,7 +5809,7 @@ msgstr "{course_id} 课程ä¸å˜åœ¨ã€‚" #: lms/djangoapps/commerce/models.py msgid "Use the checkout page hosted by the E-Commerce service." -msgstr "é€è¿‡ä½¿ç”¨ç”µå商务æœåŠ¡æ‰¿è½½ç»“å¸é¡µé¢ã€‚" +msgstr "é€è¿‡ä½¿ç”¨ç”µå商务æœåŠ¡æ‰¿è½½ç»“账页é¢ã€‚" #: lms/djangoapps/commerce/models.py msgid "Path to course(s) checkout page hosted by the E-Commerce service." @@ -5964,10 +6136,16 @@ msgstr "您必须在这个日期之å‰æˆåŠŸå®ŒæˆéªŒè¯ï¼Œä»¥å…·å¤‡èŽ·å–åˆæ ¼ #: lms/djangoapps/courseware/masquerade.py #, python-brace-format msgid "" -"There is no user with the username or email address \"{user_identifier}\" " +"There is no user with the username or email address u\"{user_identifier}\" " "enrolled in this course." msgstr "在æ¤é—¨è¯¾ç¨‹çš„å¦å‘˜ä¸ï¼Œæœªæ‰¾åˆ°ä½¿ç”¨ç”¨æˆ·å或邮箱为{user_identifier}的用户。" +#: lms/djangoapps/courseware/masquerade.py +msgid "" +"This user does not have access to this content because" +" the content start date is in the future" +msgstr "æ¤ç”¨æˆ·æ— æƒè®¿é—®æ¤å†…å®¹ï¼Œå› ä¸ºå†…å®¹å¼€å§‹æ—¥æœŸåœ¨å°†æ¥" + #: lms/djangoapps/courseware/masquerade.py msgid "" "This type of component cannot be shown while viewing the course as a " @@ -6091,6 +6269,20 @@ msgstr "您的è¯ä¹¦å·²å¯ç”¨" msgid "To see course content, {sign_in_link} or {register_link}." msgstr "请{sign_in_link}或{register_link}以查看课程内容。" +#: lms/djangoapps/courseware/views/views.py +#: openedx/features/course_experience/views/course_home_messages.py +#, python-brace-format +msgid "{sign_in_link} or {register_link}." +msgstr "" + +#: lms/djangoapps/courseware/views/views.py +#: openedx/features/course_experience/views/course_home_messages.py +#: lms/templates/header/navbar-not-authenticated.html +#: lms/templates/navigation/navbar-not-authenticated.html +#: themes/edx.org/lms/templates/header/navbar-not-authenticated.html +msgid "Sign in" +msgstr "登录" + #: lms/djangoapps/courseware/views/views.py #, python-brace-format msgid "" @@ -6163,18 +6355,18 @@ msgstr "请告诉我们关于您的å¦ä¹ æˆ–ä¸“ä¸šç›®æ ‡ã€‚ä¸€ä»½è¿™é—¨è¯¾çš„è®¤ msgid "" "Tell us about your plans for this course. What steps will you take to help " "you complete the course work and receive a certificate?" -msgstr "å‘Šè¯‰æˆ‘ä»¬æœ‰å…³äºŽä½ è®¡ç”»çš„è¿™é—¨è¯¾ç¨‹ã€‚ä½ ä¼šé‡‡å–什么措施æ¥å¸®åŠ©æ‚¨å®Œæˆè¯¾ç¨‹å¦ä¹ ,并获得è¯ä¹¦ï¼Ÿ" +msgstr "告诉我们有关于您计划的这门课程。您会采å–什么措施æ¥å¸®åŠ©æ‚¨å®Œæˆè¯¾ç¨‹å¦ä¹ ,并获得è¯ä¹¦ï¼Ÿ" #: lms/djangoapps/courseware/views/views.py msgid "Use between 250 and 500 words or so in your response." -msgstr "ä½ çš„å›žåº”å—数应在250到500å—之间。" +msgstr "您的回ç”å—数应在250到500å—之间。" #: lms/djangoapps/courseware/views/views.py msgid "" "Select the course for which you want to earn a verified certificate. If the " "course does not appear in the list, make sure that you have enrolled in the " "audit track for the course." -msgstr "选择您想è¦èŽ·å¾—修课è¯æ˜Žä¹‹è¯¾ç¨‹ã€‚如果课程没出现在列表ä¸ï¼Œè¯·ç¡®è®¤ä½ å·²ç»æ³¨å†ŒåŠè¿½è¸ªè¯¥è¯¾ç¨‹ã€‚" +msgstr "选择您想è¦èŽ·å¾—修课è¯æ˜Žä¹‹è¯¾ç¨‹ã€‚如果课程没出现在列表ä¸ï¼Œè¯·ç¡®è®¤æ‚¨å·²ç»æ³¨å†ŒåŠè¿½è¸ªè¯¥è¯¾ç¨‹ã€‚" #: lms/djangoapps/courseware/views/views.py msgid "Specify your annual household income in US Dollars." @@ -6196,8 +6388,8 @@ msgstr "路径 {0} ä¸å˜åœ¨ï¼Œè¯·åˆ›å»ºï¼Œæˆ–为GIT_REPO_DIR设置一个ä¸åŒ #: lms/djangoapps/dashboard/git_import.py msgid "" "Non usable git url provided. Expecting something like: " -"git@github.com:mitocw/edx4edx_lite.git" -msgstr "没有å¯å†™çš„Git地å€ã€‚æœŸå¾…ç±»ä¼¼è¿™æ ·çš„åœ°å€ï¼šgit@github.com:mitocw/edx4edx_lite.git" +"git@github.com:edx/edx4edx_lite.git" +msgstr "" #: lms/djangoapps/dashboard/git_import.py msgid "Unable to get git log" @@ -6227,7 +6419,7 @@ msgstr "æŒ‡å®šçš„è¿œç¨‹åˆ†æ”¯æ— æ•ˆã€‚" #. doesn't exist, or there is a problem changing to it. #: lms/djangoapps/dashboard/git_import.py msgid "Unable to switch to specified branch. Please check your branch name." -msgstr "æ— æ³•åˆ‡æ¢åˆ°æŒ‡å®šçš„åˆ†æ”¯ã€‚è¯·æ£€æŸ¥ä½ çš„åˆ†æ”¯å。" +msgstr "æ— æ³•åˆ‡æ¢åˆ°æŒ‡å®šçš„分支。请检查您的分支å。" #: lms/djangoapps/dashboard/management/commands/git_add_course.py msgid "" @@ -6235,37 +6427,6 @@ msgid "" " and optionally specified directory." msgstr "倒入指定的git代ç 仓库和å¯é€‰åˆ†æ”¯åˆ°æ¨¡å—库与å¯é€‰çš„指定目录。" -#. Translators: This message means that the user could not be authenticated -#. (that is, we could -#. not log them in for some reason - maybe they don't have permission, or -#. their password was wrong) -#: lms/djangoapps/dashboard/sysadmin.py -#, python-brace-format -msgid "Failed in authenticating {username}, error {error}\n" -msgstr "认è¯{username}失败, 错误代ç {error}\n" - -#. Translators: This message means that the user could not be authenticated -#. (that is, we could -#. not log them in for some reason - maybe they don't have permission, or -#. their password was wrong) -#: lms/djangoapps/dashboard/sysadmin.py -#, python-brace-format -msgid "Failed in authenticating {username}\n" -msgstr "验è¯{username}失败\n" - -#. Translators: this means that the password has been corrected (sometimes the -#. database needs to be resynchronized) -#. Translate this as meaning "the password was fixed" or "the password was -#. corrected". -#: lms/djangoapps/dashboard/sysadmin.py -msgid "fixed password" -msgstr "修改åŽçš„密ç " - -#. Translators: this means everything happened successfully, yay! -#: lms/djangoapps/dashboard/sysadmin.py -msgid "All ok!" -msgstr "一切æ£å¸¸ï¼" - #: lms/djangoapps/dashboard/sysadmin.py msgid "Must provide username" msgstr "请æ供用户å" @@ -6274,24 +6435,13 @@ msgstr "请æ供用户å" msgid "Must provide full name" msgstr "请æ供全å" -#. Translators: Domain is an email domain, such as "@gmail.com" #: lms/djangoapps/dashboard/sysadmin.py -#, python-brace-format -msgid "Email address must end in {domain}" -msgstr "电å邮箱地å€å¿…须以{domain}结尾" - -#: lms/djangoapps/dashboard/sysadmin.py -#, python-brace-format -msgid "Failed - email {email_addr} already exists as {external_id}" -msgstr "失败 - Email {email_addr} å·²ç»å˜åœ¨ä¸º {external_id}" - -#: lms/djangoapps/dashboard/sysadmin.py -msgid "Password must be supplied if not using certificates" -msgstr "没有使用认è¯æ—¶å¿…é¡»æ供密ç 。" +msgid "Password must be supplied" +msgstr "å¿…é¡»æ供密ç " #: lms/djangoapps/dashboard/sysadmin.py msgid "email address required (not username)" -msgstr "电å邮件地å€å¿…å¡«(ä¸æ˜¯ç”¨æˆ·å)" +msgstr "邮箱必填(ä¸æ˜¯ç”¨æˆ·å)" #: lms/djangoapps/dashboard/sysadmin.py #, python-brace-format @@ -6334,10 +6484,6 @@ msgstr "网站统计" msgid "Total number of users" msgstr "用户总数" -#: lms/djangoapps/dashboard/sysadmin.py -msgid "Courses loaded in the modulestore" -msgstr "å·²åŠ è½½è¯¾ç¨‹è‡³æ¨¡å—仓库" - #: lms/djangoapps/dashboard/sysadmin.py #: lms/djangoapps/support/views/manage_user.py lms/templates/tracking_log.html msgid "username" @@ -6345,11 +6491,7 @@ msgstr "用户å" #: lms/djangoapps/dashboard/sysadmin.py msgid "email" -msgstr "电å邮件" - -#: lms/djangoapps/dashboard/sysadmin.py -msgid "Repair Results" -msgstr "ä¿®å¤ç»“æžœ" +msgstr "邮箱" #: lms/djangoapps/dashboard/sysadmin.py msgid "Create User Results" @@ -6395,11 +6537,6 @@ msgstr "最åŽä¸€æ¬¡ç¼–辑者" msgid "Information about all courses" msgstr "所有课程信æ¯" -#: lms/djangoapps/dashboard/sysadmin.py -#, python-brace-format -msgid "Error - cannot get course with ID {0}<br/><pre>{1}</pre>" -msgstr "错误,ä¸èƒ½é€šè¿‡ ID {0}<br/><pre>{1}</pre> å–得课程" - #: lms/djangoapps/dashboard/sysadmin.py msgid "Deleted" msgstr "åˆ é™¤" @@ -6432,47 +6569,47 @@ msgstr "角色" msgid "full_name" msgstr "å…¨å" -#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.html -#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.txt -#, python-format -msgid "%(comment_username)s replied to <b>%(thread_title)s</b>:" -msgstr "%(comment_username)s回å¤äº†<b>%(thread_title)s</b>:" - -#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.html -#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.txt -msgid "View discussion" -msgstr "查看讨论" - -#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/subject.txt -#, python-format -msgid "Response to %(thread_title)s" -msgstr "%(thread_title)s的回å¤" - -#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/discussion/django_comment_client/base/views.py msgid "Title can't be empty" msgstr "æ ‡é¢˜ä¸èƒ½ä¸ºç©º" -#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/discussion/django_comment_client/base/views.py msgid "Body can't be empty" msgstr "内容ä¸èƒ½ä¸ºç©º" -#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/discussion/django_comment_client/base/views.py msgid "Topic doesn't exist" msgstr "主题ä¸å˜åœ¨" -#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/discussion/django_comment_client/base/views.py msgid "Comment level too deep" msgstr "评论层级过深" -#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/discussion/django_comment_client/base/views.py msgid "" "Error uploading file. Please contact the site administrator. Thank you." msgstr "ä¸Šä¼ æ–‡ä»¶å‡ºé”™ï¼Œè¯·è”系网站管ç†å‘˜ï¼Œè°¢è°¢ã€‚" -#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/discussion/django_comment_client/base/views.py msgid "Good" msgstr "好" +#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.html +#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.txt +#, python-format +msgid "%(comment_username)s replied to <b>%(thread_title)s</b>:" +msgstr "%(comment_username)s回å¤äº†<b>%(thread_title)s</b>:" + +#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.html +#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.txt +msgid "View discussion" +msgstr "查看讨论" + +#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/subject.txt +#, python-format +msgid "Response to %(thread_title)s" +msgstr "%(thread_title)s的回å¤" + #: lms/djangoapps/edxnotes/helpers.py msgid "EdxNotes Service is unavailable. Please try again in a few minutes." msgstr "EdxNotesæœåŠ¡ä¸å¯ç”¨ã€‚è¯·å‡ åˆ†é’ŸåŽé‡è¯•ã€‚" @@ -6544,7 +6681,7 @@ msgstr "Sailthru 用于å‘é€è¯¾ç¨‹å‡çº§çš„模æ¿ã€‚弃用。" #: lms/djangoapps/email_marketing/models.py msgid "Sailthru send template to use on purchasing a course seat. Deprecated " -msgstr "Sailthru 用于å‘é€è´ä¹°è¯¾ç¨‹åé¢çš„模æ¿ã€‚弃用。" +msgstr "Sailthru 用于å‘é€è´ä¹°è¯¾ç¨‹åå¸çš„模æ¿ã€‚弃用。" #: lms/djangoapps/email_marketing/models.py msgid "Use the Sailthru content API to fetch course tags." @@ -6585,6 +6722,11 @@ msgstr "{platform_name} 员工" msgid "Course Staff" msgstr "授课教师" +#: lms/djangoapps/instructor/paidcourse_enrollment_report.py +#: openedx/core/djangoapps/django_comment_common/models.py +msgid "Student" +msgstr "å¦ç”Ÿ" + #: lms/djangoapps/instructor/paidcourse_enrollment_report.py #: lms/templates/preview_menu.html #: lms/templates/instructor/instructor_dashboard_2/membership.html @@ -6624,11 +6766,11 @@ msgstr "ç›‘è€ƒè€ƒè¯•å®¡æ ¸çŠ¶æ€ï¼š{review_status}" #: lms/djangoapps/instructor/services.py #, python-brace-format msgid "" -"A proctored exam attempt for {exam_name} in {course_name} by username: " -"{student_username} was reviewed as {review_status} by the proctored exam " -"review provider." +"A proctored exam attempt for {exam_name} in {course_name} by username: {student_username} was reviewed as {review_status} by the proctored exam review provider.\n" +"Review link: {review_url}" msgstr "" -"在{course_name}ä¸çš„{exam_name}ç›‘è€ƒè€ƒè¯•ï¼šç”±ç›‘è€ƒè€ƒè¯•å®¡æ ¸è€…å®¡æ ¸{student_username}为{review_status} " +"在{course_name}ä¸çš„{exam_name}ç›‘è€ƒè€ƒè¯•ï¼šç”±ç›‘è€ƒè€ƒè¯•å®¡æ ¸è€…å®¡æ ¸ç”¨æˆ·å{student_username}为{review_status} \n" +"å®¡æ ¸é“¾æŽ¥ï¼š{review_url}" #: lms/djangoapps/instructor/settings/common.py msgid "Your Platform Insights" @@ -6654,7 +6796,7 @@ msgstr "å‘çŽ°ä¸€å¤„ä¸Žæ—¢å®šæ ‡è¯†ä¹‹é—´çš„å†²çªï¼Œè¯·å°è¯•ä½¿ç”¨å…¶ä»–æ ‡è¯† msgid "" "Make sure that the file you upload is in CSV format with no extraneous " "characters or rows." -msgstr "ç¡®è®¤ä½ ä¸Šä¼ çš„CSVæ ¼å¼çš„文件里ä¸åŒ…å«æ— 关的å—符或行。" +msgstr "ç¡®è®¤æ‚¨ä¸Šä¼ çš„CSVæ ¼å¼çš„文件里ä¸åŒ…å«æ— 关的å—符或行。" #: lms/djangoapps/instructor/views/api.py msgid "Could not read uploaded file." @@ -6665,7 +6807,7 @@ msgstr "ä¸èƒ½è¯»å–å·²ä¸Šä¼ çš„æ–‡ä»¶ã€‚" msgid "" "Data in row #{row_num} must have exactly four columns: email, username, full" " name, and country" -msgstr "第#{row_num}行的数æ®å¿…须是以下四列:E-mailã€ç”¨æˆ·åã€å…¨å以åŠå›½å®¶" +msgstr "第#{row_num}行的数æ®å¿…须是以下四列:电å邮箱ã€ç”¨æˆ·åã€å…¨å以åŠå›½å®¶" #: lms/djangoapps/instructor/views/api.py #, python-brace-format @@ -6677,7 +6819,7 @@ msgstr "æ— æ•ˆçš„é‚®ç®±{email_address}。" msgid "" "An account with email {email} exists but the provided username {username} is" " different. Enrolling anyway with {email}." -msgstr "电å邮件{email}çš„å¸æˆ·å·²å˜åœ¨ä½†æ˜¯æ‰€æ供的使用者å称{username}是ä¸åŒçš„。å¯ä»¥ç”¨{email}注册。" +msgstr "邮箱{email}çš„è´¦å·å·²å˜åœ¨ä½†æ˜¯æ‰€æ供的使用者å称{username}是ä¸åŒçš„。å¯ä»¥ç”¨{email}注册。" #: lms/djangoapps/instructor/views/api.py msgid "File is not attached." @@ -6768,7 +6910,7 @@ msgstr "用户ID" #: openedx/core/djangoapps/user_api/api.py lms/templates/ccx/enrollment.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Email" -msgstr "电å邮件" +msgstr "邮箱" #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor_task/tasks_helper/enrollments.py @@ -7083,13 +7225,13 @@ msgstr "è¯ä¹¦ä¾‹å¤– (user={user}) ä¸å˜åœ¨äºŽè¯ä¹¦æ‰¹å‡†åå•ä¸ã€‚请é‡æ–° msgid "" "Student username/email field is required and can not be empty. Kindly fill " "in username/email and then press \"Add to Exception List\" button." -msgstr "å¦ç”Ÿä½¿ç”¨è€…å称åŠç”µå邮件是必填且ä¸èƒ½ç©ºç™½ã€‚请填入使用者å称åŠç”µåé‚®ä»¶ï¼Œå¹¶æŒ‰â€œåŠ å…¥ä¾‹å¤–åå•â€æŒ‰é’®ã€‚" +msgstr "å¦ç”Ÿä½¿ç”¨è€…å称åŠé‚®ç®±æ˜¯å¿…填且ä¸èƒ½ç©ºç™½ã€‚请填入使用者å称åŠé‚®ç®±ï¼Œå¹¶æŒ‰â€œåŠ 入例外åå•â€æŒ‰é’®ã€‚" #: lms/djangoapps/instructor/views/api.py msgid "" "The record is not in the correct format. Please add a valid username or " "email address." -msgstr "记录éžä¸ºæ£ç¡®ä¹‹æ ¼å¼ã€‚è¯·åŠ å…¥æœ‰æ•ˆä½¿ç”¨è€…å称或email 网å€ã€‚" +msgstr "è®°å½•çš„æ ¼å¼ä¸æ£ç¡®ã€‚请填写有效的用户å或邮箱。" #: lms/djangoapps/instructor/views/api.py #, python-brace-format @@ -7145,7 +7287,7 @@ msgstr "è¯ä¹¦å¤±æ•ˆæ˜¯ä¸å˜åœ¨çš„,请é‡æ–°è½½å…¥é¡µé¢æˆ–å†è¯•ä¸€æ¬¡ã€‚" msgid "" "Student username/email field is required and can not be empty. Kindly fill " "in username/email and then press \"Invalidate Certificate\" button." -msgstr "å¦ç”Ÿä½¿ç”¨è€…å称åŠemail是必填的且ä¸èƒ½ç©ºç™½ã€‚请填入使用者å称åŠemail,并按“作废è¯ä¹¦â€çš„按钮。" +msgstr "å¦ç”Ÿç”¨æˆ·ååŠé‚®ç®±æ˜¯å¿…填的且ä¸èƒ½ç©ºç™½ã€‚请填入用户ååŠé‚®ç®±ï¼Œå¹¶æŒ‰â€œä½œåºŸè¯ä¹¦â€çš„按钮。" #: lms/djangoapps/instructor/views/api.py #, python-brace-format @@ -7153,8 +7295,7 @@ msgid "" "The student {student} does not have certificate for the course {course}. " "Kindly verify student username/email and the selected course are correct and" " try again." -msgstr "" -"å¦ç”Ÿ {student} 没有æ¤é—¨è¯¾ç¨‹ {course}之修课è¯æ˜Žã€‚请验è¯å¦ç”Ÿä½¿ç”¨è€…å称/email以åŠç¡®è®¤æ‰€é€‰ä¹‹è¯¾ç¨‹æ˜¯å¦æ£ç¡®ï¼Œç„¶åŽå†è¯•ä¸€æ¬¡ã€‚" +msgstr "å¦ç”Ÿ {student} 没有æ¤é—¨è¯¾ç¨‹ {course}之修课è¯æ˜Žã€‚请验è¯å¦ç”Ÿç”¨æˆ·å/邮箱以åŠç¡®è®¤æ‰€é€‰ä¹‹è¯¾ç¨‹æ˜¯å¦æ£ç¡®ï¼Œç„¶åŽé‡è¯•ã€‚" #: lms/djangoapps/instructor/views/coupons.py msgid "coupon id is None" @@ -7180,7 +7321,7 @@ msgstr "ç¼–å·ä¸º({coupon_id})çš„ä¼˜æƒ åˆ¸æ›´æ–°æˆåŠŸ" msgid "" "The code ({code}) that you have tried to define is already in use as a " "registration code" -msgstr "ä½ è¯•å›¾å®šä¹‰çš„è¿™ä¸ªå¡å· ({code})å·²ç»è¢«æ³¨å†Œç 使用了" +msgstr "您试图定义的这个å¡å· ({code})å·²ç»è¢«æ³¨å†Œç 使用了" #: lms/djangoapps/instructor/views/coupons.py msgid "Please Enter the Integer Value for Coupon Discount" @@ -7370,10 +7511,6 @@ msgstr "å•å…ƒ{0}没有è¦å»¶é•¿çš„截æ¢æ—¥æœŸã€‚" msgid "An extended due date must be later than the original due date." msgstr "延长的截æ¢æ—¥æœŸå¿…须在æ£å¸¸æˆªæ¢æ—¥æœŸä¹‹åŽã€‚" -#: lms/djangoapps/instructor/views/tools.py -msgid "No due date extension is set for that student and unit." -msgstr "还没有为å¦ç”Ÿå’Œå•å…ƒè®¾ç½®å¯å»¶é•¿çš„截æ¢æ—¥æœŸã€‚" - #. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# #. Translators: This label appears above a field on the registration form #. meant to hold the user's full name. @@ -7827,6 +7964,10 @@ msgstr "" msgid "My Notes" msgstr "我的笔记" +#: lms/djangoapps/program_enrollments/models.py +msgid "One of user or external_user_key must not be null." +msgstr "" + #: lms/djangoapps/shoppingcart/models.py msgid "Order Payment Confirmation" msgstr "订å•ä»˜æ¬¾ç¡®è®¤" @@ -7890,7 +8031,7 @@ msgstr "注册课程:{course_name}" #, python-brace-format msgid "" "Please visit your {link_start}dashboard{link_end} to see your new course." -msgstr "请å‰å¾€ä½ çš„{link_start}课程é¢æ¿{link_end}查看新课程。" +msgstr "请å‰å¾€æ‚¨çš„{link_start}课程é¢æ¿{link_end}查看新课程。" #: lms/djangoapps/shoppingcart/models.py #, python-brace-format @@ -7921,7 +8062,7 @@ msgstr "您å¯ä»¥å–消注册课程,并在开课åŽ14天内å¯å…¨é¢é€€è´¹ã€‚" msgid "" "If you haven't verified your identity yet, please start the verification " "process ({verification_url})." -msgstr "å¦‚æžœä½ è¿˜æ²¡æœ‰éªŒè¯ä½ 的身份,请立å³å¼€å§‹éªŒè¯å§ï¼ˆ{verification_url})。" +msgstr "如果您还没有验è¯æ‚¨çš„身份,请立å³å¼€å§‹éªŒè¯å§ï¼ˆ{verification_url})。" #: lms/djangoapps/shoppingcart/models.py msgid "" @@ -8027,7 +8168,7 @@ msgstr "金é¢" #: lms/djangoapps/shoppingcart/pdf.py msgid "Billing Address" -msgstr "å¸å•åœ°å€" +msgstr "è´¦å•åœ°å€" #: lms/djangoapps/shoppingcart/pdf.py msgid "Disclaimer" @@ -8304,7 +8445,7 @@ msgstr "" #: lms/djangoapps/shoppingcart/processors/CyberSource2.py msgid "" "Invalid account number. Possible action: retry with another form of payment." -msgstr "æ— æ•ˆçš„å¸æˆ·å·ç 。å¯èƒ½çš„解决方法:é‡è¯•å¦ä¸€ç§ä»˜æ¬¾æ–¹å¼ã€‚" +msgstr "æ— æ•ˆçš„è´¦å·å·ç 。å¯èƒ½çš„解决方法:é‡è¯•å¦ä¸€ç§ä»˜æ¬¾æ–¹å¼ã€‚" #: lms/djangoapps/shoppingcart/processors/CyberSource2.py msgid "" @@ -8329,7 +8470,7 @@ msgstr "付款被拒ç»ã€‚å¯èƒ½çš„解决方法:é‡è¯•å¦ä¸€ç§ä»˜æ¬¾æ–¹å¼ã€‚ msgid "" "There is a problem with the information in your CyberSource account. Please" " let us know at {0}" -msgstr "æ¤é—®é¢˜å¯èƒ½ä¸Žæ‚¨çš„CyberSource账户信æ¯æœ‰å…³ã€‚请通知我们{0}" +msgstr "æ¤é—®é¢˜å¯èƒ½ä¸Žæ‚¨çš„CyberSourceè´¦å·ä¿¡æ¯æœ‰å…³ã€‚请通知我们{0}" #: lms/djangoapps/shoppingcart/processors/CyberSource2.py msgid "The requested capture amount exceeds the originally authorized amount." @@ -8392,7 +8533,7 @@ msgid "" msgstr "" "\n" "扣费ï¼é¢„授æƒç”³è¯·ä¿¡æ¯å·²ç»æ交到支付系统,ä¸å¯æ’¤é”€ã€‚\n" -"æˆ–è€…ï¼Œä½ æ‰€è¯·æ±‚çš„äº¤æ˜“ç±»åž‹æ˜¯ä¸å¯æ’¤é”€çš„。\n" +"或者,您所请求的交易类型是ä¸å¯æ’¤é”€çš„。\n" " " #: lms/djangoapps/shoppingcart/processors/CyberSource2.py @@ -8612,7 +8753,7 @@ msgstr "æˆåŠŸ" #: lms/djangoapps/shoppingcart/views.py msgid "You do not have permission to view this page." -msgstr "ä½ æ²¡æœ‰è®¿é—®æ¤é¡µé¢çš„æƒé™ã€‚" +msgstr "您没有访问æ¤é¡µé¢çš„æƒé™ã€‚" #: lms/djangoapps/support/views/index.py msgid "View and regenerate certificates." @@ -8655,6 +8796,7 @@ msgid "View, create, and reissue learner entitlements" msgstr "查看ã€æ–°å»ºã€é‡æ–°é¢å‘å¦å‘˜æƒç›Š" #: lms/djangoapps/support/views/index.py +#: lms/templates/support/feature_based_enrollments.html msgid "Feature Based Enrollments" msgstr "基于功能的注册" @@ -8689,7 +8831,7 @@ msgstr "æˆåŠŸç¦ç”¨ç”¨æˆ·" #: lms/djangoapps/support/views/refund.py #: lms/templates/shoppingcart/billing_details.html msgid "Email Address" -msgstr "电å邮件地å€" +msgstr "邮箱" #: lms/djangoapps/support/views/refund.py #: openedx/core/djangoapps/schedules/admin.py @@ -8772,7 +8914,7 @@ msgstr "æ供的课程编å·{course_id}æ— æ•ˆã€‚" #: lms/djangoapps/teams/views.py msgid "You are already in a team in this course." -msgstr "ä½ å·²ç»åŠ 入了该课程ä¸çš„一个å°ç»„。" +msgstr "您已ç»åŠ 入了该课程ä¸çš„一个å°ç»„。" #: lms/djangoapps/teams/views.py msgid "username or team_id must be specified." @@ -8834,11 +8976,11 @@ msgstr "æ‹æ‘„" #: lms/djangoapps/verify_student/views.py msgid "Take a photo of your ID" -msgstr "æ‹æ‘„ä¸€å¼ ä½ èº«ä»½è¯ä»¶çš„照片" +msgstr "æ‹æ‘„ä¸€å¼ æ‚¨çš„èº«ä»½è¯ä»¶çš„照片" #: lms/djangoapps/verify_student/views.py msgid "Review your info" -msgstr "å®¡æ ¸ä½ çš„ä¿¡æ¯" +msgstr "å®¡æ ¸æ‚¨çš„ä¿¡æ¯" #: lms/djangoapps/verify_student/views.py msgid "Enrollment confirmation" @@ -8872,16 +9014,16 @@ msgstr "æ— æ•ˆçš„è¯¾ç¨‹æ ‡è¯†" #: lms/djangoapps/verify_student/views.py msgid "No profile found for user" -msgstr "未找到用户档案" +msgstr "未找到用户资料" #: lms/djangoapps/verify_student/views.py #, python-brace-format -msgid "Name must be at least {min_length} characters long." -msgstr "åå—ä¸èƒ½å°‘于{min_length}å—符。" +msgid "Name must be at least {min_length} character long." +msgstr "" #: lms/djangoapps/verify_student/views.py msgid "Image data is not valid." -msgstr "图åƒæ•°æ®æ— 效." +msgstr "图åƒæ•°æ®æ— 效。" #: lms/djangoapps/verify_student/views.py #, python-brace-format @@ -8924,13 +9066,13 @@ msgstr "开始请访问 https://%(site_name)s" #: lms/templates/instructor/edx_ace/accountcreationandenrollment/email/body.html msgid "The login information for your account follows:" -msgstr "您的账户登录信æ¯å¦‚下:" +msgstr "您的账å·ç™»å½•ä¿¡æ¯å¦‚下:" #: lms/templates/instructor/edx_ace/accountcreationandenrollment/email/body.html #: lms/templates/instructor/edx_ace/accountcreationandenrollment/email/body.txt #, python-format msgid "email: %(email_address)s" -msgstr "电å邮件:%(email_address)s" +msgstr "邮箱:%(email_address)s" #: lms/templates/instructor/edx_ace/accountcreationandenrollment/email/body.html #: lms/templates/instructor/edx_ace/accountcreationandenrollment/email/body.txt @@ -8959,7 +9101,7 @@ msgstr "欢迎 %(course_name)s" msgid "" "To get started, please visit https://%(site_name)s. The login information " "for your account follows." -msgstr "开始请访问https://%(site_name)s 。您的账户登录信æ¯å¦‚下。" +msgstr "开始请访问https://%(site_name)s 。您的账å·ç™»å½•ä¿¡æ¯å¦‚下。" #: lms/templates/instructor/edx_ace/accountcreationandenrollment/email/subject.txt #: lms/templates/instructor/edx_ace/enrollenrolled/email/subject.txt @@ -9087,13 +9229,13 @@ msgstr "完æˆæ‚¨çš„注册" msgid "" "Once you have registered and activated your account, you will see " "%(course_name)s listed on your dashboard." -msgstr "若已完æˆæ³¨å†Œå¹¶å·²æ¿€æ´»è´¦æˆ·ï¼Œæ‚¨å°†åœ¨è¯¾ç¨‹é¢æ¿ä¸è§åˆ° %(course_name)s。" +msgstr "若已完æˆæ³¨å†Œå¹¶å·²æ¿€æ´»è´¦å·ï¼Œæ‚¨å°†åœ¨è¯¾ç¨‹é¢æ¿ä¸è§åˆ° %(course_name)s。" #: lms/templates/instructor/edx_ace/allowedenroll/email/body.html msgid "" "Once you have registered and activated your account, you will be able to " "access this course:" -msgstr "若已完æˆæ³¨å†Œå¹¶å·²æ¿€æ´»è´¦æˆ·ï¼Œæ‚¨å°†æ‹¥æœ‰è®¿é—®è¯¥è¯¾ç¨‹çš„æƒé™ï¼š" +msgstr "若已完æˆæ³¨å†Œå¹¶å·²æ¿€æ´»è´¦å·ï¼Œæ‚¨å°†æ‹¥æœ‰è®¿é—®è¯¥è¯¾ç¨‹çš„æƒé™ï¼š" #: lms/templates/instructor/edx_ace/allowedenroll/email/body.html #: lms/templates/instructor/edx_ace/allowedenroll/email/body.txt @@ -9130,7 +9272,7 @@ msgstr "如需完æˆçš„注册,请访问%(registration_url)så¡«å†™æ³¨å†Œè¡¨æ ¼ msgid "" "Once you have registered and activated your account, visit " "%(course_about_url)s to join this course." -msgstr "若已完æˆæ³¨å†Œå¹¶å·²æ¿€æ´»è´¦æˆ·ï¼Œè¯·è®¿é—®%(course_about_url)så¹¶åŠ å…¥æ¤è¯¾ç¨‹ã€‚" +msgstr "若已完æˆæ³¨å†Œå¹¶å·²æ¿€æ´»è´¦å·ï¼Œè¯·è®¿é—®%(course_about_url)så¹¶åŠ å…¥æ¤è¯¾ç¨‹ã€‚" #: lms/templates/instructor/edx_ace/allowedenroll/email/subject.txt #, python-format @@ -9142,7 +9284,7 @@ msgstr "您已被邀请注册%(course_name)s" #: lms/templates/instructor/edx_ace/enrolledunenroll/email/subject.txt #, python-format msgid "You have been unenrolled from %(course_name)s" -msgstr "ä½ å·²ä»Žè¯¾ç¨‹%(course_name)sä¸è¢«ç§»é™¤ã€‚" +msgstr "您已从课程%(course_name)sä¸è¢«ç§»é™¤ã€‚" #: lms/templates/instructor/edx_ace/allowedunenroll/email/body.html #: lms/templates/instructor/edx_ace/allowedunenroll/email/body.txt @@ -9164,7 +9306,7 @@ msgid "" " " msgstr "" "\n" -"ä½ å·²ä»Žè¯¾ç¨‹%(course_name)sä¸è¢«ç§»é™¤ã€‚" +"您已从课程%(course_name)sä¸è¢«ç§»é™¤ã€‚" #: lms/templates/instructor/edx_ace/enrolledunenroll/email/body.html #: lms/templates/instructor/edx_ace/enrolledunenroll/email/body.txt @@ -9209,7 +9351,7 @@ msgid "" "the course staff. This course will now appear on your %(site_name)s " "dashboard." msgstr "" -"ä½ å·²è¢«è¯¾ç¨‹å·¥ä½œäººå‘˜åŠ å…¥åˆ°äº†%(site_name)s上的%(course_name)sä¸ã€‚该课程应会立å³å‡ºçŽ°åœ¨ä½ çš„%(site_name)s课程é¢æ¿ä¸ã€‚" +"æ‚¨å·²è¢«è¯¾ç¨‹å·¥ä½œäººå‘˜åŠ å…¥åˆ°äº†%(site_name)s上的%(course_name)sä¸ã€‚该课程应会立å³å‡ºçŽ°åœ¨æ‚¨çš„%(site_name)s课程é¢æ¿ä¸ã€‚" #: lms/templates/instructor/edx_ace/enrollenrolled/email/body.html msgid "Access the Course Materials Now" @@ -9295,6 +9437,7 @@ msgstr "请点击“å…许â€æŒ‰é’®ä¸ºä»¥ä¸Šåº”用进行授æƒã€‚若您ä¸å¸Œæœ› #: openedx/core/djangoapps/user_api/admin.py #: cms/templates/course-create-rerun.html cms/templates/index.html #: cms/templates/manage_users.html cms/templates/manage_users_lib.html +#: cms/templates/videos_index_pagination.html msgid "Cancel" msgstr "å–消" @@ -9308,6 +9451,78 @@ msgstr "å…许" msgid "Error" msgstr "错误" +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html +msgid "Expired ID Verification" +msgstr "过期的身份验è¯" + +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html +#: openedx/core/djangoapps/user_api/templates/user_api/edx_ace/deletionnotificationmessage/email/body.html +#: openedx/core/djangoapps/user_api/templates/user_api/edx_ace/deletionnotificationmessage/email/body.txt +#, python-format +msgid "Hello %(full_name)s," +msgstr "您好,%(full_name)s" + +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt +#, python-format +msgid "Your %(platform_name)s ID verification has expired. " +msgstr "您的%(platform_name)s身份认è¯å·²è¿‡æœŸ" + +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt +msgid "" +"You must have a valid ID verification to take proctored exams and qualify " +"for certificates." +msgstr "您必须使用有效的身份验è¯å‚åŠ ç›‘è€ƒè€ƒè¯•å’ŒèŽ·å–è¯ä¹¦" + +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt +msgid "" +"Follow the link below to submit your photos and renew your ID verification." +msgstr "请点击以下链接æ交照片并更新身份验è¯ã€‚" + +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt +msgid "You can also do this from your dashboard." +msgstr "您也å¯ä»¥ä»Žé¢æ¿æ‰§è¡Œæ¤æ“作。" + +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt +#, python-format +msgid "Resubmit Verification : %(lms_verification_link)s " +msgstr "é‡æ–°è®¤è¯: %(lms_verification_link)s" + +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt +#, python-format +msgid "ID verification FAQ : %(help_center_link)s " +msgstr "ID验è¯å¸¸è§é—®é¢˜ï¼š%(help_center_link)s" + +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt +#: lms/templates/emails/failed_verification_email.txt +#: lms/templates/emails/order_confirmation_email.txt +#: lms/templates/emails/passed_verification_email.txt +#: lms/templates/emails/photo_submission_confirmation.txt +msgid "Thank you," +msgstr "谢谢," + +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt +#, python-format +msgid "The %(platform_name)s Team " +msgstr "%(platform_name)s团队" + +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt +#, python-format +msgid "Hello %(full_name)s, " +msgstr "您好,%(full_name)s" + +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/subject.txt +#, python-format +msgid "Your %(platform_name)s Verification has Expired" +msgstr "您的%(platform_name)s认è¯å·²è¿‡æœŸ" + #: lms/templates/wiki/article.html msgid "Last modified:" msgstr "最åŽä¿®æ”¹ï¼š" @@ -9399,26 +9614,6 @@ msgstr "ä¿å˜ä¿®æ”¹" msgid "Preview" msgstr "预览" -#. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# -#. Translators: this is a control to allow users to exit out of this modal -#. interface (a menu or piece of UI that takes the full focus of the screen) -#: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html -#: lms/templates/forgot_password_modal.html lms/templates/help_modal.html -#: lms/templates/signup_modal.html lms/templates/ccx/schedule.html -#: lms/templates/dashboard/_dashboard_entitlement_unenrollment_modal.html -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/invalidate_registration_code_modal.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html -#: lms/templates/modal/_modal-settings-language.html -#: themes/edx.org/lms/templates/dashboard.html -#: themes/edx.org/lms/templates/dashboard/_dashboard_entitlement_unenrollment_modal.html -msgid "Close" -msgstr "å…³é—" - #: lms/templates/wiki/edit.html msgid "Wiki Preview" msgstr "Wiki预览" @@ -9466,7 +9661,8 @@ msgstr "预览本次修改" msgid "Auto log:" msgstr "自动日志" -#: lms/templates/wiki/history.html wiki/templates/wiki/history.html +#: lms/templates/wiki/history.html cms/templates/videos_index_pagination.html +#: wiki/templates/wiki/history.html msgid "Change" msgstr "修改" @@ -9797,31 +9993,31 @@ msgstr "登录" #: themes/red-theme/lms/templates/ace_common/edx_ace/common/base_body.html #, python-format msgid "%(platform_name)s on LinkedIn" -msgstr "%(platform_name)sçš„LinkedIn官方账户" +msgstr "%(platform_name)sçš„LinkedIn官方账å·" #: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/base_body.html #: themes/red-theme/lms/templates/ace_common/edx_ace/common/base_body.html #, python-format msgid "%(platform_name)s on Twitter" -msgstr "%(platform_name)sçš„Twitter官方账户" +msgstr "%(platform_name)sçš„Twitter官方账å·" #: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/base_body.html #: themes/red-theme/lms/templates/ace_common/edx_ace/common/base_body.html #, python-format msgid "%(platform_name)s on Facebook" -msgstr "%(platform_name)sçš„Facebook官方账户" +msgstr "%(platform_name)sçš„Facebook官方账å·" #: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/base_body.html #: themes/red-theme/lms/templates/ace_common/edx_ace/common/base_body.html #, python-format msgid "%(platform_name)s on Google Plus" -msgstr "%(platform_name)sçš„Google+官方账户" +msgstr "%(platform_name)sçš„Google+官方账å·" #: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/base_body.html #: themes/red-theme/lms/templates/ace_common/edx_ace/common/base_body.html #, python-format msgid "%(platform_name)s on Reddit" -msgstr "%(platform_name)sçš„Reddit官方账户" +msgstr "%(platform_name)sçš„Reddit官方账å·" #: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/base_body.html #: themes/red-theme/lms/templates/ace_common/edx_ace/common/base_body.html @@ -9854,6 +10050,8 @@ msgstr "" #: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/upsell_cta.html #: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/upsell_cta.txt +#: openedx/features/course_duration_limits/templates/course_duration_limits/edx_ace/expiryreminder/email/body.html +#: openedx/features/course_duration_limits/templates/course_duration_limits/edx_ace/expiryreminder/email/body.txt msgid "Upgrade Now" msgstr "立刻å‡çº§" @@ -9875,7 +10073,7 @@ msgstr "组织地å€" #: openedx/core/djangoapps/api_admin/forms.py msgid "Describe what your application does." -msgstr "æè¿°ä½ çš„åº”ç”¨çš„åŠŸèƒ½ã€‚" +msgstr "æ述您的应用的功能。" #: openedx/core/djangoapps/api_admin/forms.py msgid "The URL of your organization's website." @@ -9892,7 +10090,7 @@ msgstr "您组织的è”系地å€ã€‚" #: openedx/core/djangoapps/api_admin/forms.py #, python-brace-format msgid "The following users do not exist: {usernames}." -msgstr "以下用户ä¸å˜åœ¨: {usernames}." +msgstr "以下用户ä¸å˜åœ¨: {usernames}。" #: openedx/core/djangoapps/api_admin/forms.py msgid "" @@ -9919,15 +10117,6 @@ msgstr "ä¸Žæ¤ API 用户相关的网站的 URL。" msgid "The reason this user wants to access the API." msgstr "æ¤ç”¨æˆ·å¸Œæœ›è®¿é—® API çš„åŽŸå› ã€‚" -#: openedx/core/djangoapps/api_admin/models.py -#, python-brace-format -msgid "API access request from {company}" -msgstr "{company} çš„ API 访问请求" - -#: openedx/core/djangoapps/api_admin/models.py -msgid "API access request" -msgstr "API 访问请求" - #: openedx/core/djangoapps/api_admin/widgets.py #, python-brace-format msgid "" @@ -10019,10 +10208,47 @@ msgid "" "catalog service." msgstr "对目录æœåŠ¡çš„å•ä¸ªè¯·æ±‚的最大记录数é‡ï¼Œè¡¨çŽ°å½¢å¼ä¸ºåˆ†é¡µå›žå¤ã€‚" +#: openedx/core/djangoapps/config_model_utils/models.py +#, python-format +msgid "%(value)s should have the form ORG+COURSE" +msgstr "%(value)s应该为ORG+COURSEæ ¼å¼" + #: openedx/core/djangoapps/config_model_utils/models.py msgid "Enabled" msgstr "å·²å¯ç”¨" +#: openedx/core/djangoapps/config_model_utils/models.py +msgid "Configure values for all course runs associated with this site." +msgstr "é…置与æ¤ç«™ç‚¹å…³è”的所有课程è¿è¡Œçš„å‚数。" + +#: openedx/core/djangoapps/config_model_utils/models.py +msgid "" +"Configure values for all course runs associated with this Organization. This" +" is the organization string (i.e. edX, MITx)." +msgstr "é…置与æ¤ç«™ç‚¹å…³è”的所有课程è¿è¡Œçš„å‚数。这是组织å—符串(例如edX,MITx)。" + +#: openedx/core/djangoapps/config_model_utils/models.py +msgid "Course in Org" +msgstr "课程组织" + +#: openedx/core/djangoapps/config_model_utils/models.py +msgid "" +"Configure values for all course runs associated with this course. This is " +"should be formatted as 'org+course' (i.e. MITx+6.002x, HarvardX+CS50)." +msgstr "é…置与æ¤ç«™ç‚¹å…³è”的所有课程è¿è¡Œçš„å‚æ•°ã€‚æ ¼å¼ä¸º 'org+course' (例如MITx+6.002x, HarvardX+CS50)" + +#: openedx/core/djangoapps/config_model_utils/models.py +#: cms/templates/course-create-rerun.html cms/templates/index.html +#: cms/templates/settings.html +msgid "Course Run" +msgstr "课程开课" + +#: openedx/core/djangoapps/config_model_utils/models.py +msgid "" +"Configure values for this course run. This should be formatted as the " +"CourseKey (i.e. course-v1://MITx+6.002x+2019_Q1)" +msgstr "é…ç½®æ¤è¯¾ç¨‹è¿è¡Œçš„å‚æ•°ã€‚æ ¼å¼ä¸ºCourseKey(例如course-v1://MITx+6.002x+2019_Q1)" + #: openedx/core/djangoapps/config_model_utils/models.py msgid "Configuration may not be specified at more than one level at once." msgstr "ä¸èƒ½ä¸€æ¬¡åœ¨å¤šä¸ªçº§åˆ«æŒ‡å®šé…置。" @@ -10085,7 +10311,7 @@ msgstr "å¦åˆ†è¯„å®šèµ„æ ¼" #: openedx/core/djangoapps/credit/email_utils.py #, python-brace-format msgid "You are eligible for credit from {providers_string}" -msgstr "ä½ æœ‰èµ„æ ¼èŽ·å¾— {providers_string} çš„å¦åˆ†" +msgstr "æ‚¨æœ‰èµ„æ ¼èŽ·å¾— {providers_string} çš„å¦åˆ†" #. Translators: The join of two university names (e.g., Harvard and MIT). #: openedx/core/djangoapps/credit/email_utils.py @@ -10218,6 +10444,23 @@ msgstr "这是一æ¡æµ‹è¯•è¦å‘Š" msgid "This is a test error" msgstr "æ¤ä¸ºæµ‹è¯•é”™è¯¯" +#: openedx/core/djangoapps/django_comment_common/models.py +msgid "Administrator" +msgstr "管ç†å‘˜" + +#: openedx/core/djangoapps/django_comment_common/models.py +msgid "Moderator" +msgstr "版主" + +#: openedx/core/djangoapps/django_comment_common/models.py +msgid "Group Moderator" +msgstr "群主" + +#: openedx/core/djangoapps/django_comment_common/models.py +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Community TA" +msgstr "社区助教" + #: openedx/core/djangoapps/embargo/forms.py #: openedx/core/djangoapps/verified_track_content/forms.py msgid "COURSE NOT FOUND. Please check that the course ID is valid." @@ -10271,25 +10514,6 @@ msgstr "课程{course}的白åå•å›½å®¶ï¼š {country}" msgid "Blacklist {country} for {course}" msgstr "课程{course}的黑åå•å›½å®¶ï¼š {country}" -#: openedx/core/djangoapps/external_auth/views.py -#, python-brace-format -msgid "" -"You have already created an account using an external login like WebAuth or " -"Shibboleth. Please contact {tech_support_email} for support." -msgstr "ä½ å·²ç»åˆ›å»ºä½¿ç”¨å¤–部登录类似的WebAuth或Shibbolethçš„å¸æˆ·ã€‚请è”ç³»{tech_support_email}支æŒã€‚" - -#: openedx/core/djangoapps/external_auth/views.py -msgid "" -"\n" -" Your university identity server did not return your ID information to us.\n" -" Please try logging in again. (You may need to restart your browser.)\n" -" " -msgstr "" -"\n" -" 您的大å¦èº«ä»½æœåŠ¡å™¨å¹¶æœªå°†æ‚¨çš„身份信æ¯å馈给我们,\n" -" 请å°è¯•é‡æ–°ç™»å½•ï¼ˆå¯èƒ½éœ€è¦é‡å¯æµè§ˆå™¨ã€‚)\n" -" " - #: openedx/core/djangoapps/oauth_dispatch/models.py msgid "" "Comma-separated list of scopes that this application will be allowed to " @@ -10313,7 +10537,7 @@ msgid "" "to the email address associated with this account. Thank you for helping us " "keep your data safe." msgstr "" -"{strong_tag_open}我们最近更改了密ç è¦æ±‚{strong_tag_close}{break_line_tag}您当å‰çš„密ç ä¸ç¬¦åˆæ–°çš„安全è¦æ±‚。我们刚刚å‘é€äº†ä¸€ä¸ªå¯†ç é‡ç½®æ¶ˆæ¯åˆ°ä¸Žè¯¥è´¦æˆ·ç›¸å…³è”的邮箱内。感谢您帮助我们ä¿æŠ¤æ‚¨çš„æ•°æ®å®‰å…¨ã€‚" +"{strong_tag_open}我们最近更改了密ç è¦æ±‚{strong_tag_close}{break_line_tag}您当å‰çš„密ç ä¸ç¬¦åˆæ–°çš„安全è¦æ±‚。我们刚刚å‘é€äº†ä¸€ä¸ªå¯†ç é‡ç½®æ¶ˆæ¯åˆ°ä¸Žè¯¥è´¦å·ç›¸å…³è”的邮箱内。感谢您帮助我们ä¿æŠ¤æ‚¨çš„æ•°æ®å®‰å…¨ã€‚" #: openedx/core/djangoapps/password_policy/compliance.py #, python-brace-format @@ -10325,8 +10549,7 @@ msgid "" "{anchor_tag_open}Account Settings{anchor_tag_close}." msgstr "" "{strong_tag_open}è¦æ±‚的行动:请修改您的密ç {strong_tag_close}{break_line_tag}自 " -"{deadline}èµ·, " -"{platform_name}å°†è¦æ±‚所有的å¦å‘˜è®¾ç½®å¤æ‚的密ç 。您当å‰çš„密ç ä¸æ»¡è¶³è¿™äº›è¦æ±‚。如需é‡ç½®å¯†ç ,请å‰å¾€{anchor_tag_open}账户设置{anchor_tag_close}。" +"{deadline}起,{platform_name}å°†è¦æ±‚所有的å¦å‘˜è®¾ç½®å¤æ‚的密ç 。您当å‰çš„密ç ä¸æ»¡è¶³è¿™äº›è¦æ±‚。如需é‡ç½®å¯†ç ,请å‰å¾€{anchor_tag_open}è´¦å·è®¾ç½®{anchor_tag_close}。" #: openedx/core/djangoapps/profile_images/images.py #, python-brace-format @@ -10369,7 +10592,7 @@ msgstr "MB" #: openedx/core/djangoapps/profile_images/views.py msgid "No file provided for profile image" -msgstr "未å‘档案照片æ交文件" +msgstr "未æ供文件作为用户头åƒ" #: openedx/core/djangoapps/programs/models.py msgid "Path used to construct URLs to programs marketing pages (e.g., \"/foo\")." @@ -10406,7 +10629,7 @@ msgstr "æ¤æ—¶é—´è¡¨çš„生效日期" #: openedx/core/djangoapps/schedules/models.py msgid "Deadline by which the learner must upgrade to a verified seat" -msgstr "å¦å‘˜å¿…é¡»å‡çº§è‡³è®¤è¯åé¢çš„截æ¢æ—¥æœŸ" +msgstr "å¦å‘˜å¿…é¡»å‡çº§è‡³è®¤è¯åå¸çš„截æ¢æ—¥æœŸ" #: openedx/core/djangoapps/schedules/models.py #: lms/templates/ccx/coach_dashboard.html lms/templates/ccx/schedule.html @@ -10661,14 +10884,14 @@ msgstr "用户ååªèƒ½åŒ…å«å—æ¯ã€æ•°å—ã€â€œ@/./+/-/_â€å—符。" #: openedx/core/djangoapps/user_api/accounts/__init__.py #, python-brace-format msgid "\"{email}\" is not a valid email address." -msgstr "“{email}â€ä¸ºæ— 效的邮箱地å€ã€‚" +msgstr "“{email}â€ä¸ºæ— 效的邮箱。" #: openedx/core/djangoapps/user_api/accounts/__init__.py #, python-brace-format msgid "" "It looks like {email_address} belongs to an existing account. Try again with" " a different email address." -msgstr "{email_address} å·²ç»è¢«æ³¨å†Œäº†ã€‚请更æ¢E-mailé‡è¯•ã€‚" +msgstr "{email_address} å·²ç»è¢«æ³¨å†Œäº†ã€‚请更æ¢ç”µå邮箱é‡è¯•ã€‚" #: openedx/core/djangoapps/user_api/accounts/__init__.py #, python-brace-format @@ -10685,7 +10908,7 @@ msgstr "用户åå—符数必须达到{min}至{max} ä½ã€‚" #: openedx/core/djangoapps/user_api/accounts/__init__.py #, python-brace-format msgid "Enter a valid email address that contains at least {min} characters." -msgstr "请输入有效的邮箱地å€ï¼Œä¸å°‘于{min}个å—符。" +msgstr "请输入有效的邮箱,ä¸å°‘于{min}个å—符。" #. Translators: These messages are shown to users who do not enter information #. into the required field or enter it incorrectly. @@ -10695,7 +10918,7 @@ msgstr "请输入您的全å。" #: openedx/core/djangoapps/user_api/accounts/__init__.py msgid "The email addresses do not match." -msgstr "邮箱地å€ä¸ä¸€è‡´ã€‚" +msgstr "邮箱ä¸ä¸€è‡´ã€‚" #: openedx/core/djangoapps/user_api/accounts/__init__.py msgid "Select your country or region of residence." @@ -10736,7 +10959,7 @@ msgstr "请输入您的邮寄地å€ã€‚" #: openedx/core/djangoapps/user_api/accounts/api.py #, python-brace-format msgid "The '{field_name}' field cannot be edited." -msgstr "'{field_name}'å—æ®µæ— æ³•ç¼–è¾‘." +msgstr "'{field_name}'å—æ®µæ— æ³•ç¼–è¾‘ã€‚" #: openedx/core/djangoapps/user_api/accounts/api.py #: openedx/core/djangoapps/user_api/views.py @@ -10798,16 +11021,19 @@ msgid "Specialty" msgstr "专业技能" #: openedx/core/djangoapps/user_api/accounts/utils.py +#, python-brace-format msgid "" -" Make sure that you are providing a valid username or a URL that contains \"" -msgstr "请æ供有效的用户å或包å«â€œâ€çš„URL" +"Make sure that you are providing a valid username or a URL that contains " +"\"{url_stub}\". To remove the link from your edX profile, leave this field " +"blank." +msgstr "" #: openedx/core/djangoapps/user_api/accounts/views.py #: openedx/core/djangoapps/user_authn/views/login.py msgid "" "This account has been temporarily locked due to excessive login failures. " "Try again later." -msgstr "由于登录失败次数过多,该账户暂时被é”定,请ç¨åŽå†è¯•ã€‚" +msgstr "由于登录失败次数过多,该账å·æš‚时被é”定,请ç¨åŽå†è¯•ã€‚" #: openedx/core/djangoapps/user_api/accounts/views.py #: openedx/core/djangoapps/user_authn/views/login.py @@ -10850,20 +11076,7 @@ msgstr "username@domain.com" #: openedx/core/djangoapps/user_api/api.py #, python-brace-format msgid "The email address you used to register with {platform_name}" -msgstr "您在{platform_name}上注册的E-mail" - -#. Translators: This label appears above a field on the password reset -#. form meant to hold the user's email address. -#: openedx/core/djangoapps/user_api/api.py -msgid "Secondary email" -msgstr "" - -#: openedx/core/djangoapps/user_api/api.py -#, python-brace-format -msgid "" -"Secondary email address you registered with {platform_name} using account " -"settings page" -msgstr "" +msgstr "您在{platform_name}上注册的邮箱" #: openedx/core/djangoapps/user_api/api.py lms/templates/login.html msgid "Remember me" @@ -10876,12 +11089,6 @@ msgstr "è®°ä½æˆ‘" msgid "This is what you will use to login." msgstr "您将以æ¤é‚®ç®±ç™»å½•ã€‚" -#. Translators: This label appears above a field on the registration form -#. meant to confirm the user's email address. -#: openedx/core/djangoapps/user_api/api.py -msgid "Confirm Email" -msgstr "确认邮箱地å€" - #. Translators: These instructions appear on the registration form, #. immediately #. below a field meant to hold the user's full name. @@ -10961,14 +11168,12 @@ msgstr "您必须先åŒæ„并接å—{platform_name}çš„{terms_of_service}" #: openedx/core/djangoapps/user_api/api.py #, python-brace-format msgid "" -"By creating an account with {platform_name}, you agree to " -"abide by our {platform_name} " +"By creating an account, you agree to the " "{terms_of_service_link_start}{terms_of_service}{terms_of_service_link_end}" -" and agree to our {privacy_policy_link_start}Privacy " -"Policy{privacy_policy_link_end}." +" and you acknowledge that {platform_name} and each Member " +"process your personal data in accordance with the " +"{privacy_policy_link_start}Privacy Policy{privacy_policy_link_end}." msgstr "" -"注册{platform_name}å³è¡¨ç¤ºåŒæ„éµå®ˆ{platform_name} " -"{terms_of_service_link_start}{terms_of_service}{terms_of_service_link_end}以åŠ{privacy_policy_link_start}éšç§æ”¿ç–{privacy_policy_link_end}." #. Translators: "Terms of service" is a legal document users must agree to #. in order to register a new account. @@ -10986,7 +11191,7 @@ msgstr "系统维护ä¸ï¼Œè¯·ç¨åŽé‡è¯•ã€‚" #: openedx/core/djangoapps/user_api/preferences/api.py #, python-brace-format msgid "Delete failed for user preference '{preference_key}'." -msgstr "用户设置 '{preference_key}' åˆ é™¤å¤±è´¥." +msgstr "用户设置 '{preference_key}' åˆ é™¤å¤±è´¥ã€‚" #: openedx/core/djangoapps/user_api/preferences/api.py #, python-brace-format @@ -10996,14 +11201,14 @@ msgstr "首选项“{preference_key}â€ä¸èƒ½è®¾ç½®ä¸ºç©ºå€¼ã€‚" #: openedx/core/djangoapps/user_api/preferences/api.py #, python-brace-format msgid "Invalid user preference key '{preference_key}'." -msgstr "æ— æ•ˆçš„ç”¨æˆ·å‚数项'{preference_key}'." +msgstr "æ— æ•ˆçš„ç”¨æˆ·å‚数项'{preference_key}'。" #: openedx/core/djangoapps/user_api/preferences/api.py #, python-brace-format msgid "" "Value '{preference_value}' is not valid for user preference " "'{preference_key}'." -msgstr "对于用户å‚æ•°'{preference_key}',值'{preference_value}'æ— æ•ˆ." +msgstr "对于用户å‚æ•°'{preference_key}',值'{preference_value}'æ— æ•ˆã€‚" #: openedx/core/djangoapps/user_api/preferences/api.py #, python-brace-format @@ -11020,18 +11225,12 @@ msgstr "{preference_value}å€¼æ˜¯æ— æ•ˆçš„æ—¶åŒºå€¼é€‰é¡¹ã€‚" #: openedx/core/djangoapps/user_api/preferences/api.py #, python-brace-format msgid "Save failed for user preference '{key}' with value '{value}'." -msgstr "使用值'{value}'ä¿å˜ç”¨æˆ·å‚æ•°'{key}'失败." +msgstr "使用值'{value}'ä¿å˜ç”¨æˆ·å‚æ•°'{key}'失败。" #: openedx/core/djangoapps/user_api/preferences/views.py msgid "No data provided for user preference update" msgstr "未å‘用户å‚æ•°æ›´æ–°æ供数æ®" -#: openedx/core/djangoapps/user_api/templates/user_api/edx_ace/deletionnotificationmessage/email/body.html -#: openedx/core/djangoapps/user_api/templates/user_api/edx_ace/deletionnotificationmessage/email/body.txt -#, python-format -msgid "Hello %(full_name)s," -msgstr "您好,%(full_name)s" - #: openedx/core/djangoapps/user_api/templates/user_api/edx_ace/deletionnotificationmessage/email/body.html #: openedx/core/djangoapps/user_api/templates/user_api/edx_ace/deletionnotificationmessage/email/body.txt #, python-format @@ -11079,25 +11278,16 @@ msgstr "ç¦æ¢ä¿®æ”¹è´¦å·ã€‚" #: openedx/core/djangoapps/user_authn/views/login.py #, python-brace-format msgid "" -"You've successfully logged into your {provider_name} account, but this " -"account isn't linked with an {platform_name} account yet." -msgstr "ä½ å·²æˆåŠŸç™»å½•{provider_name}å¸æˆ·ï¼Œä½†è¯¥å¸å·å°šæœªä¸Ž{platform_name}å¸æˆ·å…³è”。" - -#: openedx/core/djangoapps/user_authn/views/login.py -#, python-brace-format -msgid "" -"Use your {platform_name} username and password to log into {platform_name} " +"You've successfully signed in to your {provider_name} account, but this " +"account isn't linked with your {platform_name} account yet. {blank_lines}Use" +" your {platform_name} username and password to sign in to {platform_name} " "below, and then link your {platform_name} account with {provider_name} from " -"your dashboard." +"your dashboard. {blank_lines}If you don't have an account on {platform_name}" +" yet, click {register_label_strong} at the top of the page." msgstr "" -"ç”¨ä½ çš„{platform_name}用户å和密ç 登陆{platform_name},然åŽä»Žè¯¾ç¨‹é¢æ¿é¡µé¢å…³è”{platform_name}账户和{provider_name}。" - -#: openedx/core/djangoapps/user_authn/views/login.py -#, python-brace-format -msgid "" -"If you don't have an {platform_name} account yet, click " -"{register_label_strong} at the top of the page." -msgstr "如果您还没有{platform_name}çš„è´¦å·ï¼Œè¯·ç‚¹å‡»é¡µé¢é¡¶éƒ¨çš„{register_label_strong}按钮进行注册。" +"您已æˆåŠŸç™»å½•{provider_name}å¸æˆ·ï¼Œä½†æ¤å¸æˆ·å°šæœªä¸Žæ‚¨çš„{platform_name}å¸æˆ·ç›¸å…³è”。 " +"{blank_lines}使用您的{platform_name}用户å和密ç 登录下é¢çš„{platform_name},然åŽä»Žæ‚¨çš„é¢æ¿å°†{platform_name}å¸æˆ·ä¸Ž{provider_name}相关è”。" +" {blank_lines}如果您还没有{platform_name}上的å¸æˆ·ï¼Œè¯·ç‚¹å‡»é¡µé¢é¡¶éƒ¨çš„{register_label_strong}。" #: openedx/core/djangoapps/user_authn/views/login.py #: lms/templates/register-form.html @@ -11115,14 +11305,13 @@ msgstr "接å—您的登录信æ¯æ—¶å‡ºçŽ°é”™è¯¯ï¼Œè¯·å‘电å邮件给我们。 #: openedx/core/djangoapps/user_authn/views/login.py #, python-brace-format msgid "" -"In order to sign in, you need to activate your account.<br /><br />We just " -"sent an activation link to <strong>{email}</strong>. If you do not receive " -"an email, check your spam folders or <a href=\"{support_url}\">contact " -"{platform} Support</a>." +"In order to sign in, you need to activate your account.{blank_lines}We just " +"sent an activation link to {email_strong}. If you do not receive an email, " +"check your spam folders or {link_start}contact {platform_name} " +"Support{link_end}." msgstr "" -"如需登录,请先激活您的账å·ã€‚<br /><br />激活链接已å‘é€è‡³ " -"<strong>{email}</strong>。如果您未收到邮件,请查看邮箱ä¸çš„垃圾邮件或 <a " -"href=\"{support_url}\">è”ç³»{platform}的技术支æŒ</a>。" +"您需è¦æ¿€æ´»æ‚¨çš„å¸æˆ·æ‰èƒ½ç™»å½•ã€‚{blank_lines}我们刚刚å‘{email_strong}å‘é€äº†æ¿€æ´»é“¾æŽ¥ã€‚ " +"如果您没有收到电å邮件,请检查您的垃圾邮件文件夹或{link_start}è”ç³»{platform_name}支æŒ{link_end}。" #: openedx/core/djangoapps/user_authn/views/login.py msgid "Too many failed login attempts. Try again later." @@ -11276,6 +11465,7 @@ msgstr "" #: openedx/features/content_type_gating/models.py #: openedx/features/course_duration_limits/models.py +#: lms/templates/support/feature_based_enrollments.html msgid "Enabled As Of" msgstr "å¯ç”¨è‡³" @@ -11283,8 +11473,8 @@ msgstr "å¯ç”¨è‡³" #: openedx/features/course_duration_limits/models.py msgid "" "If the configuration is Enabled, then all enrollments created after this " -"date and time (UTC) will be affected." -msgstr "如果é…置为“已å¯ç”¨â€ï¼Œåˆ™åœ¨æ¤æ—¥æœŸå’Œæ—¶é—´ï¼ˆä¸–ç•Œæ ‡å‡†æ—¶é—´UTC)之åŽåˆ›å»ºçš„所有注册都将å—到影å“。" +"date and time (user local time) will be affected." +msgstr "如果é…置为“已å¯ç”¨â€ï¼Œåˆ™åœ¨æ¤æ—¥æœŸå’Œæ—¶é—´ï¼ˆç”¨æˆ·æœ¬åœ°æ—¶é—´ï¼‰ä¹‹åŽåˆ›å»ºçš„所有注册都将å—到影å“。" #: openedx/features/content_type_gating/models.py msgid "Studio Override Enabled" @@ -11309,6 +11499,11 @@ msgstr "基于功能的选课" msgid "Partition for segmenting users by access to gated content types" msgstr "通过访问å°é—的内容类型æ¥åˆ’分用户的分区" +#: openedx/features/content_type_gating/partitions.py +#: openedx/features/content_type_gating/templates/content_type_gating/access_denied_message.html +msgid "Graded assessments are available to Verified Track learners." +msgstr "分级评估å¯ç”¨äºŽå·²ç»è¿‡èº«ä»½è®¤è¯çš„跟踪å¦å‘˜ã€‚" + #: openedx/features/content_type_gating/partitions.py msgid "" "Graded assessments are available to Verified Track learners. Upgrade to " @@ -11323,10 +11518,6 @@ msgstr "ä»…ä¾›ç»è¿‡èº«ä»½è®¤è¯çš„å¦å‘˜ä½¿ç”¨çš„内容" msgid "Verified Track Access" msgstr "å·²ç»è¿‡èº«ä»½è®¤è¯çš„跟踪访问" -#: openedx/features/content_type_gating/templates/content_type_gating/access_denied_message.html -msgid "Graded assessments are available to Verified Track learners." -msgstr "分级评估å¯ç”¨äºŽå·²ç»è¿‡èº«ä»½è®¤è¯çš„跟踪å¦å‘˜ã€‚" - #: openedx/features/content_type_gating/templates/content_type_gating/access_denied_message.html msgid "Upgrade to unlock" msgstr "å‡çº§åˆ°è§£é”" @@ -11360,7 +11551,7 @@ msgid "" "{expiration_date}{strong_close}{line_break}You lose all access to this " "course, including your progress, on {expiration_date}." msgstr "" -"{strong_open} æ—å¬è®¿é—®å…¥å£è¿‡æœŸ {expiration_date}{strong_close}{line_break}. 您已于 " +"{strong_open} æ—å¬è®¿é—®å…¥å£è¿‡æœŸ {expiration_date}{strong_close}{line_break}。您已于 " "{expiration_date} 失去课程访问æƒé™ï¼ŒåŒ…括æ£åœ¨ä¸Šçš„课程。" #: openedx/features/course_duration_limits/access.py @@ -11375,6 +11566,47 @@ msgstr "" "{a_open}现在å‡çº§{sronly_span_open} 以确ä¿{expiration_date}å‰ä¿ç•™è®¿é—®æƒ " "{span_close}{a_close}。" +#: openedx/features/course_duration_limits/resolvers.py +msgid "%b. %d, %Y" +msgstr "%b. %d, %Y" + +#: openedx/features/course_duration_limits/templates/course_duration_limits/edx_ace/expiryreminder/email/body.html +#, python-format +msgid "" +"We hope you have enjoyed %(first_course_name)s! You lose all access to this " +"course in %(time_until_expiration)s." +msgstr "希望您喜欢%(first_course_name)sï¼åœ¨%(time_until_expiration)s之åŽæ‚¨å°†æ— 法访问æ¤è¯¾ç¨‹" + +#: openedx/features/course_duration_limits/templates/course_duration_limits/edx_ace/expiryreminder/email/body.html +#, python-format +msgid "" +"We hope you have enjoyed %(first_course_name)s! You lose all access to this " +"course, including your progress, on %(first_course_expiration_date)s " +"(%(time_until_expiration)s)." +msgstr "" +"希望您喜欢%(first_course_name)sï¼åœ¨%(first_course_expiration_date)s(%(time_until_expiration)s)之åŽæ‚¨å°†æ— 法访问æ¤è¯¾ç¨‹ï¼ŒåŒ…括您的进展。" + +#: openedx/features/course_duration_limits/templates/course_duration_limits/edx_ace/expiryreminder/email/body.html +msgid "" +"Upgrade now to get unlimited access and for the chance to earn a verified " +"certificate." +msgstr "ç«‹å³å‡çº§ä»¥èŽ·å¾—æ— é™åˆ¶è®¿é—®æƒå¹¶æœ‰æœºä¼šèŽ·å¾—ç»è¿‡éªŒè¯çš„è¯ä¹¦ã€‚" + +#: openedx/features/course_duration_limits/templates/course_duration_limits/edx_ace/expiryreminder/email/body.txt +#, python-format +msgid "" +"We hope you have enjoyed %(first_course_name)s! You lose all access to this " +"course, including your progress, on %(first_course_expiration_date)s " +"(%(time_until_expiration)s). Upgrade now to get unlimited access and for the" +" chance to earn a verified certificate." +msgstr "" +"希望您喜欢%(first_course_name)sï¼åœ¨%(first_course_expiration_date)s(%(time_until_expiration)s)之åŽæ‚¨å°†æ— 法访问æ¤è¯¾ç¨‹ï¼ŒåŒ…括您的进展。立å³å‡çº§ä»¥èŽ·å¾—æ— é™åˆ¶è®¿é—®æƒå¹¶æœ‰æœºä¼šèŽ·å¾—ç»è¿‡éªŒè¯çš„è¯ä¹¦ã€‚" + +#: openedx/features/course_duration_limits/templates/course_duration_limits/edx_ace/expiryreminder/email/subject.txt +#, python-format +msgid "Upgrade to keep your access to %(first_course_name)s" +msgstr "å‡çº§ä»¥ä¿æŒæ‚¨çš„%(first_course_name)s访问æƒé™" + #: openedx/features/course_experience/plugins.py #: cms/templates/widgets/header.html #: lms/templates/api_admin/terms_of_service.html @@ -11387,28 +11619,34 @@ msgstr "æ›´æ–°" msgid "Reviews" msgstr "评论" +#: openedx/features/course_experience/utils.py +#, no-python-format, python-brace-format +msgid "" +"{banner_open}{percentage}% off your first upgrade.{span_close} Discount " +"automatically applied.{div_close}" +msgstr "" + #: openedx/features/course_experience/views/course_home_messages.py #, python-brace-format msgid "{sign_in_link} or {register_link} and then enroll in this course." msgstr "åŠ å…¥è¯¾ç¨‹ä¹‹å‰è¯·å…ˆ{sign_in_link}或{register_link}。" #: openedx/features/course_experience/views/course_home_messages.py -#: lms/templates/header/navbar-not-authenticated.html -#: lms/templates/navigation/navbar-not-authenticated.html -#: themes/edx.org/lms/templates/header/navbar-not-authenticated.html -msgid "Sign in" -msgstr "登录" +#, python-brace-format +msgid "Welcome to {course_display_name}" +msgstr "æ¬¢è¿ŽåŠ å…¥{course_display_name}" #: openedx/features/course_experience/views/course_home_messages.py -#, python-brace-format msgid "" -"{open_enroll_link}Enroll now{close_enroll_link} to access the full course." -msgstr "{open_enroll_link}åŠ å…¥è¯¾ç¨‹{close_enroll_link}以充分体验课程å¦ä¹ 。" +"You must be enrolled in the course to see course content. Please contact " +"your degree administrator or edX Support if you have questions." +msgstr "您必须注册课程æ‰èƒ½æŸ¥çœ‹è¯¾ç¨‹å†…容。 如果您有任何疑问,请è”系您的å¦ä½ç®¡ç†å‘˜æˆ–edX支æŒã€‚" #: openedx/features/course_experience/views/course_home_messages.py #, python-brace-format -msgid "Welcome to {course_display_name}" -msgstr "æ¬¢è¿ŽåŠ å…¥{course_display_name}" +msgid "" +"{open_enroll_link}Enroll now{close_enroll_link} to access the full course." +msgstr "{open_enroll_link}åŠ å…¥è¯¾ç¨‹{close_enroll_link}以充分体验课程å¦ä¹ 。" #: openedx/features/course_experience/views/course_home_messages.py #, python-brace-format @@ -11432,6 +11670,29 @@ msgstr "{choice}" msgid "Set goal to: {goal_text}" msgstr "设置课程å¦ä¹ ç›®æ ‡ä¸ºï¼š{goal_text}" +#: openedx/features/discounts/admin.py +msgid "" +"These define the context to disable lms-controlled discounts on. If no " +"values are set, then the configuration applies globally. If a single value " +"is set, then the configuration applies to all courses within that context. " +"At most one value can be set at a time.<br>If multiple contexts apply to a " +"course (for example, if configuration is specified for the course " +"specifically, and for the org that the course is in, then the more specific " +"context overrides the more general context." +msgstr "" + +#: openedx/features/discounts/admin.py +msgid "" +"If any of these values is left empty or \"Unknown\", then their value at " +"runtime will be retrieved from the next most specific context that applies. " +"For example, if \"Disabled\" is left as \"Unknown\" in the course context, " +"then that course will be Disabled only if the org that it is in is Disabled." +msgstr "" + +#: openedx/features/discounts/models.py +msgid "Disabled" +msgstr "" + #: openedx/features/enterprise_support/api.py #, python-brace-format msgid "Enrollment in {course_title} was not complete." @@ -11466,15 +11727,6 @@ msgstr "æ„Ÿè°¢æ‚¨åŠ å…¥{platform_name}ï¼Œè¿˜éœ€å‡ æ¥å³å¯å¼€å¯æ‚¨çš„å¦ä¹ 之 msgid "Continue" msgstr "继ç»" -#: openedx/features/learner_profile/views/learner_profile.py -#, python-brace-format -msgid "" -"Welcome to the new learner profile page. Your full profile now displays more" -" information to other learners. You can instead choose to display a limited " -"profile. {learn_more_link_start}Learn more{learn_more_link_end}" -msgstr "" -"欢迎æ¥åˆ°æ–°çš„å¦å‘˜ä¸å¿ƒé¡µé¢ï¼çŽ°åœ¨æ‚¨å°†å¯ä»¥åœ¨å®Œæ•´èµ„æ–™ä¸å‘其他å¦å‘˜å±•ç¤ºæ›´å¤šä¿¡æ¯ã€‚您也å¯ä»¥é€‰æ‹©åªæ˜¾ç¤ºéƒ¨åˆ†èµ„料。{learn_more_link_start}了解更多{learn_more_link_end}" - #: themes/red-theme/lms/templates/schedules/edx_ace/recurringnudge_day3/email/body.txt #, python-format msgid "" @@ -11552,8 +11804,8 @@ msgstr "" #: cms/djangoapps/contentstore/git_export_utils.py msgid "" "Non writable git url provided. Expecting something like: " -"git@github.com:mitocw/edx4edx_lite.git" -msgstr "没有å¯å†™çš„Git地å€ã€‚æœŸå¾…ç±»ä¼¼è¿™æ ·çš„åœ°å€ï¼šgit@github.com:mitocw/edx4edx_lite.git" +"git@github.com:edx/edx4edx_lite.git" +msgstr "" #: cms/djangoapps/contentstore/git_export_utils.py msgid "" @@ -11775,7 +12027,7 @@ msgid "" "You must link this course to an organization in order to continue. " "Organization you selected does not exist in the system, you will need to add" " it to the system" -msgstr "您必须将æ¤è¯¾ç¨‹é“¾æŽ¥åˆ°æœºæž„以继ç»ã€‚您选择的机构在系统ä¸ä¸å˜åœ¨ï¼Œä½ 需è¦å°†æ¤æœºæž„æ·»åŠ è‡³ç³»ç»Ÿä¸ã€‚" +msgstr "您必须将æ¤è¯¾ç¨‹é“¾æŽ¥åˆ°æœºæž„以继ç»ã€‚您选择的机构在系统ä¸ä¸å˜åœ¨ï¼Œæ‚¨éœ€è¦å°†æ¤æœºæž„æ·»åŠ è‡³ç³»ç»Ÿä¸ã€‚" #: cms/djangoapps/contentstore/views/course.py msgid "Invalid prerequisite course key" @@ -11783,7 +12035,7 @@ msgstr "å…ˆä¿®è¯¾ç¨‹æ ‡è¯†æ— æ•ˆ" #: cms/djangoapps/contentstore/views/course.py msgid "An error occurred while trying to save your tabs" -msgstr "åœ¨ä½ å°è¯•ä¿å˜ä¹¦ç¾æ—¶å‘生错误" +msgstr "在您å°è¯•ä¿å˜ä¹¦ç¾æ—¶å‘生错误" #: cms/djangoapps/contentstore/views/course.py msgid "Tabs Exception" @@ -11914,7 +12166,7 @@ msgid "" "There is already a library defined with the same organization and library " "code. Please change your library code so that it is unique within your " "organization." -msgstr "å·²ç»å˜åœ¨ä¸€ä¸ªå…·æœ‰ç›¸åŒæœºæž„和知识库编å·çš„çŸ¥è¯†åº“ï¼Œè¯·æ›´æ”¹ä½ çš„çŸ¥è¯†åº“ç¼–å·ä»¥ä¿è¯å…¶åœ¨æ‚¨çš„机构ä¸æ˜¯å”¯ä¸€çš„。" +msgstr "å·²ç»å˜åœ¨ä¸€ä¸ªå…·æœ‰ç›¸åŒæœºæž„和知识库编å·çš„知识库,请更改您的知识库编å·ä»¥ä¿è¯å…¶åœ¨æ‚¨çš„机构ä¸æ˜¯å”¯ä¸€çš„。" #: cms/djangoapps/contentstore/views/preview.py #, python-brace-format @@ -11982,7 +12234,7 @@ msgstr "没有足够的æƒé™" #: cms/djangoapps/contentstore/views/user.py #, python-brace-format msgid "Could not find user by email address '{email}'." -msgstr "æ— æ³•é€šè¿‡é‚®ä»¶åœ°å€â€œ{email}â€æ‰¾åˆ°ç”¨æˆ·ã€‚" +msgstr "æ— æ³•é€šè¿‡é‚®ç®±â€œ{email}â€æ‰¾åˆ°ç”¨æˆ·ã€‚" #: cms/djangoapps/contentstore/views/user.py msgid "No `role` specified." @@ -11991,7 +12243,7 @@ msgstr "“角色â€æœªæŒ‡å®šã€‚" #: cms/djangoapps/contentstore/views/user.py #, python-brace-format msgid "User {email} has registered but has not yet activated his/her account." -msgstr "用户{email}已注册但尚未激活其账户。" +msgstr "用户{email}已注册但尚未激活其账å·ã€‚" #: cms/djangoapps/contentstore/views/user.py msgid "Invalid `role` specified." @@ -12103,6 +12355,10 @@ msgstr "æ·»åŠ æ—¥æœŸ" msgid "{course}_video_urls" msgstr "{course}_video_urls" +#: cms/djangoapps/contentstore/views/videos.py +msgid "A non zero positive integer is expected" +msgstr "需è¦ä¸€ä¸ªéžé›¶çš„æ£æ•´æ•°" + #: cms/djangoapps/course_creators/models.py msgid "unrequested" msgstr "未请求的" @@ -12151,6 +12407,16 @@ msgid "" msgstr "" "有时课程的è‰ç¨¿å’Œå·²å‘布的分支å¯èƒ½ä¼šä¸åŒæ¥ã€‚强制å‘布课程命令会é‡ç½®å·²å‘布的课程分支以指å‘è‰ç¨¿åˆ†æ”¯ï¼Œæœ‰æ•ˆåœ°å¼ºåˆ¶å‘布课程。æ¤è§†å›¾ç¨‹åºè¿è¡Œå¼ºåˆ¶å‘布命令" +#: cms/djangoapps/maintenance/views.py +msgid "Edit Announcements" +msgstr "编辑公告" + +#: cms/djangoapps/maintenance/views.py +msgid "" +"This view shows the announcement editor to create or alter announcements " +"that are shown on the rightside of the dashboard." +msgstr "æ¤è§†å›¾æ˜¾ç¤ºå…¬å‘Šç¼–辑器,用于创建或更改显示在é¢æ¿å³ä¾§çš„公告。" + #: cms/djangoapps/maintenance/views.py msgid "Please provide course id." msgstr "请æ供课程编å·ã€‚" @@ -12269,7 +12535,7 @@ msgstr "登录{studio_name}" #: cms/templates/login.html themes/red-theme/cms/templates/login.html msgid "Don't have a {studio_name} Account? Sign up!" -msgstr "还没有 {studio_name}账户?现在就注册ï¼" +msgstr "还没有 {studio_name}è´¦å·ï¼ŸçŽ°åœ¨å°±æ³¨å†Œï¼" #: cms/templates/login.html themes/red-theme/cms/templates/login.html msgid "Required Information to Sign In to {studio_name}" @@ -12283,7 +12549,7 @@ msgstr "登录{studio_name}所必须的信æ¯" #: themes/stanford-style/lms/templates/register-form.html #: themes/stanford-style/lms/templates/register-shib.html msgid "E-mail" -msgstr "电å邮件" +msgstr "邮箱" #. Translators: This is the placeholder text for a field that requests an #. email @@ -12345,6 +12611,21 @@ msgstr "细节" msgid "View" msgstr "阅览" +#: cms/templates/maintenance/_announcement_edit.html +#: lms/templates/problem.html lms/templates/word_cloud.html +msgid "Save" +msgstr "ä¿å˜" + +#: cms/templates/maintenance/_announcement_index.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "previous" +msgstr "上一项" + +#: cms/templates/maintenance/_announcement_index.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "next" +msgstr "下一个" + #: cms/templates/maintenance/_force_publish_course.html #: lms/templates/problem.html lms/templates/shoppingcart/shopping_cart.html #: openedx/core/djangoapps/dark_lang/templates/dark_lang/preview-language-fragment.html @@ -12357,6 +12638,15 @@ msgstr "é‡ç½®" msgid "Legal" msgstr "åˆæ³•" +#. Translators: 'edX' and 'Open edX' are trademarks of 'edX Inc.'. Please do +#. not translate any of these trademarks and company names. +#: cms/templates/widgets/footer.html +#: themes/red-theme/lms/templates/footer.html +msgid "" +"edX, Open edX, and the edX and Open edX logos are registered trademarks of " +"{link_start}edX Inc.{link_end}" +msgstr "" + #: cms/templates/widgets/header.html lms/templates/header/header.html #: lms/templates/navigation/navigation.html #: lms/templates/widgets/footer-language-selector.html @@ -12366,7 +12656,7 @@ msgstr "选择è¯è¨€" #: cms/templates/widgets/header.html lms/templates/user_dropdown.html #: lms/templates/header/user_dropdown.html msgid "Account" -msgstr "账户" +msgstr "è´¦å·" #: cms/templates/widgets/header.html #: lms/templates/header/navbar-authenticated.html @@ -12458,7 +12748,7 @@ msgstr "åé¦ˆè¡¨æ ¼" #: common/templates/emails/contact_us_feedback_email_body.txt msgid "Email: {email}" -msgstr "电å邮件: {email}" +msgstr "邮箱: {email}" #: common/templates/emails/contact_us_feedback_email_body.txt msgid "Full Name: {realname}" @@ -12488,11 +12778,11 @@ msgstr "使用者å馈æ„è§" msgid "" "The email associated with your {platform_name} account has changed from " "{old_email} to {new_email}." -msgstr "ä¸Žä½ è´¦æˆ· {platform_name} 相关è”的电å邮件地å€ç”± {old_email} 修改为 {new_email}。" +msgstr "ä¸Žæ‚¨è´¦å· {platform_name} 相关è”的邮箱已ç»ç”± {old_email} 修改为 {new_email}。" #: common/templates/emails/sync_learner_profile_data_email_change_body.txt msgid "No action is needed on your part." -msgstr "ä½ ä¸éœ€è¦è¿›è¡Œä»»ä½•æ“作。" +msgstr "您ä¸éœ€è¦è¿›è¡Œä»»ä½•æ“作。" #: common/templates/emails/sync_learner_profile_data_email_change_body.txt msgid "" @@ -12502,7 +12792,7 @@ msgstr "如果æ¤æ›´æ”¹æœ‰è¯¯ï¼Œè¯·è”ç³»{link_start}{platform_name}å®¢æˆ·æ”¯æŒ #: common/templates/emails/sync_learner_profile_data_email_change_subject.txt msgid "Your {platform_name} account email has been updated" -msgstr "ä½ çš„ {platform_name} 账户电å邮件已更新" +msgstr "您的 {platform_name} è´¦å·ç”µå邮箱已更新" #: lms/djangoapps/discussion/templates/discussion/discussion_board_fragment.html msgid "Add a Post" @@ -12576,7 +12866,7 @@ msgstr "收è—æ¤é¡µ" #: lms/templates/conditional_module.html msgid "You do not have access to this dependency module." -msgstr "ä½ æ— æƒè®¿é—®æ¤ä¾èµ–模å—。" +msgstr "æ‚¨æ— æƒè®¿é—®æ¤ä¾èµ–模å—。" #: lms/templates/course.html #: openedx/features/journals/templates/journals/bundle_card.html @@ -12632,11 +12922,16 @@ msgstr "查找课程" msgid "Clear search" msgstr "清空æœç´¢ç»“æžœ" +#: lms/templates/dashboard.html +msgid "Skip to list of announcements" +msgstr "跳转到公告列表" + #: lms/templates/dashboard.html themes/edx.org/lms/templates/dashboard.html msgid "Account Status Info" -msgstr "账户状æ€ä¿¡æ¯" +msgstr "è´¦å·çŠ¶æ€ä¿¡æ¯" -#: lms/templates/dashboard.html themes/edx.org/lms/templates/dashboard.html +#: lms/templates/dashboard.html lms/templates/header/user_dropdown.html +#: themes/edx.org/lms/templates/dashboard.html msgid "Order History" msgstr "订å•è®°å½•" @@ -12676,6 +12971,7 @@ msgstr "æˆ‘ä»¬æ— æ³•å‘ {email}å‘é€ç¡®è®¤é‚®ä»¶" #: lms/templates/email_change_failed.html lms/templates/email_exists.html #: lms/templates/invalid_email_key.html +#: lms/templates/secondary_email_change_failed.html msgid "Go back to the {link_start}home page{link_end}." msgstr "返回{link_start}主页{link_end}" @@ -12689,7 +12985,7 @@ msgstr "您å¯ä»¥åœ¨{link_start}课程é¢æ¿{link_end}看到您的新邮箱地 #: lms/templates/email_exists.html msgid "An account with the new e-mail address already exists." -msgstr "该邮箱地å€å·²è¢«å¦ä¸€ä¸ªè´¦æˆ·ä½¿ç”¨ã€‚" +msgstr "该邮箱已被å¦ä¸€ä¸ªè´¦å·ä½¿ç”¨ã€‚" #: lms/templates/enroll_staff.html msgid "You should Register before trying to access the Unit" @@ -12736,11 +13032,15 @@ msgstr "排除错误" msgid "External Authentication failed" msgstr "外部认è¯å¤±è´¥" +#: lms/templates/footer.html +msgid "organization logo" +msgstr "" + #: lms/templates/forgot_password_modal.html msgid "" "Please enter your e-mail address below, and we will e-mail instructions for " "setting a new password." -msgstr "请在下é¢è¾“入您的电å邮件地å€ã€‚我们会通过邮件å‘é€è®¾ç½®æ–°å¯†ç 的说明。" +msgstr "请在下é¢è¾“入您的邮箱。我们会通过邮件å‘é€è®¾ç½®æ–°å¯†ç 的说明。" #: lms/templates/forgot_password_modal.html lms/templates/login.html #: lms/templates/register-form.html lms/templates/register-shib.html @@ -12756,11 +13056,11 @@ msgstr "å¿…å¡«ä¿¡æ¯" #: lms/templates/forgot_password_modal.html msgid "Your E-mail Address" -msgstr "您的邮件地å€" +msgstr "您的邮箱" #: lms/templates/forgot_password_modal.html lms/templates/login.html msgid "This is the e-mail address you used to register with {platform}" -msgstr "这是您在{platform}注册时使用的e-mail地å€ã€‚" +msgstr "这是您在{platform}注册时使用的邮箱" #: lms/templates/forgot_password_modal.html msgid "Reset My Password" @@ -12894,7 +13194,7 @@ msgstr "å‘生错误" #: lms/templates/help_modal.html msgid "Please {link_start}send us e-mail{link_end}." -msgstr "请 {link_start}å‘é€e-mail{link_end} 给我们。" +msgstr "请 {link_start}å‘é€ç”µå邮箱{link_end} 给我们。" #: lms/templates/help_modal.html msgid "Please try again later." @@ -12931,17 +13231,15 @@ msgstr "" msgid "Search for a course" msgstr "查找课程" -#. Translators: 'Open edX' is a registered trademark, please keep this -#. untranslated. See http://open.edx.org for more information. -#: lms/templates/index_overlay.html -msgid "Welcome to the Open edX{registered_trademark} platform!" -msgstr "欢迎æ¥åˆ°Open edX{registered_trademark}å¹³å°ï¼" +#: lms/templates/index_overlay.html lms/templates/register-sidebar.html +msgid "Welcome to {platform_name}" +msgstr "欢迎æ¥åˆ°{platform_name}" #. Translators: 'Open edX' is a registered trademark, please keep this #. untranslated. See http://open.edx.org for more information. #: lms/templates/index_overlay.html -msgid "It works! This is the default homepage for this Open edX instance." -msgstr "æˆåŠŸäº†ï¼è¿™æ˜¯ä¸€ä¸ª Open edX 实例的默认主页。" +msgid "It works! Powered by Open edX{registered_trademark}" +msgstr "" #: lms/templates/invalid_email_key.html msgid "Invalid email change key" @@ -12980,18 +13278,6 @@ msgstr[0] "显示å¯æ·»åŠ 到 {display_name} 的全部匹é…内容。æ¯ä½å¦ msgid "Helpful Information" msgstr "有用的信æ¯" -#: lms/templates/login-sidebar.html -msgid "Login via OpenID" -msgstr "通过OpenID登录" - -#: lms/templates/login-sidebar.html -msgid "" -"You can now start learning with {platform_name} by logging in with your <a " -"rel=\"external\" href=\"http://openid.net/\">OpenID account</a>." -msgstr "" -"ä½ çŽ°åœ¨å¯ä»¥ç™»å½•æ‚¨çš„ <a rel=\"external\" " -"href=\"http://openid.net/\">OpenID账户</a>开始å¦ä¹ {platform_name}上的课程。" - #: lms/templates/login-sidebar.html msgid "Not Enrolled?" msgstr "尚未选课?" @@ -13007,7 +13293,7 @@ msgstr "需è¦å¸®åŠ©ï¼Ÿ" #: lms/templates/login-sidebar.html msgid "Looking for help signing in or with your {platform_name} account?" -msgstr "寻找关于登录或者您账户{platform_name} 的帮助?" +msgstr "寻找关于登录或者您账å·{platform_name} 的帮助?" #: lms/templates/login-sidebar.html msgid "View our help section for answers to commonly asked questions." @@ -13015,11 +13301,11 @@ msgstr "查看帮助部分æ¥èŽ·å¾—常è§é—®é¢˜çš„解ç”。" #: lms/templates/login.html msgid "Log into your {platform_name} Account" -msgstr "登录进入您的{platform_name}账户" +msgstr "登录进入您的{platform_name}è´¦å·" #: lms/templates/login.html msgid "Log into My {platform_name} Account" -msgstr "登录我的{platform_name}账户" +msgstr "登录我的{platform_name}è´¦å·" #: lms/templates/login.html msgid "Access My Courses" @@ -13029,7 +13315,7 @@ msgstr "进入我的课程" #: lms/templates/register.html #: themes/stanford-style/lms/templates/register-shib.html msgid "Processing your account information" -msgstr "æ£åœ¨å¤„ç†æ‚¨çš„å¸æˆ·ä¿¡æ¯" +msgstr "æ£åœ¨å¤„ç†æ‚¨çš„è´¦å·ä¿¡æ¯" #: lms/templates/login.html wiki/templates/wiki/accounts/login.html msgid "Please log in" @@ -13037,11 +13323,11 @@ msgstr "请登录" #: lms/templates/login.html msgid "to access your account and courses" -msgstr "æ¥è®¿é—®æ‚¨çš„账户和课程" +msgstr "æ¥è®¿é—®æ‚¨çš„è´¦å·å’Œè¯¾ç¨‹" #: lms/templates/login.html msgid "We're Sorry, {platform_name} accounts are unavailable currently" -msgstr "我们很é—憾,{platform_name} è´¦æˆ·çŽ°åœ¨æ— æ³•ä½¿ç”¨" +msgstr "我们很é—憾,{platform_name} è´¦å·çŽ°åœ¨æ— 法使用" #: lms/templates/login.html msgid "We couldn't log you in." @@ -13053,7 +13339,7 @@ msgstr "您的邮箱或密ç ä¸æ£ç¡®" #: lms/templates/login.html msgid "An error occurred when signing you in to {platform_name}." -msgstr "ä½ æ³¨å†Œ {platform_name} æ—¶å‘生了一个错误。" +msgstr "您注册 {platform_name} æ—¶å‘生了一个错误。" #: lms/templates/login.html msgid "" @@ -13061,12 +13347,12 @@ msgid "" "account. Required fields are noted by <strong class=\"indicator\">bold text " "and an asterisk (*)</strong>." msgstr "" -"请æ供下é¢çš„ä¿¡æ¯ä»¥ç™»å½•è¿›å…¥æ‚¨çš„ {platform_name} 账户,必须填写的信æ¯å·²ç»è¢« <strong " +"请æ供下é¢çš„ä¿¡æ¯ä»¥ç™»å½•è¿›å…¥æ‚¨çš„ {platform_name} è´¦å·ï¼Œå¿…须填写的信æ¯å·²ç»è¢« <strong " "class=\"indicator\">åŠ ç²—å’Œç”¨ (*)æ ‡å‡º</strong>。" #: lms/templates/login.html msgid "Account Preferences" -msgstr "账户å‚æ•°" +msgstr "è´¦å·å‚æ•°" #: lms/templates/login.html msgid "Sign in with {provider_name}" @@ -13109,7 +13395,7 @@ msgstr "点击æ¥å¯åŠ¨" #: lms/templates/manage_user_standing.html msgid "Manage student accounts" -msgstr "管ç†å¦ç”Ÿè´¦æˆ·" +msgstr "管ç†å¦ç”Ÿè´¦å·" #: lms/templates/manage_user_standing.html msgid "Username:" @@ -13137,11 +13423,11 @@ msgstr "查看用户资料" #: lms/templates/manage_user_standing.html msgid "Disable Account" -msgstr "åœç”¨è´¦æˆ·" +msgstr "åœç”¨è´¦å·" #: lms/templates/manage_user_standing.html msgid "Reenable Account" -msgstr "é‡æ–°å¯ç”¨è´¦æˆ·" +msgstr "é‡æ–°å¯ç”¨è´¦å·" #: lms/templates/manage_user_standing.html msgid "Remove Profile Image" @@ -13149,7 +13435,7 @@ msgstr "åˆ é™¤ç”¨æˆ·èµ„æ–™ç…§ç‰‡" #: lms/templates/manage_user_standing.html msgid "Students whose accounts have been disabled" -msgstr "å¦ç”Ÿå¸æˆ·å·²è¢«åœç”¨" +msgstr "å¦ç”Ÿè´¦å·å·²è¢«åœç”¨" #: lms/templates/manage_user_standing.html msgid "(reload your page to refresh)" @@ -13204,7 +13490,7 @@ msgstr "{content_group}çš„å¦ç”Ÿ" #: lms/templates/preview_menu.html msgid "Username or email:" -msgstr "用户å或电å邮件:" +msgstr "用户å或邮箱:" #: lms/templates/preview_menu.html msgid "Set preview mode" @@ -13217,7 +13503,7 @@ msgstr "您æ£åœ¨ä»¥ {i_start}{user_name}{i_end} 身份查看课程。" #: lms/templates/problem.html msgid "You have used {num_used} of {num_total} attempt" msgid_plural "You have used {num_used} of {num_total} attempts" -msgstr[0] "ä½ å·²ç»å°è¯•äº†{num_used}次(总共å¯ä»¥å°è¯•{num_total}次)" +msgstr[0] "您已ç»å°è¯•äº†{num_used}次,总共å¯ä»¥å°è¯•{num_total}次" #: lms/templates/problem.html msgid "" @@ -13229,10 +13515,6 @@ msgstr "一些题目设有ä¿å˜ã€é‡ç½®ã€æ示ã€æ˜¾ç¤ºç”案ç‰é€‰é¡¹ï¼Œç‚¹ msgid "Hint" msgstr "æ示" -#: lms/templates/problem.html lms/templates/word_cloud.html -msgid "Save" -msgstr "ä¿å˜" - #: lms/templates/problem.html msgid "Save your answer" msgstr "ä¿å˜ç”案" @@ -13241,6 +13523,10 @@ msgstr "ä¿å˜ç”案" msgid "Reset your answer" msgstr "é‡ç½®ç”案" +#: lms/templates/problem.html +msgid "Answers are displayed within the problem" +msgstr "" + #: lms/templates/problem_notifications.html msgid "Next Hint" msgstr "下个æ示" @@ -13283,12 +13569,12 @@ msgstr "在处ç†æ‚¨çš„注册信æ¯æ—¶å‘生了下列错误:" #: lms/templates/register-form.html #: themes/stanford-style/lms/templates/register-form.html msgid "Sign up with {provider_name}" -msgstr "使用 {provider_name} å¸å·ç™»å½•" +msgstr "使用 {provider_name} è´¦å·ç™»å½•" #: lms/templates/register-form.html #: themes/stanford-style/lms/templates/register-form.html msgid "Create your own {platform_name} account below" -msgstr "在下é¢åˆ›å»ºæ‚¨çš„ {platform_name} å¸å·" +msgstr "在下é¢åˆ›å»ºæ‚¨çš„ {platform_name} è´¦å·" #: lms/templates/register-form.html lms/templates/register-shib.html #: themes/stanford-style/lms/templates/register-form.html @@ -13315,7 +13601,7 @@ msgstr "您åªéœ€å†å¤šæ供一点信æ¯å°±å¯ä»¥å¼€å§‹åœ¨{platform_name}å¦ä¹ #: lms/templates/register-form.html #: themes/stanford-style/lms/templates/register-form.html msgid "Please complete the following fields to register for an account. " -msgstr "请将以下å—段补充完整以完æˆè´¦æˆ·æ³¨å†Œã€‚" +msgstr "请将以下å—段补充完整以完æˆè´¦å·æ³¨å†Œã€‚" #: lms/templates/register-form.html #: themes/stanford-style/lms/templates/register-form.html @@ -13372,7 +13658,7 @@ msgstr "请告诉我们您注册 {platform_name}çš„åŽŸå› " #: themes/stanford-style/lms/templates/register-form.html #: themes/stanford-style/lms/templates/register-shib.html msgid "Account Acknowledgements" -msgstr "账户致谢" +msgstr "è´¦å·ç¡®è®¤" #: lms/templates/register-form.html lms/templates/register-shib.html #: lms/templates/signup_modal.html @@ -13391,7 +13677,7 @@ msgstr "我åŒæ„{link_start}诚信准则{link_end}" #: lms/templates/register-form.html lms/templates/signup_modal.html #: themes/stanford-style/lms/templates/register-form.html msgid "Create My Account" -msgstr "创建我的账户" +msgstr "创建我的账å·" #: lms/templates/register-shib.html #: themes/stanford-style/lms/templates/register-shib.html @@ -13401,12 +13687,12 @@ msgstr "{platform_name}å好设置" #: lms/templates/register-shib.html #: themes/stanford-style/lms/templates/register-shib.html msgid "Update my {platform_name} Account" -msgstr "更新我的{platform_name}账户" +msgstr "更新我的{platform_name}è´¦å·" #: lms/templates/register-shib.html #: themes/stanford-style/lms/templates/register-shib.html msgid "Welcome {username}! Please set your preferences below" -msgstr "欢迎 {username}! 接下æ¥è¯·è¿›è¡Œæ‚¨çš„å好设置" +msgstr "欢迎 {username}ï¼æŽ¥ä¸‹æ¥è¯·è¿›è¡Œæ‚¨çš„å好设置" #: lms/templates/register-shib.html lms/templates/signup_modal.html #: themes/stanford-style/lms/templates/register-shib.html @@ -13416,7 +13702,7 @@ msgstr "输入用户昵称" #: lms/templates/register-shib.html #: themes/stanford-style/lms/templates/register-shib.html msgid "Update My Account" -msgstr "更新我的账户" +msgstr "更新我的账å·" #: lms/templates/register-sidebar.html #: themes/stanford-style/lms/templates/register-sidebar.html @@ -13435,18 +13721,14 @@ msgstr "å·²ç»æ³¨å†Œè¿‡äº†ï¼Ÿ" msgid "Log in" msgstr "登录" -#: lms/templates/register-sidebar.html -msgid "Welcome to {platform_name}" -msgstr "欢迎æ¥åˆ°{platform_name}" - #: lms/templates/register-sidebar.html msgid "" "Registering with {platform_name} gives you access to all of our current and " "future free courses. Not ready to take a course just yet? Registering puts " "you on our mailing list - we will update you as courses are added." msgstr "" -"在 {platform_name} 注册之åŽ, " -"您å¯ä»¥è®¿é—®æˆ‘们现有和将æ¥æ‰€æœ‰çš„å…费课程。现在还ä¸æƒ³åŠ 入课程?注册åŽæ‚¨å°†åŠ 入我们的收件人列表,您将通过邮件收到新课程的通知。" +"在 {platform_name} " +"注册之åŽï¼Œæ‚¨å¯ä»¥è®¿é—®æˆ‘们现有和将æ¥æ‰€æœ‰çš„å…费课程。现在还ä¸æƒ³åŠ 入课程?注册åŽæ‚¨å°†åŠ 入我们的收件人列表,您将通过邮件收到新课程的通知。" #: lms/templates/register-sidebar.html #: themes/stanford-style/lms/templates/register-sidebar.html @@ -13460,7 +13742,7 @@ msgid "" "spam folder and mark {platform_name} emails as 'not spam'. At " "{platform_name}, we communicate mostly through email." msgstr "" -"åŠ å…¥ {platform_name} 过程ä¸ï¼Œæ‚¨å°†æ”¶åˆ°ä¸€å°ç”µå邮件说明账户激活方法。如未收到邮件,请检查您的垃圾邮件并将 {platform_name}" +"åŠ å…¥ {platform_name} 过程ä¸ï¼Œæ‚¨å°†æ”¶åˆ°ä¸€å°ç”µå邮件说明账å·æ¿€æ´»æ–¹æ³•ã€‚如未收到邮件,请检查您的垃圾邮件并将 {platform_name}" " é‚®ä»¶æ ‡è®°ä¸ºâ€œéžåžƒåœ¾é‚®ä»¶â€ã€‚在 {platform_name},我们将主è¦é€šè¿‡ç”µå邮件进行沟通。" #: lms/templates/register-sidebar.html @@ -13485,7 +13767,7 @@ msgstr "{platform_name}注册" #: lms/templates/register.html msgid "Create My {platform_name} Account" -msgstr "创建我的{platform_name}账户" +msgstr "创建我的{platform_name}è´¦å·" #: lms/templates/register.html msgid "Welcome!" @@ -13493,7 +13775,7 @@ msgstr "欢迎ï¼" #: lms/templates/register.html msgid "Register below to create your {platform_name} account" -msgstr "在下é¢æ³¨å†Œæ¥åˆ›å»ºæ‚¨åœ¨ {platform_name}的账户" +msgstr "在下é¢æ³¨å†Œæ¥åˆ›å»ºæ‚¨åœ¨ {platform_name}çš„è´¦å·" #: lms/templates/resubscribe.html msgid "Re-subscribe Successful!" @@ -13506,6 +13788,24 @@ msgid "" msgstr "" "您已é‡æ–°å¯ç”¨{platform_name}的论å›é‚®ä»¶æ醒。您å¯ä»¥{dashboard_link_start}返回您的课程é¢æ¿{link_end}。" +#: lms/templates/secondary_email_change_failed.html +msgid "Secondary e-mail change failed" +msgstr "辅助邮箱å˜æ›´å¤±è´¥" + +#: lms/templates/secondary_email_change_failed.html +msgid "We were unable to activate your secondary email {secondary_email}" +msgstr "æˆ‘ä»¬æ— æ³•æ¿€æ´»æ‚¨çš„è¾…åŠ©é‚®ç®±{secondary_email}" + +#: lms/templates/secondary_email_change_successful.html +msgid "Secondary e-mail change successful!" +msgstr "辅助邮箱å˜æ›´æˆåŠŸï¼" + +#: lms/templates/secondary_email_change_successful.html +msgid "" +"Your secondary email has been activated. Please visit " +"{link_start}dashboard{link_end} for courses." +msgstr "您的辅助电å邮件已激活。请访问{link_start}é¢æ¿{link_end}查看课程。" + #: lms/templates/seq_module.html msgid "Important!" msgstr "é‡è¦äº‹é¡¹ï¼" @@ -13556,7 +13856,7 @@ msgstr "æ³¨å†ŒåŠ å…¥{platform_name}çš„ç›®æ ‡" #: lms/templates/signup_modal.html msgid "Already have an account?" -msgstr "已有账户?" +msgstr "已有账å·ï¼Ÿ" #: lms/templates/signup_modal.html msgid "Login." @@ -13637,7 +13937,7 @@ msgstr "对å¦ç”Ÿçš„æ交记录é‡æ–°è¯„分" #: lms/templates/staff_problem_info.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Rescore Only If Score Improves" -msgstr "如果评分æ高, é‡æ–°æ‰“分" +msgstr "如果评分æ高,é‡æ–°æ‰“分" #: lms/templates/staff_problem_info.html msgid "Override Score" @@ -13712,7 +14012,7 @@ msgstr "用户管ç†" #: lms/templates/sysadmin_dashboard.html msgid "Email or username" -msgstr "电å邮件或åå—" +msgstr "邮箱或用户å" #: lms/templates/sysadmin_dashboard.html msgid "Delete user" @@ -13775,23 +14075,10 @@ msgstr "课程编å·æˆ–目录" msgid "Delete course from site" msgstr "从网站ä¸åˆ 除课程" -#. Translators: A version number appears after this string -#: lms/templates/sysadmin_dashboard.html -msgid "Platform Version" -msgstr "å¹³å°ç‰ˆæœ¬" - -#: lms/templates/sysadmin_dashboard_gitlogs.html -msgid "previous" -msgstr "上一项" - #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Page {current_page} of {total_pages}" msgstr "第 {current_page} 页/ å…±{total_pages}页" -#: lms/templates/sysadmin_dashboard_gitlogs.html -msgid "next" -msgstr "下一个" - #. Translators: Git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Recent git load activity for {course_id}" @@ -13911,7 +14198,7 @@ msgstr "未找到å¯æ’放的视频æºã€‚" msgid "" "Your browser does not support this video format. Try using a different " "browser." -msgstr "ä½ çš„æµè§ˆå™¨ä¸æ”¯æŒæ¤è§†é¢‘æ ¼å¼ï¼Œè¯·æ›´æ¢æµè§ˆå™¨å†å°è¯•ã€‚" +msgstr "您的æµè§ˆå™¨ä¸æ”¯æŒæ¤è§†é¢‘æ ¼å¼ï¼Œè¯·æ›´æ¢æµè§ˆå™¨å†å°è¯•ã€‚" #: lms/templates/video.html msgid "Downloads and transcripts" @@ -13975,7 +14262,7 @@ msgid "" "status of your API access request." msgstr "" "æ£åœ¨å¤„ç†æ‚¨è®¿é—® {platform_name} 课程目录 API " -"的请求。处ç†å®ŒæˆåŽï¼Œä½ 写在用户资料ä¸çš„电å邮箱将收到一æ¡ä¿¡æ¯ã€‚ä½ ä¹Ÿå¯ä»¥è¿”回到æ¤é¡µé¢æŸ¥çœ‹ä½ çš„ API 访问申请的状æ€ã€‚" +"的请求。处ç†å®ŒæˆåŽï¼Œæ‚¨å†™åœ¨ç”¨æˆ·èµ„æ–™ä¸çš„电å邮箱将收到一æ¡ä¿¡æ¯ã€‚您也å¯ä»¥è¿”回到æ¤é¡µé¢æŸ¥çœ‹æ‚¨çš„ API 访问申请的状æ€ã€‚" #. Translators: "platform_name" is the name of this Open edX installation. #. "api_support_email_link" is HTML for a link to email the API support staff. @@ -14014,7 +14301,7 @@ msgstr "é‡æ–°å®šå‘ URL" msgid "" "If you would like to regenerate your API client information, please use the " "form below." -msgstr "å¦‚æžœä½ æƒ³è¦é‡æ–°ç”Ÿæˆä½ çš„ API 客户端信æ¯ï¼Œè¯·ä½¿ç”¨ä»¥ä¸‹è¡¨æ ¼ã€‚" +msgstr "如果您想è¦é‡æ–°ç”Ÿæˆæ‚¨çš„ API 客户端信æ¯ï¼Œè¯·ä½¿ç”¨ä»¥ä¸‹è¡¨æ ¼ã€‚" #: lms/templates/api_admin/status.html msgid "Generate API client credentials" @@ -14093,7 +14380,7 @@ msgid "" "client ID." msgstr "" "è¦è®¿é—®API,您需è¦åˆ›å»ºä¸€ä¸ª {platform_name} " -"应用程åºçš„用户账户(éžä¸ªäººä½¿ç”¨ï¼‰ã€‚您将通过这个账户获得访问我们的API请求页é¢{request_url}çš„æƒé™ã€‚在该页上,您必须完æˆAPI请求表å•ï¼Œå…¶ä¸åŒ…括对API的计划用途的æ述。您æ供给{platform_name}的任何账户和注册信æ¯å¿…须准确åŠä¿è¯æ—¶æ•ˆï¼Œå¹¶ä¸”您åŒæ„在åšä»»ä½•æ›´æ”¹æ—¶åŠæ—¶é€šçŸ¥æˆ‘们。{platform_name_capitalized}将审查您的API请求表å•ï¼Œå¹¶åœ¨å¾—到{platform_name}çš„å…¨æƒæ‰¹å‡†åŽï¼Œä¸ºæ‚¨æ供获å–API共享秘密和客户ID的说明。" +"应用程åºçš„用户账å·ï¼ˆéžä¸ªäººä½¿ç”¨ï¼‰ã€‚您将通过这个账å·èŽ·å¾—访问我们的API请求页é¢{request_url}çš„æƒé™ã€‚在该页上,您必须完æˆAPI请求表å•ï¼Œå…¶ä¸åŒ…括对API的计划用途的æ述。您æ供给{platform_name}的任何账å·å’Œæ³¨å†Œä¿¡æ¯å¿…须准确åŠä¿è¯æ—¶æ•ˆï¼Œå¹¶ä¸”您åŒæ„在åšä»»ä½•æ›´æ”¹æ—¶åŠæ—¶é€šçŸ¥æˆ‘们。{platform_name_capitalized}将审查您的API请求表å•ï¼Œå¹¶åœ¨å¾—到{platform_name}çš„å…¨æƒæ‰¹å‡†åŽï¼Œä¸ºæ‚¨æ供获å–API共享秘密和客户ID的说明。" #: lms/templates/api_admin/terms_of_service.html msgid "Permissible Use" @@ -14173,7 +14460,7 @@ msgstr "å˜æ›´æˆ–去除包å«åœ¨æˆ–出现在 API 或任何 API Content ä¸çš„ä»» msgid "" "sublicensing, re-distributing, renting, selling or leasing access to the " "APIs or your client secret to any third party;" -msgstr "对 API 访问æƒé™æˆ–ä½ çš„å®¢æˆ·å¯†ç 进行许å¯è½¬è®©ã€å†åˆ†å‘ã€å‡ºç§Ÿã€é”€å”®æˆ–租èµç»™ä»»ä½•ç¬¬ä¸‰æ–¹ï¼›" +msgstr "对 API 访问æƒé™æˆ–您的客户密ç 进行许å¯è½¬è®©ã€å†åˆ†å‘ã€å‡ºç§Ÿã€é”€å”®æˆ–租èµç»™ä»»ä½•ç¬¬ä¸‰æ–¹ï¼›" #: lms/templates/api_admin/terms_of_service.html msgid "" @@ -14238,11 +14525,11 @@ msgid "" "distribute or modify the APIs or any API Content (including adaptation, " "editing, excerpting, or creating derivative works)." msgstr "" -"ä½ ç¡®è®¤å¹¶åŒæ„ API 和所有 API Content éƒ½åŒ…å« {platform_name} åŠå…¶åˆä½œä¼™ä¼´çš„有价值的知识产æƒã€‚API 和所有 API " +"您确认并åŒæ„ API 和所有 API Content éƒ½åŒ…å« {platform_name} åŠå…¶åˆä½œä¼™ä¼´çš„有价值的知识产æƒã€‚API 和所有 API " "Content å‡å—美国和外国的版æƒã€å•†æ ‡åŠå…¶ä»–法律的ä¿æŠ¤ã€‚如果未明确授æƒï¼Œåˆ™ä¿ç•™å¯¹ API å’Œ API Content 的所有æƒåˆ©ã€‚使用 API " -"或任何 API Content 并ä¸æ„味ç€ä½ 拥有 API 或 API Content 的任何æƒåˆ©çš„所有æƒã€‚ä½ ä¸å¾—å£°ç§°æˆ–è¯•å›¾å£°ç§°ä½ æ‹¥æœ‰ API 或任何 " -"API Content 的所有æƒï¼Œæˆ–è¯¯ä¼ ä½ ä¸ªäººã€ä½ çš„å…¬å¸æˆ–ä½ çš„åº”ç”¨ç¨‹åºæ˜¯æ¥æºäºŽä»»ä½• API Contentã€‚ä½ ä¸å¾—ä»¥ä½ ä¸ªäººå义或以任何第三方的å义,对 " -"API Content 进行整体或部分修改ã€åˆ›ä½œæ´¾ç”Ÿä½œå“或å°è¯•ä½¿ç”¨ã€æ³¨å†Œæˆ–以任何方å¼åˆ©ç”¨ã€‚ä½ ä¸å¾—分å‘或修改 API 或任何 API " +"或任何 API Content 并ä¸æ„味ç€æ‚¨æ‹¥æœ‰ API 或 API Content 的任何æƒåˆ©çš„所有æƒã€‚您ä¸å¾—声称或试图声称您拥有 API 或任何 " +"API Content 的所有æƒï¼Œæˆ–è¯¯ä¼ æ‚¨ä¸ªäººã€æ‚¨çš„å…¬å¸æˆ–您的应用程åºæ˜¯æ¥æºäºŽä»»ä½• API Content。您ä¸å¾—以您个人å义或以任何第三方的å义,对 " +"API Content 进行整体或部分修改ã€åˆ›ä½œæ´¾ç”Ÿä½œå“或å°è¯•ä½¿ç”¨ã€æ³¨å†Œæˆ–以任何方å¼åˆ©ç”¨ã€‚您ä¸å¾—分å‘或修改 API 或任何 API " "Content(包括改编ã€ç¼–辑ã€å¼•ç”¨æˆ–创作派生作å“)。" #: lms/templates/api_admin/terms_of_service.html @@ -14277,7 +14564,7 @@ msgid "" "content, in whole or in part, in any form and in any media formats and " "through any media channels (now known or hereafter developed)." msgstr "" -"é’ˆå¯¹ä½ æ交给 {platform_name} çš„ä¸Žä½ ä½¿ç”¨ API 或任何 API Content 有关的任何内容而言,å¯æ®æ¤è®¤ä¸ºä½ 授予 " +"针对您æ交给 {platform_name} 的与您使用 API 或任何 API Content 有关的任何内容而言,å¯æ®æ¤è®¤ä¸ºæ‚¨æŽˆäºˆ " "{platform_name} " "一个世界范围的ã€éžç‹¬æœ‰ã€å¯è½¬è®©ã€å¯åˆ†é…ã€å¯è½¬å‘许å¯ã€å…¨éƒ¨ä»˜è®«ã€å…版税ã€æ— 期é™ã€ä¸å¯æ’¤é”€çš„æƒåŠ›ï¼Œå¹¶è®¸å¯æŒæœ‰ã€è½¬è®©ã€å±•ç¤ºã€æ‰§è¡Œã€å¤åˆ¶ã€ä¿®æ”¹ã€åˆ†é…ã€å†åˆ†é…ã€å†è®¸å¯ï¼Œä»¥åŠä»¥ä»»ä½•å½¢å¼å’Œç”¨ä»»ä½•åª’ä½“æ ¼å¼å¹¶é€šè¿‡ä»»ä½•åª’ä½“æ¸ é“(现在已知的或今åŽå¼€å‘的)使用ã€æ供和利用æ¤å†…容的部分或全部。" @@ -14399,7 +14686,7 @@ msgid "" "DOWNLOAD OR USE OF SUCH INFORMATION, MATERIALS OR DATA, UNLESS OTHERWISE " "EXPRESSLY PROVIDED FOR IN THE {platform_name} PRIVACY POLICY." msgstr "" -"使用APIã€API内容和从API获得或通过API获得的任何æœåŠ¡éƒ½ç”±æ‚¨è‡ªå·±æ‰¿æ‹…风险。您自己判æ–和承担通过API访问或下载信æ¯ã€æ料或数æ®çš„é£Žé™©ï¼Œå¹¶ä¸”ä½ å°†å•ç‹¬è´Ÿè´£ä»»ä½•æŸå®³ä½ 的财产数æ®(åŒ…æ‹¬ä½ çš„ç”µè„‘ç³»ç»Ÿ)或æŸå¤±çš„æ•°æ®ç»“果下载或使用这些信,资料或数æ®ï¼Œé™¤éžå¦æœ‰æ˜Žç¡®è§„定{platform_name}çš„éšç§æ”¿ç–。" +"使用APIã€API内容和从API获得或通过API获得的任何æœåŠ¡éƒ½ç”±æ‚¨è‡ªå·±æ‰¿æ‹…风险。您自己判æ–和承担通过API访问或下载信æ¯ã€æ料或数æ®çš„风险,并且您将å•ç‹¬è´Ÿè´£ä»»ä½•æŸå®³æ‚¨çš„财产数æ®(包括您的电脑系统)或æŸå¤±çš„æ•°æ®ç»“果下载或使用这些信,资料或数æ®ï¼Œé™¤éžå¦æœ‰æ˜Žç¡®è§„定{platform_name}çš„éšç§æ”¿ç–。" #: lms/templates/api_admin/terms_of_service.html msgid "" @@ -14411,7 +14698,7 @@ msgid "" "INFORMATION OBTAINED FROM OR THROUGH THE APIS, WHETHER YOUR CLAIM IS BASED " "IN CONTRACT, TORT, STATUTORY OR OTHER LAW." msgstr "" -"在适用法律å…许的最大范围内,您åŒæ„{platform_name}å’Œ{platform_name}çš„å‚与者ä¸çš„任何一方对您的任何æŸå¤±æˆ–æŸå®³ä¸è´Ÿè´£ä»»ï¼Œè¿™äº›æŸå¤±æˆ–æŸå®³ç”±å®žé™…或间接ã€æˆ–ç”±æ¤æ¡æ¬¾æˆ–与æ¡æ¬¾ç›¸å…³çš„内容ã€æˆ–æ‚¨ï¼ˆæˆ–ä»»ä½•ç¬¬ä¸‰æ–¹ï¼‰ä½¿ç”¨æˆ–æ— æ³•ä½¿ç”¨API​​或任何API内容ã€æˆ–您从API获得或通过API获得的信æ¯å¼•èµ·ï¼Œæ— è®ºä½ çš„ç´¢èµ”æ˜¯å¦åŸºäºŽåˆåŒï¼Œä¾µæƒï¼Œæ³•å®šæˆ–其他法律。" +"在适用法律å…许的最大范围内,您åŒæ„{platform_name}å’Œ{platform_name}çš„å‚与者ä¸çš„任何一方对您的任何æŸå¤±æˆ–æŸå®³ä¸è´Ÿè´£ä»»ï¼Œè¿™äº›æŸå¤±æˆ–æŸå®³ç”±å®žé™…或间接ã€æˆ–ç”±æ¤æ¡æ¬¾æˆ–与æ¡æ¬¾ç›¸å…³çš„内容ã€æˆ–æ‚¨ï¼ˆæˆ–ä»»ä½•ç¬¬ä¸‰æ–¹ï¼‰ä½¿ç”¨æˆ–æ— æ³•ä½¿ç”¨API​​或任何API内容ã€æˆ–您从API获得或通过API获得的信æ¯å¼•èµ·ï¼Œæ— 论您的索赔是å¦åŸºäºŽåˆåŒï¼Œä¾µæƒï¼Œæ³•å®šæˆ–其他法律。" #: lms/templates/api_admin/terms_of_service.html msgid "" @@ -14436,7 +14723,7 @@ msgid "" " OR ALL OF THE ABOVE DISCLAIMERS, EXCLUSIONS, OR LIMITATIONS MAY NOT APPLY " "TO YOU, AND YOU MIGHT HAVE ADDITIONAL RIGHTS." msgstr "" -"æŸäº›å·žçº§æ³•å¾‹ä¸å…许é™åˆ¶é»˜ç¤ºæ‹…ä¿æˆ–ä¸å…许排除或é™åˆ¶æŸäº›æŸå®³èµ”å¿ã€‚å¦‚æžœè¿™äº›æ³•å¾‹å¯¹ä½ é€‚ç”¨ï¼Œéƒ¨åˆ†æˆ–å…¨éƒ¨ä¸Šè¯‰å…责声明ã€é™¤å¤–æ¡æ¬¾æˆ–é™åˆ¶å¯èƒ½å¯¹ä½ ä¸é€‚ç”¨ï¼Œå› æ¤ä½ å¯èƒ½æ‹¥æœ‰é¢å¤–æƒåˆ©ã€‚" +"æŸäº›å·žçº§æ³•å¾‹ä¸å…许é™åˆ¶é»˜ç¤ºæ‹…ä¿æˆ–ä¸å…许排除或é™åˆ¶æŸäº›æŸå®³èµ”å¿ã€‚如果这些法律对您适用,部分或全部上诉å…责声明ã€é™¤å¤–æ¡æ¬¾æˆ–é™åˆ¶å¯èƒ½å¯¹æ‚¨ä¸é€‚ç”¨ï¼Œå› æ¤æ‚¨å¯èƒ½æ‹¥æœ‰é¢å¤–æƒåˆ©ã€‚" #: lms/templates/api_admin/terms_of_service.html msgid "" @@ -14486,11 +14773,11 @@ msgid "" "you by {platform_name} under these Terms, {platform_name} may notify you via" " the email address associated with your {platform_name} account." msgstr "" -"æ¤æ¡æ¬¾æž„æˆä½ å’Œ {platform_name} ä¹‹é—´ä¸Žä½ ä½¿ç”¨ API å’Œ API Content 有关的完整å议,å–ä»£ä½ å’Œ " -"{platform_name} ä¹‹é—´ä¸Žä½ ä½¿ç”¨ API å’Œ API Content 有关的所有事先å议。{platform_name} " +"æ¤æ¡æ¬¾æž„æˆæ‚¨å’Œ {platform_name} 之间与您使用 API å’Œ API Content 有关的完整å议,å–代您和 " +"{platform_name} 之间与您使用 API å’Œ API Content 有关的所有事先å议。{platform_name} " "未能行使或执行æ¤æ¡æ¬¾çš„任何æƒåˆ©æˆ–规定并ä¸å¾—æž„æˆå¯¹æ¤ç±»æƒåˆ©æˆ–规定的弃æƒã€‚如果具有åˆæ³•ç®¡è¾–æƒçš„法院å‘现æ¤æ¡æ¬¾çš„ä»»ä½•è§„å®šæ— æ•ˆï¼Œä½†æ˜¯å„方一致åŒæ„法院应按照该æ¡è§„定尽é‡è®©ç›¸å…³æ–¹çš„æ„愿生效,且æ¤æ¡æ¬¾çš„其他规定ä»ç„¶å…¨é¢æœ‰æ•ˆå’Œç”Ÿæ•ˆã€‚æ¤æ¡æ¬¾ä¸å½±å“任何第三方å—益æƒæˆ–任何代ç†ã€åˆä½œä¼™ä¼´æˆ–åˆèµ„ä¼ä¸šã€‚æ ¹æ®è¿™äº›æ¡æ¬¾ç”±" -" {platform_name} ä¸ºä½ æ供的任何通知,{platform_name} å‡å¯é€šè¿‡ä¸Žä½ çš„ {platform_name} " -"å¸æˆ·å…³è”的电å邮箱地å€é€šçŸ¥ä½ 。" +" {platform_name} 为您æ供的任何通知,{platform_name} å‡å¯é€šè¿‡ä¸Žæ‚¨çš„ {platform_name} " +"è´¦å·å…³è”的邮箱通知您。" #: lms/templates/api_admin/terms_of_service.html msgid "" @@ -14574,7 +14861,7 @@ msgstr "{username}的列表" #: lms/templates/api_admin/catalogs/list.html msgid "Create new catalog:" -msgstr "创建新的劣å¸å“¦å•Šï¼š" +msgstr "创建新的分类:" #: lms/templates/api_admin/catalogs/list.html msgid "Create Catalog" @@ -14620,7 +14907,7 @@ msgid "" "Scientific Expressions{math_link_end} in the {guide_link_start}edX Guide for" " Students{guide_link_end}." msgstr "" -"更多详细信æ¯, 请访问{guide_link_start}å¦ç”Ÿä½¿ç”¨æŒ‡å—{guide_link_end} " +"更多详细信æ¯ï¼Œè¯·è®¿é—®{guide_link_start}å¦ç”Ÿä½¿ç”¨æŒ‡å—{guide_link_end} " "里的{math_link_start}输入数å¦å’Œç§‘å¦è¡¨è¾¾å¼{math_link_end} 。" #: lms/templates/calculator/toggle_calculator.html @@ -14763,7 +15050,7 @@ msgstr "CCX指导仪表盘" #: lms/templates/ccx/coach_dashboard.html msgid "Name your CCX" -msgstr "ä¸ºä½ çš„CCX命å" +msgstr "为您的CCX命å" #: lms/templates/ccx/coach_dashboard.html msgid "Create a new Custom Course for edX" @@ -14790,19 +15077,19 @@ msgstr "请输入一个有效的 CCX å称。" #: lms/templates/ccx/enrollment.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Email Addresses/Usernames" -msgstr "电å邮箱地å€ï¼ç”¨æˆ·å" +msgstr "邮箱ï¼ç”¨æˆ·å" #: lms/templates/ccx/enrollment.html msgid "" "Enter one or more email addresses or usernames separated by new lines or " "commas." -msgstr "请输入一个或多个电å邮箱地å€æˆ–用户å,用逗å·éš”开或å¦èµ·ä¸€è¡Œã€‚" +msgstr "请输入一个或多个邮箱或用户å,用逗å·éš”开或å¦èµ·ä¸€è¡Œã€‚" #: lms/templates/ccx/enrollment.html msgid "" "Make sure you enter the information carefully. You will not receive " "notification for invalid usernames or email addresses." -msgstr "请仔细输入信æ¯ã€‚如果用户å或邮箱地å€æ— æ•ˆï¼Œæ‚¨å°†æ— æ³•æ”¶åˆ°é€šçŸ¥ã€‚" +msgstr "请仔细输入信æ¯ã€‚如果用户åæˆ–é‚®ç®±æ— æ•ˆï¼Œæ‚¨å°†æ— æ³•æ”¶åˆ°é€šçŸ¥ã€‚" #: lms/templates/ccx/enrollment.html #: lms/templates/instructor/instructor_dashboard_2/membership.html @@ -14823,7 +15110,7 @@ msgid "" "registered for {platform_name} will not be enrolled, but will be allowed to " "enroll once they make an account." msgstr "" -"如果æ¤é€‰é¡¹{em_start}未选{em_end},尚未注册 {platform_name} 的用户将ä¸èƒ½å…¥é€‰ï¼Œä½†åªè¦ä»–们注册了å¸æˆ·å³å¯å…¥é€‰ã€‚" +"如果æ¤é€‰é¡¹{em_start}未选{em_end},尚未注册 {platform_name} 的用户将ä¸èƒ½å…¥é€‰ï¼Œä½†åªè¦ä»–们注册了账å·å³å¯å…¥é€‰ã€‚" #: lms/templates/ccx/enrollment.html #: lms/templates/instructor/instructor_dashboard_2/membership.html @@ -14901,7 +15188,7 @@ msgstr "设置日期" #: lms/templates/ccx/schedule.html msgid "You have unsaved changes." -msgstr "ä½ è¿˜æœ‰æœªä¿å˜çš„更改。" +msgstr "您还有未ä¿å˜çš„更改。" #: lms/templates/ccx/schedule.html msgid "There was an error saving changes." @@ -15021,7 +15308,7 @@ msgstr "授予:" msgid "" "For tips and tricks on printing your certificate, view the {link_start}Web " "Certificates help documentation{link_end}." -msgstr "如需打å°è¯ä¹¦çš„帮助和建议, 请点击 {link_start} 网络è¯ä¹¦å¸®åŠ©æ–‡æ¡£ {link_end}." +msgstr "如需打å°è¯ä¹¦çš„帮助和建议, 请点击 {link_start} 网络è¯ä¹¦å¸®åŠ©æ–‡æ¡£ {link_end}。" #: lms/templates/certificates/invalid.html msgid "Cannot Find Certificate" @@ -15091,7 +15378,7 @@ msgid "" "An error has occurred with your payment. <b>You have not been charged.</b> " "Please try to submit your payment again. If this problem persists, contact " "{email}." -msgstr "ä½ çš„ä»˜æ¬¾å‡ºçŽ°ä¸€ä¸ªé”™è¯¯ã€‚<b>ä½ å°šæœªä»˜æ¬¾ã€‚</b>请é‡è¯•å†æ¬¡ä»˜æ¬¾ã€‚如果æ¤é—®é¢˜ä»ç„¶å˜åœ¨ï¼Œè¯·è”ç³» {email}。" +msgstr "您的付款出现一个错误。<b>您尚未付款。</b>请é‡è¯•å†æ¬¡ä»˜æ¬¾ã€‚如果æ¤é—®é¢˜ä»ç„¶å˜åœ¨ï¼Œè¯·è”ç³» {email}。" #: lms/templates/commerce/checkout_receipt.html msgid "Loading Order Data..." @@ -15101,6 +15388,20 @@ msgstr "åŠ è½½è®¢å•ä¿¡æ¯..." msgid "Please wait while we retrieve your order details." msgstr "请ç¨å€™ï¼Œæˆ‘们æ£åœ¨èŽ·å–您的订å•è¯¦æƒ…。" +#: lms/templates/course_modes/_upgrade_button.html +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/_upgrade_button.html +#: themes/edx.org/lms/templates/course_modes/choose.html +msgid "Pursue the Verified Track" +msgstr "跟踪已ç»è¿‡èº«ä»½è®¤è¯çš„的轨迹" + +#: lms/templates/course_modes/_upgrade_button.html +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/_upgrade_button.html +#: themes/edx.org/lms/templates/course_modes/choose.html +msgid "Pursue a Verified Certificate" +msgstr "选择认è¯è¯ä¹¦" + #: lms/templates/course_modes/choose.html #: themes/edx.org/lms/templates/course_modes/choose.html msgid "Enroll In {course_name} | Choose Your Track" @@ -15182,23 +15483,13 @@ msgid "" "or post it directly on LinkedIn" msgstr "{b_start}è½»æ¾åˆ†äº«:{b_end} 在您的简历ä¸åŠ 入这份è¯ä¹¦ï¼Œæˆ–è€…ç›´æŽ¥å°†å®ƒä¼ è‡³é¢†è‹±Linkedln" -#: lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -msgid "Pursue a Verified Certificate" -msgstr "选择认è¯è¯ä¹¦" - -#: lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -msgid "Pursue the Verified Track" -msgstr "跟踪已ç»è¿‡èº«ä»½è®¤è¯çš„的轨迹" - #: lms/templates/course_modes/choose.html #: themes/edx.org/lms/templates/course_modes/choose.html msgid "" "Highlight your new knowledge and skills with a verified certificate. Use " "this valuable credential to improve your job prospects and advance your " "career, or highlight your certificate in school applications." -msgstr "用您的认è¯è¯ä¹¦çªå‡ºæ‚¨çš„新知识和技能。使用这件有价值的å‡è¯æ¥æ”¹å–„ä½ çš„å°±ä¸šå‰æ™¯ï¼ŒæŽ¨è¿›æ‚¨çš„èŒä¸šå‘展,或者在申请å¦æ ¡æ—¶çªå‡ºæ‚¨çš„è¯ä¹¦ã€‚" +msgstr "用您的认è¯è¯ä¹¦çªå‡ºæ‚¨çš„新知识和技能。使用这件有价值的å‡è¯æ¥æ”¹å–„您的就业å‰æ™¯ï¼ŒæŽ¨è¿›æ‚¨çš„èŒä¸šå‘展,或者在申请å¦æ ¡æ—¶çªå‡ºæ‚¨çš„è¯ä¹¦ã€‚" #: lms/templates/course_modes/choose.html #: themes/edx.org/lms/templates/course_modes/choose.html @@ -15244,7 +15535,23 @@ msgid "" "Audit this course for free and have access to course materials and " "discussions forums. {b_start}This track does not include graded assignments," " or unlimited course access.{b_end}" -msgstr "å…è´¹æ—å¬æœ¬è¯¾ç¨‹ï¼Œå¹¶å¯è®¿é—®è¯¾ç¨‹èµ„料和讨论论å›ã€‚{b_start}æ¤è½¨é“ä¸åŒ…æ‹¬åˆ†çº§ä½œä¸šæˆ–æ— é™åˆ¶çš„课程访问.{b_end}。" +msgstr "å…è´¹æ—å¬æœ¬è¯¾ç¨‹ï¼Œå¹¶å¯è®¿é—®è¯¾ç¨‹èµ„料和讨论论å›ã€‚{b_start}æ¤è½¨é“ä¸åŒ…æ‹¬åˆ†çº§ä½œä¸šæˆ–æ— é™åˆ¶çš„课程访问。{b_end}" + +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/choose.html +msgid "" +"Audit this course for free and have access to course materials and " +"discussions forums. {b_start}This track does not include graded " +"assignments.{b_end}" +msgstr "å…è´¹æ—å¬è¯¥è¯¾ç¨‹ï¼Œå¹¶å¯è®¿é—®è¯¾ç¨‹æ料和讨论论å›ã€‚ {b_start}æ¤æ–¹æ³•ä¸åŒ…å«è¯„分作业。{b_end}" + +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/choose.html +msgid "" +"Audit this course for free and have access to course materials and " +"discussions forums. {b_start}This track does not include unlimited course " +"access.{b_end}" +msgstr "å…è´¹æ—å¬æœ¬è¯¾ç¨‹ï¼Œå¹¶å¯è®¿é—®è¯¾ç¨‹èµ„料和讨论论å›ã€‚{b_start}æ¤è½¨é“ä¸åŒ…æ‹¬æ— é™åˆ¶çš„课程访问。{b_end}" #: lms/templates/course_modes/choose.html #: themes/edx.org/lms/templates/course_modes/choose.html @@ -15284,13 +15591,8 @@ msgid "An error occurred. Please try again later." msgstr "出现错误,请ç¨åŽå†è¯•ã€‚" #: lms/templates/courseware/course_about.html -msgid "" -"The currently logged-in user account does not have permission to enroll in " -"this course. You may need to {start_logout_tag}log out{end_tag} then try the" -" enroll button again. Please visit the {start_help_tag}help page{end_tag} " -"for a possible solution." +msgid "An error has occurred. Please ensure that you are logged in to enroll." msgstr "" -"当å‰ç™»å½•ç”¨æˆ·å¸å·æ— æƒé™å…¥é€‰æ¤è¯¾ç¨‹ã€‚您å¯èƒ½éœ€è¦åœ¨{start_logout_tag}退出登录{end_tag}åŽé‡è¯•é€‰è¯¾æŒ‰é’®ã€‚请访问{start_help_tag}帮助页é¢{end_tag}了解å¯èƒ½çš„解决方案。" #: lms/templates/courseware/course_about.html msgid "You are enrolled in this course" @@ -15304,8 +15606,8 @@ msgid "View Course" msgstr "查看课程" #: lms/templates/courseware/course_about.html -msgid "This course is in your <a href=\"{cart_link}\">cart</a>." -msgstr "这个课程已ç»è¿›å…¥æ‚¨çš„ <a href=\"{cart_link}\">è´ç‰©è½¦</a>。" +msgid "This course is in your {start_cart_link}cart{end_cart_link}." +msgstr "这个课程已ç»è¿›å…¥ä½ çš„ {start_cart_link}è´ç‰©è½¦{end_cart_link}。" #: lms/templates/courseware/course_about.html msgid "Course is full" @@ -15320,8 +15622,8 @@ msgid "Enrollment is Closed" msgstr "选课已关é—" #: lms/templates/courseware/course_about.html -msgid "Add {course_name} to Cart <span>({price} USD)</span>" -msgstr "æ·»åŠ {course_name}到è´ç‰©<span>({price} USD)</span>" +msgid "Add {course_name} to Cart {start_span}({price} USD){end_span}" +msgstr "æ·»åŠ {course_name} 到è´ç‰©è½¦ {start_span}({price} USD){end_span}" #: lms/templates/courseware/course_about.html msgid "Enroll in {course_name}" @@ -15341,7 +15643,7 @@ msgstr "课程结æŸ" #: lms/templates/courseware/course_about.html msgid "Estimated Effort" -msgstr "é¢„æœŸè¯¾ç¨‹ç›®æ ‡" +msgstr "预计时长" #: lms/templates/courseware/course_about.html msgid "Prerequisites" @@ -15383,7 +15685,7 @@ msgstr "我刚通过 {platform} {url} 选修了 {number} {title}" #: lms/templates/courseware/course_about_sidebar_header.html #: themes/stanford-style/lms/templates/courseware/course_about_sidebar_header.html msgid "Tweet that you've enrolled in this course" -msgstr "在 Tweet å‘å¸ƒä½ å·²ç™»è®°æ¤è¯¾ç¨‹çš„消æ¯" +msgstr "在 Tweet å‘布您已登记æ¤è¯¾ç¨‹çš„消æ¯" #: lms/templates/courseware/course_about_sidebar_header.html msgid "Post a Facebook message to say you've enrolled in this course" @@ -15432,7 +15734,6 @@ msgstr "使您的æœç´¢æ›´ç²¾ç¡®" #: lms/templates/courseware/courseware-chromeless.html #: lms/templates/courseware/courseware.html #: openedx/features/course_bookmarks/templates/course_bookmarks/course-bookmarks.html -#: openedx/features/learner_analytics/templates/learner_analytics/dashboard.html msgid "{course_number} Courseware" msgstr "{course_number} 课程页é¢" @@ -15496,7 +15797,7 @@ msgstr "您尚未选课" msgid "" "You are not currently enrolled in this course. {link_start}Enroll " "now!{link_end}" -msgstr "您尚未选本门课程。 {link_start}立刻选课!{link_end}" +msgstr "您尚未选本门课程。 {link_start}立刻选课ï¼{link_end}" #: lms/templates/courseware/info.html msgid "Welcome to {org}'s {course_title}!" @@ -15599,7 +15900,7 @@ msgstr "èŒä¸šå½±å“" #: lms/templates/courseware/program_marketing.html msgid "What You'll Learn" -msgstr "ä½ å°†å¦åˆ°" +msgstr "您将å¦åˆ°" #: lms/templates/courseware/program_marketing.html msgid "Average Length" @@ -15637,7 +15938,7 @@ msgstr "全部课程 ${newPrice}{htmlEnd} " #: lms/templates/courseware/program_marketing.html msgid "You save ${discount_value} {currency}" -msgstr "ä½ èŠ‚çœäº† ${discount_value} {currency}" +msgstr "您节çœäº† ${discount_value} {currency}" #: lms/templates/courseware/program_marketing.html msgid "${full_program_price} for entire program" @@ -15661,8 +15962,8 @@ msgid "View Grading in studio" msgstr "在 Studio ä¸æŸ¥çœ‹è¯„分情况" #: lms/templates/courseware/progress.html -msgid "Course Progress for Student '{username}' ({email})" -msgstr "å¦ç”Ÿ'{username}' ({email})çš„å¦ä¹ 进度" +msgid "Course Progress for '{username}' ({email})" +msgstr "" #: lms/templates/courseware/progress.html msgid "View Certificate" @@ -15789,7 +16090,7 @@ msgstr "您最近在{section_link}。如果您已ç»å®Œæˆæ¤ç« 节,请选择 #: lms/templates/emails/business_order_confirmation_email.txt #: lms/templates/emails/order_confirmation_email.txt msgid "Hi {name}," -msgstr "{name} 您好," +msgstr "{name} 您好," #: lms/templates/credit_notifications/credit_eligibility_email.html msgid "Hi," @@ -15855,7 +16156,7 @@ msgstr " {platform_name} 团队" msgid "" "{link_start}Click here for more information on credit at " "{platform_name}{link_end}." -msgstr "{link_start}点击这里了解更多 {platform_name}å¹³å°ä¸Šçš„å¦åˆ†ä¿¡æ¯{link_end}." +msgstr "{link_start}点击这里了解更多 {platform_name}å¹³å°ä¸Šçš„å¦åˆ†ä¿¡æ¯{link_end}。" #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "Your certificate will be available on or before {date}" @@ -15892,7 +16193,7 @@ msgid "" "identified you as being connected with one of those countries, please let us" " know by contacting {email}." msgstr "" -"由于å‘ä½ é¢å‘ä½ çš„{cert_name_short}需è¦éµä»Žç¾Žå›½å¯¹ä¼Šæœ—ã€å¤å·´ã€å™åˆ©äºšå’Œè‹ä¸¹çš„ä¸¥æ ¼ç¦è¿æ”¿ç–ï¼Œä½ çš„å·²è®¤è¯çš„{cert_name_long}æ£å¤„在ç‰å¾…确认状æ€ã€‚å¦‚æžœä½ è®¤ä¸ºæˆ‘ä»¬çš„ç³»ç»Ÿé”™è¯¯åœ°å°†ä½ ä¸Žä¸Šè¿°å›½å®¶ç›¸å…³è”,请è”ç³»{email}让我们了解相关情况。" +"由于å‘您é¢å‘您的{cert_name_short}需è¦éµä»Žç¾Žå›½å¯¹ä¼Šæœ—ã€å¤å·´ã€å™åˆ©äºšå’Œè‹ä¸¹çš„ä¸¥æ ¼ç¦è¿æ”¿ç–,您的已认è¯çš„{cert_name_long}æ£å¤„在ç‰å¾…确认状æ€ã€‚如果您认为我们的系统错误地将您与上述国家相关è”,请è”ç³»{email}让我们了解相关情况。" #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "" @@ -15956,7 +16257,7 @@ msgid "" "{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}" +"由于在生æˆæ‚¨çš„{cert_name_long}时我们没有一套您的有效的身份认è¯ç…§ç‰‡ï¼Œå› æ¤æ— 法授予您认è¯çš„{cert_name_short}ï¼›æˆ‘ä»¬å·²æŽˆäºˆæ‚¨æ ‡æœ‰è¯šä¿¡å‡†åˆ™çš„{cert_name_short}" " 。" #: lms/templates/dashboard/_dashboard_course_listing.html @@ -16063,7 +16364,7 @@ msgid "" "You can no longer access this course because payment has not yet been " "received. You can contact the account holder to request payment, or you can " "unenroll from this course" -msgstr "æ‚¨æ— æ³•å†è®¿é—®æ¤è¯¾ç¨‹ï¼Œå› 为尚未收到付款。您å¯ä»¥è”ç³»å¸æˆ·æŒæœ‰äººä»¥è¯·æ±‚付款,或者您å¯ä»¥å–消注册æ¤è¯¾ç¨‹ã€‚" +msgstr "æ‚¨æ— æ³•å†è®¿é—®æ¤è¯¾ç¨‹ï¼Œå› 为尚未收到付款。您å¯ä»¥è”系账å·æŒæœ‰äººä»¥è¯·æ±‚付款,或者您å¯ä»¥å–消注册æ¤è¯¾ç¨‹ã€‚" #: lms/templates/dashboard/_dashboard_course_listing.html msgid "" @@ -16073,7 +16374,7 @@ msgid "" "{unenroll_link_start}unenroll{unenroll_link_end} from this course" msgstr "" "æ‚¨æ— æ³•å†è®¿é—®æ¤è¯¾ç¨‹ï¼Œå› 为尚未收到付款。您å¯ä»¥ " -"{contact_link_start}è”ç³»å¸æˆ·æŒæœ‰äºº{contact_link_end}以请求付款,或者您å¯ä»¥{unenroll_link_start}å–消注册{unenroll_link_end}æ¤è¯¾ç¨‹ã€‚" +"{contact_link_start}è”系账å·æŒæœ‰äºº{contact_link_end}以请求付款,或者您å¯ä»¥{unenroll_link_start}å–消注册{unenroll_link_end}æ¤è¯¾ç¨‹ã€‚" #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Verification not yet complete." @@ -16082,7 +16383,7 @@ msgstr "认è¯å°šä¸å®Œæ•´" #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You only have {days} day left to verify for this course." msgid_plural "You only have {days} days left to verify for this course." -msgstr[0] "ä½ è¿˜æœ‰ {days} 天时间验è¯æ¤è¯¾ç¨‹ã€‚" +msgstr[0] "您还有 {days} 天时间验è¯æ¤è¯¾ç¨‹ã€‚" #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Almost there!" @@ -16158,11 +16459,11 @@ msgstr "" msgid "" "You have completed this course and are eligible to purchase course credit. " "Select <strong>Get Credit</strong> to get started." -msgstr "ä½ å·²å®Œæˆæ¤è¯¾ç¨‹å¹¶æœ‰èµ„æ ¼è´ä¹°è¯¾ç¨‹å¦åˆ†ã€‚选择<strong>获得å¦åˆ†</strong>开始。" +msgstr "您已完æˆæ¤è¯¾ç¨‹å¹¶æœ‰èµ„æ ¼è´ä¹°è¯¾ç¨‹å¦åˆ†ã€‚选择<strong>获得å¦åˆ†</strong>开始。" #: lms/templates/dashboard/_dashboard_credit_info.html msgid "You are now eligible for credit from {provider}. Congratulations!" -msgstr "çŽ°åœ¨ï¼Œä½ æœ‰èµ„æ ¼ä»Ž {provider} 获得å¦åˆ†ã€‚æå–œä½ ï¼" +msgstr "çŽ°åœ¨ï¼Œæ‚¨æœ‰èµ„æ ¼ä»Ž {provider} 获得å¦åˆ†ã€‚æ喜您ï¼" #: lms/templates/dashboard/_dashboard_credit_info.html msgid "Get Credit" @@ -16176,7 +16477,7 @@ msgid "" "Thank you for your payment. To receive course credit, you must now request " "credit at the {link_to_provider_site} website. Select <b>Request Credit</b> " "to get started." -msgstr "æ„Ÿè°¢ä½ çš„ä»˜æ¬¾ã€‚è¦èŽ·å¾—课程å¦åˆ†ï¼Œä½ 现在必须在 {link_to_provider_site} 网站申请å¦åˆ†ã€‚选择<b>申请å¦åˆ†</b>开始。" +msgstr "感谢您的付款。è¦èŽ·å¾—课程å¦åˆ†ï¼Œæ‚¨çŽ°åœ¨å¿…须在 {link_to_provider_site} 网站申请å¦åˆ†ã€‚选择<b>申请å¦åˆ†</b>开始。" #: lms/templates/dashboard/_dashboard_credit_info.html msgid "Request Credit" @@ -16186,7 +16487,7 @@ msgstr "申请å¦åˆ†" msgid "" "{provider_name} has received your course credit request. We will update you " "when credit processing is complete." -msgstr "{provider_name} å·²æ”¶åˆ°ä½ çš„è¯¾ç¨‹å¦åˆ†ç”³è¯·ã€‚完æˆå¦åˆ†å¤„ç†åŽæˆ‘ä»¬å°†é€šçŸ¥ä½ ã€‚" +msgstr "{provider_name} 已收到您的课程å¦åˆ†ç”³è¯·ã€‚完æˆå¦åˆ†å¤„ç†åŽæˆ‘们将通知您。" #: lms/templates/dashboard/_dashboard_credit_info.html msgid "View Details" @@ -16202,8 +16503,8 @@ msgid "" " credit. To see your course credit, visit the {link_to_provider_site} " "website." msgstr "" -"<b>æå–œä½ ï¼</b> {provider_name} å·²æ‰¹å‡†ä½ çš„è¯¾ç¨‹å¦åˆ†ç”³è¯·ã€‚è¦æŸ¥çœ‹ä½ 的课程å¦åˆ†ï¼Œè¯·è®¿é—® " -"{link_to_provider_site} 网站。" +"<b>æå–œï¼</b> {provider_name} 已批准您的课程å¦åˆ†ç”³è¯·ã€‚è¦æŸ¥çœ‹æ‚¨çš„课程å¦åˆ†ï¼Œè¯·è®¿é—® {link_to_provider_site}" +" 网站。" #: lms/templates/dashboard/_dashboard_credit_info.html msgid "View Credit" @@ -16213,7 +16514,7 @@ msgstr "查看认è¯" msgid "" "{provider_name} did not approve your request for course credit. For more " "information, contact {link_to_provider_site} directly." -msgstr "{provider_name} æœªæ‰¹å‡†ä½ çš„è¯¾ç¨‹å¦åˆ†ç”³è¯·ã€‚欲了解更多信æ¯ï¼Œè¯·ç›´æŽ¥è”ç³» {link_to_provider_site}。" +msgstr "{provider_name} 未批准您的课程å¦åˆ†ç”³è¯·ã€‚欲了解更多信æ¯ï¼Œè¯·ç›´æŽ¥è”ç³» {link_to_provider_site}。" #: lms/templates/dashboard/_dashboard_credit_info.html msgid "" @@ -16290,7 +16591,7 @@ msgstr "您的认è¯å·²è¿‡æœŸï¼Œæ‚¨å¿…须在您课程的认è¯æˆªæ¢æ—¥æœŸå‰æ #: lms/templates/dashboard/_dashboard_third_party_error.html msgid "Could Not Link Accounts" -msgstr "æ— æ³•å…³è”账户" +msgstr "æ— æ³•å…³è”è´¦å·" #. Translators: this message is displayed when a user tries to link their #. account with a third-party authentication provider (for example, Google or @@ -16303,84 +16604,103 @@ msgstr "æ— æ³•å…³è”账户" msgid "" "The {provider_name} account you selected is already linked to another " "{platform_name} account." -msgstr "ä½ é€‰æ‹©çš„ {provider_name}账户已ç»å’Œ{platform_name}账户相关è”。" +msgstr "您选择的 {provider_name}è´¦å·å·²ç»å’Œ{platform_name}è´¦å·ç›¸å…³è”。" + +#: lms/templates/dashboard/_entitlement_reason_survey.html +msgid "" +"We're sorry to see you go! Read the following statements and rate your level" +" of agreement." +msgstr "很é—憾您è¦é€€é€‰è¯¾ç¨‹ï¼ 阅读以下声明并评估您的å议级别。" + +#: lms/templates/dashboard/_entitlement_reason_survey.html +msgid "Price is too high for me" +msgstr "å¯¹æˆ‘è€Œè¨€ä»·æ ¼è¿‡é«˜" + +#: lms/templates/dashboard/_entitlement_reason_survey.html +msgid "I was not satisfied with my experience taking the courses" +msgstr "我对å‚åŠ è¯¾ç¨‹çš„ç»åŽ†ä¸æ»¡æ„" + +#: lms/templates/dashboard/_entitlement_reason_survey.html +msgid "Content of the courses was too difficult" +msgstr "课程内容太难" + +#: lms/templates/dashboard/_entitlement_reason_survey.html +msgid "I did not have enough time to complete the courses" +msgstr "我没有足够的时间完æˆè¯¾ç¨‹" + +#: lms/templates/dashboard/_entitlement_reason_survey.html +msgid "The content was not available when I wanted to start" +msgstr "当我想开始的时候,内容ä¸å¯ç”¨" + +#: lms/templates/dashboard/_entitlement_reason_survey.html +msgid "Can we contact you via email for follow up?" +msgstr "我们å¯ä»¥é€šè¿‡ç”µå邮件与您è”系以便跟进å—?" + +#: lms/templates/dashboard/_entitlement_reason_survey.html +#: lms/templates/dashboard/_reason_survey.html +msgid "Thank you for sharing your reasons for unenrolling." +msgstr "æ„Ÿè°¢æ‚¨å‘ŠçŸ¥æˆ‘ä»¬åŽŸå› ã€‚" + +#: lms/templates/dashboard/_entitlement_reason_survey.html +#: lms/templates/dashboard/_reason_survey.html +msgid "You are unenrolled from" +msgstr "您已退选" + +#: lms/templates/dashboard/_entitlement_reason_survey.html +#: lms/templates/dashboard/_reason_survey.html +msgid "Return To Dashboard" +msgstr "返回é¢æ¿" #: lms/templates/dashboard/_entitlement_reason_survey.html +#: lms/templates/dashboard/_reason_survey.html +msgid "Browse Courses" +msgstr "æµè§ˆè¯¾ç¨‹" + #: lms/templates/dashboard/_reason_survey.html msgid "" "We're sorry to see you go! Please share your main reason for unenrolling." msgstr "很é—憾您è¦é€€é€‰è¯¾ç¨‹ï¼å¸Œæœ›æ‚¨å¯ä»¥å‘Šè¯‰æˆ‘们退选课程的主è¦åŽŸå› 。" -#: lms/templates/dashboard/_entitlement_reason_survey.html #: lms/templates/dashboard/_reason_survey.html msgid "I just wanted to browse the material" msgstr "我åªæƒ³æµè§ˆææ–™" -#: lms/templates/dashboard/_entitlement_reason_survey.html #: lms/templates/dashboard/_reason_survey.html msgid "This won't help me reach my goals" msgstr "æ¤é—¨è¯¾ç¨‹æ— 法帮助我达到å¦ä¹ ç›®æ ‡" -#: lms/templates/dashboard/_entitlement_reason_survey.html #: lms/templates/dashboard/_reason_survey.html msgid "I don't have the time" msgstr "没时间" -#: lms/templates/dashboard/_entitlement_reason_survey.html #: lms/templates/dashboard/_reason_survey.html msgid "I don't have the academic or language prerequisites" msgstr "我ä¸å…·å¤‡å¦æœ¯æˆ–è¯è¨€çš„先修æ¡ä»¶" -#: lms/templates/dashboard/_entitlement_reason_survey.html #: lms/templates/dashboard/_reason_survey.html msgid "I don't have enough support" msgstr "我的支æŒæ¡ä»¶ä¸å¤Ÿ" -#: lms/templates/dashboard/_entitlement_reason_survey.html #: lms/templates/dashboard/_reason_survey.html msgid "I am not happy with the quality of the content" msgstr "我对内容质é‡ä¸æ»¡æ„" -#: lms/templates/dashboard/_entitlement_reason_survey.html #: lms/templates/dashboard/_reason_survey.html msgid "The course material was too hard" msgstr "课程æ料太难" -#: lms/templates/dashboard/_entitlement_reason_survey.html #: lms/templates/dashboard/_reason_survey.html msgid "The course material was too easy" msgstr "课程æ料太简å•" -#: lms/templates/dashboard/_entitlement_reason_survey.html #: lms/templates/dashboard/_reason_survey.html msgid "Something was broken" msgstr "出错了" -#: lms/templates/dashboard/_entitlement_reason_survey.html #: lms/templates/dashboard/_reason_survey.html msgid "Other" msgstr "其他" -#: lms/templates/dashboard/_entitlement_reason_survey.html -#: lms/templates/dashboard/_reason_survey.html -msgid "Thank you for sharing your reasons for unenrolling." -msgstr "æ„Ÿè°¢æ‚¨å‘ŠçŸ¥æˆ‘ä»¬åŽŸå› ã€‚" - -#: lms/templates/dashboard/_entitlement_reason_survey.html -#: lms/templates/dashboard/_reason_survey.html -msgid "You are unenrolled from" -msgstr "您已退选" - -#: lms/templates/dashboard/_entitlement_reason_survey.html -#: lms/templates/dashboard/_reason_survey.html -msgid "Return To Dashboard" -msgstr "返回é¢æ¿" - -#: lms/templates/dashboard/_entitlement_reason_survey.html -#: lms/templates/dashboard/_reason_survey.html -msgid "Browse Courses" -msgstr "æµè§ˆè¯¾ç¨‹" - #: lms/templates/debug/run_python_form.html msgid "Results:" msgstr "结果:" @@ -16521,7 +16841,7 @@ msgstr "在æ¤è¯¾æˆ–者未æ¥çš„课程ä¸çªå‡ºé‡è¦ä¿¡æ¯ä»¥ä¾¿æ—¥åŽå›žé¡¾ã€‚ msgid "" "Get started by making a note in something you just read, like " "{section_link}." -msgstr "开始,åœ¨ä½ åˆšè¯»çš„ä¸œè¥¿,如{section_link}。" +msgstr "试ç€ç»™æ‚¨åˆšè¯»å®Œçš„ææ–™åŠ ä¸ªç¬”è®°å§ï¼Œå¦‚{section_link}。" #: lms/templates/edxnotes/toggle_notes.html msgid "Hide notes" @@ -16536,27 +16856,27 @@ msgid "" "You're almost there! Use the link to activate your account to access " "engaging, high-quality {platform_name} courses. Note that you will not be " "able to log back into your account until you have activated it." -msgstr "注册差ä¸å¤šå®Œæˆå•¦ï¼ç‚¹å‡»é“¾æŽ¥æ¿€æ´»æ‚¨çš„è´¦å·ï¼Œä½“验{platform_name}çš„ç²¾å“课程。注æ„,您必须激活账å·æ‰å¯ä»¥ç™»å½•ã€‚" +msgstr "" #: lms/templates/emails/activation_email.txt msgid "Enjoy learning with {platform_name}." -msgstr "享å—您在{platform_name}上的å¦ä¹ 之旅。" +msgstr "" #: lms/templates/emails/activation_email.txt msgid "" "If you need help, please use our web form at {support_url} or email " "{support_email}." -msgstr "å¦‚éœ€å¸®åŠ©ï¼Œè¯·ä½¿ç”¨æˆ‘ä»¬çš„ç½‘ç«™è¡¨æ ¼{support_url}或å‘邮件至{support_email}。" +msgstr "" #: lms/templates/emails/activation_email.txt msgid "" "This email message was automatically sent by {lms_url} because someone " "attempted to create an account on {platform_name} using this email address." -msgstr "这是一å°ç”±{lms_url}自动å‘é€çš„邮件,通知您有人使用æ¤é‚®ç®±åœ°å€æ³¨å†Œ{platform_name}è´¦å·ã€‚" +msgstr "" #: lms/templates/emails/activation_email_subject.txt msgid "Action Required: Activate your {platform_name} account" -msgstr "您必须激活您的{platform_name}è´¦å·" +msgstr "" #: lms/templates/emails/business_order_confirmation_email.txt msgid "Thank you for your purchase of " @@ -16680,7 +17000,7 @@ msgstr "您的兑æ¢URL是:[[在æ¤è¾“入从附件CSVä¸æ‰¾åˆ°çš„å…‘æ¢é“¾æŽ¥] #: lms/templates/emails/business_order_confirmation_email.txt msgid "(1) Register for an account at {site_name}" -msgstr "(1) 在 {site_name}注册一个账户" +msgstr "(1) 在 {site_name}注册一个账å·" #: lms/templates/emails/business_order_confirmation_email.txt msgid "" @@ -16697,7 +17017,7 @@ msgstr "(3) 在选课确认页é¢ï¼Œç‚¹å‡»â€œæ¿€æ´»é€‰è¯¾ç â€æŒ‰é’®ï¼Œæ‚¨å°† msgid "" "(4) You should be able to click on 'view course' button or see your course " "on your student dashboard at {url}" -msgstr "(4)您å¯ä»¥ç‚¹å‡»â€œæŸ¥çœ‹è¯¾ç¨‹â€æŒ‰é’®æˆ–者通过{url}处的å¦ç”Ÿè¯¾ç¨‹é¢æ¿æŸ¥çœ‹ä½ 的课程。" +msgstr "(4)您å¯ä»¥ç‚¹å‡»â€œæŸ¥çœ‹è¯¾ç¨‹â€æŒ‰é’®æˆ–者通过{url}处的å¦ç”Ÿè¯¾ç¨‹é¢æ¿æŸ¥çœ‹æ‚¨çš„课程。" #: lms/templates/emails/business_order_confirmation_email.txt msgid "" @@ -16709,27 +17029,7 @@ msgstr "(5) 课程开始åŽè¯¾ç¨‹èµ„æ–™æ‰å¯ç”¨ã€‚" #. tags in place. #: lms/templates/emails/business_order_confirmation_email.txt msgid "<p>Sincerely,</p><p>[[Your Signature]]</p>" -msgstr "<p>诚挚的,</p><p>[[您的ç¾å]]</p>" - -#: lms/templates/emails/confirm_email_change.txt -msgid "" -"This is to confirm that you changed the e-mail associated with " -"{platform_name} from {old_email} to {new_email}. If you did not make this " -"request, please contact us immediately. Contact information is listed at:" -msgstr "" -"è¿™å°é‚®ä»¶æ˜¯ä¸ºäº†ç¡®è®¤ä½ å’Œ {platform_name} 之间的电å邮件关è”ç”± {old_email} å˜æ›´ä¸º " -"{new_email}ã€‚å¦‚æžœä½ å¹¶æ²¡æœ‰å‘出该请求,请立å³è”系我们。è”系信æ¯å·²åœ¨ä»¥ä¸‹é¡µé¢ä¸åˆ—出:" - -#: lms/templates/emails/confirm_email_change.txt -#: themes/stanford-style/lms/templates/emails/confirm_email_change.txt -msgid "" -"We keep a log of old e-mails, so if this request was unintentional, we can " -"investigate." -msgstr "我们ä¿å˜ç€æ—§ç”µå邮件信æ¯çš„日志,所以如果该请求并éžæ˜¯æ‚¨æœ‰æ„å‘出的,我们å¯ä»¥å¯¹æ¤è¿›è¡Œè°ƒæŸ¥ã€‚" - -#: lms/templates/emails/email_change_subject.txt -msgid "Request to change {platform_name} account e-mail" -msgstr "å˜æ›´ {platform_name} 账户电å邮件的请求" +msgstr "<p>诚挚的,</p><p>[[Your Signature]]</p>" #: lms/templates/emails/failed_verification_email.txt msgid "" @@ -16739,15 +17039,15 @@ msgstr "对ä¸èµ·ï¼æ‚¨ä¸ºID验è¯æä¾›çš„ç…§ç‰‡æ²¡æœ‰é€šè¿‡ï¼ŒåŽŸå› ï¼ˆæˆ–å¤š #: lms/templates/emails/failed_verification_email.txt msgid "The photo(s) of you:" -msgstr "ä½ çš„ç…§ç‰‡(å¤šå¼ ):" +msgstr "您的照片(å¤šå¼ ):" #: lms/templates/emails/failed_verification_email.txt msgid "The photo of you:" -msgstr "ä½ çš„ç…§ç‰‡ï¼š" +msgstr "您的照片:" #: lms/templates/emails/failed_verification_email.txt msgid "The photo of your ID:" -msgstr "ä½ è¯ä»¶ID的图片:" +msgstr "您è¯ä»¶ID的照片:" #: lms/templates/emails/failed_verification_email.txt msgid "Other Reasons:" @@ -16761,13 +17061,6 @@ msgstr "é‡æ–°è®¤è¯: {reverify_url}" msgid "ID Verification FAQ: {faq_url}" msgstr "身份ID验è¯FAQ:{faq_url}" -#: lms/templates/emails/failed_verification_email.txt -#: lms/templates/emails/order_confirmation_email.txt -#: lms/templates/emails/passed_verification_email.txt -#: lms/templates/emails/photo_submission_confirmation.txt -msgid "Thank you," -msgstr "谢谢," - #: lms/templates/emails/failed_verification_email.txt #: lms/templates/emails/passed_verification_email.txt #: lms/templates/emails/photo_submission_confirmation.txt @@ -16779,7 +17072,7 @@ msgstr "{platform_name}团队" msgid "" "Your payment was successful. You will see the charge below on your next " "credit or debit card statement under the company name {merchant_name}." -msgstr "ä½ å·²ä»˜æ¬¾æˆåŠŸã€‚ä½ æœ€è¿‘ä¸€æœŸçš„ä¿¡ç”¨å¡æˆ–储蓄å¡ç»“å•å°†ä¼šåŒ…括æ¥è‡ªå…¬å¸å{merchant_name}的扣款。" +msgstr "您已付款æˆåŠŸã€‚您最近一期的信用å¡æˆ–储蓄å¡ç»“å•å°†ä¼šåŒ…括æ¥è‡ªå…¬å¸å{merchant_name}的扣款。" #: lms/templates/emails/order_confirmation_email.txt msgid "Your order number is: {order_number}" @@ -16787,11 +17080,11 @@ msgstr "您的订å•å·ä¸ºï¼š{order_number}" #: lms/templates/emails/passed_verification_email.txt msgid "Hi {full_name}" -msgstr " {full_name} ä½ å¥½" +msgstr " {full_name} 您好" #: lms/templates/emails/passed_verification_email.txt msgid "Congratulations! Your ID verification process was successful." -msgstr "æå–œä½ çš„èº«ä»½ID认è¯æˆåŠŸã€‚" +msgstr "æå–œï¼æ‚¨çš„身份ID已认è¯æˆåŠŸã€‚" #: lms/templates/emails/passed_verification_email.txt msgid "" @@ -16865,7 +17158,7 @@ msgstr "附件CSV文件ä¸çš„html链接" msgid "" "After you enroll, you can see the course on your student dashboard. You can " "see course materials after the course start date." -msgstr "åœ¨ä½ é€‰è¯¾ä¹‹åŽï¼Œä½ å¯ä»¥åœ¨ä½ çš„å¦ç”Ÿè¯¾ç¨‹é¢æ¿ä¸çœ‹åˆ°è¯¥è¯¾ç¨‹ã€‚在课程开始åŽï¼Œä½ å°±å¯ä»¥çœ‹åˆ°è¯¾ç¨‹çš„相关资料。" +msgstr "在您选课之åŽï¼Œæ‚¨å¯ä»¥åœ¨æ‚¨çš„å¦ç”Ÿè¯¾ç¨‹é¢æ¿ä¸çœ‹åˆ°è¯¥è¯¾ç¨‹ã€‚在课程开始åŽï¼Œæ‚¨å°±å¯ä»¥çœ‹åˆ°è¯¾ç¨‹çš„相关资料。" #. Translators: please translate the text inside [[ ]]. This is meant as a #. template for course teams to use. @@ -16877,7 +17170,7 @@ msgid "" "[[Your Signature]]" msgstr "" "诚挚的,\n" -"[[ä½ çš„ç¾å]]" +"[[Your Signature]]" #: lms/templates/emails/registration_codes_sale_invoice_attachment.txt msgid "INVOICE" @@ -16964,16 +17257,16 @@ msgid "" msgstr "" "æˆ‘ä»¬æ— æ³•ä¸ºæ‚¨åœ¨è¯¾ç¨‹ " "{course_name}ä¸çš„评估{assessment}验è¯èº«ä»½ã€‚您已ç»ä½¿ç”¨äº†{allowed_attempts}次å…许的ä¸çš„{used_attempts}" -" 试图验è¯ä½ 的身份。" +" 试图验è¯æ‚¨çš„身份。" #: lms/templates/emails/reverification_processed.txt msgid "" "You must verify your identity before the assessment closes on {due_date}." -msgstr "ä½ å¿…é¡»æ ¸å®žä½ çš„èº«ä»½åœ¨è¯„ä¼°å…³é—{due_date}。" +msgstr "您必须在{due_date}评估关é—å‰æ ¸å®žæ‚¨çš„身份。" #: lms/templates/emails/reverification_processed.txt msgid "To try to verify your identity again, select the following link:" -msgstr "å°è¯•å†æ¬¡æ ¸å®žä½ 的身份,选择下é¢çš„链接:" +msgstr "å°è¯•å†æ¬¡æ ¸å®žæ‚¨çš„身份,打开下é¢çš„链接:" #: lms/templates/emails/reverification_processed.txt msgid "" @@ -17031,7 +17324,7 @@ msgstr "感谢您报å{course_names},希望您å¦ä¹ 旅途愉快。" #: lms/templates/enrollment/course_enrollment_message.html msgid "Thank you for enrolling in:" -msgstr "æ„Ÿè°¢ä½ æŠ¥å:" +msgstr "感谢您报å:" #: lms/templates/enrollment/course_enrollment_message.html msgid "We hope you enjoy the course." @@ -17073,7 +17366,7 @@ msgid "" "If you are interested in working toward a Verified Certificate, but cannot " "afford to pay the fee, please apply now. Please note that financial " "assistance is limited and may not be awarded to all eligible candidates." -msgstr "å¦‚æžœä½ å¯¹èŽ·å¾—éªŒè¯è¯ä¹¦æ„Ÿå…´è¶£ä½†æ— 法承担费用,请现在就æ¥æ出申请。请注æ„,ç»æµŽæ´åŠ©æ˜¯æœ‰é™çš„且å¯èƒ½æ— 法授予所有符åˆæ¡ä»¶çš„申请者。" +msgstr "如果您对获得验è¯è¯ä¹¦æ„Ÿå…´è¶£ä½†æ— 法承担费用,请现在就æ¥æ出申请。请注æ„,ç»æµŽæ´åŠ©æ˜¯æœ‰é™çš„且å¯èƒ½æ— 法授予所有符åˆæ¡ä»¶çš„申请者。" #: lms/templates/financial-assistance/financial-assistance.html msgid "" @@ -17083,21 +17376,21 @@ msgid "" "applying and how the Verified Certificate will benefit you." msgstr "" "è¦ç¬¦åˆ edX " -"ç»æµŽæ´åŠ©çš„èµ„æ ¼æ¡ä»¶ï¼Œä½ å¿…é¡»è¯æ˜Žæ”¯ä»˜éªŒè¯è¯ä¹¦è´¹ç”¨ä¼šå¯¼è‡´ä½ ç»æµŽå›°éš¾ã€‚ä¸ºäº†è¿›è¡Œç”³è¯·ï¼Œä½ å¯èƒ½ä¼šè¢«è¦æ±‚回ç”ä¸€äº›å…³äºŽä½ ä¸ºä½•ç”³è¯·éªŒè¯è¯ä¹¦ä»¥åŠéªŒè¯è¯ä¹¦ä¼šç»™ä½ 带æ¥å“ªäº›å¥½å¤„的问题。" +"ç»æµŽæ´åŠ©çš„èµ„æ ¼æ¡ä»¶ï¼Œæ‚¨å¿…é¡»è¯æ˜Žæ”¯ä»˜éªŒè¯è¯ä¹¦è´¹ç”¨ä¼šå¯¼è‡´æ‚¨ç»æµŽå›°éš¾ã€‚为了进行申请,您å¯èƒ½ä¼šè¢«è¦æ±‚回ç”一些关于您为何申请验è¯è¯ä¹¦ä»¥åŠéªŒè¯è¯ä¹¦ä¼šç»™æ‚¨å¸¦æ¥å“ªäº›å¥½å¤„的问题。" #: lms/templates/financial-assistance/financial-assistance.html msgid "" "If your application is approved, we'll give you instructions for verifying " "your identity on edx.org so you can start working toward completing your edX" " course." -msgstr "å¦‚æžœä½ çš„ç”³è¯·è¢«æ‰¹å‡†ï¼Œæˆ‘ä»¬å°†ä¸ºä½ æ供在 edx.org 上验è¯ä½ çš„èº«ä»½çš„ç›¸å…³è¯´æ˜Žï¼Œä»¥ä¾¿ä½ å¯ä»¥å¼€å§‹ç€æ‰‹å®Œæˆä½ çš„ edx 课程。" +msgstr "如果您的申请被批准,我们将为您æ供在 edx.org 上验è¯æ‚¨çš„身份的相关说明,以便您å¯ä»¥å¼€å§‹ç€æ‰‹å®Œæˆæ‚¨çš„ edx 课程。" #: lms/templates/financial-assistance/financial-assistance.html msgid "" "EdX is committed to making it possible for you to take high quality courses " "from leading institutions regardless of your financial situation, earn a " "Verified Certificate, and share your success with others." -msgstr "æ— è®ºä½ çš„ç»æµŽçŠ¶å†µå¦‚何,EdX éƒ½è‡´åŠ›äºŽè®©ä½ ä»Žå„领先机构获得高质é‡çš„è¯¾ç¨‹ï¼Œè®©ä½ èŽ·å¾—éªŒè¯è¯ä¹¦å¹¶ä¸Žä»–äººåˆ†äº«ä½ çš„æˆåŠŸã€‚" +msgstr "æ— è®ºæ‚¨çš„ç»æµŽçŠ¶å†µå¦‚何,EdX 都致力于让您从å„领先机构获得高质é‡çš„课程,让您获得验è¯è¯ä¹¦å¹¶ä¸Žä»–人分享您的æˆåŠŸã€‚" #: lms/templates/financial-assistance/financial-assistance.html msgid "Sincerely, Anant" @@ -17127,7 +17420,7 @@ msgid "" "{begin_strong}Warning:{end_strong} Your browser is not fully supported. We " "strongly recommend using {chrome_link} or {ff_link}." msgstr "" -"{begin_strong}è¦å‘Šï¼š{end_strong}并ä¸å®Œå…¨æ”¯æŒä½ çš„æµè§ˆå™¨ã€‚我们强烈推è使用 {chrome_link} 或 {ff_link}。" +"{begin_strong}è¦å‘Šï¼š{end_strong}并ä¸å®Œå…¨æ”¯æŒæ‚¨çš„æµè§ˆå™¨ã€‚我们强烈推è使用 {chrome_link} 或 {ff_link}。" #: lms/templates/header/navbar-authenticated.html #: lms/templates/learner_dashboard/programs.html @@ -17144,14 +17437,6 @@ msgstr "程å¼" msgid "Journals" msgstr "æ–‡ç« " -#: lms/templates/header/navbar-authenticated.html -#: lms/templates/header/user_dropdown.html -#: lms/templates/navigation/navbar-authenticated.html -#: lms/templates/navigation/bootstrap/navbar-authenticated.html -#: themes/edx.org/lms/templates/header/navbar-authenticated.html -msgid "Profile" -msgstr "用户资料" - #: lms/templates/header/navbar-authenticated.html msgid "Discover New" msgstr "马上探索课程" @@ -17190,6 +17475,10 @@ msgstr "å¦æ ¡" msgid "Resume your last course" msgstr "继ç»ä¸Šé—¨è¯¾ç¨‹çš„å¦ä¹ " +#: lms/templates/header/user_dropdown.html +msgid "Profile" +msgstr "用户资料" + #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon Code" @@ -17255,7 +17544,7 @@ msgstr "å…许å¦ç”Ÿå‘行的è¯ä¹¦" msgid "" "You must successfully generate example certificates before you enable " "student-generated certificates." -msgstr "å‰ä½ å¿…é¡»æˆåŠŸåœ°ç”Ÿæˆç¤ºä¾‹è¯ä¹¦ä½¿å¦ç”Ÿè¯ä¹¦ã€‚" +msgstr "å¯ç”¨å¦ç”Ÿè¯ä¹¦å‰ï¼Œæ‚¨å¿…须生æˆä¸€ä¸ªç¤ºä¾‹è¯ä¹¦ã€‚" #: lms/templates/instructor/instructor_dashboard_2/certificates.html msgid "Generate Certificates" @@ -17299,7 +17588,7 @@ msgstr "é‡æ–°ç”Ÿæˆè¯ä¹¦" msgid "" "To regenerate certificates for your course, choose the learners who will " "receive regenerated certificates and click Regenerate Certificates." -msgstr "è¦é‡æ–°ç”Ÿæˆä½ 的课程è¯ä¹¦ï¼Œè¯·é€‰æ‹©å°†è¦æŽ¥æ”¶é‡æ–°ç”Ÿæˆè¯ä¹¦çš„å¦å‘˜å¹¶å•å‡»â€œé‡æ–°ç”Ÿæˆè¯ä¹¦â€ã€‚" +msgstr "è¦é‡æ–°ç”Ÿæˆæ‚¨çš„课程è¯ä¹¦ï¼Œè¯·é€‰æ‹©å°†è¦æŽ¥æ”¶é‡æ–°ç”Ÿæˆè¯ä¹¦çš„å¦å‘˜å¹¶å•å‡»â€œé‡æ–°ç”Ÿæˆè¯ä¹¦â€ã€‚" #: lms/templates/instructor/instructor_dashboard_2/certificates.html msgid "Choose learner types for regeneration" @@ -17344,7 +17633,7 @@ msgid "" " a certificate but have been given an exception by the course team. After " "you add learners to the exception list, click Generate Exception " "Certificates below." -msgstr "ä¸ºæ— èµ„æ ¼èŽ·å¾—è¯ä¹¦ä½†èŽ·å¾—课程组例外批准的å¦å‘˜è®¾ç½®ç”Ÿæˆè¯ä¹¦çš„特殊处ç†ã€‚åœ¨ä½ å°†å¦å‘˜æ·»åŠ 至特殊处ç†åˆ—表åŽï¼Œè¯·å•å‡»ä»¥ä¸‹â€œç”Ÿæˆç‰¹ä¾‹è¯ä¹¦â€ã€‚" +msgstr "ä¸ºæ— èµ„æ ¼èŽ·å¾—è¯ä¹¦ä½†èŽ·å¾—课程组例外批准的å¦å‘˜è®¾ç½®ç”Ÿæˆè¯ä¹¦çš„特殊处ç†ã€‚在您将å¦å‘˜æ·»åŠ 至特殊处ç†åˆ—表åŽï¼Œè¯·å•å‡»ä»¥ä¸‹â€œç”Ÿæˆç‰¹ä¾‹è¯ä¹¦â€ã€‚" #: lms/templates/instructor/instructor_dashboard_2/certificates.html msgid "Invalidate Certificates" @@ -17364,7 +17653,11 @@ msgstr "æ—å¬" #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Professional" -msgstr "专业的" +msgstr "专业" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Master's" +msgstr "硕士" #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Basic Course Information" @@ -17462,7 +17755,7 @@ msgstr "" msgid "" "Please be patient and do not click these buttons multiple times. Clicking " "these buttons multiple times will significantly slow the generation process." -msgstr "请è€å¿ƒç‰å¾…,ä¸è¦å¤šæ¬¡å•å‡»è¿™äº›æŒ‰é’®ã€‚多次点击这些按钮将大大å‡ç¼“生æˆè¿‡ç¨‹ã€‚" +msgstr "请è€å¿ƒç‰å¾…,ä¸è¦å¤šæ¬¡å•å‡»è¿™äº›æŒ‰é’®ã€‚多次点击这些按钮将大大å‡ç¼“生æˆè¿‡ç¨‹ã€‚" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" @@ -17570,12 +17863,9 @@ msgstr "报告已å¯ä¾›ä¸‹è½½" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The reports listed below are available for download. A link to every report " -"remains available on this page, identified by the UTC date and time of " -"generation. Reports are not deleted, so you will always be able to access " -"previously generated reports from this page." +"The reports listed below are available for download, identified by UTC date " +"and time of generation." msgstr "" -"您å¯ä»¥ä¸‹è½½ä»¥ä¸‹åˆ—出的报告。æ¯ä¸€ä»½æŠ¥å‘Šç”±ç”Ÿæˆçš„UTC日期和时间æ¥æ ‡è¯†ï¼Œå®ƒä»¬çš„链接将ä¿ç•™åœ¨æœ¬é¡µé¢ã€‚报告ä¸ä¼šè¢«åˆ 除,所以您总是å¯ä»¥ä»Žæœ¬é¡µè®¿é—®ä»¥å‰ç”Ÿæˆçš„报告。" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" @@ -17587,11 +17877,13 @@ msgstr "下é¢æ‰€åˆ—的作ç”分布报告由åŽå°ç¨‹åºå®šæœŸè‡ªåŠ¨ç”Ÿæˆã€‚报 #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"{strong_start}Note{strong_end}: To keep student data secure, you cannot save" -" or email these links for direct access. Copies of links expire within 5 " -"minutes." +"{strong_start}Note{strong_end}: {ul_start}{li_start}To keep student data " +"secure, you cannot save or email these links for direct access. Copies of " +"links expire within 5 minutes.{li_end}{li_start}Report files are deleted 90 " +"days after generation. If you will need access to old reports, download and " +"store the files, in accordance with your institution's data security " +"policies.{li_end}{ul_end}" msgstr "" -"{strong_start}注{strong_end}:为了确ä¿å¦ç”Ÿæ•°æ®çš„å®‰å…¨æ€§ï¼Œæ‚¨æ— æ³•ä¿å˜æˆ–者用邮件å‘é€è¿™äº›æœ‰ç›´æŽ¥è®¿é—®æƒçš„链接。å¤åˆ¶çš„链接将在5分钟åŽå¤±æ•ˆã€‚" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Enrollment Codes" @@ -17694,7 +17986,7 @@ msgstr "é‡æ–°æ交收æ®" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "" "Create a .csv file that contains enrollment information for your course." -msgstr "创建一个包å«æ‚¨çš„课程的选修信æ¯çš„.csv文件" +msgstr "创建一个包å«æ‚¨çš„课程的选修信æ¯çš„.csv文件。" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Create Enrollment Report" @@ -17790,11 +18082,11 @@ msgstr "å…¬å¸è”系人åå—ä¸èƒ½ä¸ºæ•°å—" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Enter the email address for the company contact." -msgstr "输入公å¸è”系人的电å邮件地å€ã€‚" +msgstr "输入公å¸è”系人的邮箱。" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Enter a valid email address." -msgstr "输入一个有效的电å邮件地å€" +msgstr "输入一个有效的邮箱。" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Enter the recipient name." @@ -17806,7 +18098,7 @@ msgstr "收件人åå—ä¸èƒ½ä¸ºæ•°å—" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Enter the recipient email address." -msgstr "输入收件人电å邮件地å€" +msgstr "输入收件人邮箱" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Enter the billing address." @@ -17930,19 +18222,19 @@ msgstr "已用时间" #: lms/templates/instructor/instructor_dashboard_2/executive_summary.html msgid "Bulk and Single Seat Purchases" -msgstr "大批和å•åº§é‡‡è´" +msgstr "批é‡å’Œå•ä¸ªåå¸é‡‡è´" #: lms/templates/instructor/instructor_dashboard_2/executive_summary.html msgid "Number of seats purchased individually" -msgstr "å•ç‹¬è´ä¹°çš„座ä½æ•°" +msgstr "å•ç‹¬è´ä¹°çš„åå¸æ•°" #: lms/templates/instructor/instructor_dashboard_2/executive_summary.html msgid "Number of seats purchased in bulk" -msgstr "批é‡è´ä¹°çš„座ä½æ•°" +msgstr "批é‡è´ä¹°çš„åå¸æ•°" #: lms/templates/instructor/instructor_dashboard_2/executive_summary.html msgid "Number of seats purchased with invoices" -msgstr "带å‘票的è´ä¹°åº§ä½æ•°" +msgstr "带å‘票的è´ä¹°åå¸æ•°" #: lms/templates/instructor/instructor_dashboard_2/executive_summary.html msgid "Unused bulk purchase seats (revenue at risk)" @@ -17950,15 +18242,15 @@ msgstr "未使用批é‡è´ä¹°å¸ä½(收入有风险)" #: lms/templates/instructor/instructor_dashboard_2/executive_summary.html msgid "Percentage of seats purchased individually" -msgstr "å•åº§è´ä¹°æ•°é‡æ‰€å 比例" +msgstr "å•ä¸ªåå¸è´ä¹°æ•°é‡æ‰€å 比例" #: lms/templates/instructor/instructor_dashboard_2/executive_summary.html msgid "Percentage of seats purchased in bulk" -msgstr "批é‡è´ä¹°åº§ä½æ•°ç›®æ‰€å 比例" +msgstr "批é‡è´ä¹°åå¸æ•°ç›®æ‰€å 比例" #: lms/templates/instructor/instructor_dashboard_2/executive_summary.html msgid "Percentage of seats purchased with invoices" -msgstr "带å‘票è´ä¹°åº§ä½æ•°ç›®æ‰€å 比例" +msgstr "带å‘票è´ä¹°åå¸æ•°ç›®æ‰€å 比例" #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Individual due date extensions" @@ -17966,24 +18258,24 @@ msgstr "延长个别截æ¢æ—¥æœŸ" #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "" -"In this section, you have the ability to grant extensions on specific units " -"to individual students. Please note that the latest date is always taken; " -"you cannot use this tool to make an assignment due earlier for a particular " -"student." -msgstr "在这个部分,您å¯ä»¥åœ¨ç‰¹å®šå•å…ƒé‡Œç»™ç‰¹å®šçš„å¦ç”Ÿå»¶é•¿æˆªæ¢æ—¥æœŸã€‚请注æ„,您ä¸èƒ½é€‰æ‹©æœ€è¿‘的一日;您ä¸èƒ½ä½¿ç”¨è¿™ä¸ªå·¥å…·è®©æŸä¸ªå¦ç”Ÿçš„作业截æ¢æ—¥æœŸæ早。" +"In this section, you have the ability to grant extensions on specific " +"subsections to individual students. Please note that the latest date is " +"always taken; you cannot use this tool to make an assignment due earlier for" +" a particular student." +msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "" "Specify the {platform_name} email address or username of a student here:" -msgstr "在这å¯ä»¥æŸ¥çœ‹{platform_name}的邮件地å€ä»¥åŠå¦ç”Ÿçš„用户å:" +msgstr "在这å¯ä»¥æŸ¥çœ‹{platform_name}的邮箱以åŠå¦ç”Ÿçš„用户å:" #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Student Email or Username" -msgstr "å¦ç”Ÿe-mail或者用户å" +msgstr "å¦ç”Ÿé‚®ç®±æˆ–者用户å" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -msgid "Choose the graded unit:" -msgstr "请选择评分å•å…ƒ" +msgid "Choose the graded subsection:" +msgstr "" #. Translators: "format_string" is the string MM/DD/YYYY HH:MM, as that is the #. format the system requires. @@ -17993,6 +18285,10 @@ msgid "" "{format_string})." msgstr "请输入新的截æ¢æ—¥æœŸå’Œæ—¶é—´(UTC 时间,请以 {format_string} æ ¼å¼è¾“å…¥)。" +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Reason for extension" +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Change due date for student" msgstr "修改å¦ç”Ÿçš„截æ¢æ—¥æœŸ" @@ -18003,15 +18299,15 @@ msgstr "查看已授æƒçš„宽é™æœŸ" #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "" -"Here you can see what extensions have been granted on particular units or " -"for a particular student." -msgstr "这里您å¯ä»¥æŸ¥çœ‹å·²ç»æŽˆæƒç»™ç‰¹åˆ«å¦ç”Ÿæˆ–者特殊å•å…ƒçš„宽é™æœŸ" +"Here you can see what extensions have been granted on particular subsection " +"or for a particular student." +msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "" -"Choose a graded unit and click the button to obtain a list of all students " -"who have extensions for the given unit." -msgstr "请选择一个评分å•å…ƒï¼Œå•å‡»èŽ·å¾—当å‰å•å…ƒä¸èŽ·å¾—宽é™æœŸçš„å¦ç”Ÿåˆ—表" +"Choose a graded subsection and click the button to obtain a list of all " +"students who have extensions for the given subsection." +msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "List all students with due date extensions" @@ -18032,9 +18328,13 @@ msgstr "é‡è®¾å®½é™æœŸ" #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "" "Resetting a problem's due date rescinds a due date extension for a student " -"on a particular unit. This will revert the due date for the student back to " -"the problem's original due date." -msgstr "é‡è®¾ä¸€ä¸ªé—®é¢˜çš„截æ¢æ—¥æœŸï¼Œå°†å–消å¦ç”Ÿåœ¨æŒ‡å®šå•å…ƒä¸Šçš„宽é™æœŸï¼Œä½¿å¦ç”Ÿçš„截æ¢æ—¥æœŸè¿˜åŽŸä¸ºé—®é¢˜çš„原始截æ¢æ—¥æœŸã€‚" +"on a particular subsection. This will revert the due date for the student " +"back to the problem's original due date." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Reason for reset" +msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Reset due date for student" @@ -18167,7 +18467,7 @@ msgstr "æœç´¢é€‰è¯¾ç " #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "Enter email addresses and/or usernames separated by new lines or commas." -msgstr "输入电å邮箱地å€ä¸Žï¼æˆ– 用户å,以逗å·åˆ†å‰²æˆ–é‡å¯ä¸€è¡Œã€‚" +msgstr "输入邮箱与ï¼æˆ– 用户å,以逗å·åˆ†å‰²æˆ–é‡å¯ä¸€è¡Œã€‚" #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" @@ -18210,8 +18510,7 @@ msgid "" "name, and country. Please include one student per row and do not include any" " headers, footers, or blank lines." msgstr "" -"如果想在这门课程ä¸æ‰¹é‡æ³¨å†Œå¹¶å½•å–å¦ç”Ÿï¼Œè¯·é€‰æ‹©ä¸€ä¸ªCSV文件,包å«E-" -"mailã€ç”¨æˆ·åã€å§“åå’Œå›½å®¶ï¼ˆä¸¥æ ¼æŒ‰ç…§æ¤é¡ºåºï¼‰ã€‚æ¯è¡ŒåŒ…å«ä¸€ä¸ªå¦ç”Ÿï¼Œè¯·ä¸è¦æ·»åŠ 任何页眉ã€é¡µè„šä»¥åŠç©ºè¡Œã€‚" +"如果想在这门课程ä¸æ‰¹é‡æ³¨å†Œå¹¶å½•å–å¦ç”Ÿï¼Œè¯·é€‰æ‹©ä¸€ä¸ªCSV文件,列åç§°ä¸¥æ ¼æŒ‰ç…§ä»¥ä¸‹é¡ºåºï¼šé‚®ç®±ã€ç”¨æˆ·åã€å§“å和国家。æ¯è¡ŒåŒ…å«ä¸€ä¸ªå¦ç”Ÿï¼Œè¯·ä¸è¦æ·»åŠ 任何页眉ã€é¡µè„šä»¥åŠç©ºè¡Œã€‚" #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Upload a CSV for bulk enrollment" @@ -18229,7 +18528,7 @@ msgstr "批é‡æ·»åŠ Beta测试员" msgid "" "Note: Users must have an activated {platform_name} account before they can " "be enrolled as beta testers." -msgstr "注:用户必须首先拥有已激活的{platform_name}账户方å¯æˆä¸ºBeta测试员。" +msgstr "注:用户必须首先拥有已激活的{platform_name}è´¦å·æ–¹å¯æˆä¸ºBeta测试员。" #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" @@ -18451,7 +18750,7 @@ msgstr "æ¯ä¸ªæ¡å½¢å›¾æ˜¾ç¤ºè¯¥é—®é¢˜çš„æˆç»©åˆ†å¸ƒåŒºé—´" msgid "" "You can click on any of the bars to list the students that attempted the " "problem, along with the grades they received." -msgstr "ä½ å¯ä»¥ç‚¹å‡»ä»»ä¸€æ¯ä¸ªæ¡å½¢å›¾åŽ»æŸ¥çœ‹æ‰€æœ‰å°è¯•å›žç”问题的å¦ç”Ÿåå•ä»¥åŠä»–们获得的æˆç»©" +msgstr "您å¯ä»¥ç‚¹å‡»ä»»ä¸€æ¯ä¸ªæ¡å½¢å›¾åŽ»æŸ¥çœ‹æ‰€æœ‰å°è¯•å›žç”问题的å¦ç”Ÿåå•ä»¥åŠä»–们获得的æˆç»©" #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Download Problem Data for all Problems as a CSV" @@ -18591,31 +18890,35 @@ msgstr "é»˜è®¤ç« èŠ‚" msgid "Student Special Exam Attempts" msgstr "å¦ç”Ÿç‰¹æ®Šè€ƒè¯•å°è¯•" +#: lms/templates/instructor/instructor_dashboard_2/special_exams.html +msgid "Review Dashboard" +msgstr "查看é¢æ¿" + #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "View gradebook for enrolled learners" msgstr "查看已注册å¦å‘˜çš„æˆç»©å•" +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "View Gradebook" +msgstr "查看æˆç»©å•" + #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "Note: This feature is available only to courses with a small number of " "enrolled learners." msgstr "注æ„:æ¤åŠŸèƒ½ä»…适用于注册选课å¦ç”Ÿæ•°é‡è¾ƒå°‘的课程。" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "View Gradebook" -msgstr "查看æˆç»©å•" - #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "View a specific learner's enrollment status" msgstr "查看特定员的选课状æ€" #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Learner's {platform_name} email address or username *" -msgstr "å¦å‘˜çš„{platform_name}邮箱地å€æˆ–用户å*" +msgstr "å¦å‘˜çš„{platform_name}邮箱或用户å*" #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Learner email address or username" -msgstr "å¦å‘˜é‚®ç®±åœ°å€æˆ–用户å" +msgstr "å¦å‘˜é‚®ç®±æˆ–用户å" #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "View Enrollment Status" @@ -18627,7 +18930,7 @@ msgstr "查看特定å¦å‘˜çš„æˆç»©å’Œè¿›åº¦" #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Learner's {platform_name} email address or username" -msgstr "å¦å‘˜çš„{platform_name}邮箱地å€æˆ–用户å" +msgstr "å¦å‘˜çš„{platform_name}邮箱或用户å" #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "View Progress Page" @@ -18951,7 +19254,7 @@ msgstr "å·²ç»å‡†å¤‡å¥½è¿›è¡Œè¯„分ï¼" msgid "" "You have finished learning to grade, which means that you are now ready to " "start grading." -msgstr "您已完æˆäº†è¯„分å¦ä¹ ,这æ„味ç€çŽ°åœ¨ä½ å¯ä»¥å¼€å§‹è¯„分了。" +msgstr "您已ç»å¦ä¹ 了如何评分,这æ„味ç€çŽ°åœ¨æ‚¨å¯ä»¥å¼€å§‹è¯„分了。" #: lms/templates/peer_grading/peer_grading_problem.html msgid "Start Grading!" @@ -19022,7 +19325,7 @@ msgstr "查看您的用户资料" #: lms/templates/provider/authorize.html msgid "Read your email address" -msgstr "查看您的邮箱地å€" +msgstr "查看您的邮箱" #: lms/templates/provider/authorize.html msgid "Read the list of courses in which you are a staff member." @@ -19055,11 +19358,11 @@ msgstr "密ç é‡ç½®å·²å®Œæˆ" #: lms/templates/registration/password_reset_complete.html msgid "" "Your password has been reset. {start_link}Sign-in to your account.{end_link}" -msgstr "ä½ çš„å¯†ç å·²é‡ç½®ã€‚{start_link}ç™»å½•ä½ çš„å¸å·ã€‚{end_link}" +msgstr "您的密ç å·²é‡ç½®ã€‚{start_link}登录您的账å·ã€‚{end_link}" #: lms/templates/registration/password_reset_confirm.html msgid "Reset Your {platform_name} Password" -msgstr "é‡ç½®ä½ çš„ {platform_name} 密ç " +msgstr "é‡ç½®æ‚¨çš„ {platform_name} 密ç " #: lms/templates/registration/password_reset_confirm.html msgid "Invalid Password Reset Link" @@ -19138,7 +19441,7 @@ msgstr "下载CSVæ•°æ®" #: lms/templates/shoppingcart/download_report.html msgid "" "There was an error in your date input. It should be formatted as YYYY-MM-DD" -msgstr "ä½ è¾“å…¥çš„æ—¥æœŸæœ‰è¯¯ã€‚å…¶æ ¼å¼åº”为YYYY-MM-DD" +msgstr "æ‚¨è¾“å…¥çš„æ—¥æœŸæœ‰è¯¯ã€‚å…¶æ ¼å¼åº”为YYYY-MM-DD" #: lms/templates/shoppingcart/download_report.html msgid "These reports are delimited by start and end dates." @@ -19210,7 +19513,7 @@ msgid "" "Please send each professional one of these unique registration codes to " "enroll into the course. The confirmation/receipt email you will receive has " "an example email template with directions for the individuals enrolling." -msgstr "请将æ¯ä¸ªä¸“业的其ä¸ä¸€ä¸ªç‹¬ç‰¹çš„注册ç 注册到课程。确认/收æ®é‚®ä»¶ä½ 会收到一个电å邮件模æ¿ç¤ºä¾‹è¯´æ˜Žä¸ªäººæŠ¥å。" +msgstr "请将æ¯ä¸ªä¸“业的其ä¸ä¸€ä¸ªç‹¬ç‰¹çš„注册ç 注册到课程。确认/收æ®é‚®ä»¶æ‚¨ä¼šæ”¶åˆ°ä¸€ä¸ªç”µå邮件模æ¿ç¤ºä¾‹è¯´æ˜Žä¸ªäººæŠ¥å。" #: lms/templates/shoppingcart/receipt.html msgid "Enrollment Link" @@ -19323,7 +19626,7 @@ msgstr "{course_number} {course_title}å°é¢å›¾ç‰‡" #: lms/templates/shoppingcart/registration_code_receipt.html #: lms/templates/shoppingcart/registration_code_redemption.html msgid "Confirm your enrollment for: {span_start}course dates{span_end}" -msgstr "ç¡®è®¤ä½ çš„é€‰è¯¾ï¼š{span_start}课程日期{span_end}" +msgstr "确认您的选课:{span_start}课程日期{span_end}" #: lms/templates/shoppingcart/registration_code_receipt.html msgid "{course_name}" @@ -19336,21 +19639,21 @@ msgid "" "Check your {link_start}course dashboard{link_end} to see if you're enrolled " "in the course, or contact your company's administrator." msgstr "" -"ä½ ç‚¹å‡»çš„è¿™ä¸ªé€‰è¯¾ç 的链接已ç»ä½¿ç”¨è¿‡äº†ã€‚æ£€æŸ¥ä½ çš„{link_start}课程é¢æ¿{link_end}æŸ¥çœ‹ä½ æ˜¯å¦å·²ç»æ³¨å†Œäº†è¿™ä»¬è¯¾ç¨‹ï¼Œæˆ–者è”ç³»ä½ å…¬å¸çš„管ç†å‘˜ã€‚" +"您点击的这个选课ç 的链接已ç»ä½¿ç”¨è¿‡äº†ã€‚检查您的{link_start}课程é¢æ¿{link_end}查看您是å¦å·²ç»æ³¨å†Œäº†è¿™ä»¬è¯¾ç¨‹ï¼Œæˆ–者è”系您公å¸çš„管ç†å‘˜ã€‚" #: lms/templates/shoppingcart/registration_code_receipt.html #: lms/templates/shoppingcart/registration_code_redemption.html msgid "" "You have successfully enrolled in {course_name}. This course has now been " "added to your dashboard." -msgstr "ä½ å·²ç»æˆåŠŸçš„选修了 {course_name}ï¼Œè¿™é—¨è¯¾ç¨‹çŽ°å·²æ·»åŠ åˆ°ä½ çš„è¯¾ç¨‹é¢æ¿ä¸ã€‚" +msgstr "您已ç»æˆåŠŸçš„选修了 {course_name}ï¼Œè¿™é—¨è¯¾ç¨‹çŽ°å·²æ·»åŠ åˆ°æ‚¨çš„è¯¾ç¨‹é¢æ¿ä¸ã€‚" #: lms/templates/shoppingcart/registration_code_receipt.html #: lms/templates/shoppingcart/registration_code_redemption.html msgid "" "You're already enrolled for this course. Visit your " "{link_start}dashboard{link_end} to see the course." -msgstr "ä½ å·²ç»é€‰ä¿®äº†è¿™é—¨è¯¾ç¨‹ï¼Œè¯·å‰å¾€ä½ çš„{link_start}课程é¢æ¿{link_end}查看该课程。" +msgstr "您已ç»é€‰ä¿®äº†è¿™é—¨è¯¾ç¨‹ï¼Œè¯·å‰å¾€æ‚¨çš„{link_start}课程é¢æ¿{link_end}查看该课程。" #: lms/templates/shoppingcart/registration_code_receipt.html msgid "The course you are enrolling for is full." @@ -19542,7 +19845,7 @@ msgstr " ç›®å‰{platform_name}å¹³å°çš„æœåŠ¡å™¨å·²ç»è¶…è´Ÿè·" #: lms/templates/student_account/account_settings.html msgid "Account Settings" -msgstr "账户设置" +msgstr "è´¦å·è®¾ç½®" #: lms/templates/student_account/finish_auth.html msgid "Please Wait" @@ -19570,15 +19873,23 @@ msgstr "å¦ç”Ÿæ”¯æŒï¼šé€‰è¯¾" #: lms/templates/support/feature_based_enrollments.html msgid "Student Support: Feature Based Enrollments" -msgstr "" +msgstr "å¦ç”Ÿæ”¯æŒï¼šåŸºäºŽåŠŸèƒ½çš„注册" + +#: lms/templates/support/feature_based_enrollments.html +msgid "Content Type Gating" +msgstr "内容类型选通" + +#: lms/templates/support/feature_based_enrollments.html +msgid "Course Duration Limits" +msgstr "课程æŒç»æ—¶é—´é™åˆ¶" #: lms/templates/support/feature_based_enrollments.html msgid "Is Enabled" -msgstr "" +msgstr "å·²å¯ç”¨" #: lms/templates/support/feature_based_enrollments.html msgid "No results found" -msgstr "" +msgstr "未找到结果" #: lms/templates/support/manage_user.html msgid "Student Support: Manage User" @@ -19721,7 +20032,7 @@ msgstr "这门课程申请认è¯è¯ä¹¦çš„截æ¢æ—¥æœŸå·²ç»è¿‡äº†ã€‚" #: lms/templates/verify_student/pay_and_verify.html msgid "Upgrade Your Enrollment For {course_name}." -msgstr "为{course_name}æ›´æ–°ä½ çš„é€‰è¯¾ä¿¡æ¯ã€‚" +msgstr "为{course_name}更新您的选课信æ¯ã€‚" #: lms/templates/verify_student/pay_and_verify.html msgid "Receipt For {course_name}" @@ -19746,7 +20057,7 @@ msgid "" "{strong_start}webcam is plugged in, turned on, and allowed to function in " "your web browser (commonly adjustable in your browser settings).{strong_end}" msgstr "" -"请确认您的æµè§ˆå™¨å·²æ›´æ–°è‡³{strong_start}{a_start}最新的å¯ç”¨ç‰ˆæœ¬{a_end}{strong_end}。åŒæ—¶ï¼Œè¯·ç¡®ä¿æ‚¨çš„{strong_start}网络摄åƒå¤´å·²æ’好ã€å·²å¼€å¯ä¸”åœ¨ä½ çš„ç½‘ç»œæµè§ˆå™¨(通常å¯åœ¨æ‚¨çš„æµè§ˆå™¨è®¾ç½®ä¸è¿›è¡Œè°ƒèŠ‚)ä¸å¯æ£å¸¸ä½¿ç”¨ã€‚{strong_end}" +"请确认您的æµè§ˆå™¨å·²æ›´æ–°è‡³{strong_start}{a_start}最新的å¯ç”¨ç‰ˆæœ¬{a_end}{strong_end}。åŒæ—¶ï¼Œè¯·ç¡®ä¿æ‚¨çš„{strong_start}网络摄åƒå¤´å·²æ’好ã€å·²å¼€å¯ä¸”在您的网络æµè§ˆå™¨(通常å¯åœ¨æ‚¨çš„æµè§ˆå™¨è®¾ç½®ä¸è¿›è¡Œè°ƒèŠ‚)ä¸å¯æ£å¸¸ä½¿ç”¨ã€‚{strong_end}" #: lms/templates/verify_student/reverify.html msgid "Re-Verification" @@ -20045,17 +20356,13 @@ msgstr "您尚未è´ä¹°æ¤æ–‡ç« 的访问æƒé™ã€‚" msgid "Explore journals and courses" msgstr "æŽ¢ç´¢æ–‡ç« å’Œè¯¾ç¨‹" -#: openedx/features/learner_analytics/templates/learner_analytics/dashboard.html -msgid "My Stats (Beta)" -msgstr "我的统计数æ®ï¼ˆBeta)" - #. Translators: this section lists all the third-party authentication #. providers #. (for example, Google and LinkedIn) the user can link with or unlink from #. their edX account. #: openedx/features/learner_profile/static/learner_profile/templates/third_party_auth.html msgid "Connected Accounts" -msgstr "已关è”çš„å¸å·" +msgstr "已关è”çš„è´¦å·" #: openedx/features/learner_profile/static/learner_profile/templates/third_party_auth.html msgid "Linked" @@ -20137,13 +20444,17 @@ msgstr "页脚" msgid "edX Home Page" msgstr "edX首页" +#: themes/edx.org/lms/templates/footer.html +msgid "Connect" +msgstr "连接" + #: themes/edx.org/lms/templates/footer.html msgid "© 2012–{year} edX Inc. " msgstr "© 2012–{year} edX股份有é™å…¬å¸ " #: themes/edx.org/lms/templates/footer.html -msgid "EdX, Open edX, and MicroMasters are registered trademarks of edX Inc. " -msgstr "EdXã€Open edX以åŠMicroMaster是edX股份有é™å…¬å¸çš„å•†æ ‡ã€‚" +msgid "edX, Open edX, and MicroMasters are registered trademarks of edX Inc. " +msgstr "" #: themes/edx.org/lms/templates/certificates/_about-accomplishments.html msgid "About edX Verified Certificates" @@ -20213,10 +20524,8 @@ msgstr "edX Inc." #: themes/edx.org/lms/templates/certificates/_accomplishment-footer.html msgid "" "All rights reserved except where noted. edX, Open edX and the edX and Open " -"edX logos are registered trademarks or trademarks of edX Inc." +"edX logos are registered trademarks of edX Inc." msgstr "" -"© edX Inc. ä¿ç•™æ‰€æœ‰æƒåˆ©ï¼ˆç‰¹åˆ«æ ‡æ³¨é™¤å¤–)。EdXã€Open edXã€edX å’Œ Open EdX æ ‡è¯†å‡ä¸ºæ³¨å†Œå•†æ ‡æˆ– edX Inc. " -"çš„å•†æ ‡ã€‚" #: themes/edx.org/lms/templates/course_modes/choose.html msgid "" @@ -20238,15 +20547,6 @@ msgstr "查找课程" msgid "Schools & Partners" msgstr "å¦æ ¡ & 伙伴" -#. Translators: 'EdX', 'edX', and 'Open edX' are trademarks of 'edX Inc.'. -#. Please do not translate any of these trademarks and company names. -#: themes/red-theme/lms/templates/footer.html -msgid "" -"EdX, Open edX, and the edX and Open edX logos are registered trademarks or " -"trademarks of {link_start}edX Inc.{link_end}" -msgstr "" -"EdXã€Open edXä»¥åŠ edXã€Open edX çš„æ ‡è¯†æ˜¯æ³¨å†Œå•†æ ‡æˆ–è€… {link_start}edX å…¬å¸{link_end} çš„å•†æ ‡ã€‚" - #: themes/red-theme/lms/templates/footer.html msgid "" "{tos_link_start}Terms of Service{tos_link_end} and {honor_link_start}Honor " @@ -20295,7 +20595,7 @@ msgid "" "Change your life and start learning today by activating your {platform_name}" " account. Click on the link below or copy and paste it into your browser's " "address bar." -msgstr "激活您的{platform_name}账户,从今天起开始å¦ä¹ ,并以æ¤æ”¹å˜ä½ 的生活。点击下é¢çš„链接或å¤åˆ¶å¹¶ç²˜è´´åˆ°æ‚¨æµè§ˆå™¨çš„地å€æ 。" +msgstr "激活您的{platform_name}è´¦å·ï¼Œä»Žä»Šå¤©èµ·å¼€å§‹å¦ä¹ ,并以æ¤æ”¹å˜æ‚¨çš„生活。点击下é¢çš„链接或å¤åˆ¶å¹¶ç²˜è´´åˆ°æ‚¨æµè§ˆå™¨çš„地å€æ 。" #: themes/stanford-style/lms/templates/emails/activation_email.txt #: themes/stanford-style/lms/templates/emails/email_change.txt @@ -20304,7 +20604,7 @@ msgid "" " any more email from us. Please do not reply to this e-mail; if you require " "assistance, check the about section of the {platform_name} Courses web site." msgstr "" -"å¦‚æžœä½ æ²¡å‘å‡ºè¿‡è¯¥è¯·æ±‚ï¼Œä½ ä¸éœ€è¦åšä»»ä½•äº‹æƒ…ï¼›ä½ å°†ä¸ä¼šæ”¶åˆ°å…¶ä»–任何电å邮件。请ä¸è¦å›žå¤æ¤ç”µåé‚®ä»¶ï¼›å¦‚æžœä½ éœ€è¦å¸®åŠ©ï¼Œè¯·è®¿é—® {platform_name} " +"如果您没å‘出过该请求,您ä¸éœ€è¦åšä»»ä½•äº‹æƒ…;您将ä¸ä¼šæ”¶åˆ°å…¶ä»–任何电å邮件。请ä¸è¦å›žå¤æ¤ç”µå邮件;如果您需è¦å¸®åŠ©ï¼Œè¯·è®¿é—® {platform_name} " "课程网站。" #: themes/stanford-style/lms/templates/emails/confirm_email_change.txt @@ -20313,8 +20613,8 @@ msgid "" "{platform_name} from {old_email} to {new_email}. If you did not make this " "request, please contact us at" msgstr "" -"è¿™å°é‚®ä»¶æ˜¯ä¸ºäº†ç¡®è®¤æ‚¨ä¸Ž{platform_name}å…³è”的电å邮件由 {old_email} å˜æ›´ä¸º " -"{new_email}ã€‚å¦‚æžœä½ å¹¶æ²¡æœ‰å‘出该请求,请通过下列地å€è”系我们:" +"è¿™å°é‚®ä»¶æ˜¯ä¸ºäº†ç¡®è®¤æ‚¨ä¸Ž{platform_name}å…³è”的邮箱由 {old_email} å˜æ›´ä¸º " +"{new_email}。如果您并没有å‘出该请求,请通过以下方å¼è”系我们:" #: themes/stanford-style/lms/templates/emails/email_change.txt msgid "" @@ -20322,8 +20622,8 @@ msgid "" "{platform_name} account from {old_email} to {new_email}. If this is correct," " please confirm your new e-mail address by visiting:" msgstr "" -"我们收到了您需è¦å°† {platform_name} 账户的电å邮件关è”ç”± {old_email} å˜æ›´ä¸º {new_email} " -"çš„è¯·æ±‚ã€‚å¦‚æžœè¯¥è¯·æ±‚æ— è¯¯ï¼Œè¯·è®¿é—®å¦‚ä¸‹ç½‘é¡µç¡®è®¤æ‚¨çš„æ–°ç”µå邮件地å€ï¼š" +"我们收到了您需è¦å°† {platform_name} è´¦å·çš„å…³è”邮箱由 {old_email} å˜æ›´ä¸º {new_email} " +"çš„è¯·æ±‚ã€‚å¦‚æžœè¯¥è¯·æ±‚æ— è¯¯ï¼Œè¯·è®¿é—®ä»¥ä¸‹ç½‘é¡µç¡®è®¤æ‚¨çš„æ–°é‚®ç®±ï¼š" #: themes/stanford-style/lms/templates/emails/reject_name_change.txt msgid "" @@ -20390,17 +20690,17 @@ msgstr "教室å¯è®¿é—®æ€§æ”¿ç–" #: cms/templates/activation_active.html cms/templates/activation_complete.html #: cms/templates/activation_invalid.html msgid "{studio_name} Account Activation" -msgstr "{studio_name}账户激活" +msgstr "{studio_name}è´¦å·æ¿€æ´»" #: cms/templates/activation_active.html msgid "Your account is already active" -msgstr "您的账户已ç»æ¿€æ´»" +msgstr "您的账å·å·²ç»æ¿€æ´»" #: cms/templates/activation_active.html msgid "" "This account, set up using {email}, has already been activated. Please sign " "in to start working within {studio_name}." -msgstr "通过{email}注册的这个账户已被激活,请登录以开始在{studio_name}ä¸å·¥ä½œã€‚" +msgstr "通过{email}注册的这个账å·å·²è¢«æ¿€æ´»ï¼Œè¯·ç™»å½•ä»¥å¼€å§‹åœ¨{studio_name}ä¸å·¥ä½œã€‚" #: cms/templates/activation_active.html cms/templates/activation_complete.html msgid "Sign into {studio_name}" @@ -20408,17 +20708,17 @@ msgstr "登录{studio_name}" #: cms/templates/activation_complete.html msgid "Your account activation is complete!" -msgstr "您的账户激活已ç»å®Œæˆï¼" +msgstr "您的账å·æ¿€æ´»å·²ç»å®Œæˆï¼" #: cms/templates/activation_complete.html msgid "" "Thank you for activating your account. You may now sign in and start using " "{studio_name} to author courses." -msgstr "谢谢您激活了您的账户,您现在å¯ä»¥ç™»å½• {studio_name}并开始创建课程了。" +msgstr "谢谢您激活了您的账å·ï¼Œæ‚¨çŽ°åœ¨å¯ä»¥ç™»å½• {studio_name}并开始创建课程了。" #: cms/templates/activation_invalid.html msgid "Your account activation is invalid" -msgstr "æ‚¨çš„è´¦æˆ·æ¿€æ´»æ˜¯æ— æ•ˆçš„" +msgstr "您的账å·æ¿€æ´»å¤±è´¥" #: cms/templates/activation_invalid.html msgid "" @@ -20726,11 +21026,6 @@ msgid "" "changed.)" msgstr "用于识别组织内新课程的唯一编å·ã€‚(æ¤ç¼–å·ä¸ŽåŽŸæ¥çš„课程编å·ä¸€è‡´ï¼Œæ— 法更改)" -#: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/settings.html -msgid "Course Run" -msgstr "开课时间" - #. Translators: This is an example for the "run" used to identify different #. instances of a course, seen when filling out the form to create a new #. course. @@ -20821,7 +21116,7 @@ msgstr "该课程使用了ä¸å†æ”¯æŒçš„特性。" #: cms/templates/course_outline.html msgid "You must delete or replace the following components." -msgstr "ä½ å¿…é¡»åˆ é™¤æˆ–æ›¿æ¢ä¸‹é¢è¿™äº›ç»„件。" +msgstr "æ‚¨å¿…é¡»åˆ é™¤æˆ–æ›¿æ¢ä¸‹é¢è¿™äº›ç»„件。" #: cms/templates/course_outline.html msgid "Unsupported Components" @@ -21591,7 +21886,7 @@ msgid "" "incremental release when it makes sense. And with co-authors, you can have a" " whole team building a course, together." msgstr "" -"{studio_name}的工作方å¼ä¸Žæ‚¨ç†ŸçŸ¥çš„网页应用类似,åªæ˜¯æ‚¨è¿˜éœ€è¦äº†è§£ä¸€ä¸‹å¦‚何创建课程。您å¯ä»¥æ ¹æ®éœ€è¦åœ¨ç½‘页上一次性地å‘布信æ¯ï¼Œæˆ–者采用增é‡å¼çš„å‘布形å¼ã€‚如果您有åˆä½œè€…ï¼Œä½ ä»¬è¿˜å¯ä»¥ä½œä¸ºä¸€ä¸ªå›¢é˜Ÿæ¥å…±åŒåˆ›å»ºè¯¾ç¨‹ã€‚" +"{studio_name}的工作方å¼ä¸Žæ‚¨ç†ŸçŸ¥çš„网页应用类似,åªæ˜¯æ‚¨è¿˜éœ€è¦äº†è§£ä¸€ä¸‹å¦‚何创建课程。您å¯ä»¥æ ¹æ®éœ€è¦åœ¨ç½‘页上一次性地å‘布信æ¯ï¼Œæˆ–者采用增é‡å¼çš„å‘布形å¼ã€‚如果您有åˆä½œè€…,您们还å¯ä»¥ä½œä¸ºä¸€ä¸ªå›¢é˜Ÿæ¥å…±åŒåˆ›å»ºè¯¾ç¨‹ã€‚" #: cms/templates/howitworks.html msgid "Instant Changes" @@ -21635,7 +21930,7 @@ msgstr "æ³¨å†Œå¹¶å¼€å§‹æ‰“é€ æ‚¨è‡ªå·±çš„{platform_name}课程" #: cms/templates/howitworks.html msgid "Already have a {studio_name} Account? Sign In" -msgstr "å·²ç»æœ‰ä¸€ä¸ª{studio_name}账户?请登录" +msgstr "å·²ç»æœ‰ä¸€ä¸ª{studio_name}è´¦å·ï¼Ÿè¯·ç™»å½•" #: cms/templates/howitworks.html msgid "Outlining Your Course" @@ -22228,14 +22523,14 @@ msgstr "感谢注册,{name}ï¼" #: cms/templates/index.html msgid "We need to verify your email address" -msgstr "我们需è¦éªŒè¯æ‚¨çš„电å邮箱地å€" +msgstr "我们需è¦éªŒè¯æ‚¨çš„邮箱" #: cms/templates/index.html msgid "" "Almost there! In order to complete your sign up we need you to verify your " "email address ({email}). An activation message and next steps should be " "waiting for you there." -msgstr "注册快完æˆå•¦ï¼æ‚¨çŽ°åœ¨éœ€è¦éªŒè¯æ‚¨çš„邮箱地å€({email}),已å‘é€æ¿€æ´»é‚®ä»¶è‡³æ¤é‚®ç®±ï¼Œè¯·æŒ‰ç…§æ¥éª¤å®Œæˆæ³¨å†Œã€‚" +msgstr "注册快完æˆå•¦ï¼æ‚¨çŽ°åœ¨éœ€è¦éªŒè¯æ‚¨çš„邮箱({email}),已å‘é€æ¿€æ´»é‚®ä»¶è‡³æ¤é‚®ç®±ï¼Œè¯·æŒ‰ç…§æ¥éª¤å®Œæˆæ³¨å†Œã€‚" #: cms/templates/index.html msgid "Need help?" @@ -22314,7 +22609,7 @@ msgstr "用户邮箱地å€" #: cms/templates/manage_users.html msgid "Provide the email address of the user you want to add as Staff" -msgstr "请æ供您想è¦æ·»åŠ æˆä¸ºå‘˜å·¥çš„用户的电å邮件地å€" +msgstr "请æ供您想è¦æ·»åŠ æˆä¸ºå‘˜å·¥çš„用户的邮箱" #: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "Add User" @@ -22328,7 +22623,7 @@ msgstr "å‘è¯¥è¯¾ç¨‹æ·»åŠ å›¢é˜Ÿæˆå‘˜" msgid "" "Adding team members makes course authoring collaborative. Users must be " "signed up for {studio_name} and have an active account." -msgstr "æ·»åŠ å›¢é˜Ÿæˆå‘˜ä½¿å¾—课程编写å¯ä»¥å作完æˆï¼Œç”¨æˆ·å¿…须已ç»æ³¨å†Œäº†{studio_name}并拥有一个已激活的账户。" +msgstr "æ·»åŠ å›¢é˜Ÿæˆå‘˜ä½¿å¾—课程编写å¯ä»¥å作完æˆï¼Œç”¨æˆ·å¿…须已ç»æ³¨å†Œäº†{studio_name}并拥有一个已激活的账å·ã€‚" #: cms/templates/manage_users.html msgid "Add a New Team Member" @@ -22354,7 +22649,7 @@ msgstr "管ç†å‘˜æ˜¯è¯¾ç¨‹å›¢é˜Ÿæˆå‘˜ä¸å¯ä»¥æ·»åŠ 和移除其它课程团队 msgid "" "All course team members can access content in Studio, the LMS, and Insights," " but are not automatically enrolled in the course." -msgstr "所有课程团队æˆå‘˜å¯ä»¥è®¿é—®æ•™å®¤, LMS, å’Œå¯ç¤ºä¸çš„内容,但ä¸ä¼šè‡ªåŠ¨æ³¨å†Œè¯¾ç¨‹ã€‚" +msgstr "所有课程团队æˆå‘˜å¯ä»¥è®¿é—®æ•™å®¤ï¼ŒLMS,和å¯ç¤ºä¸çš„内容,但ä¸ä¼šè‡ªåŠ¨æ³¨å†Œè¯¾ç¨‹ã€‚" #: cms/templates/manage_users.html msgid "Transferring Ownership" @@ -22383,7 +22678,7 @@ msgstr "授予对该知识库的访问æƒé™" #: cms/templates/manage_users_lib.html msgid "Provide the email address of the user you want to add" -msgstr "请æä¾›æ‚¨æƒ³æ·»åŠ çš„ç”¨æˆ·çš„é‚®ä»¶åœ°å€" +msgstr "请æä¾›æ‚¨æƒ³æ·»åŠ çš„ç”¨æˆ·çš„é‚®ç®±" #: cms/templates/manage_users_lib.html msgid "Add More Users to This Library" @@ -22393,7 +22688,7 @@ msgstr "æ·»åŠ æ›´å¤šç”¨æˆ·åˆ°è¯¥çŸ¥è¯†åº“ä¸" msgid "" "Grant other members of your course team access to this library. New library " "users must have an active {studio_name} account." -msgstr "å‘您课程团队的其他æˆå‘˜æŽˆäºˆè¯¥çŸ¥è¯†åº“的访问æƒé™ã€‚新的知识库用户必须有一个已激活的{studio_name}账户。" +msgstr "å‘您课程团队的其他æˆå‘˜æŽˆäºˆè¯¥çŸ¥è¯†åº“的访问æƒé™ã€‚新的知识库用户必须有一个已激活的{studio_name}è´¦å·ã€‚" #: cms/templates/manage_users_lib.html msgid "Add a New User" @@ -22436,7 +22731,7 @@ msgstr "注册{studio_name}" #: cms/templates/register.html msgid "Already have a {studio_name} Account? Sign in" -msgstr "å·²ç»æœ‰ä¸€ä¸ª{studio_name}账户了?请登录" +msgstr "å·²ç»æœ‰ä¸€ä¸ª{studio_name}è´¦å·äº†ï¼Ÿè¯·ç™»å½•" #: cms/templates/register.html msgid "" @@ -22468,7 +22763,7 @@ msgstr "我åŒæ„{a_start}æœåŠ¡æ¡çº¦{a_end}" #: cms/templates/register.html msgid "Create My Account & Start Authoring Courses" -msgstr "创建我的账户&开始创建课程" +msgstr "创建我的账å·ï¼†å¼€å§‹åˆ›å»ºè¯¾ç¨‹" #: cms/templates/register.html msgid "Common {studio_name} Questions" @@ -22619,7 +22914,7 @@ msgid "" "Instructor-paced courses progress at the pace that the course author sets. " "You can configure release dates for course content and due dates for " "assignments." -msgstr "教师教å¦è¯¾ç¨‹çš„进度å¯ä»¥ç”±è¯¥è¯¾ç¨‹ä½œè€…è®¾ç½®ã€‚ä½ å¯ä»¥ä¸ºè¯¥è¯¾ç¨‹è®¾ç½®è¯¾ç¨‹å†…容å‘布时间åŠåœæ¢è§‚看时间。" +msgstr "教师教å¦è¯¾ç¨‹çš„进度å¯ä»¥ç”±è¯¥è¯¾ç¨‹ä½œè€…设置。您å¯ä»¥ä¸ºè¯¥è¯¾ç¨‹è®¾ç½®è¯¾ç¨‹å†…容å‘布时间åŠåœæ¢è§‚看时间。" #: cms/templates/settings.html msgid "Self-Paced" @@ -22702,14 +22997,14 @@ msgstr "课程详情" #: cms/templates/settings.html msgid "Provide useful information about your course" -msgstr "æä¾›æœ‰å…³ä½ çš„è¯¾ç¨‹çš„æœ‰ç”¨ä¿¡æ¯" +msgstr "æ供有关您的课程的有用信æ¯" #: cms/templates/settings.html msgid "" "Identify the course language here. This is used to assist users find courses" " that are taught in a specific language. It is also used to localize the " "'From:' field in bulk emails." -msgstr "设置课程è¯è¨€ï¼Œç”¨äºŽå¸®åŠ©ç”¨æˆ·å¯»æ‰¾ç”¨æŸä¸ªè¯è¨€æ•™å¦çš„课程,并本地化批é‡é‚®ç®±åœ°å€ä¸çš„“Fromâ€è¾“入框。" +msgstr "设置课程è¯è¨€ï¼Œç”¨äºŽå¸®åŠ©ç”¨æˆ·å¯»æ‰¾ç”¨æŸä¸ªè¯è¨€æ•™å¦çš„课程,并本地化批é‡é‚®ç®±ä¸çš„“Fromâ€è¾“入框。" #: cms/templates/settings.html msgid "Introducing Your Course" @@ -22788,7 +23083,7 @@ msgstr "{a_link_start}您课程摘è¦é¡µé¢{a_link_end}的自定义工具æ 内 #: cms/templates/settings.html msgid "Course Card Image" -msgstr "课程å¡å›¾ç‰‡" +msgstr "课程å°é¢å›¾" #: cms/templates/settings.html msgid "" @@ -22816,7 +23111,7 @@ msgstr "请为您的课程图片æ供一个有效的路径和åå—(注æ„: #: cms/templates/settings.html msgid "Upload Course Card Image" -msgstr "ä¸Šä¼ è¯¾ç¨‹å¡å›¾ç‰‡" +msgstr "ä¸Šä¼ è¯¾ç¨‹å°é¢å›¾" #: cms/templates/settings.html msgid "" @@ -22921,6 +23216,10 @@ msgstr "在整个课程上投入的时间" msgid "Prerequisite Course" msgstr "先修课程" +#: cms/templates/settings.html +msgid "None" +msgstr "æ— " + #: cms/templates/settings.html msgid "Course that students must complete before beginning this course" msgstr "å¦ç”Ÿåœ¨å¼€å§‹æœ¬è¯¾ç¨‹ä¹‹å‰å¿…须完æˆçš„课程" @@ -23172,6 +23471,14 @@ msgstr "è§†é¢‘ä¸Šä¼ " msgid "Course Video Settings" msgstr "课程视频设置" +#: cms/templates/videos_index_pagination.html +msgid "Changing.." +msgstr "修改ä¸..." + +#: cms/templates/videos_index_pagination.html +msgid "Videos per page:" +msgstr "æ¯é¡µè§†é¢‘:" + #: cms/templates/visibility_editor.html msgid "Access is not restricted" msgstr "没有访问é™åˆ¶" @@ -23255,7 +23562,7 @@ msgstr "æ¤ç»„å·²ä¸å˜åœ¨ï¼Œè¯·é€‰æ‹©å…¶ä»–分组并撤销访问é™åˆ¶ã€‚" msgid "" "Thank you for signing up for {studio_name}! To activate your account, please" " copy and paste this address into your web browser's address bar:" -msgstr "感谢您注册{studio_name}ï¼è¦æ¿€æ´»æ‚¨çš„账户,请å¤åˆ¶å¹¶ç²˜è´´ä¸‹é¢çš„网å€åˆ°æ‚¨çš„æµè§ˆå™¨çš„地å€æ :" +msgstr "" #: cms/templates/emails/activation_email.txt msgid "" @@ -23263,11 +23570,10 @@ msgid "" " any more email from us. Please do not reply to this e-mail; if you require " "assistance, check the help section of the {studio_name} web site." msgstr "" -"如果您没å‘出过该请求,您ä¸éœ€è¦åšä»»ä½•äº‹æƒ…,您将ä¸ä¼šæ”¶åˆ°å…¶ä»–任何电å邮件。请ä¸è¦å›žå¤æ¤ç”µå邮件。如果您需è¦å¸®åŠ©ï¼Œè¯·è®¿é—®{studio_name}网站。" #: cms/templates/emails/activation_email_subject.txt msgid "Your account for {studio_name}" -msgstr "您的{studio_name}账户" +msgstr "" #: cms/templates/emails/course_creator_admin_subject.txt msgid "{email} has requested {studio_name} course creator privileges on edge" @@ -23277,7 +23583,7 @@ msgstr "{email} 已在边缘站点上å‘出è¦æ±‚获得{studio_name}上课程创 msgid "" "User '{user}' with e-mail {email} has requested {studio_name} course creator" " privileges on edge." -msgstr "用户“{user}â€ï¼ˆç”µå邮件地å€ï¼š{email})已在边缘站点上å‘出è¦æ±‚获得{studio_name}上课程创建者æƒé™çš„请求。" +msgstr "用户“{user}†邮箱:{email} 已在Edge站点上å‘出è¦æ±‚获得{studio_name}上课程创建者æƒé™çš„请求。" #: cms/templates/emails/course_creator_admin_user_pending.txt msgid "To grant or deny this request, use the course creator admin table." @@ -23325,6 +23631,26 @@ msgstr "您的任务:{task_name}已超过“{task_status}â€çŠ¶æ€ï¼Œè¯·ç™»å½• msgid "{platform_name} {studio_name}: Task Status Update" msgstr "{platform_name} {studio_name}:任务状æ€æ›´æ–°" +#: cms/templates/maintenance/_announcement_delete.html +msgid "Delete Announcement" +msgstr "åˆ é™¤å…¬å‘Š" + +#: cms/templates/maintenance/_announcement_delete.html +msgid "Are you sure you want to delete this Announcement?" +msgstr "您确定è¦åˆ 除这个公告å—" + +#: cms/templates/maintenance/_announcement_delete.html +msgid "Confirm" +msgstr "确认" + +#: cms/templates/maintenance/_announcement_edit.html +msgid "Edit Announcement" +msgstr "编辑公告" + +#: cms/templates/maintenance/_announcement_index.html +msgid "Create New" +msgstr "创建新" + #: cms/templates/maintenance/_force_publish_course.html msgid "Required data to force publish course." msgstr "强制å‘布课程所需的数æ®ã€‚" @@ -23343,15 +23669,15 @@ msgstr "维护é¢æ¿" #: cms/templates/registration/activation_complete.html msgid "Thanks for activating your account." -msgstr "谢谢您激活账户。" +msgstr "感谢您激活账å·ã€‚" #: cms/templates/registration/activation_complete.html msgid "This account has already been activated." -msgstr "本账户已ç»è¢«æ¿€æ´»" +msgstr "本账å·å·²ç»è¢«æ¿€æ´»ã€‚" #: cms/templates/registration/activation_complete.html msgid "Visit your {link_start}dashboard{link_end} to see your courses." -msgstr "è®¿é—®ä½ çš„{link_start}课程é¢æ¿{link_end}æ¥æŸ¥çœ‹è¯¾ç¨‹ã€‚" +msgstr "访问您的{link_start}课程é¢æ¿{link_end}æ¥æŸ¥çœ‹è¯¾ç¨‹ã€‚" #: cms/templates/registration/activation_complete.html msgid "You can now {link_start}sign in{link_end}." @@ -23378,7 +23704,7 @@ msgstr "返回到{link_start}主页{link_end}。" msgid "" "We've sent an email message to {email} with instructions for activating your" " account." -msgstr "我们已å‘您的邮箱{email}å‘é€äº†ä¸€å°é‚®ä»¶ï¼Œå…¶ä¸åŒ…å«æœ‰å…³æ¿€æ´»å¸æˆ·çš„说明" +msgstr "我们已å‘您的邮箱{email}å‘é€äº†ä¸€å°é‚®ä»¶ï¼Œå…¶ä¸åŒ…å«æœ‰å…³æ¿€æ´»è´¦å·çš„说明。" #: cms/templates/widgets/footer.html msgid "Policies" @@ -23392,16 +23718,6 @@ msgstr "å¯è®¿é—®çš„ä½å®¿ç”³è¯·" msgid "LMS" msgstr "LMS" -#. Translators: 'EdX', 'edX', 'Studio', and 'Open edX' are trademarks of 'edX -#. Inc.'. Please do not translate any of these trademarks and company names. -#: cms/templates/widgets/footer.html -msgid "" -"EdX, Open edX, Studio, and the edX and Open edX logos are registered " -"trademarks or trademarks of {link_start}edX Inc.{link_end}" -msgstr "" -"“EdXâ€ã€â€œOpen edXâ€ã€â€œStudioâ€å’Œ edXã€Open edX å›¾æ ‡æ˜¯ {link_start}edX å…¬å¸{link_end} " -"çš„ï¼ˆæ³¨å†Œï¼‰å•†æ ‡ã€‚" - #: cms/templates/widgets/header.html msgid "Current Course:" msgstr "当å‰è¯¾ç¨‹" @@ -23432,7 +23748,7 @@ msgstr "è¯è¨€é¦–选项" #: cms/templates/widgets/header.html msgid "Account Navigation" -msgstr "账户导航" +msgstr "è´¦å·å¯¼èˆª" #: cms/templates/widgets/header.html msgid "Contextual Online Help" @@ -23548,7 +23864,7 @@ msgstr "概è¦" #: wiki/forms.py msgid "" "Give a short reason for your edit, which will be stated in the revision log." -msgstr "ç»™å‡ºä½ ç¼–è¾‘æœ¬æ–‡ç« çš„ç®€çŸè¯´æ˜Žï¼Œå®ƒå°†ä¼šè¢«å†™å…¥ä¿®è®¢æ—¥å¿—ä¸ã€‚" +msgstr "ç»™å‡ºæ‚¨ç¼–è¾‘æœ¬æ–‡ç« çš„ç®€çŸè¯´æ˜Žï¼Œå®ƒå°†ä¼šè¢«å†™å…¥ä¿®è®¢æ—¥å¿—ä¸ã€‚" #: wiki/forms.py msgid "" @@ -23570,8 +23886,7 @@ msgid "" "This will be the address where your article can be found. Use only " "alphanumeric characters and - or _. Note that you cannot change the slug " "after creating the article." -msgstr "" -"这个地å€å°†ç”¨äºŽå®šä½ä½ 的文档。请使用由数å—ã€å—æ¯ã€ï¼ï¼ˆå‡å·ï¼‰ã€_(下划线)组æˆçš„å—符串。注æ„:一旦文档创建完毕将ä¸èƒ½å†å¯¹æ¤å›ºå®šé“¾æŽ¥åœ°å€è¿›è¡Œä¿®æ”¹ã€‚" +msgstr "这个地å€å°†ç”¨äºŽå®šä½æ‚¨çš„文档。请使用由数å—ã€å—æ¯ã€â€œ-â€ã€â€œ_â€ç»„æˆçš„å—符串。注æ„:一旦文档创建完毕将ä¸èƒ½å†å¯¹æ¤å›ºå®šé“¾æŽ¥åœ°å€è¿›è¡Œä¿®æ”¹ã€‚" #: wiki/forms.py msgid "Write a brief message for the article's history log." @@ -23604,12 +23919,12 @@ msgid "" "Purge the article: Completely remove it (and all its contents) with no undo." " Purging is a good idea if you want to free the slug such that users can " "create new articles in its place." -msgstr "æ¸…é™¤æ–‡æ¡£ï¼šå®Œå…¨åˆ é™¤å®ƒ(以åŠå…¶ä¸çš„内容)ä¸”æ— æ³•æ¢å¤ã€‚å½“ä½ éœ€è¦é‡Šæ”¾è¯¥å›ºå®šé“¾æŽ¥åœ°å€ä»¥ä¾¿å¯ä»¥åˆ›å»ºä¸€ä¸ªæ–°æ–‡æ¡£ç»§æ‰¿ä½¿ç”¨è¯¥å›ºå®šé“¾æŽ¥åœ°å€æ—¶é€‰æ‹©æ¸…除æ“作。" +msgstr "æ¸…é™¤æ–‡æ¡£ï¼šå®Œå…¨åˆ é™¤å®ƒ(以åŠå…¶ä¸çš„内容)ä¸”æ— æ³•æ¢å¤ã€‚当您需è¦é‡Šæ”¾è¯¥å›ºå®šé“¾æŽ¥åœ°å€ä»¥ä¾¿å¯ä»¥åˆ›å»ºä¸€ä¸ªæ–°æ–‡æ¡£ç»§æ‰¿ä½¿ç”¨è¯¥å›ºå®šé“¾æŽ¥åœ°å€æ—¶é€‰æ‹©æ¸…除æ“作。" #: wiki/forms.py wiki/plugins/attachments/forms.py #: wiki/plugins/images/forms.py msgid "You are not sure enough!" -msgstr "ä½ è¿˜ä¸å¤Ÿç¡®å®šï¼" +msgstr "您还ä¸å¤Ÿç¡®å®šï¼" #: wiki/forms.py msgid "While you tried to delete this article, it was modified. TAKE CARE!" @@ -23655,7 +23970,7 @@ msgstr "文档的æƒé™è®¾ç½®å·²æ›´æ–°ã€‚" #: wiki/forms.py msgid "Your permission settings were unchanged, so nothing saved." -msgstr "ä½ çš„æƒé™è®¾ç½®æ²¡æœ‰å˜æ›´ï¼Œä¸éœ€è¦ä¿å˜ã€‚" +msgstr "您的æƒé™è®¾ç½®æ²¡æœ‰å˜æ›´ï¼Œä¸éœ€è¦ä¿å˜ã€‚" #: wiki/forms.py msgid "No user with that username" @@ -23686,7 +24001,7 @@ msgstr "当å‰ç‰ˆæœ¬" msgid "" "The revision being displayed for this article. If you need to do a roll-" "back, simply change the value of this field." -msgstr "æ˜¾ç¤ºè¯¥æ–‡æ¡£çš„å¯¹åº”ç‰ˆæœ¬ã€‚å¦‚æžœä½ éœ€è¦å›žæ»šåˆ°åŽ†å²ç‰ˆæœ¬ï¼Œè¯·ä¿®æ”¹ç©ºæ ¼é‡Œçš„值。" +msgstr "显示该文档的对应版本。如果您需è¦å›žæ»šåˆ°åŽ†å²ç‰ˆæœ¬ï¼Œè¯·ä¿®æ”¹ç©ºæ ¼é‡Œçš„值。" #: wiki/models/article.py msgid "modified" @@ -23804,7 +24119,7 @@ msgstr "一个æ’件被å˜æ›´" msgid "" "The revision being displayed for this plugin.If you need to do a roll-back, " "simply change the value of this field." -msgstr "显示æ’件修订版本信æ¯ã€‚å¦‚æžœä½ éœ€è¦å›žæ»šåˆ°åŽ†å²ç‰ˆæœ¬ï¼Œè¯·ä¿®æ”¹æ¤å¤„的值。" +msgstr "显示æ’件修订版本信æ¯ã€‚如果您需è¦å›žæ»šåˆ°åŽ†å²ç‰ˆæœ¬ï¼Œè¯·ä¿®æ”¹æ¤å¤„的值。" #: wiki/models/urlpath.py msgid "Cache lookup value for articles" @@ -23828,7 +24143,7 @@ msgstr "URL路径" #: wiki/models/urlpath.py msgid "Sorry but you cannot have a root article with a slug." -msgstr "抱æ‰ï¼Œä½ æ— æ³•å¯¹æ ¹æ–‡æ¡£è®¾ç½®å›ºå®šé“¾æŽ¥åœ°å€ã€‚" +msgstr "抱æ‰ï¼Œæ‚¨æ— æ³•å¯¹æ ¹æ–‡æ¡£è®¾ç½®å›ºå®šé“¾æŽ¥åœ°å€ã€‚" #: wiki/models/urlpath.py msgid "A non-root note must always have a slug." @@ -23849,7 +24164,7 @@ msgstr "" "丢失父链接的文档\n" "===============================\n" "\n" -"该å文档的父链接已ç»è¢«åˆ é™¤ã€‚ä½ å¯ä»¥å¯ä»¥é‡æ–°ä¸ºä»–们寻找一个新的链接点。" +"该å文档的父链接已ç»è¢«åˆ 除。您å¯ä»¥é‡æ–°ä¸ºä»–们寻找一个新的链接点。" #: wiki/models/urlpath.py msgid "Lost and found" @@ -23905,13 +24220,13 @@ msgstr "%så·²ç»æˆåŠŸæ·»åŠ 。" #: wiki/plugins/attachments/views.py #, python-format msgid "Your file could not be saved: %s" -msgstr "ä½ çš„æ–‡ä»¶æ— æ³•è¢«ä¿å˜ï¼š%s" +msgstr "æ‚¨çš„æ–‡ä»¶æ— æ³•è¢«ä¿å˜ï¼š%s" #: wiki/plugins/attachments/views.py msgid "" "Your file could not be saved, probably because of a permission error on the " "web server." -msgstr "ä½ çš„æ–‡ä»¶æ— æ³•è¢«ä¿å˜ï¼Œå¯èƒ½æ˜¯ç”±äºŽæˆ–者WebæœåŠ¡å™¨çš„æƒé™å¼‚常。" +msgstr "æ‚¨çš„æ–‡ä»¶æ— æ³•è¢«ä¿å˜ï¼Œå¯èƒ½æ˜¯ç”±äºŽæˆ–者WebæœåŠ¡å™¨çš„æƒé™å¼‚常。" #: wiki/plugins/attachments/views.py #, python-format @@ -23922,7 +24237,7 @@ msgstr "%sä¸Šä¼ æˆåŠŸå¹¶è¦†ç›–原有附件。" msgid "" "Your new file will automatically be renamed to match the file already " "present. Files with different extensions are not allowed." -msgstr "ä½ çš„æ–°æ–‡ä»¶å°†è¢«è‡ªåŠ¨é‡å‘½å以匹é…å·²ç»å˜åœ¨çš„文件。ä¸å…许使用ä¸åŒçš„文件扩展å。" +msgstr "您的新文件将被自动é‡å‘½å以匹é…å·²ç»å˜åœ¨çš„文件。ä¸å…许使用ä¸åŒçš„文件扩展å。" #: wiki/plugins/attachments/views.py #, python-format @@ -24298,11 +24613,11 @@ msgstr "接收关于该文档编辑的电å邮件" #: wiki/plugins/notifications/forms.py msgid "Your notification settings were updated." -msgstr "ä½ çš„é€šçŸ¥è®¾ç½®å·²ç»æ›´æ–°ã€‚" +msgstr "您的通知设置已ç»æ›´æ–°ã€‚" #: wiki/plugins/notifications/forms.py msgid "Your notification settings were unchanged, so nothing saved." -msgstr "ä½ çš„é€šçŸ¥è®¾ç½®æ²¡æœ‰å˜æ›´ï¼Œå› æ¤æ— 需ä¿å˜ã€‚" +msgstr "您的通知设置没有å˜æ›´ï¼Œå› æ¤æ— 需ä¿å˜ã€‚" #: wiki/plugins/notifications/models.py #, python-format @@ -24514,7 +24829,7 @@ msgstr "已解é”" #: wiki/views/accounts.py msgid "You are now sign up... and now you can sign in!" -msgstr "您æ£åœ¨æ³¨å†Œâ€¦â€¦çŽ°åœ¨ä½ å¯ä»¥ç™»å½•äº†ï¼" +msgstr "您æ£åœ¨æ³¨å†Œâ€¦â€¦çŽ°åœ¨æ‚¨å¯ä»¥ç™»å½•äº†ï¼" #: wiki/views/accounts.py msgid "You are no longer logged in. Bye bye!" @@ -24593,3 +24908,25 @@ msgid "" "A new revision was created: Merge between Revision #%(r1)d and Revision " "#%(r2)d" msgstr "产生新的修订版本:åˆå¹¶ä¿®è®¢ç‰ˆæœ¬#%(r1)d与#%(r2)d" + +#: edx_proctoring_proctortrack/backends/proctortrack_rest.py +msgid "" +"Click on the \"Start System Check\" link below to download and run the " +"proctoring software." +msgstr "点击下é¢çš„“å¯åŠ¨ç³»ç»Ÿæ£€æŸ¥â€é“¾æŽ¥ä¸‹è½½å¹¶è¿è¡Œç›‘控软件。" + +#: edx_proctoring_proctortrack/backends/proctortrack_rest.py +msgid "" +"Once you have verified your identity and reviewed the exam guidelines in " +"Proctortrack, you will be redirected back to this page." +msgstr "一旦您验è¯äº†è‡ªå·±çš„身份并查看了Proctortrackä¸çš„考试指å—,您将被é‡å®šå‘回到æ¤é¡µé¢ã€‚" + +#: edx_proctoring_proctortrack/backends/proctortrack_rest.py +msgid "" +"To confirm that proctoring has started, make sure your webcam feed and the " +"blue Proctortrack box are both visible on your screen." +msgstr "è¦ç¡®è®¤å·²å¼€å§‹ç›‘控,请确ä¿æ‚¨çš„网络摄åƒå¤´æºå’Œè“色的Proctortrack框都在å±å¹•ä¸Šå¯è§ã€‚" + +#: edx_proctoring_proctortrack/backends/proctortrack_rest.py +msgid "Click on the \"Start Proctored Exam\" button below to continue." +msgstr "点击下方的“开始监考考试â€æŒ‰é’®ç»§ç»" diff --git a/conf/locale/zh_CN/LC_MESSAGES/djangojs.mo b/conf/locale/zh_CN/LC_MESSAGES/djangojs.mo index 1d8fbbf7b1e42a1b2b3ba0ddc988d6a2084a39e0..f5a33144e2a4bd0a6c7eba99c8d576cc39f21867 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 666f4086ab79e1812772edc3dc42d507e2f7b1a8..9e6c1f8e81fe1005845a1cc4fe4a1aa36265e61f 100644 --- a/conf/locale/zh_CN/LC_MESSAGES/djangojs.po +++ b/conf/locale/zh_CN/LC_MESSAGES/djangojs.po @@ -23,7 +23,7 @@ # focusheart <focusheart@gmail.com>, 2014,2017 # freakylemon <freakylemon@ymail.com>, 2014 # freakylemon <freakylemon@ymail.com>, 2014 -# ckyOL, 2015 +# 1c836b125659bc943ac07aaf233cadb5, 2015 # GoodLuck <1833447072@qq.com>, 2014 # Wentao Han <wentao.han@gmail.com>, 2013 # Harry Li <harry75369@gmail.com>, 2014 @@ -31,7 +31,7 @@ # hohomi <hohomi@gmail.com>, 2014,2016 # bnw, 2014 # HYY <wingyin.wong@outlook.com>, 2019 -# ifLab <webmaster@iflab.org>, 2018 +# ifLab <webmaster@iflab.org>, 2018-2019 # Jerome Huang <canni3269@gmail.com>, 2014 # jg Ma <jg20040308@126.com>, 2016 # Jianfei Wang <me@thinxer.com>, 2013 @@ -43,6 +43,7 @@ # liuxing3169 <liuxing3169@gmail.com>, 2018 # 刘洋 <liuyang2011@tsinghua.edu.cn>, 2013 # Luyi Zheng <luyi.zheng@mail.mcgill.ca>, 2016 +# Muhammad Adeel Khan <adeel@edx.org>, 2019 # pku9104038 <pku9104038@hotmail.com>, 2014 # pku9104038 <pku9104038@hotmail.com>, 2014 # ranfish <ranfish@gmail.com>, 2015 @@ -141,6 +142,17 @@ # ç†Šå†¬å‡ <xdsnet@gmail.com>, 2013 # 竹轩 <fmyzjs@gmail.com>, 2014 # 肖寒 <bookman@vip.163.com>, 2013 +# #-#-#-#-# djangojs-account-settings-view.po (0.1a) #-#-#-#-# +# edX community translations have been downloaded from Chinese (China) (https://www.transifex.com/open-edx/teams/6205/zh_CN/). +# Copyright (C) 2019 EdX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# EdX Team <info@edx.org>, 2019. +# +# Translators: +# jsgang <jsgang9@gmail.com>, 2019 +# abby li <yc.li@eliteu.cn>, 2019 +# ifLab <webmaster@iflab.org>, 2019 +# # #-#-#-#-# underscore.po (edx-platform) #-#-#-#-# # edX community translations have been downloaded from Chinese (China) (http://www.transifex.com/open-edx/edx-platform/language/zh_CN/) # Copyright (C) 2019 edX @@ -153,7 +165,7 @@ # Bill <power_free@126.com>, 2015 # Changyue Wang <peterwang.dut@gmail.com>, 2015 # CharlotteDing <kikyoru@hotmail.com>, 2015 -# ifLab <webmaster@iflab.org>, 2018 +# ifLab <webmaster@iflab.org>, 2018-2019 # jg Ma <jg20040308@126.com>, 2016 # jsgang <jsgang9@gmail.com>, 2014-2016,2018 # Jun Hao Lin <xuxiao15994219982@gmail.com>, 2015 @@ -172,6 +184,7 @@ # å¼ é€¸æ¶µ <jeanzhang970128@gmail.com>, 2014 # å¾® æŽ <w.li@eliteu.com.cn>, 2018 # æˆç¾½ä¸° <onetwogoo@gmail.com>, 2015 +# æ–¹ 明旗 <mingflag@outlook.com>, 2019 # 汤和果 <hgtang93@163.com>, 2015 # èƒ¡è¶…å¨ <chadennishu@gmail.com>, 2014 # #-#-#-#-# underscore-studio.po (edx-platform) #-#-#-#-# @@ -187,7 +200,7 @@ # Dustin Yu <dustintt123@hotmail.com>, 2015 # focusheart <focusheart@gmail.com>, 2017 # GoodLuck <1833447072@qq.com>, 2014 -# ifLab <webmaster@iflab.org>, 2018 +# ifLab <webmaster@iflab.org>, 2018-2019 # Jiazhen Tan <jessie12@live.cn>, 2016 # jsgang <jsgang9@gmail.com>, 2015-2017 # LIU NIAN <lauraqq@gmail.com>, 2015 @@ -203,16 +216,16 @@ # Yu <inactive+harrycaoyu@transifex.com>, 2015 # Yu <inactive+harrycaoyu@transifex.com>, 2015 # å˜‰æ° æŽ <jj.li@eliteu.com.cn>, 2018 -# 大芳 刘 <liuxiaolinfk@gmail.com>, 2016 +# 刘啸林 <liuxiaolinfk@gmail.com>, 2016 # ç™¾æ° é™ˆ <bj.chen@eliteu.com.cn>, 2018 # 竹轩 <fmyzjs@gmail.com>, 2014 msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2019-02-17 20:42+0000\n" -"PO-Revision-Date: 2019-02-10 20:45+0000\n" -"Last-Translator: edx_transifex_bot <i18n-working-group+edx-transifex-bot@edx.org>\n" +"POT-Creation-Date: 2019-06-09 20:42+0000\n" +"PO-Revision-Date: 2019-04-27 06:57+0000\n" +"Last-Translator: ifLab <webmaster@iflab.org>\n" "Language-Team: Chinese (China) (http://www.transifex.com/open-edx/edx-platform/language/zh_CN/)\n" "Language: zh_CN\n" "MIME-Version: 1.0\n" @@ -262,7 +275,6 @@ msgstr "åˆ é™¤" #. #-#-#-#-# djangojs-partial.po (edx-platform) #-#-#-#-# #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: cms/static/js/certificates/views/signatory_editor.js #: cms/static/js/views/asset.js cms/static/js/views/course_info_update.js #: cms/static/js/views/export.js cms/static/js/views/manage_users_and_roles.js @@ -273,6 +285,7 @@ msgstr "åˆ é™¤" #: common/lib/xmodule/xmodule/js/src/html/edit.js #: common/static/common/js/components/utils/view_utils.js #: lms/static/js/Markdown.Editor.js +#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx #: cms/templates/js/add-xblock-component-menu-problem.underscore #: cms/templates/js/add-xblock-component-menu.underscore #: cms/templates/js/certificate-editor.underscore @@ -295,6 +308,7 @@ msgstr "åˆ é™¤" msgid "Cancel" msgstr "å–消" +#. Translators: This is the status of an active video upload #: cms/static/js/models/active_video_upload.js cms/static/js/views/assets.js #: cms/static/js/views/video_thumbnail.js lms/static/js/views/image_field.js msgid "Uploading" @@ -303,7 +317,6 @@ msgstr "ä¸Šä¼ ä¸" #. #-#-#-#-# djangojs-partial.po (edx-platform) #-#-#-#-# #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: cms/static/js/views/active_video_upload.js #: cms/static/js/views/modals/edit_xblock.js #: cms/static/js/views/video_transcripts.js @@ -321,7 +334,6 @@ msgstr "å…³é—" #. #-#-#-#-# djangojs-partial.po (edx-platform) #-#-#-#-# #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: cms/static/js/views/assets.js #: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/asset-library.underscore @@ -340,7 +352,6 @@ msgstr "选择文件" #. #-#-#-#-# djangojs-partial.po (edx-platform) #-#-#-#-# #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: cms/static/js/views/course_info_update.js cms/static/js/views/tabs.js #: common/lib/xmodule/xmodule/js/src/html/edit.js #: lms/static/js/Markdown.Editor.js @@ -352,7 +363,6 @@ msgstr "是的" #. #-#-#-#-# djangojs-partial.po (edx-platform) #-#-#-#-# #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: cms/static/js/views/course_video_settings.js #: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/timed-examination-preference-editor.underscore @@ -372,7 +382,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/js/views/manage_users_and_roles.js #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Ok" @@ -395,7 +404,6 @@ msgstr "ä¸Šä¼ æ–‡ä»¶" #. #-#-#-#-# djangojs-partial.po (edx-platform) #-#-#-#-# #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: cms/static/js/views/modals/base_modal.js #: cms/static/js/views/modals/course_outline_modals.js #: common/lib/xmodule/xmodule/js/src/html/edit.js @@ -417,7 +425,6 @@ msgstr "ä¿å˜" #. #-#-#-#-# djangojs-partial.po (edx-platform) #-#-#-#-# #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: cms/static/js/views/modals/course_outline_modals.js #: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/add-xblock-component-menu-problem.underscore @@ -437,6 +444,9 @@ msgstr "移除ä¸" msgid "Your changes have been saved." msgstr "您所作的å˜æ›´å·²ä¿å˜ã€‚" +#. Translators: This message will be added to the front of messages of type +#. error, +#. e.g. "Error: required field is missing". #: cms/static/js/views/xblock_validation.js #: common/static/common/js/discussion/utils.js #: common/static/common/js/discussion/views/discussion_inline_view.js @@ -500,31 +510,47 @@ msgstr "评注" msgid "Reply to Annotation" msgstr "回å¤æ‰¹æ³¨" +#. Translators: %(num_points)s is the number of points possible (examples: 1, +#. 3, 10).; #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "%(num_points)s point possible (graded, results hidden)" msgid_plural "%(num_points)s points possible (graded, results hidden)" msgstr[0] "%(num_points)s 满分 (计入æˆç»©ï¼Œéšè—ç”案)" +#. Translators: %(num_points)s is the number of points possible (examples: 1, +#. 3, 10).; #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "%(num_points)s point possible (ungraded, results hidden)" msgid_plural "%(num_points)s points possible (ungraded, results hidden)" msgstr[0] " %(num_points)s满分 (ä¸è®¡å…¥æˆç»©ï¼Œéšè—ç”案)" +#. Translators: %(num_points)s is the number of points possible (examples: 1, +#. 3, 10).; #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "%(num_points)s point possible (graded)" msgid_plural "%(num_points)s points possible (graded)" msgstr[0] "%(num_points)s 满分 (计入æˆç»©)" +#. Translators: %(num_points)s is the number of points possible (examples: 1, +#. 3, 10).; #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "%(num_points)s point possible (ungraded)" msgid_plural "%(num_points)s points possible (ungraded)" msgstr[0] "%(num_points)s满分(ä¸è®¡å…¥æˆç»©ï¼‰" +#. Translators: %(earned)s is the number of points earned. %(possible)s is the +#. total number of points (examples: 0/1, 1/1, 2/3, 5/10). The total number of +#. points will always be at least 1. We pluralize based on the total number of +#. points (example: 0/1 point; 1/2 points); #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "%(earned)s/%(possible)s point (graded)" msgid_plural "%(earned)s/%(possible)s points (graded)" msgstr[0] "%(earned)s/%(possible)s得分 (计入æˆç»©)" +#. Translators: %(earned)s is the number of points earned. %(possible)s is the +#. total number of points (examples: 0/1, 1/1, 2/3, 5/10). The total number of +#. points will always be at least 1. We pluralize based on the total number of +#. points (example: 0/1 point; 1/2 points); #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "%(earned)s/%(possible)s point (ungraded)" msgid_plural "%(earned)s/%(possible)s points (ungraded)" @@ -561,6 +587,8 @@ msgstr "您没有æ交需è¦çš„文件:{requiredFiles}。" msgid "You did not select any files to submit." msgstr "您未选择任何è¦ä¸Šä¼ 的文件。" +#. Translators: This is only translated to allow for reordering of label and +#. associated status.; #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "{label}: {status}" msgstr "{label}: {status}" @@ -575,7 +603,6 @@ msgstr "未æ交" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paragraph" msgstr "段è½" @@ -586,105 +613,90 @@ msgstr "é¢„è®¾æ ¼å¼" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 3" msgstr "æ ‡é¢˜ 3" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 4" msgstr "æ ‡é¢˜ 4" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 5" msgstr "æ ‡é¢˜ 5" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 6" msgstr "æ ‡é¢˜ 6" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Add to Dictionary" msgstr "åŠ å…¥åˆ°å—å…¸" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Align center" msgstr "å±…ä¸å¯¹é½" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Align left" msgstr "左对é½" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Align right" msgstr "å³å¯¹é½" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Alignment" msgstr "对é½" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Alternative source" msgstr "备用æº" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Anchor" msgstr "锚点" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Anchors" msgstr "锚点" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Author" msgstr "作者" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Background color" msgstr "背景颜色" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js #: lms/static/js/Markdown.Editor.js msgid "Blockquote" @@ -692,122 +704,104 @@ msgstr "引用" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Blocks" msgstr "å—" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Body" msgstr "主体" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Bold" msgstr "粗体" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Border color" msgstr "边框色" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Border" msgstr "边框" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Bottom" msgstr "底端" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Bullet list" msgstr "项目符å·åˆ—表" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Caption" msgstr "æ ‡é¢˜" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Cell padding" msgstr "å•å…ƒæ ¼è¾¹è·" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Cell properties" msgstr "å•å…ƒæ ¼å±žæ€§" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Cell spacing" msgstr "å•å…ƒæ ¼é—´è·" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Cell type" msgstr "å•å…ƒæ ¼ç±»åž‹" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Cell" msgstr "å•å…ƒæ ¼" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Center" msgstr "å±…ä¸å¯¹é½" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Circle" msgstr "空心圆" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Clear formatting" msgstr "æ¸…é™¤æ ¼å¼" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #. Translators: this is a toolbar button tooltip from the raw HTML editor #. displayed in the browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Code block" msgstr "代ç å—" @@ -815,7 +809,6 @@ msgstr "代ç å—" #. #-#-#-#-# djangojs-partial.po (edx-platform) #-#-#-#-# #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js #: lms/templates/instructor/instructor_dashboard_2/enrollment-code-lookup-links.underscore msgid "Code" @@ -823,119 +816,102 @@ msgstr "代ç " #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Color" msgstr "颜色" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Cols" msgstr "列" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Column group" msgstr "列组" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Column" msgstr "列" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Constrain proportions" msgstr "ä¿æŒçºµæ¨ªæ¯”" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Copy row" msgstr "å¤åˆ¶è¡Œ" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Copy" msgstr "å¤åˆ¶" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Could not find the specified string." msgstr "æ— æ³•æ‰¾åˆ°æŒ‡å®šçš„å—符串。" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Custom color" msgstr "自定义颜色" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Custom..." msgstr "自定义…" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Cut row" msgstr "剪切行" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Cut" msgstr "剪切" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Decrease indent" msgstr "å‡å°‘缩进" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Default" msgstr "默认" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Delete column" msgstr "åˆ é™¤åˆ—" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Delete row" msgstr "åˆ é™¤è¡Œ" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Delete table" msgstr "åˆ é™¤è¡¨æ ¼" @@ -943,7 +919,6 @@ msgstr "åˆ é™¤è¡¨æ ¼" #. #-#-#-#-# djangojs-partial.po (edx-platform) #-#-#-#-# #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/certificate-editor.underscore #: cms/templates/js/group-configuration-editor.underscore @@ -954,35 +929,30 @@ msgstr "æè¿°" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Dimensions" msgstr "尺寸" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Disc" msgstr "实心圆" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Div" msgstr "Div æ ‡ç¾" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Document properties" msgstr "文档属性" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Edit HTML" msgstr "编辑 HTML" @@ -990,7 +960,6 @@ msgstr "编辑 HTML" #. #-#-#-#-# djangojs-partial.po (edx-platform) #-#-#-#-# #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/certificate-details.underscore #: cms/templates/js/course_info_handouts.underscore @@ -1006,98 +975,84 @@ msgstr "编辑" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Embed" msgstr "内嵌" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Emoticons" msgstr "表情" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Encoding" msgstr "ç¼–ç " #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "File" msgstr "文件" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Find and replace" msgstr "查找和替æ¢" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Find next" msgstr "查找下一个" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Find previous" msgstr "查找上一个" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Find" msgstr "查找" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Finish" msgstr "完æˆ" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Font Family" msgstr "å—体" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Font Sizes" msgstr "å—å·" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Footer" msgstr "脚注" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Format" msgstr "æ ¼å¼" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Formats" msgstr "æ ¼å¼" @@ -1105,7 +1060,6 @@ msgstr "æ ¼å¼" #. #-#-#-#-# djangojs-partial.po (edx-platform) #-#-#-#-# #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js #: common/static/common/templates/image-modal.underscore msgid "Fullscreen" @@ -1113,70 +1067,60 @@ msgstr "å…¨å±" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "General" msgstr "一般" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "H Align" msgstr "水平对é½" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Header 1" msgstr "æ ‡é¢˜ 1" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Header 2" msgstr "æ ‡é¢˜ 2" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Header 3" msgstr "æ ‡é¢˜ 3" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Header 4" msgstr "æ ‡é¢˜ 4" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Header 5" msgstr "æ ‡é¢˜ 5" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Header 6" msgstr "æ ‡é¢˜ 6" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Header cell" msgstr "表头å•å…ƒæ ¼" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "Header" @@ -1184,280 +1128,240 @@ msgstr "表头" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Headers" msgstr "æ ‡é¢˜" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 1" msgstr "æ ‡é¢˜ 1" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 2" msgstr "æ ‡é¢˜ 2" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Headings" msgstr "æ ‡é¢˜" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Height" msgstr "高度" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Horizontal line" msgstr "水平线" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Horizontal space" msgstr "水平间è·" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "HTML source code" msgstr "HTML æºä»£ç " #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Ignore all" msgstr "全部忽略" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Ignore" msgstr "忽略" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Image description" msgstr "图片æè¿°" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Increase indent" msgstr "å¢žåŠ ç¼©è¿›" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Inline" msgstr "对é½" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Insert column after" msgstr "在å³ä¾§æ’入列" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Insert column before" msgstr "在左侧æ’入列" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Insert date/time" msgstr "æ’入日期ï¼æ—¶é—´" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Insert image" msgstr "æ’入图片" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Insert link" msgstr "æ’入链接" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Insert row after" msgstr "在下方æ’入行" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Insert row before" msgstr "在上方æ’入行" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Insert table" msgstr "æ’å…¥è¡¨æ ¼" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Insert template" msgstr "æ’入模æ¿" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Insert video" msgstr "æ’入视频" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Insert" msgstr "æ’å…¥" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Insert/edit image" msgstr "æ’å…¥ï¼ç¼–辑图片" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Insert/edit link" msgstr "æ’å…¥ï¼ç¼–辑链接" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Insert/edit video" msgstr "æ’å…¥ï¼ç¼–辑视频" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Italic" msgstr "斜体" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Justify" msgstr "两端对é½" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Keywords" msgstr "关键å—" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Left to right" msgstr "从左å‘å³" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Left" msgstr "左对é½" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Lower Alpha" msgstr "å°å†™å—æ¯" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Lower Greek" msgstr "å°å†™å¸Œè…Šå—æ¯" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Lower Roman" msgstr "å°å†™ç½—马å—æ¯" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Match case" msgstr "匹é…大å°å†™" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Merge cells" msgstr "åˆå¹¶å•å…ƒæ ¼" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Middle" msgstr "ä¸é—´" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "New document" msgstr "新建文档" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "New window" msgstr "新建窗å£" @@ -1465,7 +1369,6 @@ msgstr "新建窗å£" #. #-#-#-#-# djangojs-partial.po (edx-platform) #-#-#-#-# #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/paging-header.underscore #: common/static/common/templates/components/paging-footer.underscore @@ -1475,42 +1378,36 @@ msgstr "下一个" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "No color" msgstr "æ— é¢œè‰²" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Nonbreaking space" msgstr "ä¸é—´æ–ç©ºæ ¼" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Numbered list" msgstr "ç¼–å·åˆ—表" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Page break" msgstr "分页符" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paste as text" msgstr "粘贴为文本" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "" "Paste is now in plain text mode. Contents will now be pasted as plain text " @@ -1519,49 +1416,42 @@ msgstr "当å‰ä¸ºçº¯æ–‡æœ¬ç²˜è´´æ¨¡å¼ï¼Œæ‰€æœ‰å†…容都将以纯文本形å¼ç²˜ #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paste row after" msgstr "在下方粘贴行" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paste row before" msgstr "在上方粘贴行" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paste your embed code below:" msgstr "将内嵌代ç 粘贴到下方:" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paste" msgstr "粘贴" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Poster" msgstr "å°é¢" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Pre" msgstr "Pre æ ‡ç¾" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Prev" msgstr "上一个" @@ -1569,7 +1459,6 @@ msgstr "上一个" #. #-#-#-#-# djangojs-partial.po (edx-platform) #-#-#-#-# #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js lms/static/js/customwmd.js #: cms/templates/js/asset-library.underscore msgid "Preview" @@ -1577,35 +1466,30 @@ msgstr "预览" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Print" msgstr "打å°" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Redo" msgstr "é‡åš" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Remove link" msgstr "移除链接" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Replace all" msgstr "全部替æ¢" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Replace with" msgstr "替æ¢ä¸º" @@ -1613,7 +1497,6 @@ msgstr "替æ¢ä¸º" #. #-#-#-#-# djangojs-partial.po (edx-platform) #-#-#-#-# #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/metadata-file-uploader-item.underscore #: cms/templates/js/video-transcripts.underscore @@ -1623,14 +1506,12 @@ msgstr "替æ¢" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Restore last draft" msgstr "æ¢å¤ä¸Šä¸€ç‰ˆè‰ç¨¿" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "" "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press " @@ -1639,210 +1520,180 @@ msgstr "RTF富文本区域。按 ALT-F9 打开èœå•ï¼ŒæŒ‰ ALT-F10 打开工具 #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Right to left" msgstr "从å³å‘å·¦" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Right" msgstr "å³å¯¹é½" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Robots" msgstr "机器人" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Row group" msgstr "行组" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Row properties" msgstr "行属性" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Row type" msgstr "行类型" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Row" msgstr "è¡Œ" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Rows" msgstr "è¡Œ" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Scope" msgstr "范围" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Select all" msgstr "全选" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Show blocks" msgstr "显示å—" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Show invisible characters" msgstr "显示ä¸å¯è§å—符" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Source code" msgstr "æºä»£ç " #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Source" msgstr "æº" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Special character" msgstr "特殊å—符" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Spellcheck" msgstr "拼写检查" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Split cell" msgstr "拆分å•å…ƒæ ¼" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Square" msgstr "æ£æ–¹å½¢" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Start search" msgstr "开始æœç´¢" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Strikethrough" msgstr "åˆ é™¤çº¿" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Style" msgstr "æ ·å¼" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Subscript" msgstr "ä¸‹æ ‡" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Superscript" msgstr "ä¸Šæ ‡" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Table properties" msgstr "è¡¨æ ¼å±žæ€§" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Table" msgstr "è¡¨æ ¼" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Target" msgstr "ç›®æ ‡" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Templates" msgstr "模æ¿" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Text color" msgstr "文本颜色" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Text to display" msgstr "è¦æ˜¾ç¤ºçš„æ–‡å—" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "" "The URL you entered seems to be an email address. Do you want to add the " @@ -1851,7 +1702,6 @@ msgstr "输入的 URL 似乎是一个邮箱地å€ï¼Œæ‚¨æƒ³åŠ 上必è¦çš„ mailto #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "" "The URL you entered seems to be an external link. Do you want to add the " @@ -1861,7 +1711,6 @@ msgstr "输入的 URL ä¼¼ä¹Žæ˜¯ä¸€ä¸ªå¤–éƒ¨é“¾æŽ¥ï¼Œæ‚¨æƒ³åŠ ä¸Šå¿…è¦çš„ http:/ #. #-#-#-#-# djangojs-partial.po (edx-platform) #-#-#-#-# #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/course-instructor-details.underscore #: cms/templates/js/signatory-details.underscore @@ -1872,63 +1721,54 @@ msgstr "æ ‡é¢˜" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Tools" msgstr "工具" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Top" msgstr "顶端" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Underline" msgstr "下划线" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Undo" msgstr "撤销" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Upper Alpha" msgstr "大写å—æ¯" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Upper Roman" msgstr "大写罗马å—æ¯" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Url" msgstr "URL" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "V Align" msgstr "垂直对é½" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Vertical space" msgstr "åž‚ç›´é—´è·" @@ -1936,7 +1776,6 @@ msgstr "åž‚ç›´é—´è·" #. #-#-#-#-# djangojs-partial.po (edx-platform) #-#-#-#-# #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js #: openedx/features/course_bookmarks/static/course_bookmarks/templates/bookmarks-list.underscore #: openedx/features/course_search/static/course_search/templates/course_search_item.underscore @@ -1946,42 +1785,36 @@ msgstr "视图" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Visual aids" msgstr "ç½‘æ ¼çº¿" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Whole words" msgstr "å…¨å—匹é…" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Width" msgstr "宽" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Words: {0}" msgstr "å—数: {0}" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "You have unsaved changes are you sure you want to navigate away?" msgstr "有未ä¿å˜çš„更改,确定è¦ç¦»å¼€å—?" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "" "Your browser doesn't support direct access to the clipboard. Please use the " @@ -1990,7 +1823,6 @@ msgstr "您的æµè§ˆå™¨ä¸æ”¯æŒç›´æŽ¥è®¿é—®å‰ªè´´æ¿ï¼Œè¯·ä½¿ç”¨å¿«æ·é”® Ctrl+ #. Translators: this is a toolbar button tooltip from the raw HTML editor #. displayed in the browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Insert/Edit Image" msgstr "æ’å…¥/编辑图片" @@ -2110,30 +1942,37 @@ msgstr "自动æ’放" msgid "Volume" msgstr "音é‡" +#. Translators: Volume level equals 0%. #: common/lib/xmodule/xmodule/js/src/video/00_i18n.js msgid "Muted" msgstr "é™éŸ³" +#. Translators: Volume level in range ]0,20]% #: common/lib/xmodule/xmodule/js/src/video/00_i18n.js msgid "Very low" msgstr "音é‡æœ€å°" +#. Translators: Volume level in range ]20,40]% #: common/lib/xmodule/xmodule/js/src/video/00_i18n.js msgid "Low" msgstr "音é‡è¾ƒå°" +#. Translators: Volume level in range ]40,60]% #: common/lib/xmodule/xmodule/js/src/video/00_i18n.js msgid "Average" msgstr "音é‡ä¸ç‰" +#. Translators: Volume level in range ]60,80]% #: common/lib/xmodule/xmodule/js/src/video/00_i18n.js msgid "Loud" msgstr "音é‡è¾ƒå¤§" +#. Translators: Volume level in range ]80,99]% #: common/lib/xmodule/xmodule/js/src/video/00_i18n.js msgid "Very loud" msgstr "音é‡æœ€å¤§" +#. Translators: Volume level equals 100%. #: common/lib/xmodule/xmodule/js/src/video/00_i18n.js msgid "Maximum" msgstr "最大数值" @@ -2280,6 +2119,18 @@ msgstr "å…³é—å—幕" msgid "View child items" msgstr "查看å类目" +#: common/static/common/js/components/BlockBrowser/components/BlockBrowser/BlockBrowser.jsx +msgid "Navigate up" +msgstr "å‘上导航" + +#: common/static/common/js/components/BlockBrowser/components/BlockBrowser/BlockBrowser.jsx +msgid "Browsing" +msgstr "æµè§ˆ" + +#: common/static/common/js/components/BlockBrowser/components/BlockBrowser/BlockBrowser.jsx +msgid "Select" +msgstr "选择" + #: common/static/common/js/components/utils/view_utils.js msgid "Required field." msgstr "å¿…å¡«å—段。" @@ -2553,11 +2404,13 @@ msgstr "在滑å—ä¸æ”¾ä¸‹" msgid "dropped on target" msgstr "åœ¨ç›®æ ‡ä¸Šæ”¾ä¸‹" +#. Translators: %s will be a time quantity, such as "4 minutes" or "1 day" #: common/static/js/src/jquery.timeago.locale.js #, javascript-format msgid "%s ago" msgstr "%s 以å‰" +#. Translators: %s will be a time quantity, such as "4 minutes" or "1 day" #: common/static/js/src/jquery.timeago.locale.js #, javascript-format msgid "%s from now" @@ -2672,6 +2525,10 @@ msgstr "æ·»åŠ é™„ä»¶" msgid "(Optional)" msgstr "(éžå¿…å¡«)" +#: lms/djangoapps/support/static/support/jsx/file_upload.jsx +msgid "Remove file" +msgstr "移除文件" + #: lms/djangoapps/support/static/support/jsx/logged_in_user.jsx msgid "Course Name" msgstr "课程å称" @@ -2680,10 +2537,23 @@ msgstr "课程å称" msgid "Not specific to a course" msgstr "ä¸é’ˆå¯¹ç‰¹å®šè¯¾ç¨‹" +#: lms/djangoapps/support/static/support/jsx/logged_in_user.jsx +msgid "What can we help you with, {username}?" +msgstr "亲爱的{username},有什么å¯ä»¥å¸®åŠ©æ‚¨ï¼Ÿ" + +#: lms/djangoapps/support/static/support/jsx/logged_in_user.jsx +#: lms/static/js/instructor_dashboard/util.js +msgid "Subject" +msgstr "æ ‡é¢˜" + #: lms/djangoapps/support/static/support/jsx/logged_in_user.jsx msgid "Details" msgstr "细节" +#: lms/djangoapps/support/static/support/jsx/logged_in_user.jsx +msgid "The more you tell us, the more quickly and helpfully we can respond!" +msgstr "您æ供的信æ¯è¶Šè¯¦ç»†ï¼Œæˆ‘们越能快速并有效地帮助到您ï¼" + #: lms/djangoapps/support/static/support/jsx/logged_in_user.jsx #: common/static/common/templates/discussion/new-post.underscore #: common/static/common/templates/discussion/thread-response.underscore @@ -2697,14 +2567,9 @@ msgid "Sign in to {platform} so we can help you better." msgstr "请登录{platform},以获得更好的帮助。" #: lms/djangoapps/support/static/support/jsx/logged_out_user.jsx -#: lms/templates/student_account/hinted_login.underscore -#: lms/templates/student_account/login.underscore -msgid "Sign in" -msgstr "登录" - -#: lms/djangoapps/support/static/support/jsx/logged_out_user.jsx -msgid "Create an {platform} account" -msgstr "创建{platform}è´¦å·" +msgid "" +"If you are unable to access your account contact us via email using {email}." +msgstr "å¦‚æžœæ‚¨æ— æ³•è®¿é—®è´¦å·ï¼Œè¯·é€šè¿‡ç”µå邮件è”系我们{email}。" #: lms/djangoapps/support/static/support/jsx/single_support_form.jsx msgid "" @@ -2720,10 +2585,19 @@ msgstr "输入您所需è¦çš„支æŒçš„主题。" msgid "Enter some details for your support request." msgstr "输入您所需è¦çš„支æŒçš„细节。" +#: lms/djangoapps/support/static/support/jsx/single_support_form.jsx +#: lms/djangoapps/support/static/support/jsx/success.jsx +msgid "Contact Us" +msgstr "è”系我们" + #: lms/djangoapps/support/static/support/jsx/single_support_form.jsx msgid "Find answers to the top questions asked by learners." msgstr "查看å¦å‘˜æœ€å¸¸é—®çš„问题åŠç”案。" +#: lms/djangoapps/support/static/support/jsx/single_support_form.jsx +msgid "Search the {platform} Help Center" +msgstr "在{platform}的帮助ä¸å¿ƒå¯»æ±‚帮助" + #: lms/djangoapps/support/static/support/jsx/success.jsx msgid "Go to my Dashboard" msgstr "å‰å¾€æˆ‘的课程é¢æ¿" @@ -2733,8 +2607,13 @@ msgid "Go to {platform} Home" msgstr "å‰å¾€{platform}主页" #: lms/djangoapps/support/static/support/jsx/success.jsx -msgid "Contact Us" -msgstr "è”系我们" +msgid "" +"Thank you for submitting a request! We will contact you within 24 hours." +msgstr "感谢您æ交的申请ï¼æˆ‘们会在24å°æ—¶å†…è”系您。" + +#: lms/djangoapps/support/static/support/jsx/upload_progress.jsx +msgid "Cancel upload" +msgstr "å–æ¶ˆä¸Šä¼ " #: lms/djangoapps/teams/static/teams/js/collections/team.js msgid "last activity" @@ -2748,6 +2627,8 @@ msgstr "开放的时段" msgid "name" msgstr "å称" +#. Translators: This refers to the number of teams (a count of how many teams +#. there are) #: lms/djangoapps/teams/static/teams/js/collections/topic.js msgid "team count" msgstr "团队计数" @@ -2841,10 +2722,14 @@ msgstr "移除æˆå‘˜æ—¶å‘生错误。请é‡è¯•ä¸€æ¬¡ã€‚" msgid "This team does not have any members." msgstr "本团队没有æˆå‘˜ã€‚" +#. Translators: 'date' is a placeholder for a fuzzy, relative timestamp (see: +#. https://github.com/rmm5t/jquery-timeago) #: lms/djangoapps/teams/static/teams/js/views/edit_team_members.js msgid "Joined %(date)s" msgstr "于 %(date)s åŠ å…¥" +#. Translators: 'date' is a placeholder for a fuzzy, relative timestamp (see: +#. https://github.com/rmm5t/jquery-timeago) #: lms/djangoapps/teams/static/teams/js/views/edit_team_members.js msgid "Last Activity %(date)s" msgstr "上一次活动在 %(date)s " @@ -2877,10 +2762,14 @@ msgstr "团队 \"{team}\" å·²æˆåŠŸåˆ 除。" msgid "You are not currently a member of any team." msgstr "您目å‰ä¸æ˜¯ä»»ä½•å›¢é˜Ÿä¸çš„一员。" +#. Translators: "and others" refers to fact that additional members of a team +#. exist that are not displayed. #: lms/djangoapps/teams/static/teams/js/views/team_card.js msgid "and others" msgstr "其他" +#. Translators: 'date' is a placeholder for a fuzzy, relative timestamp (see: +#. http://momentjs.com/) #: lms/djangoapps/teams/static/teams/js/views/team_card.js msgid "Last activity %(date)s" msgstr "上一次活动在 %(date)s " @@ -3034,6 +2923,14 @@ msgstr "主题" msgid "View Teams in the %(topic_name)s Topic" msgstr "查看 %(topic_name)s主题下的团队" +#. Translators: this string is shown at the bottom of the teams page +#. to find a team to join or else to create a new one. There are three +#. links that need to be included in the message: +#. 1. Browse teams in other topics +#. 2. search teams +#. 3. create a new team +#. Be careful to start each link with the appropriate start indicator +#. (e.g. {browse_span_start} for #1) and finish it with {span_end}. #: lms/djangoapps/teams/static/teams/js/views/topic_teams.js msgid "" "{browse_span_start}Browse teams in other topics{span_end} or " @@ -3117,6 +3014,7 @@ msgstr "URL" msgid "Please provide a valid URL." msgstr "请æ供一个有效的网å€ã€‚" +#. Translators: 'errorCount' is the number of errors found in the form. #: lms/static/js/Markdown.Editor.js msgid "%(errorCount)s error found in form." msgid_plural "%(errorCount)s errors found in form." @@ -3402,26 +3300,25 @@ msgstr "æ‚¨å°†æ— æ³•èŽ·å¾—å…¨é¢é€€æ¬¾ã€‚" #: lms/static/js/dashboard/legacy.js msgid "" -"Are you sure you want to unenroll from the purchased course %(courseName)s " -"(%(courseNumber)s)?" -msgstr "您确定è¦é€€é€‰å·²è´ä¹°è¯¾ç¨‹%(courseName)s(%(courseNumber)s)?" +"Are you sure you want to unenroll from the purchased course {courseName} " +"({courseNumber})?" +msgstr "您确定è¦é€€é€‰å·²è´ä¹°è¯¾ç¨‹{courseName} ({courseNumber} )?" #: lms/static/js/dashboard/legacy.js -msgid "" -"Are you sure you want to unenroll from %(courseName)s (%(courseNumber)s)?" -msgstr "您确定è¦é€€é€‰è¯¾ç¨‹%(courseName)s(%(courseNumber)s)?" +msgid "Are you sure you want to unenroll from {courseName} ({courseNumber})?" +msgstr "您确定è¦é€€é€‰è¯¾ç¨‹{courseName} ({courseNumber} )?" #: lms/static/js/dashboard/legacy.js msgid "" -"Are you sure you want to unenroll from the verified %(certNameLong)s track " -"of %(courseName)s (%(courseNumber)s)?" -msgstr "您确定è¦é€€é€‰å·²é€šè¿‡èº«ä»½è®¤è¯çš„课程%(certNameLong)sçš„%(courseName)s(%(courseNumber)s)?" +"Are you sure you want to unenroll from the verified {certNameLong} track of" +" {courseName} ({courseNumber})?" +msgstr "ä½ æ˜¯å¦ç¡®å®šè¦é€€å‡º{courseName}({courseNumber}) çš„å·²éªŒè¯ {certNameLong}路径?" #: lms/static/js/dashboard/legacy.js msgid "" -"Are you sure you want to unenroll from the verified %(certNameLong)s track " -"of %(courseName)s (%(courseNumber)s)?" -msgstr "您确定è¦é€€é€‰å·²ç»è¿‡èº«ä»½è®¤è¯çš„课程%(certNameLong)sçš„%(courseName)s(%(courseNumber)s)?" +"Are you sure you want to unenroll from the verified {certNameLong} track of " +"{courseName} ({courseNumber})?" +msgstr "ä½ æ˜¯å¦ç¡®å®šè¦é€€å‡º{courseName}({courseNumber}) çš„å·²éªŒè¯ {certNameLong}路径?" #: lms/static/js/dashboard/legacy.js msgid "" @@ -3563,10 +3460,21 @@ msgstr "未找到有关\"%(query_string)s\"的任何结果。请é‡æ–°æœç´¢ã€‚" msgid "Search Results" msgstr "æœç´¢ç»“æžœ" +#. Translators: this is a title shown before all Notes that have no associated +#. tags. It is put within +#. brackets to differentiate it from user-defined tags, but it should still be +#. translated. #: lms/static/js/edxnotes/views/tabs/tags.js msgid "[no tags]" msgstr "[æ— æ ‡ç¾]" +#. Translators: 'Tags' is the name of the view (noun) within the Student Notes +#. page that shows all +#. notes organized by the tags the student has associated with them (if any). +#. When defining a +#. note in the courseware, the student can choose to associate 1 or more tags +#. with the note +#. in order to group similar notes together and help with search. #: lms/static/js/edxnotes/views/tabs/tags.js msgid "Tags" msgstr "æ ‡ç¾" @@ -3913,6 +3821,7 @@ msgstr "所有账å·åˆ›å»ºæˆåŠŸã€‚" msgid "Error adding/removing users as beta testers." msgstr "æ·»åŠ ï¼åˆ 除beta测试用户出错。" +#. Translators: A list of users appears after this sentence; #: lms/static/js/instructor_dashboard/membership.js msgid "These users were successfully added as beta testers:" msgstr "这些用户已ç»æ·»åŠ 为beta测试者:" @@ -3923,14 +3832,17 @@ msgid "" "not yet activated:" msgstr "æ— æ³•å°†è¿™äº›ç”¨æˆ·è®¾ç½®ä¸ºBETAæµ‹è¯•å‘˜ï¼Œå› ä¸ºä»–ä»¬çš„è´¦å·æœªæ¿€æ´»ï¼š" +#. Translators: A list of users appears after this sentence; #: lms/static/js/instructor_dashboard/membership.js msgid "These users were successfully removed as beta testers:" msgstr "这些用户ä¸å†æ˜¯beta测试者:" +#. Translators: A list of users appears after this sentence; #: lms/static/js/instructor_dashboard/membership.js msgid "These users were not added as beta testers:" msgstr "è¿™äº›ç”¨æˆ·æœªæ·»åŠ ä¸ºbeta测试者:" +#. Translators: A list of users appears after this sentence; #: lms/static/js/instructor_dashboard/membership.js msgid "These users were not removed as beta testers:" msgstr "这些用户未从beta测试者ä¸åˆ 除:" @@ -3965,36 +3877,43 @@ msgstr "以下邮箱/用户åæ— æ•ˆï¼š" msgid "Successfully enrolled and sent email to the following users:" msgstr "以下用户已æˆåŠŸé€‰è¯¾ï¼Œå¹¶å‘他们å‘é€ç”µå邮件:" +#. Translators: A list of users appears after this sentence; #: lms/static/js/instructor_dashboard/membership.js msgid "Successfully enrolled the following users:" msgstr "以下用户已ç»æˆåŠŸé€‰è¯¾ï¼š" +#. Translators: A list of users appears after this sentence; #: lms/static/js/instructor_dashboard/membership.js msgid "" "Successfully sent enrollment emails to the following users. They will be " "allowed to enroll once they register:" msgstr "选课邮件已æˆåŠŸå‘é€è‡³ä»¥ä¸‹ç”¨æˆ·ï¼Œä»–们注册åŽå³å¯é€‰è¯¾ï¼š" +#. Translators: A list of users appears after this sentence; #: lms/static/js/instructor_dashboard/membership.js msgid "These users will be allowed to enroll once they register:" msgstr "这些用户一旦注册å³å¯é€‰è¯¾ï¼š" +#. Translators: A list of users appears after this sentence; #: lms/static/js/instructor_dashboard/membership.js msgid "" "Successfully sent enrollment emails to the following users. They will be " "enrolled once they register:" msgstr "选课邮件已æˆåŠŸå‘é€è‡³è¿™äº›ç”¨æˆ·ï¼Œä»–们注册åŽå³å·²é€‰è¯¾ï¼š" +#. Translators: A list of users appears after this sentence; #: lms/static/js/instructor_dashboard/membership.js msgid "These users will be enrolled once they register:" msgstr "这些用户注册åŽå³å·²é€‰è¯¾ï¼š" +#. Translators: A list of users appears after this sentence; #: lms/static/js/instructor_dashboard/membership.js msgid "" "Emails successfully sent. The following users are no longer enrolled in the " "course:" msgstr "邮件å‘é€æˆåŠŸï¼Œä»¥ä¸‹ç”¨æˆ·å·²ä¸å†é€‰ä¿®æœ¬è¯¾ç¨‹ï¼š" +#. Translators: A list of users appears after this sentence; #: lms/static/js/instructor_dashboard/membership.js msgid "The following users are no longer enrolled in the course:" msgstr "以下用户已ä¸å†é€‰ä¿®æœ¬è¯¾ç¨‹ï¼š" @@ -4275,63 +4194,54 @@ msgstr "å¯åŠ¨å¯¹é¢˜ç›®â€œ<%- problem_id %>â€é‡æ–°è¯„分的任务时出错。 #. Translators: a "Task" is a background process such as grading students or #. sending email -#. */ #: lms/static/js/instructor_dashboard/util.js msgid "Task Type" msgstr "任务类型" #. Translators: a "Task" is a background process such as grading students or #. sending email -#. */ #: lms/static/js/instructor_dashboard/util.js msgid "Task inputs" msgstr "任务输入" #. Translators: a "Task" is a background process such as grading students or #. sending email -#. */ #: lms/static/js/instructor_dashboard/util.js msgid "Task ID" msgstr "任务ID" #. Translators: a "Requester" is a username that requested a task such as #. sending email -#. */ #: lms/static/js/instructor_dashboard/util.js msgid "Requester" msgstr "请求者" #. Translators: A timestamp of when a task (eg, sending email) was submitted #. appears after this -#. */ #: lms/static/js/instructor_dashboard/util.js msgid "Submitted" msgstr "å·²æ交" #. Translators: The length of a task (eg, sending email) in seconds appears #. this -#. */ #: lms/static/js/instructor_dashboard/util.js msgid "Duration (sec)" msgstr "æŒç»æ—¶é—´(秒)" #. Translators: The state (eg, "In progress") of a task (eg, sending email) #. appears after this. -#. */ #: lms/static/js/instructor_dashboard/util.js msgid "State" msgstr "状æ€" #. Translators: a "Task" is a background process such as grading students or #. sending email -#. */ #: lms/static/js/instructor_dashboard/util.js msgid "Task Status" msgstr "任务状æ€" #. Translators: a "Task" is a background process such as grading students or #. sending email -#. */ #: lms/static/js/instructor_dashboard/util.js msgid "Task Progress" msgstr "任务进度" @@ -4342,10 +4252,6 @@ msgid "" " technical support if the problem persists." msgstr "获å–邮件å‘生错误,请ç¨åŽé‡è¯•ã€‚如问题æŒç»å‘生,请咨询技术支æŒã€‚" -#: lms/static/js/instructor_dashboard/util.js -msgid "Subject" -msgstr "æ ‡é¢˜" - #: lms/static/js/instructor_dashboard/util.js msgid "Sent By" msgstr "å‘é€äºº" @@ -4529,10 +4435,31 @@ msgstr "æˆåŠŸè¦†ç›–{user}的题目得分" msgid "Could not override problem score for {user}." msgstr "æ— æ³•è¦†ç›–{user}的题目得分。" +#: lms/static/js/student_account/components/PasswordResetConfirmation.jsx +msgid "Enter and confirm your new password." +msgstr "è¾“å…¥å¹¶ç¡®è®¤ä½ çš„æ–°å¯†ç 。" + #: lms/static/js/student_account/components/PasswordResetConfirmation.jsx msgid "New Password" msgstr "新密ç " +#: lms/static/js/student_account/components/PasswordResetConfirmation.jsx +msgid "Confirm Password" +msgstr "确认密ç " + +#: lms/static/js/student_account/components/PasswordResetConfirmation.jsx +msgid "Passwords do not match." +msgstr "密ç ä¸ä¸€è‡´ã€‚" + +#: lms/static/js/student_account/components/PasswordResetConfirmation.jsx +msgid "Reset My Password" +msgstr "é‡ç½®æˆ‘的密ç " + +#: lms/static/js/student_account/components/PasswordResetConfirmation.jsx +#: lms/static/js/student_account/views/account_settings_factory.js +msgid "Reset Your Password" +msgstr "é‡ç½®æ‚¨çš„密ç " + #: lms/static/js/student_account/components/PasswordResetInput.jsx msgid "Error: " msgstr "错误:" @@ -4575,6 +4502,13 @@ msgstr "" msgid "We’re sorry to see you go!" msgstr "很é—憾看到您è¦ç¦»å¼€ï¼" +#: lms/static/js/student_account/components/StudentAccountDeletion.jsx +msgid "" +"Please note: Deletion of your account and personal data is permanent and " +"cannot be undone. EdX will not be able to recover your account or the data " +"that is deleted." +msgstr "请注æ„ï¼šåˆ é™¤è´¦å·ä¸Žä¸ªäººæ•°æ®å°†æ— 法撤销。EdXæ— æ³•æ¢å¤æ‚¨å·²åˆ 除的账å·æˆ–æ•°æ®ã€‚" + #: lms/static/js/student_account/components/StudentAccountDeletion.jsx msgid "" "Once your account is deleted, you cannot use it to take courses on the edX " @@ -4620,12 +4554,27 @@ msgid "" "your account or the data that is deleted." msgstr "æ‚¨é€‰æ‹©äº†â€œåˆ é™¤æˆ‘çš„è´¦å·â€ï¼Œåˆ 除账å·ä¸Žä¸ªäººæ•°æ®å°†æ— 法撤销。EdXæ— æ³•æ¢å¤æ‚¨å·²åˆ 除的账å·æˆ–æ•°æ®ã€‚" +#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx +msgid "" +"If you proceed, you will be unable to use this account to take courses on " +"the edX app, edx.org, or any other site hosted by edX. This includes access " +"to edx.org from your employer’s or university’s system and access to private" +" sites offered by MIT Open Learning, Wharton Executive Education, and " +"Harvard Medical School." +msgstr "" +"如果您继ç»æ¤æ“ä½œï¼Œé‚£ä¹ˆæ‚¨å°†æ— æ³•åœ¨edX " +"Appã€edx.org或其他任何由edX托管的站点上å¦ä¹ è¯¾ç¨‹ï¼ŒåŒ…æ‹¬æ— æ³•ä»Žæ‚¨å…¬å¸æˆ–大å¦çš„系统访问edx.org,以åŠæ— 法访问麻çœç†å·¥å¦é™¢å¼€æ”¾å¦ä¹ ã€æ²ƒé¡¿å•†å¦é™¢å’Œå“ˆä½›åŒ»å¦é™¢æ供的ç§äººç½‘站。" + #: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx msgid "" "If you still wish to continue and delete your account, please enter your " "account password:" msgstr "如果您ä»ç„¶è¦åˆ 除账å·ï¼Œè¯·è¾“入您的账å·å¯†ç :" +#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx +msgid "Yes, Delete" +msgstr "æ˜¯çš„ï¼Œåˆ é™¤" + #: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx msgid "We're sorry to see you go! Your account will be deleted shortly." msgstr "很é—憾您è¦ç¦»å¼€ï¼æ‚¨çš„è´¦å·å°†å¾ˆå¿«è¢«åˆ 除。" @@ -4665,7 +4614,6 @@ msgstr "å‘生了一个错误。" #. Translators: This string is appended to optional field labels on the #. student login, registration, and #. profile forms. -#. */ #: lms/static/js/student_account/views/FormView.js msgid "(optional)" msgstr "(éžå¿…填)" @@ -4694,6 +4642,10 @@ msgid "" "spam folder.{paragraphEnd}{paragraphStart}If you need further assistance, " "{anchorStart}contact technical support{anchorEnd}.{paragraphEnd}" msgstr "" +"{paragraphStart}您输入了{boldStart} {email} {boldEnd}。 " +"如果æ¤ç”µå邮件地å€ä¸Žæ‚¨çš„{platform_name}å¸æˆ·ç›¸å…³è”,我们会å‘æ¤ç”µå邮件地å€å‘é€åŒ…å«å¯†ç æ¢å¤è¯´æ˜Žçš„邮件。{paragraphEnd} " +"{paragraphStart}如果您没有收到密ç é‡ç½®é‚®ä»¶ï¼Œè¯·ç¡®è®¤æ‚¨è¾“入了æ£ç¡®çš„电å邮件地å€ï¼Œæˆ–检查您的垃圾邮件文件夹。{paragraphEnd} " +"{paragraphStart}如果您需è¦è¿›ä¸€æ¥çš„帮助,{anchorStart}请è”系技术支æŒ{anchorEnd}。{paragraphEnd}" #: lms/static/js/student_account/views/LoginView.js msgid "" @@ -4749,13 +4701,13 @@ msgstr "æ¤é‚®ç®±ç”¨äºŽæŽ¥æ”¶æ¥è‡ª{platform_name}和课程团队的信æ¯ã€‚" #: lms/static/js/student_account/views/account_settings_factory.js msgid "Recovery Email Address" -msgstr "" +msgstr "验è¯é‚®ç®±åœ°å€" #: lms/static/js/student_account/views/account_settings_factory.js msgid "" "You may access your account with this address if single-sign on or access to" " your primary email is not available." -msgstr "" +msgstr "å¦‚æžœæ— æ³•ä½¿ç”¨å•ç‚¹ç™»å½•æˆ–访问您的主电å邮件,您å¯ä»¥ä½¿ç”¨æ¤åœ°å€è®¿é—®æ‚¨çš„å¸æˆ·ã€‚" #: lms/static/js/student_account/views/account_settings_factory.js #: openedx/features/learner_profile/static/learner_profile/js/learner_profile_factory.js @@ -4795,10 +4747,6 @@ msgstr "您在{platform_name}上的åå—,用户åæ— æ³•æ›´æ”¹ã€‚" msgid "Password" msgstr "密ç " -#: lms/static/js/student_account/views/account_settings_factory.js -msgid "Reset Your Password" -msgstr "é‡ç½®æ‚¨çš„密ç " - #: lms/static/js/student_account/views/account_settings_factory.js msgid "Check your email account for instructions to reset your password." msgstr "查看邮箱ä¸çš„é‡ç½®å¯†ç 指引。" @@ -4854,7 +4802,7 @@ msgstr "首选è¯è¨€" msgid "" "We've sent a confirmation message to {new_secondary_email_address}. Click " "the link in the message to update your secondary email address." -msgstr "" +msgstr "我们已å‘{new_secondary_email_address}å‘é€äº†ç¡®è®¤æ¶ˆæ¯ã€‚ 点击邮件ä¸çš„链接以更新辅助电å邮件地å€ã€‚" #: lms/static/js/student_account/views/account_settings_factory.js msgid "Social Media Links" @@ -4971,26 +4919,6 @@ msgstr "å…³è”ä¸" msgid "Successfully unlinked." msgstr "解绑æˆåŠŸã€‚" -#: lms/static/js/student_account/views/account_settings_view.js -msgid "Account Information" -msgstr "è´¦å·ä¿¡æ¯" - -#: lms/static/js/student_account/views/account_settings_view.js -msgid "Order History" -msgstr "订å•è®°å½•" - -#: lms/static/js/student_account/views/account_settings_view.js -msgid "" -"You have set your language to {beta_language}, which is currently not fully " -"translated. You can help us translate this language fully by joining the " -"Transifex community and adding translations from English for learners that " -"speak {beta_language}." -msgstr "" - -#: lms/static/js/student_account/views/account_settings_view.js -msgid "Help Translate into {beta_language}" -msgstr "" - #: lms/static/js/verify_student/views/image_input_view.js msgid "Image Upload Error" msgstr "å›¾ç‰‡ä¸Šä¼ é”™è¯¯" @@ -5033,6 +4961,8 @@ msgstr "付款" msgid "Checkout with PayPal" msgstr "使用PayPal付款" +#. Translators: 'processor' is the name of a third-party payment processing +#. vendor (example: "PayPal") #: lms/static/js/verify_student/views/make_payment_step_view.js msgid "Checkout with {processor}" msgstr "使用{processor}付款" @@ -5229,10 +5159,12 @@ msgstr "您已æˆåŠŸæ›´æ–°ç›®æ ‡ã€‚" msgid "There was an error updating your goal." msgstr "æ›´æ–°ç›®æ ‡æ—¶å‡ºé”™ã€‚" +#: openedx/features/course_experience/static/course_experience/js/CourseOutline.js #: lms/templates/ccx/schedule.underscore msgid "Expand All" msgstr "展开全部" +#: openedx/features/course_experience/static/course_experience/js/CourseOutline.js #: lms/templates/ccx/schedule.underscore msgid "Collapse All" msgstr "折å 全部" @@ -5370,6 +5302,8 @@ msgstr "æ¤è¯ä¹¦å·²è¢«æ¿€æ´»ä¸”æ£åœ¨ä½¿ç”¨ä¸ã€‚确定è¦ç»§ç»ç¼–辑?" msgid "Yes, allow edits to the active Certificate" msgstr "是的,å…许编辑激活的è¯ä¹¦" +#. Translators: This field pertains to the custom label for a certificate. +#. Translators: this refers to a collection of certificates. #: cms/static/js/certificates/views/certificate_item.js #: cms/static/js/certificates/views/certificates_list.js msgid "certificate" @@ -5379,6 +5313,8 @@ msgstr "è¯ä¹¦" msgid "Set up your certificate" msgstr "设置您的è¯ä¹¦" +#. Translators: This line refers to the initial state of the form when no data +#. has been inserted #: cms/static/js/certificates/views/certificates_list.js msgid "You have not created any certificates yet." msgstr "您尚未创建任何è¯ä¹¦ã€‚" @@ -5415,7 +5351,6 @@ msgstr "%s组" #. Translators: Dictionary used for creation ids that are used in #. default group names. For example: A, B, AA in Group A, #. Group B, ..., Group AA, etc. -#. */ #: cms/static/js/collections/group.js msgid "ABCDEFGHIJKLMNOPQRSTUVWXYZ" msgstr "ABCDEFGHIJKLMNOPQRSTUVWXYZ" @@ -5516,26 +5451,48 @@ msgstr "导入课程时出错" msgid "There was an error with the upload" msgstr "æ–‡ä»¶ä¸Šä¼ é”™è¯¯" +#: cms/static/js/features_jsx/studio/CourseOrLibraryListing.jsx +msgid "Organization:" +msgstr "机构:" + #: cms/static/js/features_jsx/studio/CourseOrLibraryListing.jsx msgid "Course Number:" msgstr "课程编å·ï¼š" +#: cms/static/js/features_jsx/studio/CourseOrLibraryListing.jsx +msgid "Course Run:" +msgstr "课程长度:" + #: cms/static/js/features_jsx/studio/CourseOrLibraryListing.jsx msgid "(Read-only)" msgstr "(åªè¯»ï¼‰" +#: cms/static/js/features_jsx/studio/CourseOrLibraryListing.jsx +msgid "Re-run Course" +msgstr "é‡å¯è¯¾ç¨‹" + +#: cms/static/js/features_jsx/studio/CourseOrLibraryListing.jsx +#: cms/templates/js/show-textbook.underscore +msgid "View Live" +msgstr "查看线上版本" + #: cms/static/js/maintenance/force_publish_course.js msgid "Internal Server Error." msgstr "内部æœåŠ¡å™¨å‡ºé”™" +#. Translators: This is the status of a video upload that is queued +#. waiting for other uploads to complete #: cms/static/js/models/active_video_upload.js msgid "Queued" msgstr "已排队" +#. Translators: This is the status of a video upload that has +#. completed successfully #: cms/static/js/models/active_video_upload.js msgid "Upload completed" msgstr "ä¸Šä¼ å®Œæˆ" +#. Translators: This is the status of a video upload that has failed #: cms/static/js/models/active_video_upload.js msgid "Upload failed" msgstr "ä¸Šä¼ å¤±è´¥" @@ -5906,7 +5863,6 @@ msgstr "导出时å‘生了错误。" #. Translators: 'count' is number of groups that the group #. configuration contains. -#. */ #: cms/static/js/views/group_configuration_details.js msgid "Contains {count} group" msgid_plural "Contains {count} groups" @@ -5919,16 +5875,15 @@ msgstr "未使用" #. Translators: 'count' is number of units that the group #. configuration is used in. -#. */ #. Translators: 'count' is number of locations that the group #. configuration is used in. -#. */ #: cms/static/js/views/group_configuration_details.js #: cms/static/js/views/partition_group_details.js msgid "Used in {count} location" msgid_plural "Used in {count} locations" msgstr[0] "在 {count} 个ä½ç½®ä½¿ç”¨" +#. Translators: this refers to a collection of groups. #: cms/static/js/views/group_configuration_item.js #: cms/static/js/views/group_configurations_list.js msgid "group configuration" @@ -6013,10 +5968,12 @@ msgid "" " Derivatives\"." msgstr "在éµå®ˆä¸Žæœ¬ä½œå“一致的授æƒæ¡æ¬¾çš„å‰æ下,å…许他人å‘è¡Œè¡ç”Ÿä½œå“。该选项ä¸ç¬¦åˆâ€œç¦æ¢æ”¹ä½œâ€çš„规定" +#. Translators: "item_display_name" is the name of the item to be deleted. #: cms/static/js/views/list_item.js msgid "Delete this %(item_display_name)s?" msgstr "è¦åˆ 除该%(item_display_name)så—?" +#. Translators: "item_display_name" is the name of the item to be deleted. #: cms/static/js/views/list_item.js msgid "Deleting this %(item_display_name)s is permanent and cannot be undone." msgstr "å°†æ°¸ä¹…åˆ é™¤è¯¥%(item_display_name)sï¼Œæ— æ³•æ’¤é”€ã€‚" @@ -6109,6 +6066,7 @@ msgstr "基本" msgid "Visibility" msgstr "å¯è§æ€§" +#. Translators: "title" is the name of the current component being edited. #: cms/static/js/views/modals/edit_xblock.js msgid "Editing: {title}" msgstr "æ£åœ¨ç¼–辑:{title}" @@ -6185,6 +6143,8 @@ msgstr "课程大纲" msgid "Date added" msgstr "æ·»åŠ æ—¥æœŸ" +#. Translators: "title" is the name of the current component or unit being +#. edited. #: cms/static/js/views/pages/container.js msgid "Editing access for: %(title)s" msgstr "编辑接入:%(title)s " @@ -6253,6 +6213,9 @@ msgstr "éšè—预览" msgid "Show Previews" msgstr "显示预览" +#. Translators: sample result: +#. "Showing 0-9 out of 25 total, filtered by Images, sorted by Date Added +#. ascending" #: cms/static/js/views/paging_header.js msgid "" "Showing {currentItemRange} out of {totalItemsCount}, filtered by " @@ -6261,6 +6224,9 @@ msgstr "" "在 {totalItemsCount} 外显示 {currentItemRange} ,由 {assetType} 进行ç›é€‰ï¼Œå¹¶æ ¹æ® " "{sortName} å‡åºè¿›è¡Œåˆ†ç±»" +#. Translators: sample result: +#. "Showing 0-9 out of 25 total, filtered by Images, sorted by Date Added +#. descending" #: cms/static/js/views/paging_header.js msgid "" "Showing {currentItemRange} out of {totalItemsCount}, filtered by " @@ -6269,22 +6235,30 @@ msgstr "" "在 {totalItemsCount} 外显示 {currentItemRange},由 {assetType} 进行ç›é€‰ï¼Œå¹¶æ ¹æ® " "{sortName} é™åºè¿›è¡Œåˆ†ç±»" +#. Translators: sample result: +#. "Showing 0-9 out of 25 total, sorted by Date Added ascending" #: cms/static/js/views/paging_header.js msgid "" "Showing {currentItemRange} out of {totalItemsCount}, sorted by {sortName} " "ascending" msgstr "在 {totalItemsCount} ä¸æ˜¾ç¤º {currentItemRange},按 {sortName} å‡åºæŽ’åº" +#. Translators: sample result: +#. "Showing 0-9 out of 25 total, sorted by Date Added descending" #: cms/static/js/views/paging_header.js msgid "" "Showing {currentItemRange} out of {totalItemsCount}, sorted by {sortName} " "descending" msgstr "在 {totalItemsCount} 外显示 {currentItemRange}ï¼Œæ ¹æ® {sortName} é™åºè¿›è¡Œåˆ†ç±»" +#. Translators: turns into "25 total" to be used in other sentences, e.g. +#. "Showing 0-9 out of 25 total". #: cms/static/js/views/paging_header.js msgid "{totalItems} total" msgstr "å…±{totalItems} " +#. Translators: This refers to a content group that can be linked to a student +#. cohort. #: cms/static/js/views/partition_group_item.js #: cms/static/js/views/partition_group_list.js msgid "content group" @@ -6553,6 +6527,7 @@ msgstr "æ·»åŠ ç¼©ç•¥å›¾" msgid "Edit Thumbnail" msgstr "编辑缩略图" +#. Translators: This is a 2 part text which tells the image requirements. #: cms/static/js/views/video_thumbnail.js msgid "" "{InstructionsSpanStart}{videoImageResoultion}{lineBreak} " @@ -6565,6 +6540,7 @@ msgstr "" msgid "Image upload failed" msgstr "å›¾ç‰‡ä¸Šä¼ å¤±è´¥" +#. Translators: This is a 3 part text which tells the image requirements. #: cms/static/js/views/video_thumbnail.js msgid "" "{ReqTextSpanStart}Requirements{spanEnd}{lineBreak}{InstructionsSpanStart}{videoImageResoultion}{lineBreak}" @@ -6573,18 +6549,23 @@ msgstr "" "{ReqTextSpanStart}Requirements{spanEnd}{lineBreak}{InstructionsSpanStart}{videoImageResoultion}{lineBreak}" " {videoImageSupportedFileFormats}{spanEnd}" +#. Translators: message will be like 1280x720 pixels #: cms/static/js/views/video_thumbnail.js msgid "{maxWidth}x{maxHeight} pixels" msgstr "{maxWidth}x{maxHeight} åƒç´ " +#. Translators: message will be like Thumbnail for Arrow.mp4 #: cms/static/js/views/video_thumbnail.js msgid "Thumbnail for {videoName}" msgstr "{videoName} 缩略图" +#. Translators: message will be like Add Thumbnail - Arrow.mp4 #: cms/static/js/views/video_thumbnail.js msgid "Add Thumbnail - {videoName}" msgstr "æ·»åŠ {videoName} 缩略图" +#. Translators: humanizeDuration will be like 10 minutes, an hour and 20 +#. minutes etc #: cms/static/js/views/video_thumbnail.js msgid "Video duration is {humanizeDuration}" msgstr "视频时长 {humanizeDuration}" @@ -6597,6 +6578,7 @@ msgstr "分" msgid "minute" msgstr "分" +#. Translators: message will be like 15 minutes, 1 minute #: cms/static/js/views/video_thumbnail.js msgid "{minutes} {unit}" msgstr "{minutes} {unit}" @@ -6609,10 +6591,13 @@ msgstr "秒" msgid "second" msgstr "秒" +#. Translators: message will be like 20 seconds, 1 second #: cms/static/js/views/video_thumbnail.js msgid "{seconds} {unit}" msgstr "{seconds} {unit}" +#. Translators: `and` will be used to combine both miuntes and seconds like +#. `13 minutes and 45 seconds` #: cms/static/js/views/video_thumbnail.js msgid " and " msgstr "åŠ" @@ -6631,10 +6616,12 @@ msgid "" "{supportedFileFormats}." msgstr "æ¤å›¾ç‰‡æ–‡ä»¶ç±»åž‹ä¸æ”¯æŒã€‚ä»…æ”¯æŒ {supportedFileFormats} æ ¼å¼ã€‚" +#. Translators: maxFileSizeInMB will be like 2 MB. #: cms/static/js/views/video_thumbnail.js msgid "The selected image must be smaller than {maxFileSizeInMB}." msgstr "所选择的图片必须å°äºŽ {maxFileSizeInMB}。" +#. Translators: minFileSizeInKB will be like 2 KB. #: cms/static/js/views/video_thumbnail.js msgid "The selected image must be larger than {minFileSizeInKB}." msgstr "所选择的图片必须大于 {minFileSizeInKB}。" @@ -6689,6 +6676,9 @@ msgstr "设置" msgid "New {component_type}" msgstr "新建 {component_type}" +#. Translators: This message will be added to the front of messages of type +#. warning, +#. e.g. "Warning: this component has not been configured yet". #: cms/static/js/views/xblock_validation.js msgid "Warning" msgstr "è¦å‘Š" @@ -6697,6 +6687,28 @@ msgstr "è¦å‘Š" msgid "Updating Tags" msgstr "æ›´æ–°æ ‡ç¾ä¸" +#: lms/static/js/student_account/views/account_settings_view.js +msgid "Account Information" +msgstr "è´¦å·ä¿¡æ¯" + +#: lms/static/js/student_account/views/account_settings_view.js +msgid "Order History" +msgstr "订å•è®°å½•" + +#: lms/static/js/student_account/views/account_settings_view.js +msgid "" +"You have set your language to {beta_language}, which is currently not fully " +"translated. You can help us translate this language fully by joining the " +"Transifex community and adding translations from English for learners that " +"speak {beta_language}." +msgstr "" +"您已将è¯è¨€è®¾ç½®ä¸º{beta_language},目å‰å°šæœªå®Œå…¨ç¿»è¯‘。 " +"您å¯ä»¥åŠ å…¥Transifex社区,并为使用{beta_language}çš„å¦å‘˜æ·»åŠ 英è¯ç¿»è¯‘,从而帮助我们充分翻译这门è¯è¨€ã€‚" + +#: lms/static/js/student_account/views/account_settings_view.js +msgid "Help Translate into {beta_language}" +msgstr "Help Translate into {beta_language}" + #: cms/templates/js/asset-library.underscore #: cms/templates/js/basic-modal.underscore #: lms/templates/instructor/instructor_dashboard_2/enrollment-code-lookup-links.underscore @@ -7511,12 +7523,16 @@ msgid "Mark Exam As Completed" msgstr "æ ‡è®°è€ƒè¯•å®Œæˆ" #: lms/templates/courseware/proctored-exam-status.underscore -msgid "a timed exam" +msgid "You are taking \"{exam_link}\" as {exam_type}. " msgstr "" +#: lms/templates/courseware/proctored-exam-status.underscore +msgid "a timed exam" +msgstr "计时测验" + #: lms/templates/courseware/proctored-exam-status.underscore msgid "The timer on the right shows the time remaining in the exam." -msgstr "" +msgstr "å³è¾¹çš„计时器显示考试剩下的时间。" #: lms/templates/courseware/proctored-exam-status.underscore msgid "" @@ -7526,15 +7542,15 @@ msgstr "在点击 “结æŸæˆ‘的考试†之å‰ï¼Œæ‚¨å¿…须点击 \"æ交\" #: lms/templates/courseware/proctored-exam-status.underscore msgid "Show More" -msgstr "" +msgstr "显示更多" #: lms/templates/courseware/proctored-exam-status.underscore msgid "Show Less" -msgstr "" +msgstr "查看收起" #: lms/templates/courseware/proctored-exam-status.underscore msgid "Exam timer and end exam button" -msgstr "" +msgstr "考试计时器和结æŸè€ƒè¯•æŒ‰é’®" #: lms/templates/courseware/proctored-exam-status.underscore msgid "End My Exam" @@ -8220,7 +8236,7 @@ msgstr "é‡è®¾å¯†ç " #: lms/templates/student_account/account_settings.underscore msgid "Switch Language Back" -msgstr "" +msgstr "切æ¢è¯è¨€" #: lms/templates/student_account/account_settings.underscore msgid "Account Settings" @@ -8232,7 +8248,12 @@ msgstr "å‘生了一个错误,请é‡æ–°åŠ 载页é¢ã€‚" #: lms/templates/student_account/form_field.underscore msgid "Need help logging in?" -msgstr "" +msgstr "登录时需è¦å¸®åŠ©ï¼Ÿ" + +#: lms/templates/student_account/hinted_login.underscore +#: lms/templates/student_account/login.underscore +msgid "Sign in" +msgstr "登录" #: lms/templates/student_account/hinted_login.underscore #, python-format @@ -8266,8 +8287,9 @@ msgid "Register with Institution/Campus Credentials" msgstr "使用机构/æ ¡å›è´¦å·æ³¨å†Œ" #: lms/templates/student_account/institution_register.underscore -msgid "Register through edX" -msgstr "通过edX注册" +#: lms/templates/student_account/register.underscore +msgid "Create an Account" +msgstr "注册" #: lms/templates/student_account/login.underscore msgid "First time here?" @@ -8346,11 +8368,11 @@ msgstr "密ç 帮助" msgid "" "Please enter your log-in or recovery email address below and we will send " "you an email with instructions." -msgstr "" +msgstr "请在下é¢è¾“入您的登录或验è¯é‚®ç®±åœ°å€ï¼Œæˆ‘们会å‘您å‘é€ä¸€å°åŒ…å«è¯´æ˜Žçš„电å邮件。" #: lms/templates/student_account/password_reset.underscore msgid "Recover my password" -msgstr "" +msgstr "æ¢å¤æˆ‘的密ç " #: lms/templates/student_account/register.underscore msgid "Already have an {platformName} account?" @@ -8373,10 +8395,6 @@ msgstr "使用 %(providerName)s 创建账å·ã€‚" msgid "or create a new one here" msgstr "或在æ¤åˆ›å»ºä¸€ä¸ªæ–°è´¦å·" -#: lms/templates/student_account/register.underscore -msgid "Create an Account" -msgstr "注册" - #: lms/templates/student_account/register.underscore msgid "Support education research by providing additional information" msgstr "请æ供您的其他信æ¯ï¼Œä»¥æ”¯æŒæˆ‘ä»¬çš„æ•™è‚²ç ”ç©¶è°ƒæŸ¥" @@ -9415,7 +9433,7 @@ msgstr "未分级" #: cms/templates/js/course-outline.underscore msgid "Onboarding Exam" -msgstr "" +msgstr "å…¥èŒè€ƒè¯•" #: cms/templates/js/course-outline.underscore msgid "Practice proctored Exam" @@ -9441,7 +9459,7 @@ msgstr "显示å称" #: cms/templates/js/course-outline.underscore msgid "Proctoring Settings" -msgstr "" +msgstr "监考设置" #: cms/templates/js/course-outline.underscore msgid "Configure" @@ -10126,10 +10144,6 @@ msgstr "如果节ä¸è®¾æœ‰æˆªæ¢æ—¥æœŸï¼Œé‚£ä¹ˆåªè¦å¦å‘˜æ交ç”案至评分 msgid "PDF Chapters" msgstr "PDFå„ç« èŠ‚" -#: cms/templates/js/show-textbook.underscore -msgid "View Live" -msgstr "查看在线版" - #: cms/templates/js/signatory-details.underscore #: cms/templates/js/signatory-editor.underscore msgid "Signatory" @@ -10281,7 +10295,7 @@ msgstr "监考下的考试是计时的,并且æ¯ä¸ªå¦ç”Ÿçš„考试过程将被 #: cms/templates/js/timed-examination-preference-editor.underscore msgid "Onboarding" -msgstr "" +msgstr "å…¥èŒ" #: cms/templates/js/timed-examination-preference-editor.underscore msgid "" @@ -10290,6 +10304,7 @@ msgid "" "profile step prior to taking a proctored exam. Profile reviews take 2+ " "business days." msgstr "" +"使用入èŒåŸ¹è®å¦ä¹ 者介ç»ç»™ç›‘考,验è¯ä»–们的身份,并创建一个é…置文件上岗。 å¦å‘˜å¿…须在å‚åŠ ç›‘è€ƒè€ƒè¯•ä¹‹å‰å®Œæˆå…¥èŒèµ„æ ¼ã€‚ 个人资料评论需è¦2+个工作日。" #: cms/templates/js/timed-examination-preference-editor.underscore msgid "Practice Proctored" diff --git a/conf/locale/zh_HANS/LC_MESSAGES/django.mo b/conf/locale/zh_HANS/LC_MESSAGES/django.mo index 1a770c53d5bf31376fdff9f5f692d4accc9cedd1..59e7a90b38a64226218ab0e1177b2ca6d1daa6d3 100644 Binary files a/conf/locale/zh_HANS/LC_MESSAGES/django.mo and b/conf/locale/zh_HANS/LC_MESSAGES/django.mo differ diff --git a/conf/locale/zh_HANS/LC_MESSAGES/django.po b/conf/locale/zh_HANS/LC_MESSAGES/django.po index 4e15283d7d7030326bce0e561a51a5f42c8bb55d..91d4c8807380a59d873430aec727fbdda5f51a3f 100644 --- a/conf/locale/zh_HANS/LC_MESSAGES/django.po +++ b/conf/locale/zh_HANS/LC_MESSAGES/django.po @@ -1,11 +1,11 @@ # #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# # edX community translations have been downloaded from Chinese (China) (http://www.transifex.com/open-edx/edx-platform/language/zh_CN/). -# Copyright (C) 2018 EdX +# Copyright (C) 2019 EdX # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. # # Translators: # vingte <411029240@qq.com>, 2014 -# abby li <yc.li@eliteu.cn>, 2018 +# abby li <yc.li@eliteu.cn>, 2018-2019 # Alfred <alfredhuang211@qq.com>, 2015 # alisan617, 2017 # BertZou <turingcat@gmail.com>, 2015 @@ -22,13 +22,13 @@ # focusheart <focusheart@gmail.com>, 2014 # freakylemon <freakylemon@ymail.com>, 2014 # freakylemon <freakylemon@ymail.com>, 2014 -# ckyOL, 2015 +# 1c836b125659bc943ac07aaf233cadb5, 2015 # GoodLuck <1833447072@qq.com>, 2014 # Wentao Han <wentao.han@gmail.com>, 2013 # bnw, 2014 # bnw, 2014 -# HYY <wingyin.wong@outlook.com>, 2018 -# ifLab <webmaster@iflab.org>, 2015,2018 +# HYY <wingyin.wong@outlook.com>, 2018-2019 +# ifLab <webmaster@iflab.org>, 2015,2018-2019 # Jerome Huang <canni3269@gmail.com>, 2014 # jg Ma <jg20040308@126.com>, 2016 # Jiadong Zhang <fighting-dong@qq.com>, 2015 @@ -95,10 +95,11 @@ # èµµå®é‘« <zhaohongxinxin@aol.com>, 2015 # #-#-#-#-# django-studio.po (edx-platform) #-#-#-#-# # edX community translations have been downloaded from Chinese (China) (http://www.transifex.com/open-edx/edx-platform/language/zh_CN/). -# Copyright (C) 2018 EdX +# Copyright (C) 2019 EdX # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. # # Translators: +# abby li <yc.li@eliteu.cn>, 2019 # 肖寒 <bookman@vip.163.com>, 2013 # Changyue Wang <peterwang.dut@gmail.com>, 2014-2015 # focusheart <focusheart@gmail.com>, 2014 @@ -107,7 +108,7 @@ # Harry Li <harry75369@gmail.com>, 2014 # hohomi <hohomi@gmail.com>, 2016 # hohomi <hohomi@gmail.com>, 2016 -# ifLab <webmaster@iflab.org>, 2018 +# ifLab <webmaster@iflab.org>, 2018-2019 # Iris Zeng <yz3535@nyu.edu>, 2016 # Jerome Huang <canni3269@gmail.com>, 2014 # Jianfei Wang <me@thinxer.com>, 2013 @@ -134,6 +135,7 @@ # 刘知远 <liuliudong@163.com>, 2013 # å¼ å¤ªçº¢ <zth@xjau.edu.cn>, 2014 # å¾® æŽ <w.li@eliteu.com.cn>, 2018 +# æ–¹ 明旗 <mingflag@outlook.com>, 2019 # 汤和果 <hgtang93@163.com>, 2015 # 沈世奇 <vicapple22@gmail.com>, 2013 # ç†Šå†¬å‡ <xdsnet@gmail.com>, 2013 @@ -141,12 +143,13 @@ # 肖寒 <bookman@vip.163.com>, 2013 # #-#-#-#-# mako.po (edx-platform) #-#-#-#-# # edX community translations have been downloaded from Chinese (China) (http://www.transifex.com/open-edx/edx-platform/language/zh_CN/) -# Copyright (C) 2018 edX +# Copyright (C) 2019 edX # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. # # Translators: # perypery <410224186@qq.com>, 2014 # vingte <411029240@qq.com>, 2014 +# abby li <yc.li@eliteu.cn>, 2019 # Alfred <alfredhuang211@qq.com>, 2015 # alisan617, 2017 # 刘家骅 <alphaf52@gmail.com>, 2013 @@ -173,8 +176,9 @@ # Hu Tong <buildmindht@outlook.com>, 2014 # bnw, 2014 # bnw, 2014 +# HYY <wingyin.wong@outlook.com>, 2019 # ifLab <webmaster@iflab.org>, 2014-2015 -# ifLab <webmaster@iflab.org>, 2018 +# ifLab <webmaster@iflab.org>, 2018-2019 # j <786855796@qq.com>, 2015 # Jerome Huang <canni3269@gmail.com>, 2014 # Jerome Huang <canni3269@gmail.com>, 2014 @@ -265,12 +269,13 @@ # 黄鸿飞 <853885165@qq.com>, 2015 # #-#-#-#-# mako-studio.po (edx-platform) #-#-#-#-# # edX community translations have been downloaded from Chinese (China) (http://www.transifex.com/open-edx/edx-platform/language/zh_CN/) -# Copyright (C) 2018 edX +# Copyright (C) 2019 edX # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. # # Translators: # dcschwester <244876839@qq.com>, 2014 # AdiaCheng <75707teen@gmail.com>, 2014 +# abby li <yc.li@eliteu.cn>, 2019 # AdiaCheng <75707teen@gmail.com>, 2014 # 刘家骅 <alphaf52@gmail.com>, 2013 # BertZou <turingcat@gmail.com>, 2015 @@ -284,7 +289,7 @@ # Wentao Han <wentao.han@gmail.com>, 2013 # æŽèŽ‰ <happylily0516@foxmail.com>, 2013 # Harry Li <harry75369@gmail.com>, 2014 -# ifLab <webmaster@iflab.org>, 2018 +# ifLab <webmaster@iflab.org>, 2018-2019 # Jerome Huang <canni3269@gmail.com>, 2014 # jg Ma <jg20040308@126.com>, 2016 # Jianfei Wang <me@thinxer.com>, 2013 @@ -345,10 +350,11 @@ # 黄鸿飞 <853885165@qq.com>, 2015 # #-#-#-#-# wiki.po (edx-platform) #-#-#-#-# # edX community translations have been downloaded from Chinese (China) (http://www.transifex.com/open-edx/edx-platform/language/zh_CN/) -# Copyright (C) 2018 edX +# Copyright (C) 2019 edX # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. # # Translators: +# abby li <yc.li@eliteu.cn>, 2019 # focusheart <focusheart@gmail.com>, 2014 # focusheart <focusheart@gmail.com>, 2014 # Harry Li <harry75369@gmail.com>, 2014 @@ -373,14 +379,23 @@ # Yu-Hua Hsieh <beiluo.shimen@icloud.com>, 2014 # zhoubizhang <zbzcool@163.com>, 2014 # 汤和果 <hgtang93@163.com>, 2015 +# #-#-#-#-# edx_proctoring_proctortrack.po (0.1a) #-#-#-#-# +# edX community translations have been downloaded from Chinese (China) (https://www.transifex.com/open-edx/teams/6205/zh_CN/) +# Copyright (C) 2019 edX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# EdX Team <info@edx.org>, 2019. +# +# Translators: +# ifLab <webmaster@iflab.org>, 2019 +# msgid "" msgstr "" -"Project-Id-Version: edx-platform\n" +"Project-Id-Version: 0.1a\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2018-12-30 20:42+0000\n" -"PO-Revision-Date: 2018-12-12 13:57+0000\n" -"Last-Translator: å¾® æŽ <w.li@eliteu.com.cn>\n" -"Language-Team: Chinese (China) (http://www.transifex.com/open-edx/edx-platform/language/zh_CN/)\n" +"POT-Creation-Date: 2019-06-09 20:42+0000\n" +"PO-Revision-Date: 2019-01-20 20:43+0000\n" +"Last-Translator: ifLab <webmaster@iflab.org>, 2019\n" +"Language-Team: Chinese (China) (https://www.transifex.com/open-edx/teams/6205/zh_CN/)\n" "Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -572,7 +587,7 @@ msgstr "诚信准则" #: common/djangoapps/course_modes/helpers.py msgid "You're enrolled as a professional education student" -msgstr "ä½ å·²ä½œä¸ºä¸“ä¸šæ•™è‚²å¦ç”Ÿé€‰è¯¾" +msgstr "您已作为专业教育å¦ç”Ÿé€‰è¯¾" #: common/djangoapps/course_modes/helpers.py msgid "Professional Ed" @@ -633,11 +648,14 @@ msgstr "è£èª‰" msgid "" "Professional education modes are not allowed to have expiration_datetime " "set." -msgstr "专业的教育模å¼ä¸å…许有过期的日期时间设置。" +msgstr "专业教育模å¼ä¸å…许有过期的日期时间设置。" #: common/djangoapps/course_modes/models.py -msgid "Verified modes cannot be free." -msgstr "已验è¯çš„模å¼è¦æ”¶å–费用。" +#, python-brace-format +msgid "" +"The {course_mode} course mode has a minimum price of {min_price}. You must " +"set a price greater than or equal to {min_price}." +msgstr "这个 {course_mode} 课程模å¼çš„æœ€ä½Žä»·æ ¼ä¸º{min_price}。您必须设置一个大于或ç‰äºŽ{min_price}çš„ä»·æ ¼ã€‚" #. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# #. Translators: This will look like '$50', where {currency_symbol} is a symbol @@ -687,35 +705,13 @@ msgstr "选择的数é‡æ— 效。" msgid "No selected price or selected price is too low." msgstr "æœªé€‰æ‹©ä»·æ ¼æˆ–é€‰æ‹©çš„ä»·æ ¼è¿‡ä½Žã€‚" -#: common/djangoapps/django_comment_common/models.py -msgid "Administrator" -msgstr "管ç†å‘˜" - -#: common/djangoapps/django_comment_common/models.py -msgid "Moderator" -msgstr "版主" - -#: common/djangoapps/django_comment_common/models.py -msgid "Group Moderator" -msgstr "群主" - -#: common/djangoapps/django_comment_common/models.py -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Community TA" -msgstr "社区助教" - -#: common/djangoapps/django_comment_common/models.py -#: lms/djangoapps/instructor/paidcourse_enrollment_report.py -msgid "Student" -msgstr "å¦ç”Ÿ" - #: common/djangoapps/student/admin.py msgid "User profile" msgstr "用户资料" #: common/djangoapps/student/admin.py msgid "Account recovery" -msgstr "æ¢å¤è´¦å·" +msgstr "验è¯è´¦æˆ·" #. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# #. Translators: This label appears above a field on the login form @@ -738,17 +734,23 @@ msgid "" "password." msgstr "未å˜å‚¨åŽŸå§‹å¯†ç ï¼Œå› æ¤æ— 法查看æ¤ç”¨æˆ·çš„密ç 。" +#: common/djangoapps/student/admin.py +#, python-format +msgid "%(count)d student account was unlocked." +msgid_plural "%(count)d student accounts were unlocked." +msgstr[0] "%(count)då¦ç”Ÿè´¦æˆ·æœªè¢«è§£é”。" + #: common/djangoapps/student/forms.py msgid "" "That e-mail address doesn't have an associated user account. Are you sure " "you've registered?" -msgstr "该电å邮件地å€ä¸å…·æœ‰ç›¸å…³è”的用户å¸æˆ·ã€‚ä½ ç¡®å®šä½ å·²ç»æ³¨å†Œï¼Ÿ" +msgstr "æ¤é‚®ç®±æœªå…³è”任何用户账å·ã€‚您确定æ¤é‚®ç®±å·²ç»æ³¨å†Œï¼Ÿ" #: common/djangoapps/student/forms.py msgid "" "The user account associated with this e-mail address cannot reset the " "password." -msgstr "与æ¤ç”µå邮件地å€å…³è”的用户å¸æˆ·ä¸èƒ½é‡æ–°è®¾ç½®å¯†ç 。" +msgstr "与æ¤é‚®ç®±å…³è”的用户账å·æ— 法é‡æ–°è®¾ç½®å¯†ç 。" #: common/djangoapps/student/forms.py msgid "Full Name cannot contain the following characters: < >" @@ -759,13 +761,13 @@ msgid "A properly formatted e-mail is required" msgstr "需è¦æ£ç¡®çš„é‚®ä»¶æ ¼å¼" #: common/djangoapps/student/forms.py -msgid "Your legal name must be a minimum of two characters long" -msgstr "ä½ çš„åˆæ³•åå—必须至少包å«ä¸¤ä¸ªå—符的长度" +msgid "Your legal name must be a minimum of one character long" +msgstr "" #: common/djangoapps/student/forms.py #, python-format msgid "Email cannot be more than %(limit_value)s characters long" -msgstr "Email长度ä¸èƒ½è¶…过 %(limit_value)s 个å—符" +msgstr "邮箱长度ä¸èƒ½è¶…过 %(limit_value)s 个å—符" #: common/djangoapps/student/forms.py msgid "You must accept the terms of service." @@ -777,19 +779,19 @@ msgstr "需è¦ä»¥ä¸Šå¦åŽ†" #: common/djangoapps/student/forms.py msgid "Your gender is required" -msgstr "ä½ çš„æ€§åˆ«æ˜¯å¿…å¡«é¡¹" +msgstr "您的性别是必填项" #: common/djangoapps/student/forms.py msgid "Your year of birth is required" -msgstr "ä½ çš„å‡ºç”Ÿå¹´ä»½æ˜¯å¿…å¡«é¡¹" +msgstr "您的出生年份是必填项" #: common/djangoapps/student/forms.py msgid "Your mailing address is required" -msgstr "ä½ çš„é‚®ä»¶åœ°å€æ˜¯å¿…填项" +msgstr "您的邮箱是必填项" #: common/djangoapps/student/forms.py msgid "A description of your goals is required" -msgstr "ä½ çš„ç›®æ ‡æ述是必填项" +msgstr "æ‚¨çš„ç›®æ ‡æ述是必填项" #: common/djangoapps/student/forms.py msgid "A city is required" @@ -809,24 +811,25 @@ msgstr "您é—æ¼äº†ä¸€ä¸ªæˆ–多个必须填写å—段" #: common/djangoapps/student/forms.py msgid "Unauthorized email address." -msgstr "未ç»æŽˆæƒçš„电å邮件地å€" +msgstr "未ç»æŽˆæƒçš„邮箱" #: common/djangoapps/student/forms.py +#: common/djangoapps/student/views/management.py #, python-brace-format msgid "" "It looks like {email} belongs to an existing account. Try again with a " "different email address." -msgstr "看起æ¥åƒçŽ°æœ‰çš„å¸æˆ· {email} 。使用ä¸åŒçš„电å邮件地å€å†è¯•ä¸€æ¬¡ã€‚" +msgstr "邮箱 {email} 已被其他账å·å…³è”。请使用å¦ä¸€ä¸ªé‚®ç®±é‡è¯•ã€‚" #: common/djangoapps/student/helpers.py #, python-brace-format msgid "An account with the Public Username '{username}' already exists." -msgstr "公开用户å'{username}'对应的账户已å˜åœ¨ã€‚" +msgstr "公开用户å'{username}'对应的账å·å·²å˜åœ¨ã€‚" #: common/djangoapps/student/helpers.py #, python-brace-format msgid "An account with the Email '{email}' already exists." -msgstr "电å邮件'{email}'对应的账户已å˜åœ¨ã€‚" +msgstr "邮箱'{email}'对应的账å·å·²å˜åœ¨ã€‚" #: common/djangoapps/student/management/commands/manage_group.py msgid "Removed group: \"{}\"" @@ -881,7 +884,7 @@ msgstr "设置用户\"{username}\"çš„{attribute}值为\"{new_value}\"" msgid "" "Skipping user \"{}\" because the specified and existing email addresses do " "not match." -msgstr "设置的邮箱与现å˜é‚®ç®±åœ°å€ä¸åŒ¹é…,跳过用户\"{}\"。" +msgstr "设置的邮箱与现å˜é‚®ç®±ä¸åŒ¹é…,跳过用户\"{}\"。" #: common/djangoapps/student/management/commands/manage_user.py msgid "Did not find a user with username \"{}\" - skipping." @@ -926,11 +929,11 @@ msgstr "把用户 \"{username}\" 从{group_names}组ä¸ç§»é™¤" msgid "" "Your account has been disabled. If you believe this was done in error, " "please contact us at {support_email}" -msgstr "您的账户已ç»è¢«ç¦ç”¨ã€‚如果您有任何疑问请è”系我们{support_email}" +msgstr "您账å·å·²ç»è¢«ç¦ç”¨ã€‚如果您有任何疑问请è”系我们{support_email}" #: common/djangoapps/student/middleware.py msgid "Disabled Account" -msgstr "å·²åœç”¨çš„账户" +msgstr "å·²åœç”¨çš„è´¦å·" #: common/djangoapps/student/models.py msgid "Male" @@ -1056,11 +1059,11 @@ msgstr "æ¤ç”¨æˆ·å±žæ€§å€¼ã€‚" #: common/djangoapps/student/models.py msgid "Secondary email address" -msgstr "辅助电å邮件地å€" +msgstr "备选邮箱" #: common/djangoapps/student/models.py msgid "Secondary email address to recover linked account." -msgstr "辅助电å邮件地å€ä»¥æ¢å¤å…³è”å¸æˆ·ã€‚" +msgstr "用于æ¢å¤å…³è”è´¦å·çš„备选邮箱。" #: common/djangoapps/student/views/dashboard.py msgid " and " @@ -1106,7 +1109,7 @@ msgid "" "{link_start}{platform_name} Support{link_end}." msgstr "" "查看{email_start} {email} " -"{email_end}收件箱ä¸çš„{platform_name}å¸æˆ·æ¿€æ´»é“¾æŽ¥ã€‚如果您需è¦å¸®åŠ©ï¼Œè¯·è”ç³»{link_start} " +"{email_end}收件箱ä¸çš„{platform_name}è´¦å·æ¿€æ´»é“¾æŽ¥ã€‚如果您需è¦å¸®åŠ©ï¼Œè¯·è”ç³»{link_start} " "{platform_name}支æŒ{link_end}。" #: common/djangoapps/student/views/dashboard.py @@ -1114,7 +1117,13 @@ msgstr "" msgid "" "Add a recovery email to retain access when single-sign on is not available. " "Go to {link_start}your Account Settings{link_end}." -msgstr "" +msgstr "æ·»åŠ éªŒè¯ç”µåé‚®ä»¶ï¼Œä»¥ä¾¿åœ¨æ— æ³•ä½¿ç”¨å•ç‚¹ç™»å½•æ—¶ä¿ç•™è®¿é—®æƒé™ã€‚转到{link_start}您的账户设置{link_end}。" + +#: common/djangoapps/student/views/dashboard.py +msgid "" +"Recovery email is not activated yet. Kindly visit your email and follow the " +"instructions to activate it." +msgstr "验è¯é‚®ä»¶å°šæœªæ¿€æ´»ã€‚请访问您的电å邮件,并按照说明已激活它。" #: common/djangoapps/student/views/dashboard.py #, python-brace-format @@ -1124,15 +1133,15 @@ msgstr "您查找的课程将在{date}åŽå¼€è¯¾ã€‚" #: common/djangoapps/student/views/dashboard.py #, python-brace-format msgid "The course you are looking for is closed for enrollment as of {date}." -msgstr "ä½ æœç´¢çš„课程登记关é—时间截æ¢è‡³ {date}。" +msgstr "您æœç´¢çš„课程登记关é—时间截æ¢è‡³ {date}。" #: common/djangoapps/student/views/management.py msgid "No inactive user with this e-mail exists" -msgstr "æ— éžæ¿€æ´»ç”¨æˆ·ä¸Žæœ¬é‚®ä»¶åœ°å€å…³è”。" +msgstr "" #: common/djangoapps/student/views/management.py msgid "Unable to send reactivation email" -msgstr "æ— æ³•å‘é€é‡æ–°æ¿€æ´»çš„电å邮件" +msgstr "" #: common/djangoapps/student/views/management.py msgid "Course id not specified" @@ -1176,15 +1185,15 @@ msgstr "用户å {} ä¸å˜åœ¨" #: common/djangoapps/student/views/management.py msgid "Successfully disabled {}'s account" -msgstr "æˆåŠŸåœç”¨{}的账户" +msgstr "æˆåŠŸåœç”¨{}çš„è´¦å·" #: common/djangoapps/student/views/management.py msgid "Successfully reenabled {}'s account" -msgstr "æˆåŠŸé‡æ–°å¯ç”¨{}的账户" +msgstr "æˆåŠŸé‡æ–°å¯ç”¨{}çš„è´¦å·" #: common/djangoapps/student/views/management.py msgid "Unexpected account status" -msgstr "异常的账户状æ€" +msgstr "异常的账å·çŠ¶æ€" #: common/djangoapps/student/views/management.py #, python-brace-format @@ -1193,7 +1202,7 @@ msgid "" "wrong, please <a href=\"{support_url}\">contact support</a> to resolve this " "issue." msgstr "" -"{html_start}您的å¸æˆ·æ— 法激活{html_end}出现问题,请与<a " +"{html_start}您的账å·æ— 法激活{html_end}出现问题,请与<a " "href=\"{support_url}\">支æŒå°ç»„</a>è”系以解决æ¤é—®é¢˜ã€‚" #: common/djangoapps/student/views/management.py @@ -1213,7 +1222,7 @@ msgid "" "receive email updates and alerts from us related to the courses you are " "enrolled in. Sign In to continue." msgstr "" -"{html_start}æˆåŠŸï¼æ‚¨å·²æ¿€æ´»å¸æˆ·ã€‚{html_end}您现在将收到我们å‘é€çš„与您注册的课程相关的电å邮件更新和æ醒。请登录以继ç»ã€‚" +"{html_start}æˆåŠŸï¼æ‚¨å·²æ¿€æ´»è´¦å·ã€‚{html_end}您现在将收到我们å‘é€çš„与您注册的课程相关的电å邮件更新和æ醒。请登录以继ç»ã€‚" #: common/djangoapps/student/views/management.py msgid "Some error occured during password change. Please try again" @@ -1221,7 +1230,7 @@ msgstr "é‡è®¾å¯†ç æ—¶å‘生错误,请é‡è¯•" #: common/djangoapps/student/views/management.py msgid "No email address provided." -msgstr "未æä¾›Email地å€ã€‚" +msgstr "未æ供邮箱。" #: common/djangoapps/student/views/management.py msgid "Password reset unsuccessful" @@ -1235,13 +1244,21 @@ msgstr "é‡è®¾å¯†ç æ—¶å‘生错误。" msgid "Error in resetting your password. Please try again." msgstr "é‡ç½®å¯†ç æ“作å‘生错误。请é‡è¯•ã€‚" +#: common/djangoapps/student/views/management.py +#, python-brace-format +msgid "" +"{html_start}Password Creation Complete{html_end}Your password has been " +"created. {bold_start}{email}{bold_end} is now your primary login email." +msgstr "" +"{html_start}密ç 创建完æˆ{html_end}å·²ç»åˆ›å»ºäº†æ‚¨çš„密ç 。{bold_start}{email}{bold_end}现在是您的主登录电å邮件。" + #: common/djangoapps/student/views/management.py msgid "Valid e-mail address required." -msgstr "需è¦æœ‰æ•ˆçš„电å邮件地å€" +msgstr "需è¦æœ‰æ•ˆçš„邮箱" #: common/djangoapps/student/views/management.py msgid "Old email is the same as the new email." -msgstr "新邮件地å€ä¸Žæ—§é‚®ä»¶åœ°å€ç›¸åŒã€‚" +msgstr "新邮箱与旧邮箱相åŒã€‚" #: common/djangoapps/student/views/management.py msgid "Cannot be same as your sign in email address." @@ -1273,6 +1290,12 @@ msgid "" "\"Institution\" login providers." msgstr "二级供应商ä¸ä¼šçªå‡ºæ˜¾ç¤ºï¼Œå°†å‡ºçŽ°åœ¨ä¸€ä¸ªå•ç‹¬çš„“机构â€åˆ—表ä¸ã€‚" +#: common/djangoapps/third_party_auth/models.py +msgid "" +"optional. If this provider is an Organization, this attribute can be used " +"reference users in that Organization" +msgstr "" + #: common/djangoapps/third_party_auth/models.py msgid "The Site that this provider configuration belongs to." msgstr "æ¤æ供商é…置所属的网站。" @@ -1299,7 +1322,7 @@ msgstr "" msgid "" "If this option is selected, users will not be required to confirm their " "email, and their account will be activated immediately upon registration." -msgstr "如果选择该选项,用户将ä¸ä¼šè¢«è¦æ±‚验è¯ä»–们的邮箱,他们的账户将在注册åŽç«‹åˆ»è¢«æ¿€æ´»ã€‚" +msgstr "如果选择该选项,用户将ä¸ä¼šè¢«è¦æ±‚验è¯ä»–们的邮箱,他们的账å·å°†åœ¨æ³¨å†ŒåŽç«‹åˆ»è¢«æ¿€æ´»ã€‚" #: common/djangoapps/third_party_auth/models.py msgid "" @@ -1336,7 +1359,7 @@ msgid "" "edX user account on each SSO login. The user will be notified if the email " "address associated with their account is changed as a part of this " "synchronization." -msgstr "在æ¯æ¬¡SSO登录ä¸ï¼Œå°†æ¥è‡ªèº«ä»½æ供商的用户账户数æ®ä¸ŽedX用户账å·åŒæ¥ã€‚当修改绑定邮箱时,用户会收到通知。" +msgstr "在æ¯æ¬¡SSO登录ä¸ï¼Œå°†æ¥è‡ªèº«ä»½æ供商的用户账å·æ•°æ®ä¸ŽedX用户账å·åŒæ¥ã€‚当修改绑定邮箱时,用户会收到通知。" #: common/djangoapps/third_party_auth/models.py msgid "The Site that this SAML configuration belongs to." @@ -2457,6 +2480,20 @@ msgstr "已完æˆ" msgid "Correct or Past Due" msgstr "æ£ç¡®æˆ–超过截æ¢æ—¥æœŸ" +#: common/lib/xmodule/xmodule/capa_base.py +msgid "After Some Number of Attempts" +msgstr "ç»è¿‡ä¸€äº›å°è¯•" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Show Answer: Number of Attempts" +msgstr "显示ç”案:å°è¯•çš„次数" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "" +"Number of times the student must attempt to answer the question before the " +"Show Answer button appears." +msgstr "在“显示ç”案â€æŒ‰é’®å‡ºçŽ°ä¹‹å‰ï¼Œå¦ç”Ÿå¿…é¡»å°è¯•å›žç”问题的次数。" + #: common/lib/xmodule/xmodule/capa_base.py msgid "Whether to force the save button to appear on the page" msgstr "是å¦å¼ºåˆ¶æ˜¾ç¤ºä¿å˜æŒ‰é’®" @@ -2575,16 +2612,18 @@ msgid "" "contact moocsupport@mathworks.com" msgstr "" "输入 " -"MATLAB讬管æœåŠ¡æä¾›MathWorkså…¬å¸çš„API密钥。这个密钥被授予通过本课程的指定时间独家使用。请ä¸è¦å…±äº«çš„API密钥与其他课程,并立å³é€šçŸ¥MathWorkså…¬å¸ï¼Œå¦‚æžœä½ è®¤ä¸ºå¯†é’¥è¢«æš´éœ²æˆ–æŸå®³ã€‚为了获得一个关键的课程,或报告的问题,请è”ç³»moocsupport@mathworks.com" +"MATLAB讬管æœåŠ¡æä¾›MathWorkså…¬å¸çš„API密钥。这个密钥被授予通过本课程的指定时间独家使用。请ä¸è¦å…±äº«çš„API密钥与其他课程,并立å³é€šçŸ¥MathWorkså…¬å¸ï¼Œå¦‚果您认为密钥被暴露或æŸå®³ã€‚为了获得一个关键的课程,或报告的问题,请è”ç³»moocsupport@mathworks.com" #: common/lib/xmodule/xmodule/capa_base.py #: lms/templates/admin/user_api/accounts/cancel_retirement_action.html -#: cms/templates/index.html lms/templates/help_modal.html -#: lms/templates/manage_user_standing.html lms/templates/register-shib.html +#: cms/templates/index.html cms/templates/videos_index_pagination.html +#: lms/templates/help_modal.html lms/templates/manage_user_standing.html +#: lms/templates/register-shib.html #: lms/templates/dashboard/_entitlement_reason_survey.html #: lms/templates/dashboard/_reason_survey.html #: lms/templates/peer_grading/peer_grading_problem.html #: lms/templates/survey/survey.html +#: lms/templates/widgets/footer-language-selector.html #: openedx/core/djangoapps/dark_lang/templates/dark_lang/preview-language-fragment.html #: openedx/core/djangoapps/theming/templates/theming/theming-admin-fragment.html #: themes/stanford-style/lms/templates/register-shib.html @@ -2674,7 +2713,7 @@ msgstr "在æ交之å‰é—®é¢˜å¿…é¡»é‡ç½®ã€‚ " #: common/lib/xmodule/xmodule/capa_base.py #, python-brace-format msgid "You must wait at least {wait} seconds between submissions." -msgstr "在两次å‘å¸ƒä¹‹é—´ä½ è‡³å°‘éœ€è¦ç‰å¾…{wait}秒。" +msgstr "在两次å‘布之间您至少需è¦ç‰å¾…{wait}秒。" #: common/lib/xmodule/xmodule/capa_base.py #, python-brace-format @@ -2707,7 +2746,7 @@ msgstr "问题在ä¿å˜ä¹‹å‰éœ€è¦é‡ç½®ã€‚" #: common/lib/xmodule/xmodule/capa_base.py msgid "Your answers have been saved." -msgstr "ä½ çš„ç”案已ä¿å˜ã€‚" +msgstr "您的ç”案已ä¿å˜ã€‚" #: common/lib/xmodule/xmodule/capa_base.py #, python-brace-format @@ -2740,13 +2779,13 @@ msgstr "回ç”问题åŽæ‰èƒ½å¤Ÿé‡æ–°è¯„定。" msgid "" "We're sorry, there was an error with processing your request. Please try " "reloading your page and trying again." -msgstr "很抱æ‰ï¼Œåœ¨å¤„ç†ä½ 的请求时出现错误。请é‡æ–°åŠ è½½ä½ çš„é¡µé¢å¹¶å†æ¬¡å°è¯•æ“作。" +msgstr "很抱æ‰ï¼Œåœ¨å¤„ç†æ‚¨çš„请求时出现错误。请é‡æ–°åŠ 载您的页é¢å¹¶å†æ¬¡å°è¯•æ“作。" #: common/lib/xmodule/xmodule/capa_module.py msgid "" "The state of this problem has changed since you loaded this page. Please " "refresh your page." -msgstr "该问题的æè¿°åœ¨ä½ åŠ è½½æœ¬é¡µé¢ä¹‹åŽå·²ç»å‘生å˜åŒ–äº†ã€‚è¯·åˆ·æ–°ä½ çš„é¡µé¢ã€‚" +msgstr "该问题的æè¿°åœ¨æ‚¨åŠ è½½æœ¬é¡µé¢ä¹‹åŽå·²ç»å‘生å˜åŒ–了。请刷新您的页é¢ã€‚" #: common/lib/xmodule/xmodule/capa_module.py msgid "Answer ID" @@ -2827,9 +2866,16 @@ msgstr "æ¤ç»„件尚未é…ç½®æºç»„件。" msgid "Configure list of sources" msgstr "é…ç½®æ¥æºåˆ—表" +#: common/lib/xmodule/xmodule/course_module.py +#, python-brace-format +msgid "" +"The selected proctoring provider, {proctoring_provider}, is not a valid " +"provider. Please select from one of {available_providers}." +msgstr "所选的处ç†æ供程åº{proctoring_provider}ä¸æ˜¯æœ‰æ•ˆçš„æ供程åºã€‚请从{available_providers}ä¸é€‰æ‹©ã€‚" + #: common/lib/xmodule/xmodule/course_module.py msgid "LTI Passports" -msgstr "LTI 账户" +msgstr "LTI 通行è¯" #: common/lib/xmodule/xmodule/course_module.py msgid "" @@ -3031,7 +3077,7 @@ msgstr "手机端å¯è§çš„课程" msgid "" "Enter true or false. If true, the course will be available to mobile " "devices." -msgstr "请输入真或者å‡,如果为真,这门课程将支æŒç§»åŠ¨è®¾å¤‡ä¸Šå¦ä¹ " +msgstr "请输入真或者å‡ï¼Œå¦‚果为真,这门课程将支æŒç§»åŠ¨è®¾å¤‡ä¸Šå¦ä¹ 。" #: common/lib/xmodule/xmodule/course_module.py msgid "Video Upload Credentials" @@ -3235,7 +3281,7 @@ msgid "" "Files & Uploads page. You can also set the course image on the Settings & " "Details page." msgstr "" -"编辑课程图片文件的åå—ã€‚ä½ å¿…é¡»åœ¨Files & Uploads页é¢ä¸Šä¼ è¿™ä¸ªæ–‡ä»¶ã€‚ä½ ä¹Ÿå¯ä»¥åœ¨ Settings & Details页é¢è®¾ç½®è¯¾ç¨‹å›¾ç‰‡ã€‚" +"编辑课程图片文件的åå—。您必须在Files & Uploads页é¢ä¸Šä¼ 这个文件。您也å¯ä»¥åœ¨ Settings & Details页é¢è®¾ç½®è¯¾ç¨‹å›¾ç‰‡ã€‚" #: common/lib/xmodule/xmodule/course_module.py cms/templates/settings.html msgid "Course Banner Image" @@ -3361,7 +3407,7 @@ msgid "" "setting overrides the organization that you entered when you created the " "course. To use the organization that you entered when you created the " "course, enter null." -msgstr "è¾“å…¥ä½ æƒ³åœ¨è¯¾ç¨‹ä¸å‡ºçŽ°çš„课程安排。æ¤è®¾ç½®å°†è¦†ç›–ä½ åœ¨åˆ›å»ºè¯¾ç¨‹æ—¶è¾“å…¥çš„è¯¾ç¨‹å®‰æŽ’ã€‚è¦ä½¿ç”¨ä½ 在创建课程时输入的课程安排,请输入空值。" +msgstr "输入您想在课程ä¸å‡ºçŽ°çš„课程安排。æ¤è®¾ç½®å°†è¦†ç›–您在创建课程时输入的课程安排。è¦ä½¿ç”¨æ‚¨åœ¨åˆ›å»ºè¯¾ç¨‹æ—¶è¾“入的课程安排,请输入空值。" #: common/lib/xmodule/xmodule/course_module.py msgid "Course Number Display String" @@ -3373,7 +3419,7 @@ msgid "" "overrides the course number that you entered when you created the course. To" " use the course number that you entered when you created the course, enter " "null." -msgstr "è¾“å…¥ä½ æƒ³åœ¨è¯¾ç¨‹ä¸å‡ºçŽ°çš„课程编å·ã€‚æ¤è®¾ç½®å°†è¦†ç›–ä½ åœ¨åˆ›å»ºè¯¾ç¨‹æ—¶è¾“å…¥çš„è¯¾ç¨‹ç¼–å·ã€‚è¦ä½¿ç”¨ä½ 在创建课程时输入的课程编å·ï¼Œè¯·è¾“入空值。" +msgstr "输入您想在课程ä¸å‡ºçŽ°çš„课程编å·ã€‚æ¤è®¾ç½®å°†è¦†ç›–您在创建课程时输入的课程编å·ã€‚è¦ä½¿ç”¨æ‚¨åœ¨åˆ›å»ºè¯¾ç¨‹æ—¶è¾“入的课程编å·ï¼Œè¯·è¾“入空值。" #: common/lib/xmodule/xmodule/course_module.py msgid "Course Maximum Student Enrollment" @@ -3426,6 +3472,8 @@ msgstr "指定å¦ç”Ÿåœ¨æŸ¥çœ‹æ‚¨çš„课程内容之å‰æ˜¯å¦å¿…须完æˆä¸€é¡¹è°ƒ msgid "Course Visibility In Catalog" msgstr "目录ä¸è¯¾ç¨‹å¯è§æ€§" +#. Translators: the quoted words 'both', 'about', and 'none' must be +#. left untranslated. Leave them as English words. #: common/lib/xmodule/xmodule/course_module.py msgid "" "Defines the access permissions for showing the course in the course catalog." @@ -3435,22 +3483,6 @@ msgid "" msgstr "" "定义在课程目录ä¸çš„显示课程的访问æƒé™ã€‚å¯ä»¥è®¾ç½®ä¸ºä»¥ä¸‹ä¸‰ä¸ªå€¼çš„å…¶ä¸ä¹‹ä¸€ï¼šâ€œbothâ€(在目录ä¸æ˜¾ç¤ºä¸”å…许访问关于æ¤é¡µ),“aboutâ€(åªå…许访问关于æ¤é¡µ),“noneâ€(ä¸åœ¨ç›®å½•ä¸æ˜¾ç¤ºä¸”ä¸å…许访问关于æ¤é¡µ)。" -#: common/lib/xmodule/xmodule/course_module.py -msgid "Both" -msgstr "两者都" - -#: common/lib/xmodule/xmodule/course_module.py lms/djangoapps/branding/api.py -#: lms/templates/footer.html lms/templates/static_templates/about.html -#: themes/red-theme/lms/templates/footer.html -#: themes/stanford-style/lms/templates/footer.html -#: themes/stanford-style/lms/templates/static_templates/about.html -msgid "About" -msgstr "关于我们" - -#: common/lib/xmodule/xmodule/course_module.py cms/templates/settings.html -msgid "None" -msgstr "æ— " - #: common/lib/xmodule/xmodule/course_module.py msgid "Entrance Exam Enabled" msgstr "å…¥å¦è€ƒè¯•å¼€å¯" @@ -3531,7 +3563,18 @@ msgid "" "Enter true or false. If this value is true, proctored exams are enabled in " "your course. Note that enabling proctored exams will also enable timed " "exams." -msgstr "输入 true 或 false。如果该值为trueï¼Œç›‘è€ƒçš„è€ƒè¯•æ˜¯åœ¨ä½ çš„è¯¾ç¨‹å¯ç”¨ã€‚请注æ„,使监考考试也将å¯åŠ¨ é™æ—¶è€ƒè¯•ã€‚" +msgstr "输入 true 或 false。如果该值为true,监考的考试是在您的课程å¯ç”¨ã€‚请注æ„,使监考考试也将å¯åŠ¨ é™æ—¶è€ƒè¯•ã€‚" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Proctoring Provider" +msgstr "监考æ供者" + +#: common/lib/xmodule/xmodule/course_module.py +#, python-brace-format +msgid "" +"Enter the proctoring provider you want to use for this course run. Choose " +"from the following options: {available_providers}." +msgstr "输入è¦ç”¨äºŽæœ¬è¯¾ç¨‹è¿è¡Œçš„监考æ供程åºã€‚ 从以下选项ä¸é€‰æ‹©ï¼š {available_providers}" #: common/lib/xmodule/xmodule/course_module.py msgid "Allow Opting Out of Proctored Exams" @@ -3613,7 +3656,7 @@ msgstr "å¯åˆ†æ®µå…ˆä¿®ä¹‹è¦æ±‚" msgid "" "Enter true or false. If this value is true, you can hide a subsection until " "learners earn a minimum score in another, prerequisite subsection." -msgstr "输入 true 或 false。如果该值为 trueï¼Œä½ å¯ä»¥éšè—æŸåˆ†æ®µï¼Œç›´åˆ°å¦ä¹ 者获得最低分数为æ¢ã€‚" +msgstr "输入 true 或 false。如果该值为 true,您å¯ä»¥éšè—æŸåˆ†æ®µï¼Œç›´åˆ°å¦ä¹ 者获得最低分数为æ¢ã€‚" #: common/lib/xmodule/xmodule/course_module.py msgid "Course Learning Information" @@ -3627,6 +3670,8 @@ msgstr "请æ述课程教å¦ç»†èŠ‚。" msgid "Course Visibility For Unenrolled Learners" msgstr "未选课å¦å‘˜è¯¾ç¨‹å¯è§æƒ…况" +#. Translators: the quoted words 'private', 'public_outline', and 'public' +#. must be left untranslated. Leave them as English words. #: common/lib/xmodule/xmodule/course_module.py msgid "" "Defines the access permissions for unenrolled learners. This can be set to " @@ -3637,18 +3682,6 @@ msgstr "" "定义未登记å¦å‘˜çš„访问æƒé™ã€‚è¿™å¯ä»¥è®¾ç½®ä¸ºä¸‰ä¸ªå€¼ä¹‹ä¸€ï¼š “private†(默认å¯è§æ€§ï¼Œåªå…许在册å¦ç”Ÿä½¿ç”¨ï¼‰ã€â€œpublic_outline†" "(å…许访问课程概述)和 “publicâ€ï¼ˆå…许访问概述和课程内容)。" -#: common/lib/xmodule/xmodule/course_module.py -msgid "private" -msgstr "ä¸å…¬å¼€" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "public_outline" -msgstr "公开概述" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "public" -msgstr "公开" - #: common/lib/xmodule/xmodule/course_module.py msgid "Course Instructor" msgstr "授课è€å¸ˆ" @@ -3920,7 +3953,7 @@ msgid "" "Settings page.<br />See {docs_anchor_open}the edX LTI " "documentation{anchor_close} for more details on this setting." msgstr "" -"输入外部LTIæ供商æ供的LTIç¼–å·ã€‚è¯¥å€¼å¿…é¡»å’Œä½ çš„LTI账户里高级设置里的LTIç¼–å·ç›¸åŒã€‚<br />关于该设置的更多信æ¯è¯·è®¿é—® " +"输入外部LTIæ供商æ供的LTIç¼–å·ã€‚该值必须和您的LTIè´¦å·é‡Œé«˜çº§è®¾ç½®é‡Œçš„LTIç¼–å·ç›¸åŒã€‚<br />关于该设置的更多信æ¯è¯·è®¿é—® " "{docs_anchor_open}edx LTI 文档{anchor_close} " #: common/lib/xmodule/xmodule/lti_module.py @@ -3950,7 +3983,7 @@ msgid "" "{docs_anchor_open}the edX LTI documentation{anchor_close} for more details " "on this setting." msgstr "" -"ä»»æ„自定义的å‚数都è¦æ·»åŠ é”®/值且æˆå¯¹ï¼Œä¾‹å¦‚ä½ è¦æ‰“开的电å书的页é¢æˆ–者这个组件的背景颜色。<br " +"ä»»æ„自定义的å‚数都è¦æ·»åŠ é”®/值且æˆå¯¹ï¼Œä¾‹å¦‚您è¦æ‰“开的电å书的页é¢æˆ–者这个组件的背景颜色。<br " "/>这项设置的更多信æ¯è¯·æŸ¥çœ‹{docs_anchor_open}edX LTI文档{anchor_close} " #: common/lib/xmodule/xmodule/lti_module.py @@ -3964,7 +3997,7 @@ msgid "" "in the current page. This setting is only used when Hide External Tool is " "set to False. " msgstr "" -"å¦‚æžœä½ æƒ³è¦å¦ç”Ÿé€šè¿‡ç‚¹å‡»ä¸€ä¸ªé“¾æŽ¥åœ¨ä¸€ä¸ªæ–°çª—å£ä¸æ‰“å¼€LTI工具,选择Trueã€‚å¦‚æžœä½ æƒ³è¦åœ¨å½“å‰é¡µé¢çš„一个IFrameä¸æ‰“å¼€LTI内容,选择False。这个设置åªæœ‰åœ¨" +"如果您想è¦å¦ç”Ÿé€šè¿‡ç‚¹å‡»ä¸€ä¸ªé“¾æŽ¥åœ¨ä¸€ä¸ªæ–°çª—å£ä¸æ‰“å¼€LTI工具,选择True。如果您想è¦åœ¨å½“å‰é¡µé¢çš„一个IFrameä¸æ‰“å¼€LTI内容,选择False。这个设置åªæœ‰åœ¨" " éšè—外部工具 设置为False的时候æ‰èƒ½ä½¿ç”¨ã€‚" #: common/lib/xmodule/xmodule/lti_module.py @@ -4027,7 +4060,7 @@ msgstr "需è¦ç”¨æˆ·é‚®ç®±" #. service. #: common/lib/xmodule/xmodule/lti_module.py msgid "Select True to request the user's email address." -msgstr "选择True 以è¦æ±‚用户的电å邮件地å€ã€‚" +msgstr "选择True 以请求用户的邮箱。" #: common/lib/xmodule/xmodule/lti_module.py msgid "LTI Application Information" @@ -4038,7 +4071,7 @@ msgid "" "Enter a description of the third party application. If requesting username " "and/or email, use this text box to inform users why their username and/or " "email will be forwarded to a third party application." -msgstr "输入第三方应用程åºçš„æ述。用æ¥å‘Šè¯‰ç”¨æˆ·ä¸ºä»€ä¹ˆç¬¬ä¸‰æ–¹åº”用程åºéœ€è¦ç”¨æˆ·çš„用户ååŠE-mail。" +msgstr "输入第三方应用程åºçš„æ述。用æ¥å‘Šè¯‰ç”¨æˆ·ä¸ºä»€ä¹ˆç¬¬ä¸‰æ–¹åº”用程åºéœ€è¦ç”¨æˆ·çš„用户ååŠç”µå邮箱。" #: common/lib/xmodule/xmodule/lti_module.py msgid "Button Text" @@ -4135,7 +4168,7 @@ msgid "" "problems in your course. Valid values are \"always\", \"onreset\", " "\"never\", and \"per_student\"." msgstr "" -"指定éšå«å˜é‡å€¼å¤šä¹…会å‘生问题是采éšæœºç³»ç»Ÿé»˜è®¤ã€‚æ¤è®¾å®šåº”设为“从ä¸â€ï¼Œé™¤éžä½ 打算æ供一个Python script " +"指定éšå«å˜é‡å€¼å¤šä¹…会å‘生问题是采éšæœºç³»ç»Ÿé»˜è®¤ã€‚æ¤è®¾å®šåº”设为“从ä¸â€ï¼Œé™¤éžæ‚¨æ‰“ç®—æ供一个Python script " "æ¥éšæœºè¾¨è¯†æ‚¨çš„课程ä¸å¤§éƒ¨åˆ†é—®é¢˜ã€‚有效å—段为“永远â€ï¼Œâ€œå½“reset æ—¶â€ï¼Œâ€œä»Žä¸â€ï¼Œä»¥åŠâ€œæ¯åå¦ç”Ÿâ€ã€‚" #: common/lib/xmodule/xmodule/modulestore/inheritance.py @@ -4251,7 +4284,7 @@ msgid "" "settings. All existing problems are affected when this course-wide setting " "is changed." msgstr "" -"输入true或false。为true时,课程ä¸çš„问题总是默认显示一个“é‡ç½®â€æŒ‰é’®ï¼Œä½ å¯ä»¥åœ¨æ¯ä¸ªé—®é¢˜çš„设置ä¸é‡è®¾ã€‚当该课程范围内的设置改å˜æ—¶ï¼Œæ‰€æœ‰å·²å˜åœ¨çš„问题都将å—å½±å“。" +"输入true或false。为true时,课程ä¸çš„问题总是默认显示一个“é‡ç½®â€æŒ‰é’®ï¼Œæ‚¨å¯ä»¥åœ¨æ¯ä¸ªé—®é¢˜çš„设置ä¸é‡è®¾ã€‚当该课程范围内的设置改å˜æ—¶ï¼Œæ‰€æœ‰å·²å˜åœ¨çš„问题都将å—å½±å“。" #: common/lib/xmodule/xmodule/modulestore/inheritance.py msgid "Enable Student Notes" @@ -4379,6 +4412,14 @@ msgid "" "Practice exams are not verified." msgstr "该设置表明这场考试是å¦ä»…用于测试目的。模拟考试未ç»è¿‡èº«ä»½è®¤è¯ã€‚" +#: common/lib/xmodule/xmodule/seq_module.py +msgid "Is Onboarding Exam" +msgstr "是入èŒè€ƒè¯•" + +#: common/lib/xmodule/xmodule/seq_module.py +msgid "This setting indicates whether this exam is an onboarding exam." +msgstr "该设置表明这场考试是å¦æ˜¯ä¸€åœºå…¥èŒè€ƒè¯•ã€‚" + #: common/lib/xmodule/xmodule/seq_module.py msgid "" "This subsection is unlocked for learners when they meet the prerequisite " @@ -4559,7 +4600,7 @@ msgid "" "The URL for your video. This can be a YouTube URL or a link to an .mp4, " ".ogg, or .webm video file hosted elsewhere on the Internet." msgstr "" -"该地å€æŒ‡å‘视频链接。这å¯èƒ½æ˜¯ä¸€ä¸ªYouTube的网å€æˆ–者一个å˜å‚¨äºŽå…¶ä»–互è”网æœåŠ¡å™¨çš„ .mp4, .ogg, 或者.webm æ ¼å¼è§†é¢‘的链接地å€ã€‚" +"该地å€æŒ‡å‘视频链接。这å¯èƒ½æ˜¯ä¸€ä¸ªYouTube的网å€æˆ–者一个å˜å‚¨äºŽå…¶ä»–互è”网æœåŠ¡å™¨çš„ .mp4,.ogg,或者.webm æ ¼å¼è§†é¢‘的链接地å€ã€‚" #: common/lib/xmodule/xmodule/video_module/video_module.py msgid "Default Video URL" @@ -4861,9 +4902,94 @@ msgstr "所有å¦å‘˜å‘布的所有è¯æ±‡" msgid "Top num_top_words words for word cloud." msgstr "è¯äº‘ä¸çš„最çƒé—¨è¯æ±‡" +#: common/lib/xmodule/xmodule/x_module.py +#, python-brace-format +msgid "" +"{display_name} is only accessible to enrolled learners. Sign in or register," +" and enroll in this course to view it." +msgstr "{display_name} 仅供注册的å¦å‘˜ä½¿ç”¨ã€‚ 登录或注册,并注册æ¤è¯¾ç¨‹ä»¥æŸ¥çœ‹å®ƒã€‚" + +#: common/templates/admin/student/loginfailures/change_form_template.html +msgid "Unlock Account" +msgstr "解é”账户" + +#. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# +#. 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) +#: common/templates/admin/student/loginfailures/change_form_template.html +#: lms/templates/wiki/edit.html lms/templates/wiki/history.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/ccx/schedule.html +#: lms/templates/dashboard/_dashboard_entitlement_unenrollment_modal.html +#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html +#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +#: lms/templates/instructor/instructor_dashboard_2/invalidate_registration_code_modal.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html +#: lms/templates/modal/_modal-settings-language.html +#: themes/edx.org/lms/templates/dashboard.html +#: themes/edx.org/lms/templates/dashboard/_dashboard_entitlement_unenrollment_modal.html +msgid "Close" +msgstr "å…³é—" + +#: common/templates/student/edx_ace/accountrecovery/email/body.html +msgid "Create Password" +msgstr "创建密ç " + +#: common/templates/student/edx_ace/accountrecovery/email/body.html +#: common/templates/student/edx_ace/accountrecovery/email/body.txt +#, python-format +msgid "" +"You're receiving this e-mail because you requested to create a password for " +"your user account at %(platform_name)s." +msgstr "您收到æ¤ç”µåé‚®ä»¶æ˜¯å› ä¸ºæ‚¨åœ¨%(platform_name)s申请了账户密ç 创建" + +#: common/templates/student/edx_ace/accountrecovery/email/body.html +#: common/templates/student/edx_ace/accountrecovery/email/body.txt +#, python-format +msgid "" +"We've restored access to your %(platform_name)s account using the recovery " +"email you provided at registration." +msgstr "我们已使用您在注册时æ供的验è¯é‚®ç®±æ¢å¤äº†å¯¹æ‚¨çš„%(platform_name)s账户的访问æƒé™" + +#: common/templates/student/edx_ace/accountrecovery/email/body.html +#: common/templates/student/edx_ace/accountrecovery/email/body.txt +#, python-format +msgid "" +"Once you've created a password [below], you will be able to log in to " +"%(platform_name)s with this email (%(email)s) and your new password." +msgstr "[below]创建密ç åŽï¼Œæ‚¨å°†å¯ä»¥ä½¿ç”¨æ¤ç”µå邮件(%(email)s)和新密ç 登录%(platform_name)s。" + +#: common/templates/student/edx_ace/accountrecovery/email/body.html +#: common/templates/student/edx_ace/accountrecovery/email/body.txt +#: common/templates/student/edx_ace/passwordreset/email/body.html +#: common/templates/student/edx_ace/passwordreset/email/body.txt +msgid "" +"If you didn't request this change, you can disregard this email - we have " +"not yet reset your password." +msgstr "如您本人并没有请求该å˜æ›´ï¼Œè¯·å¿½ç•¥æœ¬é‚®ä»¶â€”—我们尚未é‡ç½®æ‚¨çš„密ç 。" + +#: common/templates/student/edx_ace/accountrecovery/email/body.txt +#: common/templates/student/edx_ace/passwordreset/email/body.txt +msgid "Thanks for using our site!" +msgstr "谢谢您访问我们的网站ï¼" + +#: common/templates/student/edx_ace/accountrecovery/email/body.txt +#: common/templates/student/edx_ace/passwordreset/email/body.txt +#, python-format +msgid "The %(platform_name)s Team" +msgstr "%(platform_name)s 团队" + +#: common/templates/student/edx_ace/accountrecovery/email/subject.txt +#, python-format +msgid "Password creation on %(platform_name)s" +msgstr "%(platform_name)s创建密ç " + #: common/templates/student/edx_ace/emailchange/email/body.html msgid "Email Change" -msgstr "电å邮件å˜æ›´" +msgstr "邮箱å˜æ›´" #: common/templates/student/edx_ace/emailchange/email/body.html #: common/templates/student/edx_ace/emailchange/email/body.txt @@ -4873,8 +4999,8 @@ msgid "" "%(platform_name)s account from %(old_email)s to %(new_email)s. If this is " "correct, please confirm your new e-mail address by visiting:" msgstr "" -"我们收到了您需è¦å°†%(platform_name)s 账户的电å邮箱关è”ç”± %(old_email)s å˜æ›´ä¸º %(new_email)s " -"çš„è¯·æ±‚ã€‚å¦‚è¯¥è¯·æ±‚æ— è¯¯ï¼Œè¯·è®¿é—®å¦‚ä¸‹ç½‘é¡µä»¥ç¡®è®¤æ‚¨çš„æ–°ç”µå邮箱地å€ï¼š" +"我们收到了您需è¦å°†%(platform_name)s è´¦å·çš„邮箱关è”ç”± %(old_email)s å˜æ›´ä¸º %(new_email)s " +"çš„è¯·æ±‚ã€‚å¦‚è¯¥è¯·æ±‚æ— è¯¯ï¼Œè¯·è®¿é—®å¦‚ä¸‹ç½‘é¡µä»¥ç¡®è®¤æ‚¨çš„æ–°é‚®ç®±ï¼š" #: common/templates/student/edx_ace/emailchange/email/body.html msgid "Confirm Email Change" @@ -4888,12 +5014,37 @@ msgid "" " any more email from us. Please do not reply to this e-mail; if you require " "assistance, check the help section of the %(platform_name)s web site." msgstr "" -"如果您没å‘出过该请求,您å¯ä»¥å¿½ç•¥è¯¥é‚®ä»¶ï¼›ä½ å°†ä¸ä¼šæ”¶åˆ°å…¶å®ƒä»»ä½•æˆ‘们的邮件。请ä¸è¦å›žå¤æ¤é‚®ä»¶ï¼›å¦‚需帮助,请访问%(platform_name)s网站的帮助区域。" +"如果您没å‘出过该请求,您å¯ä»¥å¿½ç•¥è¯¥é‚®ä»¶ï¼›æ‚¨å°†ä¸ä¼šæ”¶åˆ°å…¶å®ƒä»»ä½•æˆ‘们的邮件。请ä¸è¦å›žå¤æ¤é‚®ä»¶ï¼›å¦‚需帮助,请访问%(platform_name)s网站的帮助区域。" #: common/templates/student/edx_ace/emailchange/email/subject.txt #, python-format msgid "Request to change %(platform_name)s account e-mail" -msgstr "å˜æ›´%(platform_name)s电å邮箱账户的请求" +msgstr "å˜æ›´%(platform_name)s电å邮箱账å·çš„请求" + +#: common/templates/student/edx_ace/emailchangeconfirmation/email/body.html +#: common/templates/student/edx_ace/emailchangeconfirmation/email/subject.txt +#, python-format +msgid "Email Change Confirmation for %(platform_name)s" +msgstr "%(platform_name)s电å邮件更改确认" + +#: common/templates/student/edx_ace/emailchangeconfirmation/email/body.html +#: common/templates/student/edx_ace/emailchangeconfirmation/email/body.txt +#, python-format +msgid "" +"This is to confirm that you changed the e-mail associated with " +"%(platform_name)s from %(old_email)s to %(new_email)s. If you did not make " +"this request, please contact us immediately. Contact information is listed " +"at:" +msgstr "" +"è¿™å°ç”µå邮件是为了确认您与%(platform_name)så…³è”的邮箱由%(old_email)så˜æ›´ä¸º%(new_email)s。如果您并没有å‘出该请求,请立刻通过以下方å¼è”系我们。" + +#: common/templates/student/edx_ace/emailchangeconfirmation/email/body.html +#: common/templates/student/edx_ace/emailchangeconfirmation/email/body.txt +#: themes/stanford-style/lms/templates/emails/confirm_email_change.txt +msgid "" +"We keep a log of old e-mails, so if this request was unintentional, we can " +"investigate." +msgstr "我们ä¿å˜ç€æ—§ç”µå邮件信æ¯çš„日志,所以如果该请求并éžæ˜¯æ‚¨æœ‰æ„å‘出的,我们å¯ä»¥å¯¹æ¤è¿›è¡Œè°ƒæŸ¥ã€‚" #: common/templates/student/edx_ace/passwordreset/email/body.html #: lms/templates/forgot_password_modal.html @@ -4906,7 +5057,7 @@ msgstr "密ç é‡ç½®" msgid "" "You're receiving this e-mail because you requested a password reset for your" " user account at %(platform_name)s." -msgstr "由于您在%(platform_name)s申请了账户密ç é‡ç½®ï¼Œå› 而收到æ¤é‚®ä»¶ã€‚" +msgstr "您收到æ¤é‚®ä»¶æ˜¯å› 为您在%(platform_name)s申请了账å·å¯†ç é‡ç½®ã€‚" #: common/templates/student/edx_ace/passwordreset/email/body.html #: common/templates/student/edx_ace/passwordreset/email/body.txt @@ -4914,20 +5065,13 @@ msgstr "由于您在%(platform_name)s申请了账户密ç é‡ç½®ï¼Œå› 而收到 msgid "" "However, there is currently no user account associated with your email " "address: %(email_address)s." -msgstr "您的邮箱地å€%(email_address)s当å‰æœªä¸Žä»»ä½•è´¦å·ç›¸å…³è”。" +msgstr "您的邮箱%(email_address)s当å‰æœªä¸Žä»»ä½•è´¦å·ç›¸å…³è”。" #: common/templates/student/edx_ace/passwordreset/email/body.html #: common/templates/student/edx_ace/passwordreset/email/body.txt msgid "If you did not request this change, you can ignore this email." msgstr "如果您没有申请作出更改,请忽略æ¤é‚®ä»¶ã€‚" -#: common/templates/student/edx_ace/passwordreset/email/body.html -#: common/templates/student/edx_ace/passwordreset/email/body.txt -msgid "" -"If you didn't request this change, you can disregard this email - we have " -"not yet reset your password." -msgstr "å¦‚æžœä½ æ²¡æœ‰è¯·æ±‚è¯¥å˜æ›´ï¼Œè¯·å¿½ç•¥æœ¬é‚®ä»¶â€”—我们尚未é‡ç½®ä½ 的密ç 。" - #: common/templates/student/edx_ace/passwordreset/email/body.html msgid "Change my Password" msgstr "修改密ç " @@ -4936,26 +5080,46 @@ msgstr "修改密ç " msgid "Please go to the following page and choose a new password:" msgstr "请到以下页é¢è®¾ç½®æ–°çš„密ç :" -#: common/templates/student/edx_ace/passwordreset/email/body.txt -msgid "Thanks for using our site!" -msgstr "谢谢您访问我们的网站ï¼" - -#: common/templates/student/edx_ace/passwordreset/email/body.txt -#, python-format -msgid "The %(platform_name)s Team" -msgstr "%(platform_name)s 团队" - #: common/templates/student/edx_ace/passwordreset/email/subject.txt #, python-format msgid "Password reset on %(platform_name)s" msgstr "%(platform_name)sé‡ç½®å¯†ç " +#: common/templates/student/edx_ace/recoveryemailcreate/email/body.html +msgid "Create Recovery Email" +msgstr "创建验è¯é‚®ç®±" + +#: common/templates/student/edx_ace/recoveryemailcreate/email/body.html +#: common/templates/student/edx_ace/recoveryemailcreate/email/body.txt +#, python-format +msgid "You've registered this recovery email address for %(platform_name)s." +msgstr "您已为%(platform_name)s注册验è¯é‚®ç®±" + +#: common/templates/student/edx_ace/recoveryemailcreate/email/body.html +#: common/templates/student/edx_ace/recoveryemailcreate/email/body.txt +msgid "" +"If you set this email address, click \"confirm email.\" If you didn't " +"request this change, you can disregard this email." +msgstr "å¦‚æžœä½ è¦è®¾ç½®è¯¥ç”µå邮箱,点击“邮箱确认â€ã€‚如果您没有申请åšå‡ºæ›´æ”¹ï¼Œè¯·å¿½ç•¥æ¤é‚®ä»¶ã€‚" + +#. Translators: This label appears above a field on the registration form +#. meant to confirm the user's email address. +#: common/templates/student/edx_ace/recoveryemailcreate/email/body.html +#: openedx/core/djangoapps/user_api/api.py +msgid "Confirm Email" +msgstr "确认邮箱" + +#: common/templates/student/edx_ace/recoveryemailcreate/email/subject.txt +#, python-format +msgid "Confirm your recovery email for %(platform_name)s" +msgstr "%(platform_name)s验è¯é‚®ç®±ç¡®è®¤" + #: lms/djangoapps/badges/events/course_complete.py #, python-brace-format msgid "" "Completed the course \"{course_name}\" ({course_mode}, {start_date} - " "{end_date})" -msgstr "已修完课程“{course_name}â€({course_mode}, {start_date} - {end_date})" +msgstr "已修完课程“{course_name}â€({course_mode},{start_date} - {end_date})" #: lms/djangoapps/badges/events/course_complete.py #, python-brace-format @@ -5000,7 +5164,7 @@ msgid "" "comma, and the slug of a badge class you have created that has the issuing " "component 'openedx__course'. For example: 3,enrolled_3_courses" msgstr "" -"在æ¯ä¸€è¡Œä¸Šï¼Œåˆ—å‡ºä¸ºäº†èŽ·å¾—å¾½ç« çš„å·²å®Œæˆè¯¾ç¨‹çš„æ•°ç›®ã€ä¸€ä¸ªé€—å·ä»¥åŠä½ 创建的具有å‘行组件“openedx__courseâ€çš„å¾½ç« ç±»åˆ«æ ‡è¯ã€‚例如:3, " +"在æ¯ä¸€è¡Œä¸Šï¼Œåˆ—å‡ºä¸ºäº†èŽ·å¾—å¾½ç« çš„å·²å®Œæˆè¯¾ç¨‹çš„æ•°ç›®ã€ä¸€ä¸ªé€—å·ä»¥åŠæ‚¨åˆ›å»ºçš„具有å‘行组件“openedx__courseâ€çš„å¾½ç« ç±»åˆ«æ ‡è¯ã€‚例如:3, " "已登记_3_个课程" #: lms/djangoapps/badges/models.py @@ -5009,7 +5173,7 @@ msgid "" "comma, and the slug of a badge class you have created that has the issuing " "component 'openedx__course'. For example: 3,enrolled_3_courses" msgstr "" -"在æ¯ä¸€è¡Œä¸Šï¼Œåˆ—å‡ºä¸ºäº†èŽ·å¾—å¾½ç« çš„å·²ç™»è®°è¯¾ç¨‹çš„æ•°ç›®ã€ä¸€ä¸ªé€—å·ä»¥åŠä½ 创建的具有å‘行组件“openedx__courseâ€çš„å¾½ç« ç±»åˆ«æ ‡è¯ã€‚例如:3, " +"在æ¯ä¸€è¡Œä¸Šï¼Œåˆ—å‡ºä¸ºäº†èŽ·å¾—å¾½ç« çš„å·²ç™»è®°è¯¾ç¨‹çš„æ•°ç›®ã€ä¸€ä¸ªé€—å·ä»¥åŠæ‚¨åˆ›å»ºçš„具有å‘行组件“openedx__courseâ€çš„å¾½ç« ç±»åˆ«æ ‡è¯ã€‚例如:3, " "已登记_3_个课程" #: lms/djangoapps/badges/models.py @@ -5020,27 +5184,27 @@ msgid "" "learner needs to complete to be awarded the badge. For example: " "slug_for_compsci_courses_group_badge,course-v1:CompSci+Course+First,course-v1:CompsSci+Course+Second" msgstr "" -"æ¯ä¸€è¡Œéƒ½æ˜¯ä»¥é€—å·åˆ†éš”的列表。æ¯ä¸€è¡Œçš„ç¬¬ä¸€é¡¹æ˜¯ä½ åˆ›å»ºçš„å…·æœ‰å‘行组件“openedx__courseâ€çš„å¾½ç« ç±»åˆ«æ ‡è¯ã€‚æ¯ä¸€è¡Œçš„其余项是å¦å‘˜ä¸ºäº†èŽ·å¾—å¾½ç« éœ€è¦å®Œæˆçš„课程è¦é¢†ã€‚例如:slug_for_compsci_courses_group_badge,course-v1:CompSci+Course+First,course-v1:CompsSci+Course+Second" +"æ¯ä¸€è¡Œéƒ½æ˜¯ä»¥é€—å·åˆ†éš”的列表。æ¯ä¸€è¡Œçš„第一项是您创建的具有å‘行组件“openedx__courseâ€çš„å¾½ç« ç±»åˆ«æ ‡è¯ã€‚æ¯ä¸€è¡Œçš„其余项是å¦å‘˜ä¸ºäº†èŽ·å¾—å¾½ç« éœ€è¦å®Œæˆçš„课程è¦é¢†ã€‚例如:slug_for_compsci_courses_group_badge,course-v1:CompSci+Course+First,course-v1:CompsSci+Course+Second" #: lms/djangoapps/badges/models.py msgid "Please check the syntax of your entry." -msgstr "è¯·æ£€æŸ¥ä½ çš„æ¡ç›®çš„å¥æ³•ã€‚" +msgstr "请检查æ¡ç›®çš„å¥æ³•ã€‚" #: lms/djangoapps/branding/api.py msgid "Take free online courses at edX.org" msgstr "在 edX.org å¦ä¹ å…费课程" -#. Translators: 'EdX', 'edX', and 'Open edX' are trademarks of 'edX Inc.'. +#. Translators: 'edX' and 'Open edX' are trademarks of 'edX Inc.'. #. Please do not translate any of these trademarks and company names. #: lms/djangoapps/branding/api.py #, python-brace-format msgid "" -"© {org_name}. All rights reserved except where noted. EdX, Open edX and " -"their respective logos are trademarks or registered trademarks of edX Inc." -msgstr "© {org_name}。版æƒæ‰€æœ‰ï¼Œé™¤éžå¦æœ‰æ³¨æ˜Žã€‚EdXã€Open edXåŠå…¶å„è‡ªçš„æ ‡è¯†çš†ä¸ºedX Incçš„å•†æ ‡æˆ–æ³¨å†Œå•†æ ‡ã€‚" +"© {org_name}. All rights reserved except where noted. edX, Open edX and " +"their respective logos are registered trademarks of edX Inc." +msgstr "" #. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# -#. Translators: 'Open edX' is a brand, please keep this untranslated. +#. Translators: 'Open edX' is a trademark, please keep this untranslated. #. See http://openedx.org for more information. #. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# #. Translators: 'Open edX' is a brand, please keep this untranslated. See @@ -5074,15 +5238,19 @@ msgstr "多媒体工具箱" msgid "Donate" msgstr "æ助" +#: lms/djangoapps/branding/api.py lms/templates/footer.html +#: lms/templates/static_templates/about.html +#: themes/red-theme/lms/templates/footer.html +#: themes/stanford-style/lms/templates/footer.html +#: themes/stanford-style/lms/templates/static_templates/about.html +msgid "About" +msgstr "关于我们" + #: lms/djangoapps/branding/api.py #, python-brace-format msgid "{platform_name} for Business" msgstr "ä¼ä¸š{platform_name} " -#: lms/djangoapps/branding/api.py themes/red-theme/lms/templates/footer.html -msgid "News" -msgstr "æ–°é—»" - #: lms/djangoapps/branding/api.py lms/templates/static_templates/contact.html #: themes/red-theme/lms/templates/footer.html #: themes/stanford-style/lms/templates/footer.html @@ -5096,6 +5264,10 @@ msgstr "è”系我们" msgid "Careers" msgstr "æ‹›è˜" +#: lms/djangoapps/branding/api.py themes/red-theme/lms/templates/footer.html +msgid "News" +msgstr "æ–°é—»" + #: lms/djangoapps/branding/api.py lms/djangoapps/certificates/views/webview.py #: themes/edx.org/lms/templates/certificates/_accomplishment-footer.html msgid "Terms of Service & Honor Code" @@ -5118,10 +5290,6 @@ msgstr "éšç§æ”¿ç–" msgid "Accessibility Policy" msgstr "å¯è®¿é—®ç–ç•¥" -#: lms/djangoapps/branding/api.py -msgid "Sitemap" -msgstr "网站导航" - #. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# #. Translators: This is a legal document users must agree to #. in order to register a new account. @@ -5133,6 +5301,10 @@ msgstr "网站导航" msgid "Terms of Service" msgstr "æœåŠ¡æ¡æ¬¾" +#: lms/djangoapps/branding/api.py +msgid "Sitemap" +msgstr "网站导航" + #: lms/djangoapps/branding/api.py msgid "Affiliates" msgstr "附属机构" @@ -5169,7 +5341,7 @@ msgstr "CCX指导" msgid "" "A CCX can only be created on this course through an external service. " "Contact a course admin to give you access." -msgstr "CCX ä»…å¯ä»¥é€šè¿‡å¤–部æœåŠ¡åœ¨æ¤è¯¾ç¨‹ä¸Šåˆ›å»ºã€‚è”系课程管ç†å‘˜æŽˆäºˆä½ 访问æƒé™ã€‚" +msgstr "CCX ä»…å¯ä»¥é€šè¿‡å¤–部æœåŠ¡åœ¨æ¤è¯¾ç¨‹ä¸Šåˆ›å»ºã€‚è”系课程管ç†å‘˜æŽˆäºˆæ‚¨è®¿é—®æƒé™ã€‚" #: lms/djangoapps/ccx/utils.py #, python-brace-format @@ -5178,7 +5350,7 @@ msgstr "æ¤é—¨è¯¾å·²é¢æ»¡:人数é™åˆ¶ä¸º {max_student_enrollments_allowed}" #: lms/djangoapps/ccx/views.py msgid "You must be a CCX Coach to access this view." -msgstr "ä½ éœ€è¦æˆä¸ºCCX指导æ‰èƒ½è®¿é—®è¯¥è§†å›¾ã€‚" +msgstr "您需è¦æˆä¸ºCCX指导æ‰èƒ½è®¿é—®è¯¥è§†å›¾ã€‚" #: lms/djangoapps/ccx/views.py msgid "You must be the coach for this ccx to access this view" @@ -5561,7 +5733,7 @@ msgstr "关于 {user_name} è¯ä¹¦çš„更多信æ¯ï¼š" #: lms/djangoapps/certificates/views/webview.py #, python-brace-format msgid "{fullname}, you earned a certificate!" -msgstr "{fullname}ï¼Œä½ å·²ç»å–å¾—è¯ä¹¦ï¼" +msgstr "{fullname},您已ç»å–å¾—è¯ä¹¦ï¼" #. Translators: This line congratulates the user and instructs them to share #. their accomplishment on social networks @@ -5569,7 +5741,7 @@ msgstr "{fullname}ï¼Œä½ å·²ç»å–å¾—è¯ä¹¦ï¼" msgid "" "Congratulations! This page summarizes what you accomplished. Show it off to " "family, friends, and colleagues in your social and professional networks." -msgstr "æå–œ!本页总结您所完æˆä¹‹é¡¹ç›®ã€‚在您的社交和专业网络展示给家人,朋å‹å’ŒåŒäº‹ã€‚" +msgstr "æå–œï¼æœ¬é¡µæ€»ç»“了您所获得的æˆå°±ã€‚在您的社交网络å‘家人ã€æœ‹å‹å’ŒåŒäº‹ç‚«è€€ä¸€ä¸‹å§ã€‚" #. Translators: This line leads the reader to understand more about the #. certificate that a student has been awarded @@ -5637,7 +5809,7 @@ msgstr "{course_id} 课程ä¸å˜åœ¨ã€‚" #: lms/djangoapps/commerce/models.py msgid "Use the checkout page hosted by the E-Commerce service." -msgstr "é€è¿‡ä½¿ç”¨ç”µå商务æœåŠ¡æ‰¿è½½ç»“å¸é¡µé¢ã€‚" +msgstr "é€è¿‡ä½¿ç”¨ç”µå商务æœåŠ¡æ‰¿è½½ç»“账页é¢ã€‚" #: lms/djangoapps/commerce/models.py msgid "Path to course(s) checkout page hosted by the E-Commerce service." @@ -5964,10 +6136,16 @@ msgstr "您必须在这个日期之å‰æˆåŠŸå®ŒæˆéªŒè¯ï¼Œä»¥å…·å¤‡èŽ·å–åˆæ ¼ #: lms/djangoapps/courseware/masquerade.py #, python-brace-format msgid "" -"There is no user with the username or email address \"{user_identifier}\" " +"There is no user with the username or email address u\"{user_identifier}\" " "enrolled in this course." msgstr "在æ¤é—¨è¯¾ç¨‹çš„å¦å‘˜ä¸ï¼Œæœªæ‰¾åˆ°ä½¿ç”¨ç”¨æˆ·å或邮箱为{user_identifier}的用户。" +#: lms/djangoapps/courseware/masquerade.py +msgid "" +"This user does not have access to this content because" +" the content start date is in the future" +msgstr "æ¤ç”¨æˆ·æ— æƒè®¿é—®æ¤å†…å®¹ï¼Œå› ä¸ºå†…å®¹å¼€å§‹æ—¥æœŸåœ¨å°†æ¥" + #: lms/djangoapps/courseware/masquerade.py msgid "" "This type of component cannot be shown while viewing the course as a " @@ -6091,6 +6269,20 @@ msgstr "您的è¯ä¹¦å·²å¯ç”¨" msgid "To see course content, {sign_in_link} or {register_link}." msgstr "请{sign_in_link}或{register_link}以查看课程内容。" +#: lms/djangoapps/courseware/views/views.py +#: openedx/features/course_experience/views/course_home_messages.py +#, python-brace-format +msgid "{sign_in_link} or {register_link}." +msgstr "" + +#: lms/djangoapps/courseware/views/views.py +#: openedx/features/course_experience/views/course_home_messages.py +#: lms/templates/header/navbar-not-authenticated.html +#: lms/templates/navigation/navbar-not-authenticated.html +#: themes/edx.org/lms/templates/header/navbar-not-authenticated.html +msgid "Sign in" +msgstr "登录" + #: lms/djangoapps/courseware/views/views.py #, python-brace-format msgid "" @@ -6163,18 +6355,18 @@ msgstr "请告诉我们关于您的å¦ä¹ æˆ–ä¸“ä¸šç›®æ ‡ã€‚ä¸€ä»½è¿™é—¨è¯¾çš„è®¤ msgid "" "Tell us about your plans for this course. What steps will you take to help " "you complete the course work and receive a certificate?" -msgstr "å‘Šè¯‰æˆ‘ä»¬æœ‰å…³äºŽä½ è®¡ç”»çš„è¿™é—¨è¯¾ç¨‹ã€‚ä½ ä¼šé‡‡å–什么措施æ¥å¸®åŠ©æ‚¨å®Œæˆè¯¾ç¨‹å¦ä¹ ,并获得è¯ä¹¦ï¼Ÿ" +msgstr "告诉我们有关于您计划的这门课程。您会采å–什么措施æ¥å¸®åŠ©æ‚¨å®Œæˆè¯¾ç¨‹å¦ä¹ ,并获得è¯ä¹¦ï¼Ÿ" #: lms/djangoapps/courseware/views/views.py msgid "Use between 250 and 500 words or so in your response." -msgstr "ä½ çš„å›žåº”å—数应在250到500å—之间。" +msgstr "您的回ç”å—数应在250到500å—之间。" #: lms/djangoapps/courseware/views/views.py msgid "" "Select the course for which you want to earn a verified certificate. If the " "course does not appear in the list, make sure that you have enrolled in the " "audit track for the course." -msgstr "选择您想è¦èŽ·å¾—修课è¯æ˜Žä¹‹è¯¾ç¨‹ã€‚如果课程没出现在列表ä¸ï¼Œè¯·ç¡®è®¤ä½ å·²ç»æ³¨å†ŒåŠè¿½è¸ªè¯¥è¯¾ç¨‹ã€‚" +msgstr "选择您想è¦èŽ·å¾—修课è¯æ˜Žä¹‹è¯¾ç¨‹ã€‚如果课程没出现在列表ä¸ï¼Œè¯·ç¡®è®¤æ‚¨å·²ç»æ³¨å†ŒåŠè¿½è¸ªè¯¥è¯¾ç¨‹ã€‚" #: lms/djangoapps/courseware/views/views.py msgid "Specify your annual household income in US Dollars." @@ -6196,8 +6388,8 @@ msgstr "路径 {0} ä¸å˜åœ¨ï¼Œè¯·åˆ›å»ºï¼Œæˆ–为GIT_REPO_DIR设置一个ä¸åŒ #: lms/djangoapps/dashboard/git_import.py msgid "" "Non usable git url provided. Expecting something like: " -"git@github.com:mitocw/edx4edx_lite.git" -msgstr "没有å¯å†™çš„Git地å€ã€‚æœŸå¾…ç±»ä¼¼è¿™æ ·çš„åœ°å€ï¼šgit@github.com:mitocw/edx4edx_lite.git" +"git@github.com:edx/edx4edx_lite.git" +msgstr "" #: lms/djangoapps/dashboard/git_import.py msgid "Unable to get git log" @@ -6227,7 +6419,7 @@ msgstr "æŒ‡å®šçš„è¿œç¨‹åˆ†æ”¯æ— æ•ˆã€‚" #. doesn't exist, or there is a problem changing to it. #: lms/djangoapps/dashboard/git_import.py msgid "Unable to switch to specified branch. Please check your branch name." -msgstr "æ— æ³•åˆ‡æ¢åˆ°æŒ‡å®šçš„åˆ†æ”¯ã€‚è¯·æ£€æŸ¥ä½ çš„åˆ†æ”¯å。" +msgstr "æ— æ³•åˆ‡æ¢åˆ°æŒ‡å®šçš„分支。请检查您的分支å。" #: lms/djangoapps/dashboard/management/commands/git_add_course.py msgid "" @@ -6235,37 +6427,6 @@ msgid "" " and optionally specified directory." msgstr "倒入指定的git代ç 仓库和å¯é€‰åˆ†æ”¯åˆ°æ¨¡å—库与å¯é€‰çš„指定目录。" -#. Translators: This message means that the user could not be authenticated -#. (that is, we could -#. not log them in for some reason - maybe they don't have permission, or -#. their password was wrong) -#: lms/djangoapps/dashboard/sysadmin.py -#, python-brace-format -msgid "Failed in authenticating {username}, error {error}\n" -msgstr "认è¯{username}失败, 错误代ç {error}\n" - -#. Translators: This message means that the user could not be authenticated -#. (that is, we could -#. not log them in for some reason - maybe they don't have permission, or -#. their password was wrong) -#: lms/djangoapps/dashboard/sysadmin.py -#, python-brace-format -msgid "Failed in authenticating {username}\n" -msgstr "验è¯{username}失败\n" - -#. Translators: this means that the password has been corrected (sometimes the -#. database needs to be resynchronized) -#. Translate this as meaning "the password was fixed" or "the password was -#. corrected". -#: lms/djangoapps/dashboard/sysadmin.py -msgid "fixed password" -msgstr "修改åŽçš„密ç " - -#. Translators: this means everything happened successfully, yay! -#: lms/djangoapps/dashboard/sysadmin.py -msgid "All ok!" -msgstr "一切æ£å¸¸ï¼" - #: lms/djangoapps/dashboard/sysadmin.py msgid "Must provide username" msgstr "请æ供用户å" @@ -6274,24 +6435,13 @@ msgstr "请æ供用户å" msgid "Must provide full name" msgstr "请æ供全å" -#. Translators: Domain is an email domain, such as "@gmail.com" #: lms/djangoapps/dashboard/sysadmin.py -#, python-brace-format -msgid "Email address must end in {domain}" -msgstr "电å邮箱地å€å¿…须以{domain}结尾" - -#: lms/djangoapps/dashboard/sysadmin.py -#, python-brace-format -msgid "Failed - email {email_addr} already exists as {external_id}" -msgstr "失败 - Email {email_addr} å·²ç»å˜åœ¨ä¸º {external_id}" - -#: lms/djangoapps/dashboard/sysadmin.py -msgid "Password must be supplied if not using certificates" -msgstr "没有使用认è¯æ—¶å¿…é¡»æ供密ç 。" +msgid "Password must be supplied" +msgstr "å¿…é¡»æ供密ç " #: lms/djangoapps/dashboard/sysadmin.py msgid "email address required (not username)" -msgstr "电å邮件地å€å¿…å¡«(ä¸æ˜¯ç”¨æˆ·å)" +msgstr "邮箱必填(ä¸æ˜¯ç”¨æˆ·å)" #: lms/djangoapps/dashboard/sysadmin.py #, python-brace-format @@ -6334,10 +6484,6 @@ msgstr "网站统计" msgid "Total number of users" msgstr "用户总数" -#: lms/djangoapps/dashboard/sysadmin.py -msgid "Courses loaded in the modulestore" -msgstr "å·²åŠ è½½è¯¾ç¨‹è‡³æ¨¡å—仓库" - #: lms/djangoapps/dashboard/sysadmin.py #: lms/djangoapps/support/views/manage_user.py lms/templates/tracking_log.html msgid "username" @@ -6345,11 +6491,7 @@ msgstr "用户å" #: lms/djangoapps/dashboard/sysadmin.py msgid "email" -msgstr "电å邮件" - -#: lms/djangoapps/dashboard/sysadmin.py -msgid "Repair Results" -msgstr "ä¿®å¤ç»“æžœ" +msgstr "邮箱" #: lms/djangoapps/dashboard/sysadmin.py msgid "Create User Results" @@ -6395,11 +6537,6 @@ msgstr "最åŽä¸€æ¬¡ç¼–辑者" msgid "Information about all courses" msgstr "所有课程信æ¯" -#: lms/djangoapps/dashboard/sysadmin.py -#, python-brace-format -msgid "Error - cannot get course with ID {0}<br/><pre>{1}</pre>" -msgstr "错误,ä¸èƒ½é€šè¿‡ ID {0}<br/><pre>{1}</pre> å–得课程" - #: lms/djangoapps/dashboard/sysadmin.py msgid "Deleted" msgstr "åˆ é™¤" @@ -6432,47 +6569,47 @@ msgstr "角色" msgid "full_name" msgstr "å…¨å" -#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.html -#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.txt -#, python-format -msgid "%(comment_username)s replied to <b>%(thread_title)s</b>:" -msgstr "%(comment_username)s回å¤äº†<b>%(thread_title)s</b>:" - -#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.html -#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.txt -msgid "View discussion" -msgstr "查看讨论" - -#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/subject.txt -#, python-format -msgid "Response to %(thread_title)s" -msgstr "%(thread_title)s的回å¤" - -#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/discussion/django_comment_client/base/views.py msgid "Title can't be empty" msgstr "æ ‡é¢˜ä¸èƒ½ä¸ºç©º" -#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/discussion/django_comment_client/base/views.py msgid "Body can't be empty" msgstr "内容ä¸èƒ½ä¸ºç©º" -#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/discussion/django_comment_client/base/views.py msgid "Topic doesn't exist" msgstr "主题ä¸å˜åœ¨" -#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/discussion/django_comment_client/base/views.py msgid "Comment level too deep" msgstr "评论层级过深" -#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/discussion/django_comment_client/base/views.py msgid "" "Error uploading file. Please contact the site administrator. Thank you." msgstr "ä¸Šä¼ æ–‡ä»¶å‡ºé”™ï¼Œè¯·è”系网站管ç†å‘˜ï¼Œè°¢è°¢ã€‚" -#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/discussion/django_comment_client/base/views.py msgid "Good" msgstr "好" +#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.html +#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.txt +#, python-format +msgid "%(comment_username)s replied to <b>%(thread_title)s</b>:" +msgstr "%(comment_username)s回å¤äº†<b>%(thread_title)s</b>:" + +#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.html +#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.txt +msgid "View discussion" +msgstr "查看讨论" + +#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/subject.txt +#, python-format +msgid "Response to %(thread_title)s" +msgstr "%(thread_title)s的回å¤" + #: lms/djangoapps/edxnotes/helpers.py msgid "EdxNotes Service is unavailable. Please try again in a few minutes." msgstr "EdxNotesæœåŠ¡ä¸å¯ç”¨ã€‚è¯·å‡ åˆ†é’ŸåŽé‡è¯•ã€‚" @@ -6544,7 +6681,7 @@ msgstr "Sailthru 用于å‘é€è¯¾ç¨‹å‡çº§çš„模æ¿ã€‚弃用。" #: lms/djangoapps/email_marketing/models.py msgid "Sailthru send template to use on purchasing a course seat. Deprecated " -msgstr "Sailthru 用于å‘é€è´ä¹°è¯¾ç¨‹åé¢çš„模æ¿ã€‚弃用。" +msgstr "Sailthru 用于å‘é€è´ä¹°è¯¾ç¨‹åå¸çš„模æ¿ã€‚弃用。" #: lms/djangoapps/email_marketing/models.py msgid "Use the Sailthru content API to fetch course tags." @@ -6585,6 +6722,11 @@ msgstr "{platform_name} 员工" msgid "Course Staff" msgstr "授课教师" +#: lms/djangoapps/instructor/paidcourse_enrollment_report.py +#: openedx/core/djangoapps/django_comment_common/models.py +msgid "Student" +msgstr "å¦ç”Ÿ" + #: lms/djangoapps/instructor/paidcourse_enrollment_report.py #: lms/templates/preview_menu.html #: lms/templates/instructor/instructor_dashboard_2/membership.html @@ -6624,11 +6766,11 @@ msgstr "ç›‘è€ƒè€ƒè¯•å®¡æ ¸çŠ¶æ€ï¼š{review_status}" #: lms/djangoapps/instructor/services.py #, python-brace-format msgid "" -"A proctored exam attempt for {exam_name} in {course_name} by username: " -"{student_username} was reviewed as {review_status} by the proctored exam " -"review provider." +"A proctored exam attempt for {exam_name} in {course_name} by username: {student_username} was reviewed as {review_status} by the proctored exam review provider.\n" +"Review link: {review_url}" msgstr "" -"在{course_name}ä¸çš„{exam_name}ç›‘è€ƒè€ƒè¯•ï¼šç”±ç›‘è€ƒè€ƒè¯•å®¡æ ¸è€…å®¡æ ¸{student_username}为{review_status} " +"在{course_name}ä¸çš„{exam_name}ç›‘è€ƒè€ƒè¯•ï¼šç”±ç›‘è€ƒè€ƒè¯•å®¡æ ¸è€…å®¡æ ¸ç”¨æˆ·å{student_username}为{review_status} \n" +"å®¡æ ¸é“¾æŽ¥ï¼š{review_url}" #: lms/djangoapps/instructor/settings/common.py msgid "Your Platform Insights" @@ -6654,7 +6796,7 @@ msgstr "å‘çŽ°ä¸€å¤„ä¸Žæ—¢å®šæ ‡è¯†ä¹‹é—´çš„å†²çªï¼Œè¯·å°è¯•ä½¿ç”¨å…¶ä»–æ ‡è¯† msgid "" "Make sure that the file you upload is in CSV format with no extraneous " "characters or rows." -msgstr "ç¡®è®¤ä½ ä¸Šä¼ çš„CSVæ ¼å¼çš„文件里ä¸åŒ…å«æ— 关的å—符或行。" +msgstr "ç¡®è®¤æ‚¨ä¸Šä¼ çš„CSVæ ¼å¼çš„文件里ä¸åŒ…å«æ— 关的å—符或行。" #: lms/djangoapps/instructor/views/api.py msgid "Could not read uploaded file." @@ -6665,7 +6807,7 @@ msgstr "ä¸èƒ½è¯»å–å·²ä¸Šä¼ çš„æ–‡ä»¶ã€‚" msgid "" "Data in row #{row_num} must have exactly four columns: email, username, full" " name, and country" -msgstr "第#{row_num}行的数æ®å¿…须是以下四列:E-mailã€ç”¨æˆ·åã€å…¨å以åŠå›½å®¶" +msgstr "第#{row_num}行的数æ®å¿…须是以下四列:电å邮箱ã€ç”¨æˆ·åã€å…¨å以åŠå›½å®¶" #: lms/djangoapps/instructor/views/api.py #, python-brace-format @@ -6677,7 +6819,7 @@ msgstr "æ— æ•ˆçš„é‚®ç®±{email_address}。" msgid "" "An account with email {email} exists but the provided username {username} is" " different. Enrolling anyway with {email}." -msgstr "电å邮件{email}çš„å¸æˆ·å·²å˜åœ¨ä½†æ˜¯æ‰€æ供的使用者å称{username}是ä¸åŒçš„。å¯ä»¥ç”¨{email}注册。" +msgstr "邮箱{email}çš„è´¦å·å·²å˜åœ¨ä½†æ˜¯æ‰€æ供的使用者å称{username}是ä¸åŒçš„。å¯ä»¥ç”¨{email}注册。" #: lms/djangoapps/instructor/views/api.py msgid "File is not attached." @@ -6768,7 +6910,7 @@ msgstr "用户ID" #: openedx/core/djangoapps/user_api/api.py lms/templates/ccx/enrollment.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Email" -msgstr "电å邮件" +msgstr "邮箱" #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor_task/tasks_helper/enrollments.py @@ -7083,13 +7225,13 @@ msgstr "è¯ä¹¦ä¾‹å¤– (user={user}) ä¸å˜åœ¨äºŽè¯ä¹¦æ‰¹å‡†åå•ä¸ã€‚请é‡æ–° msgid "" "Student username/email field is required and can not be empty. Kindly fill " "in username/email and then press \"Add to Exception List\" button." -msgstr "å¦ç”Ÿä½¿ç”¨è€…å称åŠç”µå邮件是必填且ä¸èƒ½ç©ºç™½ã€‚请填入使用者å称åŠç”µåé‚®ä»¶ï¼Œå¹¶æŒ‰â€œåŠ å…¥ä¾‹å¤–åå•â€æŒ‰é’®ã€‚" +msgstr "å¦ç”Ÿä½¿ç”¨è€…å称åŠé‚®ç®±æ˜¯å¿…填且ä¸èƒ½ç©ºç™½ã€‚请填入使用者å称åŠé‚®ç®±ï¼Œå¹¶æŒ‰â€œåŠ 入例外åå•â€æŒ‰é’®ã€‚" #: lms/djangoapps/instructor/views/api.py msgid "" "The record is not in the correct format. Please add a valid username or " "email address." -msgstr "记录éžä¸ºæ£ç¡®ä¹‹æ ¼å¼ã€‚è¯·åŠ å…¥æœ‰æ•ˆä½¿ç”¨è€…å称或email 网å€ã€‚" +msgstr "è®°å½•çš„æ ¼å¼ä¸æ£ç¡®ã€‚请填写有效的用户å或邮箱。" #: lms/djangoapps/instructor/views/api.py #, python-brace-format @@ -7145,7 +7287,7 @@ msgstr "è¯ä¹¦å¤±æ•ˆæ˜¯ä¸å˜åœ¨çš„,请é‡æ–°è½½å…¥é¡µé¢æˆ–å†è¯•ä¸€æ¬¡ã€‚" msgid "" "Student username/email field is required and can not be empty. Kindly fill " "in username/email and then press \"Invalidate Certificate\" button." -msgstr "å¦ç”Ÿä½¿ç”¨è€…å称åŠemail是必填的且ä¸èƒ½ç©ºç™½ã€‚请填入使用者å称åŠemail,并按“作废è¯ä¹¦â€çš„按钮。" +msgstr "å¦ç”Ÿç”¨æˆ·ååŠé‚®ç®±æ˜¯å¿…填的且ä¸èƒ½ç©ºç™½ã€‚请填入用户ååŠé‚®ç®±ï¼Œå¹¶æŒ‰â€œä½œåºŸè¯ä¹¦â€çš„按钮。" #: lms/djangoapps/instructor/views/api.py #, python-brace-format @@ -7153,8 +7295,7 @@ msgid "" "The student {student} does not have certificate for the course {course}. " "Kindly verify student username/email and the selected course are correct and" " try again." -msgstr "" -"å¦ç”Ÿ {student} 没有æ¤é—¨è¯¾ç¨‹ {course}之修课è¯æ˜Žã€‚请验è¯å¦ç”Ÿä½¿ç”¨è€…å称/email以åŠç¡®è®¤æ‰€é€‰ä¹‹è¯¾ç¨‹æ˜¯å¦æ£ç¡®ï¼Œç„¶åŽå†è¯•ä¸€æ¬¡ã€‚" +msgstr "å¦ç”Ÿ {student} 没有æ¤é—¨è¯¾ç¨‹ {course}之修课è¯æ˜Žã€‚请验è¯å¦ç”Ÿç”¨æˆ·å/邮箱以åŠç¡®è®¤æ‰€é€‰ä¹‹è¯¾ç¨‹æ˜¯å¦æ£ç¡®ï¼Œç„¶åŽé‡è¯•ã€‚" #: lms/djangoapps/instructor/views/coupons.py msgid "coupon id is None" @@ -7180,7 +7321,7 @@ msgstr "ç¼–å·ä¸º({coupon_id})çš„ä¼˜æƒ åˆ¸æ›´æ–°æˆåŠŸ" msgid "" "The code ({code}) that you have tried to define is already in use as a " "registration code" -msgstr "ä½ è¯•å›¾å®šä¹‰çš„è¿™ä¸ªå¡å· ({code})å·²ç»è¢«æ³¨å†Œç 使用了" +msgstr "您试图定义的这个å¡å· ({code})å·²ç»è¢«æ³¨å†Œç 使用了" #: lms/djangoapps/instructor/views/coupons.py msgid "Please Enter the Integer Value for Coupon Discount" @@ -7370,10 +7511,6 @@ msgstr "å•å…ƒ{0}没有è¦å»¶é•¿çš„截æ¢æ—¥æœŸã€‚" msgid "An extended due date must be later than the original due date." msgstr "延长的截æ¢æ—¥æœŸå¿…须在æ£å¸¸æˆªæ¢æ—¥æœŸä¹‹åŽã€‚" -#: lms/djangoapps/instructor/views/tools.py -msgid "No due date extension is set for that student and unit." -msgstr "还没有为å¦ç”Ÿå’Œå•å…ƒè®¾ç½®å¯å»¶é•¿çš„截æ¢æ—¥æœŸã€‚" - #. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# #. Translators: This label appears above a field on the registration form #. meant to hold the user's full name. @@ -7827,6 +7964,10 @@ msgstr "" msgid "My Notes" msgstr "我的笔记" +#: lms/djangoapps/program_enrollments/models.py +msgid "One of user or external_user_key must not be null." +msgstr "" + #: lms/djangoapps/shoppingcart/models.py msgid "Order Payment Confirmation" msgstr "订å•ä»˜æ¬¾ç¡®è®¤" @@ -7890,7 +8031,7 @@ msgstr "注册课程:{course_name}" #, python-brace-format msgid "" "Please visit your {link_start}dashboard{link_end} to see your new course." -msgstr "请å‰å¾€ä½ çš„{link_start}课程é¢æ¿{link_end}查看新课程。" +msgstr "请å‰å¾€æ‚¨çš„{link_start}课程é¢æ¿{link_end}查看新课程。" #: lms/djangoapps/shoppingcart/models.py #, python-brace-format @@ -7921,7 +8062,7 @@ msgstr "您å¯ä»¥å–消注册课程,并在开课åŽ14天内å¯å…¨é¢é€€è´¹ã€‚" msgid "" "If you haven't verified your identity yet, please start the verification " "process ({verification_url})." -msgstr "å¦‚æžœä½ è¿˜æ²¡æœ‰éªŒè¯ä½ 的身份,请立å³å¼€å§‹éªŒè¯å§ï¼ˆ{verification_url})。" +msgstr "如果您还没有验è¯æ‚¨çš„身份,请立å³å¼€å§‹éªŒè¯å§ï¼ˆ{verification_url})。" #: lms/djangoapps/shoppingcart/models.py msgid "" @@ -8027,7 +8168,7 @@ msgstr "金é¢" #: lms/djangoapps/shoppingcart/pdf.py msgid "Billing Address" -msgstr "å¸å•åœ°å€" +msgstr "è´¦å•åœ°å€" #: lms/djangoapps/shoppingcart/pdf.py msgid "Disclaimer" @@ -8304,7 +8445,7 @@ msgstr "" #: lms/djangoapps/shoppingcart/processors/CyberSource2.py msgid "" "Invalid account number. Possible action: retry with another form of payment." -msgstr "æ— æ•ˆçš„å¸æˆ·å·ç 。å¯èƒ½çš„解决方法:é‡è¯•å¦ä¸€ç§ä»˜æ¬¾æ–¹å¼ã€‚" +msgstr "æ— æ•ˆçš„è´¦å·å·ç 。å¯èƒ½çš„解决方法:é‡è¯•å¦ä¸€ç§ä»˜æ¬¾æ–¹å¼ã€‚" #: lms/djangoapps/shoppingcart/processors/CyberSource2.py msgid "" @@ -8329,7 +8470,7 @@ msgstr "付款被拒ç»ã€‚å¯èƒ½çš„解决方法:é‡è¯•å¦ä¸€ç§ä»˜æ¬¾æ–¹å¼ã€‚ msgid "" "There is a problem with the information in your CyberSource account. Please" " let us know at {0}" -msgstr "æ¤é—®é¢˜å¯èƒ½ä¸Žæ‚¨çš„CyberSource账户信æ¯æœ‰å…³ã€‚请通知我们{0}" +msgstr "æ¤é—®é¢˜å¯èƒ½ä¸Žæ‚¨çš„CyberSourceè´¦å·ä¿¡æ¯æœ‰å…³ã€‚请通知我们{0}" #: lms/djangoapps/shoppingcart/processors/CyberSource2.py msgid "The requested capture amount exceeds the originally authorized amount." @@ -8392,7 +8533,7 @@ msgid "" msgstr "" "\n" "扣费ï¼é¢„授æƒç”³è¯·ä¿¡æ¯å·²ç»æ交到支付系统,ä¸å¯æ’¤é”€ã€‚\n" -"æˆ–è€…ï¼Œä½ æ‰€è¯·æ±‚çš„äº¤æ˜“ç±»åž‹æ˜¯ä¸å¯æ’¤é”€çš„。\n" +"或者,您所请求的交易类型是ä¸å¯æ’¤é”€çš„。\n" " " #: lms/djangoapps/shoppingcart/processors/CyberSource2.py @@ -8612,7 +8753,7 @@ msgstr "æˆåŠŸ" #: lms/djangoapps/shoppingcart/views.py msgid "You do not have permission to view this page." -msgstr "ä½ æ²¡æœ‰è®¿é—®æ¤é¡µé¢çš„æƒé™ã€‚" +msgstr "您没有访问æ¤é¡µé¢çš„æƒé™ã€‚" #: lms/djangoapps/support/views/index.py msgid "View and regenerate certificates." @@ -8655,6 +8796,7 @@ msgid "View, create, and reissue learner entitlements" msgstr "查看ã€æ–°å»ºã€é‡æ–°é¢å‘å¦å‘˜æƒç›Š" #: lms/djangoapps/support/views/index.py +#: lms/templates/support/feature_based_enrollments.html msgid "Feature Based Enrollments" msgstr "基于功能的注册" @@ -8689,7 +8831,7 @@ msgstr "æˆåŠŸç¦ç”¨ç”¨æˆ·" #: lms/djangoapps/support/views/refund.py #: lms/templates/shoppingcart/billing_details.html msgid "Email Address" -msgstr "电å邮件地å€" +msgstr "邮箱" #: lms/djangoapps/support/views/refund.py #: openedx/core/djangoapps/schedules/admin.py @@ -8772,7 +8914,7 @@ msgstr "æ供的课程编å·{course_id}æ— æ•ˆã€‚" #: lms/djangoapps/teams/views.py msgid "You are already in a team in this course." -msgstr "ä½ å·²ç»åŠ 入了该课程ä¸çš„一个å°ç»„。" +msgstr "您已ç»åŠ 入了该课程ä¸çš„一个å°ç»„。" #: lms/djangoapps/teams/views.py msgid "username or team_id must be specified." @@ -8834,11 +8976,11 @@ msgstr "æ‹æ‘„" #: lms/djangoapps/verify_student/views.py msgid "Take a photo of your ID" -msgstr "æ‹æ‘„ä¸€å¼ ä½ èº«ä»½è¯ä»¶çš„照片" +msgstr "æ‹æ‘„ä¸€å¼ æ‚¨çš„èº«ä»½è¯ä»¶çš„照片" #: lms/djangoapps/verify_student/views.py msgid "Review your info" -msgstr "å®¡æ ¸ä½ çš„ä¿¡æ¯" +msgstr "å®¡æ ¸æ‚¨çš„ä¿¡æ¯" #: lms/djangoapps/verify_student/views.py msgid "Enrollment confirmation" @@ -8872,16 +9014,16 @@ msgstr "æ— æ•ˆçš„è¯¾ç¨‹æ ‡è¯†" #: lms/djangoapps/verify_student/views.py msgid "No profile found for user" -msgstr "未找到用户档案" +msgstr "未找到用户资料" #: lms/djangoapps/verify_student/views.py #, python-brace-format -msgid "Name must be at least {min_length} characters long." -msgstr "åå—ä¸èƒ½å°‘于{min_length}å—符。" +msgid "Name must be at least {min_length} character long." +msgstr "" #: lms/djangoapps/verify_student/views.py msgid "Image data is not valid." -msgstr "图åƒæ•°æ®æ— 效." +msgstr "图åƒæ•°æ®æ— 效。" #: lms/djangoapps/verify_student/views.py #, python-brace-format @@ -8924,13 +9066,13 @@ msgstr "开始请访问 https://%(site_name)s" #: lms/templates/instructor/edx_ace/accountcreationandenrollment/email/body.html msgid "The login information for your account follows:" -msgstr "您的账户登录信æ¯å¦‚下:" +msgstr "您的账å·ç™»å½•ä¿¡æ¯å¦‚下:" #: lms/templates/instructor/edx_ace/accountcreationandenrollment/email/body.html #: lms/templates/instructor/edx_ace/accountcreationandenrollment/email/body.txt #, python-format msgid "email: %(email_address)s" -msgstr "电å邮件:%(email_address)s" +msgstr "邮箱:%(email_address)s" #: lms/templates/instructor/edx_ace/accountcreationandenrollment/email/body.html #: lms/templates/instructor/edx_ace/accountcreationandenrollment/email/body.txt @@ -8959,7 +9101,7 @@ msgstr "欢迎 %(course_name)s" msgid "" "To get started, please visit https://%(site_name)s. The login information " "for your account follows." -msgstr "开始请访问https://%(site_name)s 。您的账户登录信æ¯å¦‚下。" +msgstr "开始请访问https://%(site_name)s 。您的账å·ç™»å½•ä¿¡æ¯å¦‚下。" #: lms/templates/instructor/edx_ace/accountcreationandenrollment/email/subject.txt #: lms/templates/instructor/edx_ace/enrollenrolled/email/subject.txt @@ -9087,13 +9229,13 @@ msgstr "完æˆæ‚¨çš„注册" msgid "" "Once you have registered and activated your account, you will see " "%(course_name)s listed on your dashboard." -msgstr "若已完æˆæ³¨å†Œå¹¶å·²æ¿€æ´»è´¦æˆ·ï¼Œæ‚¨å°†åœ¨è¯¾ç¨‹é¢æ¿ä¸è§åˆ° %(course_name)s。" +msgstr "若已完æˆæ³¨å†Œå¹¶å·²æ¿€æ´»è´¦å·ï¼Œæ‚¨å°†åœ¨è¯¾ç¨‹é¢æ¿ä¸è§åˆ° %(course_name)s。" #: lms/templates/instructor/edx_ace/allowedenroll/email/body.html msgid "" "Once you have registered and activated your account, you will be able to " "access this course:" -msgstr "若已完æˆæ³¨å†Œå¹¶å·²æ¿€æ´»è´¦æˆ·ï¼Œæ‚¨å°†æ‹¥æœ‰è®¿é—®è¯¥è¯¾ç¨‹çš„æƒé™ï¼š" +msgstr "若已完æˆæ³¨å†Œå¹¶å·²æ¿€æ´»è´¦å·ï¼Œæ‚¨å°†æ‹¥æœ‰è®¿é—®è¯¥è¯¾ç¨‹çš„æƒé™ï¼š" #: lms/templates/instructor/edx_ace/allowedenroll/email/body.html #: lms/templates/instructor/edx_ace/allowedenroll/email/body.txt @@ -9130,7 +9272,7 @@ msgstr "如需完æˆçš„注册,请访问%(registration_url)så¡«å†™æ³¨å†Œè¡¨æ ¼ msgid "" "Once you have registered and activated your account, visit " "%(course_about_url)s to join this course." -msgstr "若已完æˆæ³¨å†Œå¹¶å·²æ¿€æ´»è´¦æˆ·ï¼Œè¯·è®¿é—®%(course_about_url)så¹¶åŠ å…¥æ¤è¯¾ç¨‹ã€‚" +msgstr "若已完æˆæ³¨å†Œå¹¶å·²æ¿€æ´»è´¦å·ï¼Œè¯·è®¿é—®%(course_about_url)så¹¶åŠ å…¥æ¤è¯¾ç¨‹ã€‚" #: lms/templates/instructor/edx_ace/allowedenroll/email/subject.txt #, python-format @@ -9142,7 +9284,7 @@ msgstr "您已被邀请注册%(course_name)s" #: lms/templates/instructor/edx_ace/enrolledunenroll/email/subject.txt #, python-format msgid "You have been unenrolled from %(course_name)s" -msgstr "ä½ å·²ä»Žè¯¾ç¨‹%(course_name)sä¸è¢«ç§»é™¤ã€‚" +msgstr "您已从课程%(course_name)sä¸è¢«ç§»é™¤ã€‚" #: lms/templates/instructor/edx_ace/allowedunenroll/email/body.html #: lms/templates/instructor/edx_ace/allowedunenroll/email/body.txt @@ -9164,7 +9306,7 @@ msgid "" " " msgstr "" "\n" -"ä½ å·²ä»Žè¯¾ç¨‹%(course_name)sä¸è¢«ç§»é™¤ã€‚" +"您已从课程%(course_name)sä¸è¢«ç§»é™¤ã€‚" #: lms/templates/instructor/edx_ace/enrolledunenroll/email/body.html #: lms/templates/instructor/edx_ace/enrolledunenroll/email/body.txt @@ -9209,7 +9351,7 @@ msgid "" "the course staff. This course will now appear on your %(site_name)s " "dashboard." msgstr "" -"ä½ å·²è¢«è¯¾ç¨‹å·¥ä½œäººå‘˜åŠ å…¥åˆ°äº†%(site_name)s上的%(course_name)sä¸ã€‚该课程应会立å³å‡ºçŽ°åœ¨ä½ çš„%(site_name)s课程é¢æ¿ä¸ã€‚" +"æ‚¨å·²è¢«è¯¾ç¨‹å·¥ä½œäººå‘˜åŠ å…¥åˆ°äº†%(site_name)s上的%(course_name)sä¸ã€‚该课程应会立å³å‡ºçŽ°åœ¨æ‚¨çš„%(site_name)s课程é¢æ¿ä¸ã€‚" #: lms/templates/instructor/edx_ace/enrollenrolled/email/body.html msgid "Access the Course Materials Now" @@ -9295,6 +9437,7 @@ msgstr "请点击“å…许â€æŒ‰é’®ä¸ºä»¥ä¸Šåº”用进行授æƒã€‚若您ä¸å¸Œæœ› #: openedx/core/djangoapps/user_api/admin.py #: cms/templates/course-create-rerun.html cms/templates/index.html #: cms/templates/manage_users.html cms/templates/manage_users_lib.html +#: cms/templates/videos_index_pagination.html msgid "Cancel" msgstr "å–消" @@ -9308,6 +9451,78 @@ msgstr "å…许" msgid "Error" msgstr "错误" +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html +msgid "Expired ID Verification" +msgstr "过期的身份验è¯" + +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html +#: openedx/core/djangoapps/user_api/templates/user_api/edx_ace/deletionnotificationmessage/email/body.html +#: openedx/core/djangoapps/user_api/templates/user_api/edx_ace/deletionnotificationmessage/email/body.txt +#, python-format +msgid "Hello %(full_name)s," +msgstr "您好,%(full_name)s" + +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt +#, python-format +msgid "Your %(platform_name)s ID verification has expired. " +msgstr "您的%(platform_name)s身份认è¯å·²è¿‡æœŸ" + +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt +msgid "" +"You must have a valid ID verification to take proctored exams and qualify " +"for certificates." +msgstr "您必须使用有效的身份验è¯å‚åŠ ç›‘è€ƒè€ƒè¯•å’ŒèŽ·å–è¯ä¹¦" + +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt +msgid "" +"Follow the link below to submit your photos and renew your ID verification." +msgstr "请点击以下链接æ交照片并更新身份验è¯ã€‚" + +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt +msgid "You can also do this from your dashboard." +msgstr "您也å¯ä»¥ä»Žé¢æ¿æ‰§è¡Œæ¤æ“作。" + +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt +#, python-format +msgid "Resubmit Verification : %(lms_verification_link)s " +msgstr "é‡æ–°è®¤è¯: %(lms_verification_link)s" + +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt +#, python-format +msgid "ID verification FAQ : %(help_center_link)s " +msgstr "ID验è¯å¸¸è§é—®é¢˜ï¼š%(help_center_link)s" + +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt +#: lms/templates/emails/failed_verification_email.txt +#: lms/templates/emails/order_confirmation_email.txt +#: lms/templates/emails/passed_verification_email.txt +#: lms/templates/emails/photo_submission_confirmation.txt +msgid "Thank you," +msgstr "谢谢," + +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt +#, python-format +msgid "The %(platform_name)s Team " +msgstr "%(platform_name)s团队" + +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt +#, python-format +msgid "Hello %(full_name)s, " +msgstr "您好,%(full_name)s" + +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/subject.txt +#, python-format +msgid "Your %(platform_name)s Verification has Expired" +msgstr "您的%(platform_name)s认è¯å·²è¿‡æœŸ" + #: lms/templates/wiki/article.html msgid "Last modified:" msgstr "最åŽä¿®æ”¹ï¼š" @@ -9399,26 +9614,6 @@ msgstr "ä¿å˜ä¿®æ”¹" msgid "Preview" msgstr "预览" -#. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# -#. Translators: this is a control to allow users to exit out of this modal -#. interface (a menu or piece of UI that takes the full focus of the screen) -#: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html -#: lms/templates/forgot_password_modal.html lms/templates/help_modal.html -#: lms/templates/signup_modal.html lms/templates/ccx/schedule.html -#: lms/templates/dashboard/_dashboard_entitlement_unenrollment_modal.html -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/invalidate_registration_code_modal.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html -#: lms/templates/modal/_modal-settings-language.html -#: themes/edx.org/lms/templates/dashboard.html -#: themes/edx.org/lms/templates/dashboard/_dashboard_entitlement_unenrollment_modal.html -msgid "Close" -msgstr "å…³é—" - #: lms/templates/wiki/edit.html msgid "Wiki Preview" msgstr "Wiki预览" @@ -9466,7 +9661,8 @@ msgstr "预览本次修改" msgid "Auto log:" msgstr "自动日志" -#: lms/templates/wiki/history.html wiki/templates/wiki/history.html +#: lms/templates/wiki/history.html cms/templates/videos_index_pagination.html +#: wiki/templates/wiki/history.html msgid "Change" msgstr "修改" @@ -9797,31 +9993,31 @@ msgstr "登录" #: themes/red-theme/lms/templates/ace_common/edx_ace/common/base_body.html #, python-format msgid "%(platform_name)s on LinkedIn" -msgstr "%(platform_name)sçš„LinkedIn官方账户" +msgstr "%(platform_name)sçš„LinkedIn官方账å·" #: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/base_body.html #: themes/red-theme/lms/templates/ace_common/edx_ace/common/base_body.html #, python-format msgid "%(platform_name)s on Twitter" -msgstr "%(platform_name)sçš„Twitter官方账户" +msgstr "%(platform_name)sçš„Twitter官方账å·" #: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/base_body.html #: themes/red-theme/lms/templates/ace_common/edx_ace/common/base_body.html #, python-format msgid "%(platform_name)s on Facebook" -msgstr "%(platform_name)sçš„Facebook官方账户" +msgstr "%(platform_name)sçš„Facebook官方账å·" #: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/base_body.html #: themes/red-theme/lms/templates/ace_common/edx_ace/common/base_body.html #, python-format msgid "%(platform_name)s on Google Plus" -msgstr "%(platform_name)sçš„Google+官方账户" +msgstr "%(platform_name)sçš„Google+官方账å·" #: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/base_body.html #: themes/red-theme/lms/templates/ace_common/edx_ace/common/base_body.html #, python-format msgid "%(platform_name)s on Reddit" -msgstr "%(platform_name)sçš„Reddit官方账户" +msgstr "%(platform_name)sçš„Reddit官方账å·" #: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/base_body.html #: themes/red-theme/lms/templates/ace_common/edx_ace/common/base_body.html @@ -9854,6 +10050,8 @@ msgstr "" #: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/upsell_cta.html #: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/upsell_cta.txt +#: openedx/features/course_duration_limits/templates/course_duration_limits/edx_ace/expiryreminder/email/body.html +#: openedx/features/course_duration_limits/templates/course_duration_limits/edx_ace/expiryreminder/email/body.txt msgid "Upgrade Now" msgstr "立刻å‡çº§" @@ -9875,7 +10073,7 @@ msgstr "组织地å€" #: openedx/core/djangoapps/api_admin/forms.py msgid "Describe what your application does." -msgstr "æè¿°ä½ çš„åº”ç”¨çš„åŠŸèƒ½ã€‚" +msgstr "æ述您的应用的功能。" #: openedx/core/djangoapps/api_admin/forms.py msgid "The URL of your organization's website." @@ -9892,7 +10090,7 @@ msgstr "您组织的è”系地å€ã€‚" #: openedx/core/djangoapps/api_admin/forms.py #, python-brace-format msgid "The following users do not exist: {usernames}." -msgstr "以下用户ä¸å˜åœ¨: {usernames}." +msgstr "以下用户ä¸å˜åœ¨: {usernames}。" #: openedx/core/djangoapps/api_admin/forms.py msgid "" @@ -9919,15 +10117,6 @@ msgstr "ä¸Žæ¤ API 用户相关的网站的 URL。" msgid "The reason this user wants to access the API." msgstr "æ¤ç”¨æˆ·å¸Œæœ›è®¿é—® API çš„åŽŸå› ã€‚" -#: openedx/core/djangoapps/api_admin/models.py -#, python-brace-format -msgid "API access request from {company}" -msgstr "{company} çš„ API 访问请求" - -#: openedx/core/djangoapps/api_admin/models.py -msgid "API access request" -msgstr "API 访问请求" - #: openedx/core/djangoapps/api_admin/widgets.py #, python-brace-format msgid "" @@ -10019,10 +10208,47 @@ msgid "" "catalog service." msgstr "对目录æœåŠ¡çš„å•ä¸ªè¯·æ±‚的最大记录数é‡ï¼Œè¡¨çŽ°å½¢å¼ä¸ºåˆ†é¡µå›žå¤ã€‚" +#: openedx/core/djangoapps/config_model_utils/models.py +#, python-format +msgid "%(value)s should have the form ORG+COURSE" +msgstr "%(value)s应该为ORG+COURSEæ ¼å¼" + #: openedx/core/djangoapps/config_model_utils/models.py msgid "Enabled" msgstr "å·²å¯ç”¨" +#: openedx/core/djangoapps/config_model_utils/models.py +msgid "Configure values for all course runs associated with this site." +msgstr "é…置与æ¤ç«™ç‚¹å…³è”的所有课程è¿è¡Œçš„å‚数。" + +#: openedx/core/djangoapps/config_model_utils/models.py +msgid "" +"Configure values for all course runs associated with this Organization. This" +" is the organization string (i.e. edX, MITx)." +msgstr "é…置与æ¤ç«™ç‚¹å…³è”的所有课程è¿è¡Œçš„å‚数。这是组织å—符串(例如edX,MITx)。" + +#: openedx/core/djangoapps/config_model_utils/models.py +msgid "Course in Org" +msgstr "课程组织" + +#: openedx/core/djangoapps/config_model_utils/models.py +msgid "" +"Configure values for all course runs associated with this course. This is " +"should be formatted as 'org+course' (i.e. MITx+6.002x, HarvardX+CS50)." +msgstr "é…置与æ¤ç«™ç‚¹å…³è”的所有课程è¿è¡Œçš„å‚æ•°ã€‚æ ¼å¼ä¸º 'org+course' (例如MITx+6.002x, HarvardX+CS50)" + +#: openedx/core/djangoapps/config_model_utils/models.py +#: cms/templates/course-create-rerun.html cms/templates/index.html +#: cms/templates/settings.html +msgid "Course Run" +msgstr "课程开课" + +#: openedx/core/djangoapps/config_model_utils/models.py +msgid "" +"Configure values for this course run. This should be formatted as the " +"CourseKey (i.e. course-v1://MITx+6.002x+2019_Q1)" +msgstr "é…ç½®æ¤è¯¾ç¨‹è¿è¡Œçš„å‚æ•°ã€‚æ ¼å¼ä¸ºCourseKey(例如course-v1://MITx+6.002x+2019_Q1)" + #: openedx/core/djangoapps/config_model_utils/models.py msgid "Configuration may not be specified at more than one level at once." msgstr "ä¸èƒ½ä¸€æ¬¡åœ¨å¤šä¸ªçº§åˆ«æŒ‡å®šé…置。" @@ -10085,7 +10311,7 @@ msgstr "å¦åˆ†è¯„å®šèµ„æ ¼" #: openedx/core/djangoapps/credit/email_utils.py #, python-brace-format msgid "You are eligible for credit from {providers_string}" -msgstr "ä½ æœ‰èµ„æ ¼èŽ·å¾— {providers_string} çš„å¦åˆ†" +msgstr "æ‚¨æœ‰èµ„æ ¼èŽ·å¾— {providers_string} çš„å¦åˆ†" #. Translators: The join of two university names (e.g., Harvard and MIT). #: openedx/core/djangoapps/credit/email_utils.py @@ -10218,6 +10444,23 @@ msgstr "这是一æ¡æµ‹è¯•è¦å‘Š" msgid "This is a test error" msgstr "æ¤ä¸ºæµ‹è¯•é”™è¯¯" +#: openedx/core/djangoapps/django_comment_common/models.py +msgid "Administrator" +msgstr "管ç†å‘˜" + +#: openedx/core/djangoapps/django_comment_common/models.py +msgid "Moderator" +msgstr "版主" + +#: openedx/core/djangoapps/django_comment_common/models.py +msgid "Group Moderator" +msgstr "群主" + +#: openedx/core/djangoapps/django_comment_common/models.py +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Community TA" +msgstr "社区助教" + #: openedx/core/djangoapps/embargo/forms.py #: openedx/core/djangoapps/verified_track_content/forms.py msgid "COURSE NOT FOUND. Please check that the course ID is valid." @@ -10271,25 +10514,6 @@ msgstr "课程{course}的白åå•å›½å®¶ï¼š {country}" msgid "Blacklist {country} for {course}" msgstr "课程{course}的黑åå•å›½å®¶ï¼š {country}" -#: openedx/core/djangoapps/external_auth/views.py -#, python-brace-format -msgid "" -"You have already created an account using an external login like WebAuth or " -"Shibboleth. Please contact {tech_support_email} for support." -msgstr "ä½ å·²ç»åˆ›å»ºä½¿ç”¨å¤–部登录类似的WebAuth或Shibbolethçš„å¸æˆ·ã€‚请è”ç³»{tech_support_email}支æŒã€‚" - -#: openedx/core/djangoapps/external_auth/views.py -msgid "" -"\n" -" Your university identity server did not return your ID information to us.\n" -" Please try logging in again. (You may need to restart your browser.)\n" -" " -msgstr "" -"\n" -" 您的大å¦èº«ä»½æœåŠ¡å™¨å¹¶æœªå°†æ‚¨çš„身份信æ¯å馈给我们,\n" -" 请å°è¯•é‡æ–°ç™»å½•ï¼ˆå¯èƒ½éœ€è¦é‡å¯æµè§ˆå™¨ã€‚)\n" -" " - #: openedx/core/djangoapps/oauth_dispatch/models.py msgid "" "Comma-separated list of scopes that this application will be allowed to " @@ -10313,7 +10537,7 @@ msgid "" "to the email address associated with this account. Thank you for helping us " "keep your data safe." msgstr "" -"{strong_tag_open}我们最近更改了密ç è¦æ±‚{strong_tag_close}{break_line_tag}您当å‰çš„密ç ä¸ç¬¦åˆæ–°çš„安全è¦æ±‚。我们刚刚å‘é€äº†ä¸€ä¸ªå¯†ç é‡ç½®æ¶ˆæ¯åˆ°ä¸Žè¯¥è´¦æˆ·ç›¸å…³è”的邮箱内。感谢您帮助我们ä¿æŠ¤æ‚¨çš„æ•°æ®å®‰å…¨ã€‚" +"{strong_tag_open}我们最近更改了密ç è¦æ±‚{strong_tag_close}{break_line_tag}您当å‰çš„密ç ä¸ç¬¦åˆæ–°çš„安全è¦æ±‚。我们刚刚å‘é€äº†ä¸€ä¸ªå¯†ç é‡ç½®æ¶ˆæ¯åˆ°ä¸Žè¯¥è´¦å·ç›¸å…³è”的邮箱内。感谢您帮助我们ä¿æŠ¤æ‚¨çš„æ•°æ®å®‰å…¨ã€‚" #: openedx/core/djangoapps/password_policy/compliance.py #, python-brace-format @@ -10325,8 +10549,7 @@ msgid "" "{anchor_tag_open}Account Settings{anchor_tag_close}." msgstr "" "{strong_tag_open}è¦æ±‚的行动:请修改您的密ç {strong_tag_close}{break_line_tag}自 " -"{deadline}èµ·, " -"{platform_name}å°†è¦æ±‚所有的å¦å‘˜è®¾ç½®å¤æ‚的密ç 。您当å‰çš„密ç ä¸æ»¡è¶³è¿™äº›è¦æ±‚。如需é‡ç½®å¯†ç ,请å‰å¾€{anchor_tag_open}账户设置{anchor_tag_close}。" +"{deadline}起,{platform_name}å°†è¦æ±‚所有的å¦å‘˜è®¾ç½®å¤æ‚的密ç 。您当å‰çš„密ç ä¸æ»¡è¶³è¿™äº›è¦æ±‚。如需é‡ç½®å¯†ç ,请å‰å¾€{anchor_tag_open}è´¦å·è®¾ç½®{anchor_tag_close}。" #: openedx/core/djangoapps/profile_images/images.py #, python-brace-format @@ -10369,7 +10592,7 @@ msgstr "MB" #: openedx/core/djangoapps/profile_images/views.py msgid "No file provided for profile image" -msgstr "未å‘档案照片æ交文件" +msgstr "未æ供文件作为用户头åƒ" #: openedx/core/djangoapps/programs/models.py msgid "Path used to construct URLs to programs marketing pages (e.g., \"/foo\")." @@ -10406,7 +10629,7 @@ msgstr "æ¤æ—¶é—´è¡¨çš„生效日期" #: openedx/core/djangoapps/schedules/models.py msgid "Deadline by which the learner must upgrade to a verified seat" -msgstr "å¦å‘˜å¿…é¡»å‡çº§è‡³è®¤è¯åé¢çš„截æ¢æ—¥æœŸ" +msgstr "å¦å‘˜å¿…é¡»å‡çº§è‡³è®¤è¯åå¸çš„截æ¢æ—¥æœŸ" #: openedx/core/djangoapps/schedules/models.py #: lms/templates/ccx/coach_dashboard.html lms/templates/ccx/schedule.html @@ -10661,14 +10884,14 @@ msgstr "用户ååªèƒ½åŒ…å«å—æ¯ã€æ•°å—ã€â€œ@/./+/-/_â€å—符。" #: openedx/core/djangoapps/user_api/accounts/__init__.py #, python-brace-format msgid "\"{email}\" is not a valid email address." -msgstr "“{email}â€ä¸ºæ— 效的邮箱地å€ã€‚" +msgstr "“{email}â€ä¸ºæ— 效的邮箱。" #: openedx/core/djangoapps/user_api/accounts/__init__.py #, python-brace-format msgid "" "It looks like {email_address} belongs to an existing account. Try again with" " a different email address." -msgstr "{email_address} å·²ç»è¢«æ³¨å†Œäº†ã€‚请更æ¢E-mailé‡è¯•ã€‚" +msgstr "{email_address} å·²ç»è¢«æ³¨å†Œäº†ã€‚请更æ¢ç”µå邮箱é‡è¯•ã€‚" #: openedx/core/djangoapps/user_api/accounts/__init__.py #, python-brace-format @@ -10685,7 +10908,7 @@ msgstr "用户åå—符数必须达到{min}至{max} ä½ã€‚" #: openedx/core/djangoapps/user_api/accounts/__init__.py #, python-brace-format msgid "Enter a valid email address that contains at least {min} characters." -msgstr "请输入有效的邮箱地å€ï¼Œä¸å°‘于{min}个å—符。" +msgstr "请输入有效的邮箱,ä¸å°‘于{min}个å—符。" #. Translators: These messages are shown to users who do not enter information #. into the required field or enter it incorrectly. @@ -10695,7 +10918,7 @@ msgstr "请输入您的全å。" #: openedx/core/djangoapps/user_api/accounts/__init__.py msgid "The email addresses do not match." -msgstr "邮箱地å€ä¸ä¸€è‡´ã€‚" +msgstr "邮箱ä¸ä¸€è‡´ã€‚" #: openedx/core/djangoapps/user_api/accounts/__init__.py msgid "Select your country or region of residence." @@ -10736,7 +10959,7 @@ msgstr "请输入您的邮寄地å€ã€‚" #: openedx/core/djangoapps/user_api/accounts/api.py #, python-brace-format msgid "The '{field_name}' field cannot be edited." -msgstr "'{field_name}'å—æ®µæ— æ³•ç¼–è¾‘." +msgstr "'{field_name}'å—æ®µæ— æ³•ç¼–è¾‘ã€‚" #: openedx/core/djangoapps/user_api/accounts/api.py #: openedx/core/djangoapps/user_api/views.py @@ -10798,16 +11021,19 @@ msgid "Specialty" msgstr "专业技能" #: openedx/core/djangoapps/user_api/accounts/utils.py +#, python-brace-format msgid "" -" Make sure that you are providing a valid username or a URL that contains \"" -msgstr "请æ供有效的用户å或包å«â€œâ€çš„URL" +"Make sure that you are providing a valid username or a URL that contains " +"\"{url_stub}\". To remove the link from your edX profile, leave this field " +"blank." +msgstr "" #: openedx/core/djangoapps/user_api/accounts/views.py #: openedx/core/djangoapps/user_authn/views/login.py msgid "" "This account has been temporarily locked due to excessive login failures. " "Try again later." -msgstr "由于登录失败次数过多,该账户暂时被é”定,请ç¨åŽå†è¯•ã€‚" +msgstr "由于登录失败次数过多,该账å·æš‚时被é”定,请ç¨åŽå†è¯•ã€‚" #: openedx/core/djangoapps/user_api/accounts/views.py #: openedx/core/djangoapps/user_authn/views/login.py @@ -10850,20 +11076,7 @@ msgstr "username@domain.com" #: openedx/core/djangoapps/user_api/api.py #, python-brace-format msgid "The email address you used to register with {platform_name}" -msgstr "您在{platform_name}上注册的E-mail" - -#. Translators: This label appears above a field on the password reset -#. form meant to hold the user's email address. -#: openedx/core/djangoapps/user_api/api.py -msgid "Secondary email" -msgstr "" - -#: openedx/core/djangoapps/user_api/api.py -#, python-brace-format -msgid "" -"Secondary email address you registered with {platform_name} using account " -"settings page" -msgstr "" +msgstr "您在{platform_name}上注册的邮箱" #: openedx/core/djangoapps/user_api/api.py lms/templates/login.html msgid "Remember me" @@ -10876,12 +11089,6 @@ msgstr "è®°ä½æˆ‘" msgid "This is what you will use to login." msgstr "您将以æ¤é‚®ç®±ç™»å½•ã€‚" -#. Translators: This label appears above a field on the registration form -#. meant to confirm the user's email address. -#: openedx/core/djangoapps/user_api/api.py -msgid "Confirm Email" -msgstr "确认邮箱地å€" - #. Translators: These instructions appear on the registration form, #. immediately #. below a field meant to hold the user's full name. @@ -10961,14 +11168,12 @@ msgstr "您必须先åŒæ„并接å—{platform_name}çš„{terms_of_service}" #: openedx/core/djangoapps/user_api/api.py #, python-brace-format msgid "" -"By creating an account with {platform_name}, you agree to " -"abide by our {platform_name} " +"By creating an account, you agree to the " "{terms_of_service_link_start}{terms_of_service}{terms_of_service_link_end}" -" and agree to our {privacy_policy_link_start}Privacy " -"Policy{privacy_policy_link_end}." +" and you acknowledge that {platform_name} and each Member " +"process your personal data in accordance with the " +"{privacy_policy_link_start}Privacy Policy{privacy_policy_link_end}." msgstr "" -"注册{platform_name}å³è¡¨ç¤ºåŒæ„éµå®ˆ{platform_name} " -"{terms_of_service_link_start}{terms_of_service}{terms_of_service_link_end}以åŠ{privacy_policy_link_start}éšç§æ”¿ç–{privacy_policy_link_end}." #. Translators: "Terms of service" is a legal document users must agree to #. in order to register a new account. @@ -10986,7 +11191,7 @@ msgstr "系统维护ä¸ï¼Œè¯·ç¨åŽé‡è¯•ã€‚" #: openedx/core/djangoapps/user_api/preferences/api.py #, python-brace-format msgid "Delete failed for user preference '{preference_key}'." -msgstr "用户设置 '{preference_key}' åˆ é™¤å¤±è´¥." +msgstr "用户设置 '{preference_key}' åˆ é™¤å¤±è´¥ã€‚" #: openedx/core/djangoapps/user_api/preferences/api.py #, python-brace-format @@ -10996,14 +11201,14 @@ msgstr "首选项“{preference_key}â€ä¸èƒ½è®¾ç½®ä¸ºç©ºå€¼ã€‚" #: openedx/core/djangoapps/user_api/preferences/api.py #, python-brace-format msgid "Invalid user preference key '{preference_key}'." -msgstr "æ— æ•ˆçš„ç”¨æˆ·å‚数项'{preference_key}'." +msgstr "æ— æ•ˆçš„ç”¨æˆ·å‚数项'{preference_key}'。" #: openedx/core/djangoapps/user_api/preferences/api.py #, python-brace-format msgid "" "Value '{preference_value}' is not valid for user preference " "'{preference_key}'." -msgstr "对于用户å‚æ•°'{preference_key}',值'{preference_value}'æ— æ•ˆ." +msgstr "对于用户å‚æ•°'{preference_key}',值'{preference_value}'æ— æ•ˆã€‚" #: openedx/core/djangoapps/user_api/preferences/api.py #, python-brace-format @@ -11020,18 +11225,12 @@ msgstr "{preference_value}å€¼æ˜¯æ— æ•ˆçš„æ—¶åŒºå€¼é€‰é¡¹ã€‚" #: openedx/core/djangoapps/user_api/preferences/api.py #, python-brace-format msgid "Save failed for user preference '{key}' with value '{value}'." -msgstr "使用值'{value}'ä¿å˜ç”¨æˆ·å‚æ•°'{key}'失败." +msgstr "使用值'{value}'ä¿å˜ç”¨æˆ·å‚æ•°'{key}'失败。" #: openedx/core/djangoapps/user_api/preferences/views.py msgid "No data provided for user preference update" msgstr "未å‘用户å‚æ•°æ›´æ–°æ供数æ®" -#: openedx/core/djangoapps/user_api/templates/user_api/edx_ace/deletionnotificationmessage/email/body.html -#: openedx/core/djangoapps/user_api/templates/user_api/edx_ace/deletionnotificationmessage/email/body.txt -#, python-format -msgid "Hello %(full_name)s," -msgstr "您好,%(full_name)s" - #: openedx/core/djangoapps/user_api/templates/user_api/edx_ace/deletionnotificationmessage/email/body.html #: openedx/core/djangoapps/user_api/templates/user_api/edx_ace/deletionnotificationmessage/email/body.txt #, python-format @@ -11079,25 +11278,16 @@ msgstr "ç¦æ¢ä¿®æ”¹è´¦å·ã€‚" #: openedx/core/djangoapps/user_authn/views/login.py #, python-brace-format msgid "" -"You've successfully logged into your {provider_name} account, but this " -"account isn't linked with an {platform_name} account yet." -msgstr "ä½ å·²æˆåŠŸç™»å½•{provider_name}å¸æˆ·ï¼Œä½†è¯¥å¸å·å°šæœªä¸Ž{platform_name}å¸æˆ·å…³è”。" - -#: openedx/core/djangoapps/user_authn/views/login.py -#, python-brace-format -msgid "" -"Use your {platform_name} username and password to log into {platform_name} " +"You've successfully signed in to your {provider_name} account, but this " +"account isn't linked with your {platform_name} account yet. {blank_lines}Use" +" your {platform_name} username and password to sign in to {platform_name} " "below, and then link your {platform_name} account with {provider_name} from " -"your dashboard." +"your dashboard. {blank_lines}If you don't have an account on {platform_name}" +" yet, click {register_label_strong} at the top of the page." msgstr "" -"ç”¨ä½ çš„{platform_name}用户å和密ç 登陆{platform_name},然åŽä»Žè¯¾ç¨‹é¢æ¿é¡µé¢å…³è”{platform_name}账户和{provider_name}。" - -#: openedx/core/djangoapps/user_authn/views/login.py -#, python-brace-format -msgid "" -"If you don't have an {platform_name} account yet, click " -"{register_label_strong} at the top of the page." -msgstr "如果您还没有{platform_name}çš„è´¦å·ï¼Œè¯·ç‚¹å‡»é¡µé¢é¡¶éƒ¨çš„{register_label_strong}按钮进行注册。" +"您已æˆåŠŸç™»å½•{provider_name}å¸æˆ·ï¼Œä½†æ¤å¸æˆ·å°šæœªä¸Žæ‚¨çš„{platform_name}å¸æˆ·ç›¸å…³è”。 " +"{blank_lines}使用您的{platform_name}用户å和密ç 登录下é¢çš„{platform_name},然åŽä»Žæ‚¨çš„é¢æ¿å°†{platform_name}å¸æˆ·ä¸Ž{provider_name}相关è”。" +" {blank_lines}如果您还没有{platform_name}上的å¸æˆ·ï¼Œè¯·ç‚¹å‡»é¡µé¢é¡¶éƒ¨çš„{register_label_strong}。" #: openedx/core/djangoapps/user_authn/views/login.py #: lms/templates/register-form.html @@ -11115,14 +11305,13 @@ msgstr "接å—您的登录信æ¯æ—¶å‡ºçŽ°é”™è¯¯ï¼Œè¯·å‘电å邮件给我们。 #: openedx/core/djangoapps/user_authn/views/login.py #, python-brace-format msgid "" -"In order to sign in, you need to activate your account.<br /><br />We just " -"sent an activation link to <strong>{email}</strong>. If you do not receive " -"an email, check your spam folders or <a href=\"{support_url}\">contact " -"{platform} Support</a>." +"In order to sign in, you need to activate your account.{blank_lines}We just " +"sent an activation link to {email_strong}. If you do not receive an email, " +"check your spam folders or {link_start}contact {platform_name} " +"Support{link_end}." msgstr "" -"如需登录,请先激活您的账å·ã€‚<br /><br />激活链接已å‘é€è‡³ " -"<strong>{email}</strong>。如果您未收到邮件,请查看邮箱ä¸çš„垃圾邮件或 <a " -"href=\"{support_url}\">è”ç³»{platform}的技术支æŒ</a>。" +"您需è¦æ¿€æ´»æ‚¨çš„å¸æˆ·æ‰èƒ½ç™»å½•ã€‚{blank_lines}我们刚刚å‘{email_strong}å‘é€äº†æ¿€æ´»é“¾æŽ¥ã€‚ " +"如果您没有收到电å邮件,请检查您的垃圾邮件文件夹或{link_start}è”ç³»{platform_name}支æŒ{link_end}。" #: openedx/core/djangoapps/user_authn/views/login.py msgid "Too many failed login attempts. Try again later." @@ -11276,6 +11465,7 @@ msgstr "" #: openedx/features/content_type_gating/models.py #: openedx/features/course_duration_limits/models.py +#: lms/templates/support/feature_based_enrollments.html msgid "Enabled As Of" msgstr "å¯ç”¨è‡³" @@ -11283,8 +11473,8 @@ msgstr "å¯ç”¨è‡³" #: openedx/features/course_duration_limits/models.py msgid "" "If the configuration is Enabled, then all enrollments created after this " -"date and time (UTC) will be affected." -msgstr "如果é…置为“已å¯ç”¨â€ï¼Œåˆ™åœ¨æ¤æ—¥æœŸå’Œæ—¶é—´ï¼ˆä¸–ç•Œæ ‡å‡†æ—¶é—´UTC)之åŽåˆ›å»ºçš„所有注册都将å—到影å“。" +"date and time (user local time) will be affected." +msgstr "如果é…置为“已å¯ç”¨â€ï¼Œåˆ™åœ¨æ¤æ—¥æœŸå’Œæ—¶é—´ï¼ˆç”¨æˆ·æœ¬åœ°æ—¶é—´ï¼‰ä¹‹åŽåˆ›å»ºçš„所有注册都将å—到影å“。" #: openedx/features/content_type_gating/models.py msgid "Studio Override Enabled" @@ -11309,6 +11499,11 @@ msgstr "基于功能的选课" msgid "Partition for segmenting users by access to gated content types" msgstr "通过访问å°é—的内容类型æ¥åˆ’分用户的分区" +#: openedx/features/content_type_gating/partitions.py +#: openedx/features/content_type_gating/templates/content_type_gating/access_denied_message.html +msgid "Graded assessments are available to Verified Track learners." +msgstr "分级评估å¯ç”¨äºŽå·²ç»è¿‡èº«ä»½è®¤è¯çš„跟踪å¦å‘˜ã€‚" + #: openedx/features/content_type_gating/partitions.py msgid "" "Graded assessments are available to Verified Track learners. Upgrade to " @@ -11323,10 +11518,6 @@ msgstr "ä»…ä¾›ç»è¿‡èº«ä»½è®¤è¯çš„å¦å‘˜ä½¿ç”¨çš„内容" msgid "Verified Track Access" msgstr "å·²ç»è¿‡èº«ä»½è®¤è¯çš„跟踪访问" -#: openedx/features/content_type_gating/templates/content_type_gating/access_denied_message.html -msgid "Graded assessments are available to Verified Track learners." -msgstr "分级评估å¯ç”¨äºŽå·²ç»è¿‡èº«ä»½è®¤è¯çš„跟踪å¦å‘˜ã€‚" - #: openedx/features/content_type_gating/templates/content_type_gating/access_denied_message.html msgid "Upgrade to unlock" msgstr "å‡çº§åˆ°è§£é”" @@ -11360,7 +11551,7 @@ msgid "" "{expiration_date}{strong_close}{line_break}You lose all access to this " "course, including your progress, on {expiration_date}." msgstr "" -"{strong_open} æ—å¬è®¿é—®å…¥å£è¿‡æœŸ {expiration_date}{strong_close}{line_break}. 您已于 " +"{strong_open} æ—å¬è®¿é—®å…¥å£è¿‡æœŸ {expiration_date}{strong_close}{line_break}。您已于 " "{expiration_date} 失去课程访问æƒé™ï¼ŒåŒ…括æ£åœ¨ä¸Šçš„课程。" #: openedx/features/course_duration_limits/access.py @@ -11375,6 +11566,47 @@ msgstr "" "{a_open}现在å‡çº§{sronly_span_open} 以确ä¿{expiration_date}å‰ä¿ç•™è®¿é—®æƒ " "{span_close}{a_close}。" +#: openedx/features/course_duration_limits/resolvers.py +msgid "%b. %d, %Y" +msgstr "%b. %d, %Y" + +#: openedx/features/course_duration_limits/templates/course_duration_limits/edx_ace/expiryreminder/email/body.html +#, python-format +msgid "" +"We hope you have enjoyed %(first_course_name)s! You lose all access to this " +"course in %(time_until_expiration)s." +msgstr "希望您喜欢%(first_course_name)sï¼åœ¨%(time_until_expiration)s之åŽæ‚¨å°†æ— 法访问æ¤è¯¾ç¨‹" + +#: openedx/features/course_duration_limits/templates/course_duration_limits/edx_ace/expiryreminder/email/body.html +#, python-format +msgid "" +"We hope you have enjoyed %(first_course_name)s! You lose all access to this " +"course, including your progress, on %(first_course_expiration_date)s " +"(%(time_until_expiration)s)." +msgstr "" +"希望您喜欢%(first_course_name)sï¼åœ¨%(first_course_expiration_date)s(%(time_until_expiration)s)之åŽæ‚¨å°†æ— 法访问æ¤è¯¾ç¨‹ï¼ŒåŒ…括您的进展。" + +#: openedx/features/course_duration_limits/templates/course_duration_limits/edx_ace/expiryreminder/email/body.html +msgid "" +"Upgrade now to get unlimited access and for the chance to earn a verified " +"certificate." +msgstr "ç«‹å³å‡çº§ä»¥èŽ·å¾—æ— é™åˆ¶è®¿é—®æƒå¹¶æœ‰æœºä¼šèŽ·å¾—ç»è¿‡éªŒè¯çš„è¯ä¹¦ã€‚" + +#: openedx/features/course_duration_limits/templates/course_duration_limits/edx_ace/expiryreminder/email/body.txt +#, python-format +msgid "" +"We hope you have enjoyed %(first_course_name)s! You lose all access to this " +"course, including your progress, on %(first_course_expiration_date)s " +"(%(time_until_expiration)s). Upgrade now to get unlimited access and for the" +" chance to earn a verified certificate." +msgstr "" +"希望您喜欢%(first_course_name)sï¼åœ¨%(first_course_expiration_date)s(%(time_until_expiration)s)之åŽæ‚¨å°†æ— 法访问æ¤è¯¾ç¨‹ï¼ŒåŒ…括您的进展。立å³å‡çº§ä»¥èŽ·å¾—æ— é™åˆ¶è®¿é—®æƒå¹¶æœ‰æœºä¼šèŽ·å¾—ç»è¿‡éªŒè¯çš„è¯ä¹¦ã€‚" + +#: openedx/features/course_duration_limits/templates/course_duration_limits/edx_ace/expiryreminder/email/subject.txt +#, python-format +msgid "Upgrade to keep your access to %(first_course_name)s" +msgstr "å‡çº§ä»¥ä¿æŒæ‚¨çš„%(first_course_name)s访问æƒé™" + #: openedx/features/course_experience/plugins.py #: cms/templates/widgets/header.html #: lms/templates/api_admin/terms_of_service.html @@ -11387,28 +11619,34 @@ msgstr "æ›´æ–°" msgid "Reviews" msgstr "评论" +#: openedx/features/course_experience/utils.py +#, no-python-format, python-brace-format +msgid "" +"{banner_open}{percentage}% off your first upgrade.{span_close} Discount " +"automatically applied.{div_close}" +msgstr "" + #: openedx/features/course_experience/views/course_home_messages.py #, python-brace-format msgid "{sign_in_link} or {register_link} and then enroll in this course." msgstr "åŠ å…¥è¯¾ç¨‹ä¹‹å‰è¯·å…ˆ{sign_in_link}或{register_link}。" #: openedx/features/course_experience/views/course_home_messages.py -#: lms/templates/header/navbar-not-authenticated.html -#: lms/templates/navigation/navbar-not-authenticated.html -#: themes/edx.org/lms/templates/header/navbar-not-authenticated.html -msgid "Sign in" -msgstr "登录" +#, python-brace-format +msgid "Welcome to {course_display_name}" +msgstr "æ¬¢è¿ŽåŠ å…¥{course_display_name}" #: openedx/features/course_experience/views/course_home_messages.py -#, python-brace-format msgid "" -"{open_enroll_link}Enroll now{close_enroll_link} to access the full course." -msgstr "{open_enroll_link}åŠ å…¥è¯¾ç¨‹{close_enroll_link}以充分体验课程å¦ä¹ 。" +"You must be enrolled in the course to see course content. Please contact " +"your degree administrator or edX Support if you have questions." +msgstr "您必须注册课程æ‰èƒ½æŸ¥çœ‹è¯¾ç¨‹å†…容。 如果您有任何疑问,请è”系您的å¦ä½ç®¡ç†å‘˜æˆ–edX支æŒã€‚" #: openedx/features/course_experience/views/course_home_messages.py #, python-brace-format -msgid "Welcome to {course_display_name}" -msgstr "æ¬¢è¿ŽåŠ å…¥{course_display_name}" +msgid "" +"{open_enroll_link}Enroll now{close_enroll_link} to access the full course." +msgstr "{open_enroll_link}åŠ å…¥è¯¾ç¨‹{close_enroll_link}以充分体验课程å¦ä¹ 。" #: openedx/features/course_experience/views/course_home_messages.py #, python-brace-format @@ -11432,6 +11670,29 @@ msgstr "{choice}" msgid "Set goal to: {goal_text}" msgstr "设置课程å¦ä¹ ç›®æ ‡ä¸ºï¼š{goal_text}" +#: openedx/features/discounts/admin.py +msgid "" +"These define the context to disable lms-controlled discounts on. If no " +"values are set, then the configuration applies globally. If a single value " +"is set, then the configuration applies to all courses within that context. " +"At most one value can be set at a time.<br>If multiple contexts apply to a " +"course (for example, if configuration is specified for the course " +"specifically, and for the org that the course is in, then the more specific " +"context overrides the more general context." +msgstr "" + +#: openedx/features/discounts/admin.py +msgid "" +"If any of these values is left empty or \"Unknown\", then their value at " +"runtime will be retrieved from the next most specific context that applies. " +"For example, if \"Disabled\" is left as \"Unknown\" in the course context, " +"then that course will be Disabled only if the org that it is in is Disabled." +msgstr "" + +#: openedx/features/discounts/models.py +msgid "Disabled" +msgstr "" + #: openedx/features/enterprise_support/api.py #, python-brace-format msgid "Enrollment in {course_title} was not complete." @@ -11466,15 +11727,6 @@ msgstr "æ„Ÿè°¢æ‚¨åŠ å…¥{platform_name}ï¼Œè¿˜éœ€å‡ æ¥å³å¯å¼€å¯æ‚¨çš„å¦ä¹ 之 msgid "Continue" msgstr "继ç»" -#: openedx/features/learner_profile/views/learner_profile.py -#, python-brace-format -msgid "" -"Welcome to the new learner profile page. Your full profile now displays more" -" information to other learners. You can instead choose to display a limited " -"profile. {learn_more_link_start}Learn more{learn_more_link_end}" -msgstr "" -"欢迎æ¥åˆ°æ–°çš„å¦å‘˜ä¸å¿ƒé¡µé¢ï¼çŽ°åœ¨æ‚¨å°†å¯ä»¥åœ¨å®Œæ•´èµ„æ–™ä¸å‘其他å¦å‘˜å±•ç¤ºæ›´å¤šä¿¡æ¯ã€‚您也å¯ä»¥é€‰æ‹©åªæ˜¾ç¤ºéƒ¨åˆ†èµ„料。{learn_more_link_start}了解更多{learn_more_link_end}" - #: themes/red-theme/lms/templates/schedules/edx_ace/recurringnudge_day3/email/body.txt #, python-format msgid "" @@ -11552,8 +11804,8 @@ msgstr "" #: cms/djangoapps/contentstore/git_export_utils.py msgid "" "Non writable git url provided. Expecting something like: " -"git@github.com:mitocw/edx4edx_lite.git" -msgstr "没有å¯å†™çš„Git地å€ã€‚æœŸå¾…ç±»ä¼¼è¿™æ ·çš„åœ°å€ï¼šgit@github.com:mitocw/edx4edx_lite.git" +"git@github.com:edx/edx4edx_lite.git" +msgstr "" #: cms/djangoapps/contentstore/git_export_utils.py msgid "" @@ -11775,7 +12027,7 @@ msgid "" "You must link this course to an organization in order to continue. " "Organization you selected does not exist in the system, you will need to add" " it to the system" -msgstr "您必须将æ¤è¯¾ç¨‹é“¾æŽ¥åˆ°æœºæž„以继ç»ã€‚您选择的机构在系统ä¸ä¸å˜åœ¨ï¼Œä½ 需è¦å°†æ¤æœºæž„æ·»åŠ è‡³ç³»ç»Ÿä¸ã€‚" +msgstr "您必须将æ¤è¯¾ç¨‹é“¾æŽ¥åˆ°æœºæž„以继ç»ã€‚您选择的机构在系统ä¸ä¸å˜åœ¨ï¼Œæ‚¨éœ€è¦å°†æ¤æœºæž„æ·»åŠ è‡³ç³»ç»Ÿä¸ã€‚" #: cms/djangoapps/contentstore/views/course.py msgid "Invalid prerequisite course key" @@ -11783,7 +12035,7 @@ msgstr "å…ˆä¿®è¯¾ç¨‹æ ‡è¯†æ— æ•ˆ" #: cms/djangoapps/contentstore/views/course.py msgid "An error occurred while trying to save your tabs" -msgstr "åœ¨ä½ å°è¯•ä¿å˜ä¹¦ç¾æ—¶å‘生错误" +msgstr "在您å°è¯•ä¿å˜ä¹¦ç¾æ—¶å‘生错误" #: cms/djangoapps/contentstore/views/course.py msgid "Tabs Exception" @@ -11914,7 +12166,7 @@ msgid "" "There is already a library defined with the same organization and library " "code. Please change your library code so that it is unique within your " "organization." -msgstr "å·²ç»å˜åœ¨ä¸€ä¸ªå…·æœ‰ç›¸åŒæœºæž„和知识库编å·çš„çŸ¥è¯†åº“ï¼Œè¯·æ›´æ”¹ä½ çš„çŸ¥è¯†åº“ç¼–å·ä»¥ä¿è¯å…¶åœ¨æ‚¨çš„机构ä¸æ˜¯å”¯ä¸€çš„。" +msgstr "å·²ç»å˜åœ¨ä¸€ä¸ªå…·æœ‰ç›¸åŒæœºæž„和知识库编å·çš„知识库,请更改您的知识库编å·ä»¥ä¿è¯å…¶åœ¨æ‚¨çš„机构ä¸æ˜¯å”¯ä¸€çš„。" #: cms/djangoapps/contentstore/views/preview.py #, python-brace-format @@ -11982,7 +12234,7 @@ msgstr "没有足够的æƒé™" #: cms/djangoapps/contentstore/views/user.py #, python-brace-format msgid "Could not find user by email address '{email}'." -msgstr "æ— æ³•é€šè¿‡é‚®ä»¶åœ°å€â€œ{email}â€æ‰¾åˆ°ç”¨æˆ·ã€‚" +msgstr "æ— æ³•é€šè¿‡é‚®ç®±â€œ{email}â€æ‰¾åˆ°ç”¨æˆ·ã€‚" #: cms/djangoapps/contentstore/views/user.py msgid "No `role` specified." @@ -11991,7 +12243,7 @@ msgstr "“角色â€æœªæŒ‡å®šã€‚" #: cms/djangoapps/contentstore/views/user.py #, python-brace-format msgid "User {email} has registered but has not yet activated his/her account." -msgstr "用户{email}已注册但尚未激活其账户。" +msgstr "用户{email}已注册但尚未激活其账å·ã€‚" #: cms/djangoapps/contentstore/views/user.py msgid "Invalid `role` specified." @@ -12103,6 +12355,10 @@ msgstr "æ·»åŠ æ—¥æœŸ" msgid "{course}_video_urls" msgstr "{course}_video_urls" +#: cms/djangoapps/contentstore/views/videos.py +msgid "A non zero positive integer is expected" +msgstr "需è¦ä¸€ä¸ªéžé›¶çš„æ£æ•´æ•°" + #: cms/djangoapps/course_creators/models.py msgid "unrequested" msgstr "未请求的" @@ -12151,6 +12407,16 @@ msgid "" msgstr "" "有时课程的è‰ç¨¿å’Œå·²å‘布的分支å¯èƒ½ä¼šä¸åŒæ¥ã€‚强制å‘布课程命令会é‡ç½®å·²å‘布的课程分支以指å‘è‰ç¨¿åˆ†æ”¯ï¼Œæœ‰æ•ˆåœ°å¼ºåˆ¶å‘布课程。æ¤è§†å›¾ç¨‹åºè¿è¡Œå¼ºåˆ¶å‘布命令" +#: cms/djangoapps/maintenance/views.py +msgid "Edit Announcements" +msgstr "编辑公告" + +#: cms/djangoapps/maintenance/views.py +msgid "" +"This view shows the announcement editor to create or alter announcements " +"that are shown on the rightside of the dashboard." +msgstr "æ¤è§†å›¾æ˜¾ç¤ºå…¬å‘Šç¼–辑器,用于创建或更改显示在é¢æ¿å³ä¾§çš„公告。" + #: cms/djangoapps/maintenance/views.py msgid "Please provide course id." msgstr "请æ供课程编å·ã€‚" @@ -12269,7 +12535,7 @@ msgstr "登录{studio_name}" #: cms/templates/login.html themes/red-theme/cms/templates/login.html msgid "Don't have a {studio_name} Account? Sign up!" -msgstr "还没有 {studio_name}账户?现在就注册ï¼" +msgstr "还没有 {studio_name}è´¦å·ï¼ŸçŽ°åœ¨å°±æ³¨å†Œï¼" #: cms/templates/login.html themes/red-theme/cms/templates/login.html msgid "Required Information to Sign In to {studio_name}" @@ -12283,7 +12549,7 @@ msgstr "登录{studio_name}所必须的信æ¯" #: themes/stanford-style/lms/templates/register-form.html #: themes/stanford-style/lms/templates/register-shib.html msgid "E-mail" -msgstr "电å邮件" +msgstr "邮箱" #. Translators: This is the placeholder text for a field that requests an #. email @@ -12345,6 +12611,21 @@ msgstr "细节" msgid "View" msgstr "阅览" +#: cms/templates/maintenance/_announcement_edit.html +#: lms/templates/problem.html lms/templates/word_cloud.html +msgid "Save" +msgstr "ä¿å˜" + +#: cms/templates/maintenance/_announcement_index.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "previous" +msgstr "上一项" + +#: cms/templates/maintenance/_announcement_index.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "next" +msgstr "下一个" + #: cms/templates/maintenance/_force_publish_course.html #: lms/templates/problem.html lms/templates/shoppingcart/shopping_cart.html #: openedx/core/djangoapps/dark_lang/templates/dark_lang/preview-language-fragment.html @@ -12357,6 +12638,15 @@ msgstr "é‡ç½®" msgid "Legal" msgstr "åˆæ³•" +#. Translators: 'edX' and 'Open edX' are trademarks of 'edX Inc.'. Please do +#. not translate any of these trademarks and company names. +#: cms/templates/widgets/footer.html +#: themes/red-theme/lms/templates/footer.html +msgid "" +"edX, Open edX, and the edX and Open edX logos are registered trademarks of " +"{link_start}edX Inc.{link_end}" +msgstr "" + #: cms/templates/widgets/header.html lms/templates/header/header.html #: lms/templates/navigation/navigation.html #: lms/templates/widgets/footer-language-selector.html @@ -12366,7 +12656,7 @@ msgstr "选择è¯è¨€" #: cms/templates/widgets/header.html lms/templates/user_dropdown.html #: lms/templates/header/user_dropdown.html msgid "Account" -msgstr "账户" +msgstr "è´¦å·" #: cms/templates/widgets/header.html #: lms/templates/header/navbar-authenticated.html @@ -12458,7 +12748,7 @@ msgstr "åé¦ˆè¡¨æ ¼" #: common/templates/emails/contact_us_feedback_email_body.txt msgid "Email: {email}" -msgstr "电å邮件: {email}" +msgstr "邮箱: {email}" #: common/templates/emails/contact_us_feedback_email_body.txt msgid "Full Name: {realname}" @@ -12488,11 +12778,11 @@ msgstr "使用者å馈æ„è§" msgid "" "The email associated with your {platform_name} account has changed from " "{old_email} to {new_email}." -msgstr "ä¸Žä½ è´¦æˆ· {platform_name} 相关è”的电å邮件地å€ç”± {old_email} 修改为 {new_email}。" +msgstr "ä¸Žæ‚¨è´¦å· {platform_name} 相关è”的邮箱已ç»ç”± {old_email} 修改为 {new_email}。" #: common/templates/emails/sync_learner_profile_data_email_change_body.txt msgid "No action is needed on your part." -msgstr "ä½ ä¸éœ€è¦è¿›è¡Œä»»ä½•æ“作。" +msgstr "您ä¸éœ€è¦è¿›è¡Œä»»ä½•æ“作。" #: common/templates/emails/sync_learner_profile_data_email_change_body.txt msgid "" @@ -12502,7 +12792,7 @@ msgstr "如果æ¤æ›´æ”¹æœ‰è¯¯ï¼Œè¯·è”ç³»{link_start}{platform_name}å®¢æˆ·æ”¯æŒ #: common/templates/emails/sync_learner_profile_data_email_change_subject.txt msgid "Your {platform_name} account email has been updated" -msgstr "ä½ çš„ {platform_name} 账户电å邮件已更新" +msgstr "您的 {platform_name} è´¦å·ç”µå邮箱已更新" #: lms/djangoapps/discussion/templates/discussion/discussion_board_fragment.html msgid "Add a Post" @@ -12576,7 +12866,7 @@ msgstr "收è—æ¤é¡µ" #: lms/templates/conditional_module.html msgid "You do not have access to this dependency module." -msgstr "ä½ æ— æƒè®¿é—®æ¤ä¾èµ–模å—。" +msgstr "æ‚¨æ— æƒè®¿é—®æ¤ä¾èµ–模å—。" #: lms/templates/course.html #: openedx/features/journals/templates/journals/bundle_card.html @@ -12632,11 +12922,16 @@ msgstr "查找课程" msgid "Clear search" msgstr "清空æœç´¢ç»“æžœ" +#: lms/templates/dashboard.html +msgid "Skip to list of announcements" +msgstr "跳转到公告列表" + #: lms/templates/dashboard.html themes/edx.org/lms/templates/dashboard.html msgid "Account Status Info" -msgstr "账户状æ€ä¿¡æ¯" +msgstr "è´¦å·çŠ¶æ€ä¿¡æ¯" -#: lms/templates/dashboard.html themes/edx.org/lms/templates/dashboard.html +#: lms/templates/dashboard.html lms/templates/header/user_dropdown.html +#: themes/edx.org/lms/templates/dashboard.html msgid "Order History" msgstr "订å•è®°å½•" @@ -12676,6 +12971,7 @@ msgstr "æˆ‘ä»¬æ— æ³•å‘ {email}å‘é€ç¡®è®¤é‚®ä»¶" #: lms/templates/email_change_failed.html lms/templates/email_exists.html #: lms/templates/invalid_email_key.html +#: lms/templates/secondary_email_change_failed.html msgid "Go back to the {link_start}home page{link_end}." msgstr "返回{link_start}主页{link_end}" @@ -12689,7 +12985,7 @@ msgstr "您å¯ä»¥åœ¨{link_start}课程é¢æ¿{link_end}看到您的新邮箱地 #: lms/templates/email_exists.html msgid "An account with the new e-mail address already exists." -msgstr "该邮箱地å€å·²è¢«å¦ä¸€ä¸ªè´¦æˆ·ä½¿ç”¨ã€‚" +msgstr "该邮箱已被å¦ä¸€ä¸ªè´¦å·ä½¿ç”¨ã€‚" #: lms/templates/enroll_staff.html msgid "You should Register before trying to access the Unit" @@ -12736,11 +13032,15 @@ msgstr "排除错误" msgid "External Authentication failed" msgstr "外部认è¯å¤±è´¥" +#: lms/templates/footer.html +msgid "organization logo" +msgstr "" + #: lms/templates/forgot_password_modal.html msgid "" "Please enter your e-mail address below, and we will e-mail instructions for " "setting a new password." -msgstr "请在下é¢è¾“入您的电å邮件地å€ã€‚我们会通过邮件å‘é€è®¾ç½®æ–°å¯†ç 的说明。" +msgstr "请在下é¢è¾“入您的邮箱。我们会通过邮件å‘é€è®¾ç½®æ–°å¯†ç 的说明。" #: lms/templates/forgot_password_modal.html lms/templates/login.html #: lms/templates/register-form.html lms/templates/register-shib.html @@ -12756,11 +13056,11 @@ msgstr "å¿…å¡«ä¿¡æ¯" #: lms/templates/forgot_password_modal.html msgid "Your E-mail Address" -msgstr "您的邮件地å€" +msgstr "您的邮箱" #: lms/templates/forgot_password_modal.html lms/templates/login.html msgid "This is the e-mail address you used to register with {platform}" -msgstr "这是您在{platform}注册时使用的e-mail地å€ã€‚" +msgstr "这是您在{platform}注册时使用的邮箱" #: lms/templates/forgot_password_modal.html msgid "Reset My Password" @@ -12894,7 +13194,7 @@ msgstr "å‘生错误" #: lms/templates/help_modal.html msgid "Please {link_start}send us e-mail{link_end}." -msgstr "请 {link_start}å‘é€e-mail{link_end} 给我们。" +msgstr "请 {link_start}å‘é€ç”µå邮箱{link_end} 给我们。" #: lms/templates/help_modal.html msgid "Please try again later." @@ -12931,17 +13231,15 @@ msgstr "" msgid "Search for a course" msgstr "查找课程" -#. Translators: 'Open edX' is a registered trademark, please keep this -#. untranslated. See http://open.edx.org for more information. -#: lms/templates/index_overlay.html -msgid "Welcome to the Open edX{registered_trademark} platform!" -msgstr "欢迎æ¥åˆ°Open edX{registered_trademark}å¹³å°ï¼" +#: lms/templates/index_overlay.html lms/templates/register-sidebar.html +msgid "Welcome to {platform_name}" +msgstr "欢迎æ¥åˆ°{platform_name}" #. Translators: 'Open edX' is a registered trademark, please keep this #. untranslated. See http://open.edx.org for more information. #: lms/templates/index_overlay.html -msgid "It works! This is the default homepage for this Open edX instance." -msgstr "æˆåŠŸäº†ï¼è¿™æ˜¯ä¸€ä¸ª Open edX 实例的默认主页。" +msgid "It works! Powered by Open edX{registered_trademark}" +msgstr "" #: lms/templates/invalid_email_key.html msgid "Invalid email change key" @@ -12980,18 +13278,6 @@ msgstr[0] "显示å¯æ·»åŠ 到 {display_name} 的全部匹é…内容。æ¯ä½å¦ msgid "Helpful Information" msgstr "有用的信æ¯" -#: lms/templates/login-sidebar.html -msgid "Login via OpenID" -msgstr "通过OpenID登录" - -#: lms/templates/login-sidebar.html -msgid "" -"You can now start learning with {platform_name} by logging in with your <a " -"rel=\"external\" href=\"http://openid.net/\">OpenID account</a>." -msgstr "" -"ä½ çŽ°åœ¨å¯ä»¥ç™»å½•æ‚¨çš„ <a rel=\"external\" " -"href=\"http://openid.net/\">OpenID账户</a>开始å¦ä¹ {platform_name}上的课程。" - #: lms/templates/login-sidebar.html msgid "Not Enrolled?" msgstr "尚未选课?" @@ -13007,7 +13293,7 @@ msgstr "需è¦å¸®åŠ©ï¼Ÿ" #: lms/templates/login-sidebar.html msgid "Looking for help signing in or with your {platform_name} account?" -msgstr "寻找关于登录或者您账户{platform_name} 的帮助?" +msgstr "寻找关于登录或者您账å·{platform_name} 的帮助?" #: lms/templates/login-sidebar.html msgid "View our help section for answers to commonly asked questions." @@ -13015,11 +13301,11 @@ msgstr "查看帮助部分æ¥èŽ·å¾—常è§é—®é¢˜çš„解ç”。" #: lms/templates/login.html msgid "Log into your {platform_name} Account" -msgstr "登录进入您的{platform_name}账户" +msgstr "登录进入您的{platform_name}è´¦å·" #: lms/templates/login.html msgid "Log into My {platform_name} Account" -msgstr "登录我的{platform_name}账户" +msgstr "登录我的{platform_name}è´¦å·" #: lms/templates/login.html msgid "Access My Courses" @@ -13029,7 +13315,7 @@ msgstr "进入我的课程" #: lms/templates/register.html #: themes/stanford-style/lms/templates/register-shib.html msgid "Processing your account information" -msgstr "æ£åœ¨å¤„ç†æ‚¨çš„å¸æˆ·ä¿¡æ¯" +msgstr "æ£åœ¨å¤„ç†æ‚¨çš„è´¦å·ä¿¡æ¯" #: lms/templates/login.html wiki/templates/wiki/accounts/login.html msgid "Please log in" @@ -13037,11 +13323,11 @@ msgstr "请登录" #: lms/templates/login.html msgid "to access your account and courses" -msgstr "æ¥è®¿é—®æ‚¨çš„账户和课程" +msgstr "æ¥è®¿é—®æ‚¨çš„è´¦å·å’Œè¯¾ç¨‹" #: lms/templates/login.html msgid "We're Sorry, {platform_name} accounts are unavailable currently" -msgstr "我们很é—憾,{platform_name} è´¦æˆ·çŽ°åœ¨æ— æ³•ä½¿ç”¨" +msgstr "我们很é—憾,{platform_name} è´¦å·çŽ°åœ¨æ— 法使用" #: lms/templates/login.html msgid "We couldn't log you in." @@ -13053,7 +13339,7 @@ msgstr "您的邮箱或密ç ä¸æ£ç¡®" #: lms/templates/login.html msgid "An error occurred when signing you in to {platform_name}." -msgstr "ä½ æ³¨å†Œ {platform_name} æ—¶å‘生了一个错误。" +msgstr "您注册 {platform_name} æ—¶å‘生了一个错误。" #: lms/templates/login.html msgid "" @@ -13061,12 +13347,12 @@ msgid "" "account. Required fields are noted by <strong class=\"indicator\">bold text " "and an asterisk (*)</strong>." msgstr "" -"请æ供下é¢çš„ä¿¡æ¯ä»¥ç™»å½•è¿›å…¥æ‚¨çš„ {platform_name} 账户,必须填写的信æ¯å·²ç»è¢« <strong " +"请æ供下é¢çš„ä¿¡æ¯ä»¥ç™»å½•è¿›å…¥æ‚¨çš„ {platform_name} è´¦å·ï¼Œå¿…须填写的信æ¯å·²ç»è¢« <strong " "class=\"indicator\">åŠ ç²—å’Œç”¨ (*)æ ‡å‡º</strong>。" #: lms/templates/login.html msgid "Account Preferences" -msgstr "账户å‚æ•°" +msgstr "è´¦å·å‚æ•°" #: lms/templates/login.html msgid "Sign in with {provider_name}" @@ -13109,7 +13395,7 @@ msgstr "点击æ¥å¯åŠ¨" #: lms/templates/manage_user_standing.html msgid "Manage student accounts" -msgstr "管ç†å¦ç”Ÿè´¦æˆ·" +msgstr "管ç†å¦ç”Ÿè´¦å·" #: lms/templates/manage_user_standing.html msgid "Username:" @@ -13137,11 +13423,11 @@ msgstr "查看用户资料" #: lms/templates/manage_user_standing.html msgid "Disable Account" -msgstr "åœç”¨è´¦æˆ·" +msgstr "åœç”¨è´¦å·" #: lms/templates/manage_user_standing.html msgid "Reenable Account" -msgstr "é‡æ–°å¯ç”¨è´¦æˆ·" +msgstr "é‡æ–°å¯ç”¨è´¦å·" #: lms/templates/manage_user_standing.html msgid "Remove Profile Image" @@ -13149,7 +13435,7 @@ msgstr "åˆ é™¤ç”¨æˆ·èµ„æ–™ç…§ç‰‡" #: lms/templates/manage_user_standing.html msgid "Students whose accounts have been disabled" -msgstr "å¦ç”Ÿå¸æˆ·å·²è¢«åœç”¨" +msgstr "å¦ç”Ÿè´¦å·å·²è¢«åœç”¨" #: lms/templates/manage_user_standing.html msgid "(reload your page to refresh)" @@ -13204,7 +13490,7 @@ msgstr "{content_group}çš„å¦ç”Ÿ" #: lms/templates/preview_menu.html msgid "Username or email:" -msgstr "用户å或电å邮件:" +msgstr "用户å或邮箱:" #: lms/templates/preview_menu.html msgid "Set preview mode" @@ -13217,7 +13503,7 @@ msgstr "您æ£åœ¨ä»¥ {i_start}{user_name}{i_end} 身份查看课程。" #: lms/templates/problem.html msgid "You have used {num_used} of {num_total} attempt" msgid_plural "You have used {num_used} of {num_total} attempts" -msgstr[0] "ä½ å·²ç»å°è¯•äº†{num_used}次(总共å¯ä»¥å°è¯•{num_total}次)" +msgstr[0] "您已ç»å°è¯•äº†{num_used}次,总共å¯ä»¥å°è¯•{num_total}次" #: lms/templates/problem.html msgid "" @@ -13229,10 +13515,6 @@ msgstr "一些题目设有ä¿å˜ã€é‡ç½®ã€æ示ã€æ˜¾ç¤ºç”案ç‰é€‰é¡¹ï¼Œç‚¹ msgid "Hint" msgstr "æ示" -#: lms/templates/problem.html lms/templates/word_cloud.html -msgid "Save" -msgstr "ä¿å˜" - #: lms/templates/problem.html msgid "Save your answer" msgstr "ä¿å˜ç”案" @@ -13241,6 +13523,10 @@ msgstr "ä¿å˜ç”案" msgid "Reset your answer" msgstr "é‡ç½®ç”案" +#: lms/templates/problem.html +msgid "Answers are displayed within the problem" +msgstr "" + #: lms/templates/problem_notifications.html msgid "Next Hint" msgstr "下个æ示" @@ -13283,12 +13569,12 @@ msgstr "在处ç†æ‚¨çš„注册信æ¯æ—¶å‘生了下列错误:" #: lms/templates/register-form.html #: themes/stanford-style/lms/templates/register-form.html msgid "Sign up with {provider_name}" -msgstr "使用 {provider_name} å¸å·ç™»å½•" +msgstr "使用 {provider_name} è´¦å·ç™»å½•" #: lms/templates/register-form.html #: themes/stanford-style/lms/templates/register-form.html msgid "Create your own {platform_name} account below" -msgstr "在下é¢åˆ›å»ºæ‚¨çš„ {platform_name} å¸å·" +msgstr "在下é¢åˆ›å»ºæ‚¨çš„ {platform_name} è´¦å·" #: lms/templates/register-form.html lms/templates/register-shib.html #: themes/stanford-style/lms/templates/register-form.html @@ -13315,7 +13601,7 @@ msgstr "您åªéœ€å†å¤šæ供一点信æ¯å°±å¯ä»¥å¼€å§‹åœ¨{platform_name}å¦ä¹ #: lms/templates/register-form.html #: themes/stanford-style/lms/templates/register-form.html msgid "Please complete the following fields to register for an account. " -msgstr "请将以下å—段补充完整以完æˆè´¦æˆ·æ³¨å†Œã€‚" +msgstr "请将以下å—段补充完整以完æˆè´¦å·æ³¨å†Œã€‚" #: lms/templates/register-form.html #: themes/stanford-style/lms/templates/register-form.html @@ -13372,7 +13658,7 @@ msgstr "请告诉我们您注册 {platform_name}çš„åŽŸå› " #: themes/stanford-style/lms/templates/register-form.html #: themes/stanford-style/lms/templates/register-shib.html msgid "Account Acknowledgements" -msgstr "账户致谢" +msgstr "è´¦å·ç¡®è®¤" #: lms/templates/register-form.html lms/templates/register-shib.html #: lms/templates/signup_modal.html @@ -13391,7 +13677,7 @@ msgstr "我åŒæ„{link_start}诚信准则{link_end}" #: lms/templates/register-form.html lms/templates/signup_modal.html #: themes/stanford-style/lms/templates/register-form.html msgid "Create My Account" -msgstr "创建我的账户" +msgstr "创建我的账å·" #: lms/templates/register-shib.html #: themes/stanford-style/lms/templates/register-shib.html @@ -13401,12 +13687,12 @@ msgstr "{platform_name}å好设置" #: lms/templates/register-shib.html #: themes/stanford-style/lms/templates/register-shib.html msgid "Update my {platform_name} Account" -msgstr "更新我的{platform_name}账户" +msgstr "更新我的{platform_name}è´¦å·" #: lms/templates/register-shib.html #: themes/stanford-style/lms/templates/register-shib.html msgid "Welcome {username}! Please set your preferences below" -msgstr "欢迎 {username}! 接下æ¥è¯·è¿›è¡Œæ‚¨çš„å好设置" +msgstr "欢迎 {username}ï¼æŽ¥ä¸‹æ¥è¯·è¿›è¡Œæ‚¨çš„å好设置" #: lms/templates/register-shib.html lms/templates/signup_modal.html #: themes/stanford-style/lms/templates/register-shib.html @@ -13416,7 +13702,7 @@ msgstr "输入用户昵称" #: lms/templates/register-shib.html #: themes/stanford-style/lms/templates/register-shib.html msgid "Update My Account" -msgstr "更新我的账户" +msgstr "更新我的账å·" #: lms/templates/register-sidebar.html #: themes/stanford-style/lms/templates/register-sidebar.html @@ -13435,18 +13721,14 @@ msgstr "å·²ç»æ³¨å†Œè¿‡äº†ï¼Ÿ" msgid "Log in" msgstr "登录" -#: lms/templates/register-sidebar.html -msgid "Welcome to {platform_name}" -msgstr "欢迎æ¥åˆ°{platform_name}" - #: lms/templates/register-sidebar.html msgid "" "Registering with {platform_name} gives you access to all of our current and " "future free courses. Not ready to take a course just yet? Registering puts " "you on our mailing list - we will update you as courses are added." msgstr "" -"在 {platform_name} 注册之åŽ, " -"您å¯ä»¥è®¿é—®æˆ‘们现有和将æ¥æ‰€æœ‰çš„å…费课程。现在还ä¸æƒ³åŠ 入课程?注册åŽæ‚¨å°†åŠ 入我们的收件人列表,您将通过邮件收到新课程的通知。" +"在 {platform_name} " +"注册之åŽï¼Œæ‚¨å¯ä»¥è®¿é—®æˆ‘们现有和将æ¥æ‰€æœ‰çš„å…费课程。现在还ä¸æƒ³åŠ 入课程?注册åŽæ‚¨å°†åŠ 入我们的收件人列表,您将通过邮件收到新课程的通知。" #: lms/templates/register-sidebar.html #: themes/stanford-style/lms/templates/register-sidebar.html @@ -13460,7 +13742,7 @@ msgid "" "spam folder and mark {platform_name} emails as 'not spam'. At " "{platform_name}, we communicate mostly through email." msgstr "" -"åŠ å…¥ {platform_name} 过程ä¸ï¼Œæ‚¨å°†æ”¶åˆ°ä¸€å°ç”µå邮件说明账户激活方法。如未收到邮件,请检查您的垃圾邮件并将 {platform_name}" +"åŠ å…¥ {platform_name} 过程ä¸ï¼Œæ‚¨å°†æ”¶åˆ°ä¸€å°ç”µå邮件说明账å·æ¿€æ´»æ–¹æ³•ã€‚如未收到邮件,请检查您的垃圾邮件并将 {platform_name}" " é‚®ä»¶æ ‡è®°ä¸ºâ€œéžåžƒåœ¾é‚®ä»¶â€ã€‚在 {platform_name},我们将主è¦é€šè¿‡ç”µå邮件进行沟通。" #: lms/templates/register-sidebar.html @@ -13485,7 +13767,7 @@ msgstr "{platform_name}注册" #: lms/templates/register.html msgid "Create My {platform_name} Account" -msgstr "创建我的{platform_name}账户" +msgstr "创建我的{platform_name}è´¦å·" #: lms/templates/register.html msgid "Welcome!" @@ -13493,7 +13775,7 @@ msgstr "欢迎ï¼" #: lms/templates/register.html msgid "Register below to create your {platform_name} account" -msgstr "在下é¢æ³¨å†Œæ¥åˆ›å»ºæ‚¨åœ¨ {platform_name}的账户" +msgstr "在下é¢æ³¨å†Œæ¥åˆ›å»ºæ‚¨åœ¨ {platform_name}çš„è´¦å·" #: lms/templates/resubscribe.html msgid "Re-subscribe Successful!" @@ -13506,6 +13788,24 @@ msgid "" msgstr "" "您已é‡æ–°å¯ç”¨{platform_name}的论å›é‚®ä»¶æ醒。您å¯ä»¥{dashboard_link_start}返回您的课程é¢æ¿{link_end}。" +#: lms/templates/secondary_email_change_failed.html +msgid "Secondary e-mail change failed" +msgstr "辅助邮箱å˜æ›´å¤±è´¥" + +#: lms/templates/secondary_email_change_failed.html +msgid "We were unable to activate your secondary email {secondary_email}" +msgstr "æˆ‘ä»¬æ— æ³•æ¿€æ´»æ‚¨çš„è¾…åŠ©é‚®ç®±{secondary_email}" + +#: lms/templates/secondary_email_change_successful.html +msgid "Secondary e-mail change successful!" +msgstr "辅助邮箱å˜æ›´æˆåŠŸï¼" + +#: lms/templates/secondary_email_change_successful.html +msgid "" +"Your secondary email has been activated. Please visit " +"{link_start}dashboard{link_end} for courses." +msgstr "您的辅助电å邮件已激活。请访问{link_start}é¢æ¿{link_end}查看课程。" + #: lms/templates/seq_module.html msgid "Important!" msgstr "é‡è¦äº‹é¡¹ï¼" @@ -13556,7 +13856,7 @@ msgstr "æ³¨å†ŒåŠ å…¥{platform_name}çš„ç›®æ ‡" #: lms/templates/signup_modal.html msgid "Already have an account?" -msgstr "已有账户?" +msgstr "已有账å·ï¼Ÿ" #: lms/templates/signup_modal.html msgid "Login." @@ -13637,7 +13937,7 @@ msgstr "对å¦ç”Ÿçš„æ交记录é‡æ–°è¯„分" #: lms/templates/staff_problem_info.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Rescore Only If Score Improves" -msgstr "如果评分æ高, é‡æ–°æ‰“分" +msgstr "如果评分æ高,é‡æ–°æ‰“分" #: lms/templates/staff_problem_info.html msgid "Override Score" @@ -13712,7 +14012,7 @@ msgstr "用户管ç†" #: lms/templates/sysadmin_dashboard.html msgid "Email or username" -msgstr "电å邮件或åå—" +msgstr "邮箱或用户å" #: lms/templates/sysadmin_dashboard.html msgid "Delete user" @@ -13775,23 +14075,10 @@ msgstr "课程编å·æˆ–目录" msgid "Delete course from site" msgstr "从网站ä¸åˆ 除课程" -#. Translators: A version number appears after this string -#: lms/templates/sysadmin_dashboard.html -msgid "Platform Version" -msgstr "å¹³å°ç‰ˆæœ¬" - -#: lms/templates/sysadmin_dashboard_gitlogs.html -msgid "previous" -msgstr "上一项" - #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Page {current_page} of {total_pages}" msgstr "第 {current_page} 页/ å…±{total_pages}页" -#: lms/templates/sysadmin_dashboard_gitlogs.html -msgid "next" -msgstr "下一个" - #. Translators: Git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Recent git load activity for {course_id}" @@ -13911,7 +14198,7 @@ msgstr "未找到å¯æ’放的视频æºã€‚" msgid "" "Your browser does not support this video format. Try using a different " "browser." -msgstr "ä½ çš„æµè§ˆå™¨ä¸æ”¯æŒæ¤è§†é¢‘æ ¼å¼ï¼Œè¯·æ›´æ¢æµè§ˆå™¨å†å°è¯•ã€‚" +msgstr "您的æµè§ˆå™¨ä¸æ”¯æŒæ¤è§†é¢‘æ ¼å¼ï¼Œè¯·æ›´æ¢æµè§ˆå™¨å†å°è¯•ã€‚" #: lms/templates/video.html msgid "Downloads and transcripts" @@ -13975,7 +14262,7 @@ msgid "" "status of your API access request." msgstr "" "æ£åœ¨å¤„ç†æ‚¨è®¿é—® {platform_name} 课程目录 API " -"的请求。处ç†å®ŒæˆåŽï¼Œä½ 写在用户资料ä¸çš„电å邮箱将收到一æ¡ä¿¡æ¯ã€‚ä½ ä¹Ÿå¯ä»¥è¿”回到æ¤é¡µé¢æŸ¥çœ‹ä½ çš„ API 访问申请的状æ€ã€‚" +"的请求。处ç†å®ŒæˆåŽï¼Œæ‚¨å†™åœ¨ç”¨æˆ·èµ„æ–™ä¸çš„电å邮箱将收到一æ¡ä¿¡æ¯ã€‚您也å¯ä»¥è¿”回到æ¤é¡µé¢æŸ¥çœ‹æ‚¨çš„ API 访问申请的状æ€ã€‚" #. Translators: "platform_name" is the name of this Open edX installation. #. "api_support_email_link" is HTML for a link to email the API support staff. @@ -14014,7 +14301,7 @@ msgstr "é‡æ–°å®šå‘ URL" msgid "" "If you would like to regenerate your API client information, please use the " "form below." -msgstr "å¦‚æžœä½ æƒ³è¦é‡æ–°ç”Ÿæˆä½ çš„ API 客户端信æ¯ï¼Œè¯·ä½¿ç”¨ä»¥ä¸‹è¡¨æ ¼ã€‚" +msgstr "如果您想è¦é‡æ–°ç”Ÿæˆæ‚¨çš„ API 客户端信æ¯ï¼Œè¯·ä½¿ç”¨ä»¥ä¸‹è¡¨æ ¼ã€‚" #: lms/templates/api_admin/status.html msgid "Generate API client credentials" @@ -14093,7 +14380,7 @@ msgid "" "client ID." msgstr "" "è¦è®¿é—®API,您需è¦åˆ›å»ºä¸€ä¸ª {platform_name} " -"应用程åºçš„用户账户(éžä¸ªäººä½¿ç”¨ï¼‰ã€‚您将通过这个账户获得访问我们的API请求页é¢{request_url}çš„æƒé™ã€‚在该页上,您必须完æˆAPI请求表å•ï¼Œå…¶ä¸åŒ…括对API的计划用途的æ述。您æ供给{platform_name}的任何账户和注册信æ¯å¿…须准确åŠä¿è¯æ—¶æ•ˆï¼Œå¹¶ä¸”您åŒæ„在åšä»»ä½•æ›´æ”¹æ—¶åŠæ—¶é€šçŸ¥æˆ‘们。{platform_name_capitalized}将审查您的API请求表å•ï¼Œå¹¶åœ¨å¾—到{platform_name}çš„å…¨æƒæ‰¹å‡†åŽï¼Œä¸ºæ‚¨æ供获å–API共享秘密和客户ID的说明。" +"应用程åºçš„用户账å·ï¼ˆéžä¸ªäººä½¿ç”¨ï¼‰ã€‚您将通过这个账å·èŽ·å¾—访问我们的API请求页é¢{request_url}çš„æƒé™ã€‚在该页上,您必须完æˆAPI请求表å•ï¼Œå…¶ä¸åŒ…括对API的计划用途的æ述。您æ供给{platform_name}的任何账å·å’Œæ³¨å†Œä¿¡æ¯å¿…须准确åŠä¿è¯æ—¶æ•ˆï¼Œå¹¶ä¸”您åŒæ„在åšä»»ä½•æ›´æ”¹æ—¶åŠæ—¶é€šçŸ¥æˆ‘们。{platform_name_capitalized}将审查您的API请求表å•ï¼Œå¹¶åœ¨å¾—到{platform_name}çš„å…¨æƒæ‰¹å‡†åŽï¼Œä¸ºæ‚¨æ供获å–API共享秘密和客户ID的说明。" #: lms/templates/api_admin/terms_of_service.html msgid "Permissible Use" @@ -14173,7 +14460,7 @@ msgstr "å˜æ›´æˆ–去除包å«åœ¨æˆ–出现在 API 或任何 API Content ä¸çš„ä»» msgid "" "sublicensing, re-distributing, renting, selling or leasing access to the " "APIs or your client secret to any third party;" -msgstr "对 API 访问æƒé™æˆ–ä½ çš„å®¢æˆ·å¯†ç 进行许å¯è½¬è®©ã€å†åˆ†å‘ã€å‡ºç§Ÿã€é”€å”®æˆ–租èµç»™ä»»ä½•ç¬¬ä¸‰æ–¹ï¼›" +msgstr "对 API 访问æƒé™æˆ–您的客户密ç 进行许å¯è½¬è®©ã€å†åˆ†å‘ã€å‡ºç§Ÿã€é”€å”®æˆ–租èµç»™ä»»ä½•ç¬¬ä¸‰æ–¹ï¼›" #: lms/templates/api_admin/terms_of_service.html msgid "" @@ -14238,11 +14525,11 @@ msgid "" "distribute or modify the APIs or any API Content (including adaptation, " "editing, excerpting, or creating derivative works)." msgstr "" -"ä½ ç¡®è®¤å¹¶åŒæ„ API 和所有 API Content éƒ½åŒ…å« {platform_name} åŠå…¶åˆä½œä¼™ä¼´çš„有价值的知识产æƒã€‚API 和所有 API " +"您确认并åŒæ„ API 和所有 API Content éƒ½åŒ…å« {platform_name} åŠå…¶åˆä½œä¼™ä¼´çš„有价值的知识产æƒã€‚API 和所有 API " "Content å‡å—美国和外国的版æƒã€å•†æ ‡åŠå…¶ä»–法律的ä¿æŠ¤ã€‚如果未明确授æƒï¼Œåˆ™ä¿ç•™å¯¹ API å’Œ API Content 的所有æƒåˆ©ã€‚使用 API " -"或任何 API Content 并ä¸æ„味ç€ä½ 拥有 API 或 API Content 的任何æƒåˆ©çš„所有æƒã€‚ä½ ä¸å¾—å£°ç§°æˆ–è¯•å›¾å£°ç§°ä½ æ‹¥æœ‰ API 或任何 " -"API Content 的所有æƒï¼Œæˆ–è¯¯ä¼ ä½ ä¸ªäººã€ä½ çš„å…¬å¸æˆ–ä½ çš„åº”ç”¨ç¨‹åºæ˜¯æ¥æºäºŽä»»ä½• API Contentã€‚ä½ ä¸å¾—ä»¥ä½ ä¸ªäººå义或以任何第三方的å义,对 " -"API Content 进行整体或部分修改ã€åˆ›ä½œæ´¾ç”Ÿä½œå“或å°è¯•ä½¿ç”¨ã€æ³¨å†Œæˆ–以任何方å¼åˆ©ç”¨ã€‚ä½ ä¸å¾—分å‘或修改 API 或任何 API " +"或任何 API Content 并ä¸æ„味ç€æ‚¨æ‹¥æœ‰ API 或 API Content 的任何æƒåˆ©çš„所有æƒã€‚您ä¸å¾—声称或试图声称您拥有 API 或任何 " +"API Content 的所有æƒï¼Œæˆ–è¯¯ä¼ æ‚¨ä¸ªäººã€æ‚¨çš„å…¬å¸æˆ–您的应用程åºæ˜¯æ¥æºäºŽä»»ä½• API Content。您ä¸å¾—以您个人å义或以任何第三方的å义,对 " +"API Content 进行整体或部分修改ã€åˆ›ä½œæ´¾ç”Ÿä½œå“或å°è¯•ä½¿ç”¨ã€æ³¨å†Œæˆ–以任何方å¼åˆ©ç”¨ã€‚您ä¸å¾—分å‘或修改 API 或任何 API " "Content(包括改编ã€ç¼–辑ã€å¼•ç”¨æˆ–创作派生作å“)。" #: lms/templates/api_admin/terms_of_service.html @@ -14277,7 +14564,7 @@ msgid "" "content, in whole or in part, in any form and in any media formats and " "through any media channels (now known or hereafter developed)." msgstr "" -"é’ˆå¯¹ä½ æ交给 {platform_name} çš„ä¸Žä½ ä½¿ç”¨ API 或任何 API Content 有关的任何内容而言,å¯æ®æ¤è®¤ä¸ºä½ 授予 " +"针对您æ交给 {platform_name} 的与您使用 API 或任何 API Content 有关的任何内容而言,å¯æ®æ¤è®¤ä¸ºæ‚¨æŽˆäºˆ " "{platform_name} " "一个世界范围的ã€éžç‹¬æœ‰ã€å¯è½¬è®©ã€å¯åˆ†é…ã€å¯è½¬å‘许å¯ã€å…¨éƒ¨ä»˜è®«ã€å…版税ã€æ— 期é™ã€ä¸å¯æ’¤é”€çš„æƒåŠ›ï¼Œå¹¶è®¸å¯æŒæœ‰ã€è½¬è®©ã€å±•ç¤ºã€æ‰§è¡Œã€å¤åˆ¶ã€ä¿®æ”¹ã€åˆ†é…ã€å†åˆ†é…ã€å†è®¸å¯ï¼Œä»¥åŠä»¥ä»»ä½•å½¢å¼å’Œç”¨ä»»ä½•åª’ä½“æ ¼å¼å¹¶é€šè¿‡ä»»ä½•åª’ä½“æ¸ é“(现在已知的或今åŽå¼€å‘的)使用ã€æ供和利用æ¤å†…容的部分或全部。" @@ -14399,7 +14686,7 @@ msgid "" "DOWNLOAD OR USE OF SUCH INFORMATION, MATERIALS OR DATA, UNLESS OTHERWISE " "EXPRESSLY PROVIDED FOR IN THE {platform_name} PRIVACY POLICY." msgstr "" -"使用APIã€API内容和从API获得或通过API获得的任何æœåŠ¡éƒ½ç”±æ‚¨è‡ªå·±æ‰¿æ‹…风险。您自己判æ–和承担通过API访问或下载信æ¯ã€æ料或数æ®çš„é£Žé™©ï¼Œå¹¶ä¸”ä½ å°†å•ç‹¬è´Ÿè´£ä»»ä½•æŸå®³ä½ 的财产数æ®(åŒ…æ‹¬ä½ çš„ç”µè„‘ç³»ç»Ÿ)或æŸå¤±çš„æ•°æ®ç»“果下载或使用这些信,资料或数æ®ï¼Œé™¤éžå¦æœ‰æ˜Žç¡®è§„定{platform_name}çš„éšç§æ”¿ç–。" +"使用APIã€API内容和从API获得或通过API获得的任何æœåŠ¡éƒ½ç”±æ‚¨è‡ªå·±æ‰¿æ‹…风险。您自己判æ–和承担通过API访问或下载信æ¯ã€æ料或数æ®çš„风险,并且您将å•ç‹¬è´Ÿè´£ä»»ä½•æŸå®³æ‚¨çš„财产数æ®(包括您的电脑系统)或æŸå¤±çš„æ•°æ®ç»“果下载或使用这些信,资料或数æ®ï¼Œé™¤éžå¦æœ‰æ˜Žç¡®è§„定{platform_name}çš„éšç§æ”¿ç–。" #: lms/templates/api_admin/terms_of_service.html msgid "" @@ -14411,7 +14698,7 @@ msgid "" "INFORMATION OBTAINED FROM OR THROUGH THE APIS, WHETHER YOUR CLAIM IS BASED " "IN CONTRACT, TORT, STATUTORY OR OTHER LAW." msgstr "" -"在适用法律å…许的最大范围内,您åŒæ„{platform_name}å’Œ{platform_name}çš„å‚与者ä¸çš„任何一方对您的任何æŸå¤±æˆ–æŸå®³ä¸è´Ÿè´£ä»»ï¼Œè¿™äº›æŸå¤±æˆ–æŸå®³ç”±å®žé™…或间接ã€æˆ–ç”±æ¤æ¡æ¬¾æˆ–与æ¡æ¬¾ç›¸å…³çš„内容ã€æˆ–æ‚¨ï¼ˆæˆ–ä»»ä½•ç¬¬ä¸‰æ–¹ï¼‰ä½¿ç”¨æˆ–æ— æ³•ä½¿ç”¨API​​或任何API内容ã€æˆ–您从API获得或通过API获得的信æ¯å¼•èµ·ï¼Œæ— è®ºä½ çš„ç´¢èµ”æ˜¯å¦åŸºäºŽåˆåŒï¼Œä¾µæƒï¼Œæ³•å®šæˆ–其他法律。" +"在适用法律å…许的最大范围内,您åŒæ„{platform_name}å’Œ{platform_name}çš„å‚与者ä¸çš„任何一方对您的任何æŸå¤±æˆ–æŸå®³ä¸è´Ÿè´£ä»»ï¼Œè¿™äº›æŸå¤±æˆ–æŸå®³ç”±å®žé™…或间接ã€æˆ–ç”±æ¤æ¡æ¬¾æˆ–与æ¡æ¬¾ç›¸å…³çš„内容ã€æˆ–æ‚¨ï¼ˆæˆ–ä»»ä½•ç¬¬ä¸‰æ–¹ï¼‰ä½¿ç”¨æˆ–æ— æ³•ä½¿ç”¨API​​或任何API内容ã€æˆ–您从API获得或通过API获得的信æ¯å¼•èµ·ï¼Œæ— 论您的索赔是å¦åŸºäºŽåˆåŒï¼Œä¾µæƒï¼Œæ³•å®šæˆ–其他法律。" #: lms/templates/api_admin/terms_of_service.html msgid "" @@ -14436,7 +14723,7 @@ msgid "" " OR ALL OF THE ABOVE DISCLAIMERS, EXCLUSIONS, OR LIMITATIONS MAY NOT APPLY " "TO YOU, AND YOU MIGHT HAVE ADDITIONAL RIGHTS." msgstr "" -"æŸäº›å·žçº§æ³•å¾‹ä¸å…许é™åˆ¶é»˜ç¤ºæ‹…ä¿æˆ–ä¸å…许排除或é™åˆ¶æŸäº›æŸå®³èµ”å¿ã€‚å¦‚æžœè¿™äº›æ³•å¾‹å¯¹ä½ é€‚ç”¨ï¼Œéƒ¨åˆ†æˆ–å…¨éƒ¨ä¸Šè¯‰å…责声明ã€é™¤å¤–æ¡æ¬¾æˆ–é™åˆ¶å¯èƒ½å¯¹ä½ ä¸é€‚ç”¨ï¼Œå› æ¤ä½ å¯èƒ½æ‹¥æœ‰é¢å¤–æƒåˆ©ã€‚" +"æŸäº›å·žçº§æ³•å¾‹ä¸å…许é™åˆ¶é»˜ç¤ºæ‹…ä¿æˆ–ä¸å…许排除或é™åˆ¶æŸäº›æŸå®³èµ”å¿ã€‚如果这些法律对您适用,部分或全部上诉å…责声明ã€é™¤å¤–æ¡æ¬¾æˆ–é™åˆ¶å¯èƒ½å¯¹æ‚¨ä¸é€‚ç”¨ï¼Œå› æ¤æ‚¨å¯èƒ½æ‹¥æœ‰é¢å¤–æƒåˆ©ã€‚" #: lms/templates/api_admin/terms_of_service.html msgid "" @@ -14486,11 +14773,11 @@ msgid "" "you by {platform_name} under these Terms, {platform_name} may notify you via" " the email address associated with your {platform_name} account." msgstr "" -"æ¤æ¡æ¬¾æž„æˆä½ å’Œ {platform_name} ä¹‹é—´ä¸Žä½ ä½¿ç”¨ API å’Œ API Content 有关的完整å议,å–ä»£ä½ å’Œ " -"{platform_name} ä¹‹é—´ä¸Žä½ ä½¿ç”¨ API å’Œ API Content 有关的所有事先å议。{platform_name} " +"æ¤æ¡æ¬¾æž„æˆæ‚¨å’Œ {platform_name} 之间与您使用 API å’Œ API Content 有关的完整å议,å–代您和 " +"{platform_name} 之间与您使用 API å’Œ API Content 有关的所有事先å议。{platform_name} " "未能行使或执行æ¤æ¡æ¬¾çš„任何æƒåˆ©æˆ–规定并ä¸å¾—æž„æˆå¯¹æ¤ç±»æƒåˆ©æˆ–规定的弃æƒã€‚如果具有åˆæ³•ç®¡è¾–æƒçš„法院å‘现æ¤æ¡æ¬¾çš„ä»»ä½•è§„å®šæ— æ•ˆï¼Œä½†æ˜¯å„方一致åŒæ„法院应按照该æ¡è§„定尽é‡è®©ç›¸å…³æ–¹çš„æ„愿生效,且æ¤æ¡æ¬¾çš„其他规定ä»ç„¶å…¨é¢æœ‰æ•ˆå’Œç”Ÿæ•ˆã€‚æ¤æ¡æ¬¾ä¸å½±å“任何第三方å—益æƒæˆ–任何代ç†ã€åˆä½œä¼™ä¼´æˆ–åˆèµ„ä¼ä¸šã€‚æ ¹æ®è¿™äº›æ¡æ¬¾ç”±" -" {platform_name} ä¸ºä½ æ供的任何通知,{platform_name} å‡å¯é€šè¿‡ä¸Žä½ çš„ {platform_name} " -"å¸æˆ·å…³è”的电å邮箱地å€é€šçŸ¥ä½ 。" +" {platform_name} 为您æ供的任何通知,{platform_name} å‡å¯é€šè¿‡ä¸Žæ‚¨çš„ {platform_name} " +"è´¦å·å…³è”的邮箱通知您。" #: lms/templates/api_admin/terms_of_service.html msgid "" @@ -14574,7 +14861,7 @@ msgstr "{username}的列表" #: lms/templates/api_admin/catalogs/list.html msgid "Create new catalog:" -msgstr "创建新的劣å¸å“¦å•Šï¼š" +msgstr "创建新的分类:" #: lms/templates/api_admin/catalogs/list.html msgid "Create Catalog" @@ -14620,7 +14907,7 @@ msgid "" "Scientific Expressions{math_link_end} in the {guide_link_start}edX Guide for" " Students{guide_link_end}." msgstr "" -"更多详细信æ¯, 请访问{guide_link_start}å¦ç”Ÿä½¿ç”¨æŒ‡å—{guide_link_end} " +"更多详细信æ¯ï¼Œè¯·è®¿é—®{guide_link_start}å¦ç”Ÿä½¿ç”¨æŒ‡å—{guide_link_end} " "里的{math_link_start}输入数å¦å’Œç§‘å¦è¡¨è¾¾å¼{math_link_end} 。" #: lms/templates/calculator/toggle_calculator.html @@ -14763,7 +15050,7 @@ msgstr "CCX指导仪表盘" #: lms/templates/ccx/coach_dashboard.html msgid "Name your CCX" -msgstr "ä¸ºä½ çš„CCX命å" +msgstr "为您的CCX命å" #: lms/templates/ccx/coach_dashboard.html msgid "Create a new Custom Course for edX" @@ -14790,19 +15077,19 @@ msgstr "请输入一个有效的 CCX å称。" #: lms/templates/ccx/enrollment.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Email Addresses/Usernames" -msgstr "电å邮箱地å€ï¼ç”¨æˆ·å" +msgstr "邮箱ï¼ç”¨æˆ·å" #: lms/templates/ccx/enrollment.html msgid "" "Enter one or more email addresses or usernames separated by new lines or " "commas." -msgstr "请输入一个或多个电å邮箱地å€æˆ–用户å,用逗å·éš”开或å¦èµ·ä¸€è¡Œã€‚" +msgstr "请输入一个或多个邮箱或用户å,用逗å·éš”开或å¦èµ·ä¸€è¡Œã€‚" #: lms/templates/ccx/enrollment.html msgid "" "Make sure you enter the information carefully. You will not receive " "notification for invalid usernames or email addresses." -msgstr "请仔细输入信æ¯ã€‚如果用户å或邮箱地å€æ— æ•ˆï¼Œæ‚¨å°†æ— æ³•æ”¶åˆ°é€šçŸ¥ã€‚" +msgstr "请仔细输入信æ¯ã€‚如果用户åæˆ–é‚®ç®±æ— æ•ˆï¼Œæ‚¨å°†æ— æ³•æ”¶åˆ°é€šçŸ¥ã€‚" #: lms/templates/ccx/enrollment.html #: lms/templates/instructor/instructor_dashboard_2/membership.html @@ -14823,7 +15110,7 @@ msgid "" "registered for {platform_name} will not be enrolled, but will be allowed to " "enroll once they make an account." msgstr "" -"如果æ¤é€‰é¡¹{em_start}未选{em_end},尚未注册 {platform_name} 的用户将ä¸èƒ½å…¥é€‰ï¼Œä½†åªè¦ä»–们注册了å¸æˆ·å³å¯å…¥é€‰ã€‚" +"如果æ¤é€‰é¡¹{em_start}未选{em_end},尚未注册 {platform_name} 的用户将ä¸èƒ½å…¥é€‰ï¼Œä½†åªè¦ä»–们注册了账å·å³å¯å…¥é€‰ã€‚" #: lms/templates/ccx/enrollment.html #: lms/templates/instructor/instructor_dashboard_2/membership.html @@ -14901,7 +15188,7 @@ msgstr "设置日期" #: lms/templates/ccx/schedule.html msgid "You have unsaved changes." -msgstr "ä½ è¿˜æœ‰æœªä¿å˜çš„更改。" +msgstr "您还有未ä¿å˜çš„更改。" #: lms/templates/ccx/schedule.html msgid "There was an error saving changes." @@ -15021,7 +15308,7 @@ msgstr "授予:" msgid "" "For tips and tricks on printing your certificate, view the {link_start}Web " "Certificates help documentation{link_end}." -msgstr "如需打å°è¯ä¹¦çš„帮助和建议, 请点击 {link_start} 网络è¯ä¹¦å¸®åŠ©æ–‡æ¡£ {link_end}." +msgstr "如需打å°è¯ä¹¦çš„帮助和建议, 请点击 {link_start} 网络è¯ä¹¦å¸®åŠ©æ–‡æ¡£ {link_end}。" #: lms/templates/certificates/invalid.html msgid "Cannot Find Certificate" @@ -15091,7 +15378,7 @@ msgid "" "An error has occurred with your payment. <b>You have not been charged.</b> " "Please try to submit your payment again. If this problem persists, contact " "{email}." -msgstr "ä½ çš„ä»˜æ¬¾å‡ºçŽ°ä¸€ä¸ªé”™è¯¯ã€‚<b>ä½ å°šæœªä»˜æ¬¾ã€‚</b>请é‡è¯•å†æ¬¡ä»˜æ¬¾ã€‚如果æ¤é—®é¢˜ä»ç„¶å˜åœ¨ï¼Œè¯·è”ç³» {email}。" +msgstr "您的付款出现一个错误。<b>您尚未付款。</b>请é‡è¯•å†æ¬¡ä»˜æ¬¾ã€‚如果æ¤é—®é¢˜ä»ç„¶å˜åœ¨ï¼Œè¯·è”ç³» {email}。" #: lms/templates/commerce/checkout_receipt.html msgid "Loading Order Data..." @@ -15101,6 +15388,20 @@ msgstr "åŠ è½½è®¢å•ä¿¡æ¯..." msgid "Please wait while we retrieve your order details." msgstr "请ç¨å€™ï¼Œæˆ‘们æ£åœ¨èŽ·å–您的订å•è¯¦æƒ…。" +#: lms/templates/course_modes/_upgrade_button.html +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/_upgrade_button.html +#: themes/edx.org/lms/templates/course_modes/choose.html +msgid "Pursue the Verified Track" +msgstr "跟踪已ç»è¿‡èº«ä»½è®¤è¯çš„的轨迹" + +#: lms/templates/course_modes/_upgrade_button.html +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/_upgrade_button.html +#: themes/edx.org/lms/templates/course_modes/choose.html +msgid "Pursue a Verified Certificate" +msgstr "选择认è¯è¯ä¹¦" + #: lms/templates/course_modes/choose.html #: themes/edx.org/lms/templates/course_modes/choose.html msgid "Enroll In {course_name} | Choose Your Track" @@ -15182,23 +15483,13 @@ msgid "" "or post it directly on LinkedIn" msgstr "{b_start}è½»æ¾åˆ†äº«:{b_end} 在您的简历ä¸åŠ 入这份è¯ä¹¦ï¼Œæˆ–è€…ç›´æŽ¥å°†å®ƒä¼ è‡³é¢†è‹±Linkedln" -#: lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -msgid "Pursue a Verified Certificate" -msgstr "选择认è¯è¯ä¹¦" - -#: lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -msgid "Pursue the Verified Track" -msgstr "跟踪已ç»è¿‡èº«ä»½è®¤è¯çš„的轨迹" - #: lms/templates/course_modes/choose.html #: themes/edx.org/lms/templates/course_modes/choose.html msgid "" "Highlight your new knowledge and skills with a verified certificate. Use " "this valuable credential to improve your job prospects and advance your " "career, or highlight your certificate in school applications." -msgstr "用您的认è¯è¯ä¹¦çªå‡ºæ‚¨çš„新知识和技能。使用这件有价值的å‡è¯æ¥æ”¹å–„ä½ çš„å°±ä¸šå‰æ™¯ï¼ŒæŽ¨è¿›æ‚¨çš„èŒä¸šå‘展,或者在申请å¦æ ¡æ—¶çªå‡ºæ‚¨çš„è¯ä¹¦ã€‚" +msgstr "用您的认è¯è¯ä¹¦çªå‡ºæ‚¨çš„新知识和技能。使用这件有价值的å‡è¯æ¥æ”¹å–„您的就业å‰æ™¯ï¼ŒæŽ¨è¿›æ‚¨çš„èŒä¸šå‘展,或者在申请å¦æ ¡æ—¶çªå‡ºæ‚¨çš„è¯ä¹¦ã€‚" #: lms/templates/course_modes/choose.html #: themes/edx.org/lms/templates/course_modes/choose.html @@ -15244,7 +15535,23 @@ msgid "" "Audit this course for free and have access to course materials and " "discussions forums. {b_start}This track does not include graded assignments," " or unlimited course access.{b_end}" -msgstr "å…è´¹æ—å¬æœ¬è¯¾ç¨‹ï¼Œå¹¶å¯è®¿é—®è¯¾ç¨‹èµ„料和讨论论å›ã€‚{b_start}æ¤è½¨é“ä¸åŒ…æ‹¬åˆ†çº§ä½œä¸šæˆ–æ— é™åˆ¶çš„课程访问.{b_end}。" +msgstr "å…è´¹æ—å¬æœ¬è¯¾ç¨‹ï¼Œå¹¶å¯è®¿é—®è¯¾ç¨‹èµ„料和讨论论å›ã€‚{b_start}æ¤è½¨é“ä¸åŒ…æ‹¬åˆ†çº§ä½œä¸šæˆ–æ— é™åˆ¶çš„课程访问。{b_end}" + +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/choose.html +msgid "" +"Audit this course for free and have access to course materials and " +"discussions forums. {b_start}This track does not include graded " +"assignments.{b_end}" +msgstr "å…è´¹æ—å¬è¯¥è¯¾ç¨‹ï¼Œå¹¶å¯è®¿é—®è¯¾ç¨‹æ料和讨论论å›ã€‚ {b_start}æ¤æ–¹æ³•ä¸åŒ…å«è¯„分作业。{b_end}" + +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/choose.html +msgid "" +"Audit this course for free and have access to course materials and " +"discussions forums. {b_start}This track does not include unlimited course " +"access.{b_end}" +msgstr "å…è´¹æ—å¬æœ¬è¯¾ç¨‹ï¼Œå¹¶å¯è®¿é—®è¯¾ç¨‹èµ„料和讨论论å›ã€‚{b_start}æ¤è½¨é“ä¸åŒ…æ‹¬æ— é™åˆ¶çš„课程访问。{b_end}" #: lms/templates/course_modes/choose.html #: themes/edx.org/lms/templates/course_modes/choose.html @@ -15284,13 +15591,8 @@ msgid "An error occurred. Please try again later." msgstr "出现错误,请ç¨åŽå†è¯•ã€‚" #: lms/templates/courseware/course_about.html -msgid "" -"The currently logged-in user account does not have permission to enroll in " -"this course. You may need to {start_logout_tag}log out{end_tag} then try the" -" enroll button again. Please visit the {start_help_tag}help page{end_tag} " -"for a possible solution." +msgid "An error has occurred. Please ensure that you are logged in to enroll." msgstr "" -"当å‰ç™»å½•ç”¨æˆ·å¸å·æ— æƒé™å…¥é€‰æ¤è¯¾ç¨‹ã€‚您å¯èƒ½éœ€è¦åœ¨{start_logout_tag}退出登录{end_tag}åŽé‡è¯•é€‰è¯¾æŒ‰é’®ã€‚请访问{start_help_tag}帮助页é¢{end_tag}了解å¯èƒ½çš„解决方案。" #: lms/templates/courseware/course_about.html msgid "You are enrolled in this course" @@ -15304,8 +15606,8 @@ msgid "View Course" msgstr "查看课程" #: lms/templates/courseware/course_about.html -msgid "This course is in your <a href=\"{cart_link}\">cart</a>." -msgstr "这个课程已ç»è¿›å…¥æ‚¨çš„ <a href=\"{cart_link}\">è´ç‰©è½¦</a>。" +msgid "This course is in your {start_cart_link}cart{end_cart_link}." +msgstr "这个课程已ç»è¿›å…¥ä½ çš„ {start_cart_link}è´ç‰©è½¦{end_cart_link}。" #: lms/templates/courseware/course_about.html msgid "Course is full" @@ -15320,8 +15622,8 @@ msgid "Enrollment is Closed" msgstr "选课已关é—" #: lms/templates/courseware/course_about.html -msgid "Add {course_name} to Cart <span>({price} USD)</span>" -msgstr "æ·»åŠ {course_name}到è´ç‰©<span>({price} USD)</span>" +msgid "Add {course_name} to Cart {start_span}({price} USD){end_span}" +msgstr "æ·»åŠ {course_name} 到è´ç‰©è½¦ {start_span}({price} USD){end_span}" #: lms/templates/courseware/course_about.html msgid "Enroll in {course_name}" @@ -15341,7 +15643,7 @@ msgstr "课程结æŸ" #: lms/templates/courseware/course_about.html msgid "Estimated Effort" -msgstr "é¢„æœŸè¯¾ç¨‹ç›®æ ‡" +msgstr "预计时长" #: lms/templates/courseware/course_about.html msgid "Prerequisites" @@ -15383,7 +15685,7 @@ msgstr "我刚通过 {platform} {url} 选修了 {number} {title}" #: lms/templates/courseware/course_about_sidebar_header.html #: themes/stanford-style/lms/templates/courseware/course_about_sidebar_header.html msgid "Tweet that you've enrolled in this course" -msgstr "在 Tweet å‘å¸ƒä½ å·²ç™»è®°æ¤è¯¾ç¨‹çš„消æ¯" +msgstr "在 Tweet å‘布您已登记æ¤è¯¾ç¨‹çš„消æ¯" #: lms/templates/courseware/course_about_sidebar_header.html msgid "Post a Facebook message to say you've enrolled in this course" @@ -15432,7 +15734,6 @@ msgstr "使您的æœç´¢æ›´ç²¾ç¡®" #: lms/templates/courseware/courseware-chromeless.html #: lms/templates/courseware/courseware.html #: openedx/features/course_bookmarks/templates/course_bookmarks/course-bookmarks.html -#: openedx/features/learner_analytics/templates/learner_analytics/dashboard.html msgid "{course_number} Courseware" msgstr "{course_number} 课程页é¢" @@ -15496,7 +15797,7 @@ msgstr "您尚未选课" msgid "" "You are not currently enrolled in this course. {link_start}Enroll " "now!{link_end}" -msgstr "您尚未选本门课程。 {link_start}立刻选课!{link_end}" +msgstr "您尚未选本门课程。 {link_start}立刻选课ï¼{link_end}" #: lms/templates/courseware/info.html msgid "Welcome to {org}'s {course_title}!" @@ -15599,7 +15900,7 @@ msgstr "èŒä¸šå½±å“" #: lms/templates/courseware/program_marketing.html msgid "What You'll Learn" -msgstr "ä½ å°†å¦åˆ°" +msgstr "您将å¦åˆ°" #: lms/templates/courseware/program_marketing.html msgid "Average Length" @@ -15637,7 +15938,7 @@ msgstr "全部课程 ${newPrice}{htmlEnd} " #: lms/templates/courseware/program_marketing.html msgid "You save ${discount_value} {currency}" -msgstr "ä½ èŠ‚çœäº† ${discount_value} {currency}" +msgstr "您节çœäº† ${discount_value} {currency}" #: lms/templates/courseware/program_marketing.html msgid "${full_program_price} for entire program" @@ -15661,8 +15962,8 @@ msgid "View Grading in studio" msgstr "在 Studio ä¸æŸ¥çœ‹è¯„分情况" #: lms/templates/courseware/progress.html -msgid "Course Progress for Student '{username}' ({email})" -msgstr "å¦ç”Ÿ'{username}' ({email})çš„å¦ä¹ 进度" +msgid "Course Progress for '{username}' ({email})" +msgstr "" #: lms/templates/courseware/progress.html msgid "View Certificate" @@ -15789,7 +16090,7 @@ msgstr "您最近在{section_link}。如果您已ç»å®Œæˆæ¤ç« 节,请选择 #: lms/templates/emails/business_order_confirmation_email.txt #: lms/templates/emails/order_confirmation_email.txt msgid "Hi {name}," -msgstr "{name} 您好," +msgstr "{name} 您好," #: lms/templates/credit_notifications/credit_eligibility_email.html msgid "Hi," @@ -15855,7 +16156,7 @@ msgstr " {platform_name} 团队" msgid "" "{link_start}Click here for more information on credit at " "{platform_name}{link_end}." -msgstr "{link_start}点击这里了解更多 {platform_name}å¹³å°ä¸Šçš„å¦åˆ†ä¿¡æ¯{link_end}." +msgstr "{link_start}点击这里了解更多 {platform_name}å¹³å°ä¸Šçš„å¦åˆ†ä¿¡æ¯{link_end}。" #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "Your certificate will be available on or before {date}" @@ -15892,7 +16193,7 @@ msgid "" "identified you as being connected with one of those countries, please let us" " know by contacting {email}." msgstr "" -"由于å‘ä½ é¢å‘ä½ çš„{cert_name_short}需è¦éµä»Žç¾Žå›½å¯¹ä¼Šæœ—ã€å¤å·´ã€å™åˆ©äºšå’Œè‹ä¸¹çš„ä¸¥æ ¼ç¦è¿æ”¿ç–ï¼Œä½ çš„å·²è®¤è¯çš„{cert_name_long}æ£å¤„在ç‰å¾…确认状æ€ã€‚å¦‚æžœä½ è®¤ä¸ºæˆ‘ä»¬çš„ç³»ç»Ÿé”™è¯¯åœ°å°†ä½ ä¸Žä¸Šè¿°å›½å®¶ç›¸å…³è”,请è”ç³»{email}让我们了解相关情况。" +"由于å‘您é¢å‘您的{cert_name_short}需è¦éµä»Žç¾Žå›½å¯¹ä¼Šæœ—ã€å¤å·´ã€å™åˆ©äºšå’Œè‹ä¸¹çš„ä¸¥æ ¼ç¦è¿æ”¿ç–,您的已认è¯çš„{cert_name_long}æ£å¤„在ç‰å¾…确认状æ€ã€‚如果您认为我们的系统错误地将您与上述国家相关è”,请è”ç³»{email}让我们了解相关情况。" #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "" @@ -15956,7 +16257,7 @@ msgid "" "{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}" +"由于在生æˆæ‚¨çš„{cert_name_long}时我们没有一套您的有效的身份认è¯ç…§ç‰‡ï¼Œå› æ¤æ— 法授予您认è¯çš„{cert_name_short}ï¼›æˆ‘ä»¬å·²æŽˆäºˆæ‚¨æ ‡æœ‰è¯šä¿¡å‡†åˆ™çš„{cert_name_short}" " 。" #: lms/templates/dashboard/_dashboard_course_listing.html @@ -16063,7 +16364,7 @@ msgid "" "You can no longer access this course because payment has not yet been " "received. You can contact the account holder to request payment, or you can " "unenroll from this course" -msgstr "æ‚¨æ— æ³•å†è®¿é—®æ¤è¯¾ç¨‹ï¼Œå› 为尚未收到付款。您å¯ä»¥è”ç³»å¸æˆ·æŒæœ‰äººä»¥è¯·æ±‚付款,或者您å¯ä»¥å–消注册æ¤è¯¾ç¨‹ã€‚" +msgstr "æ‚¨æ— æ³•å†è®¿é—®æ¤è¯¾ç¨‹ï¼Œå› 为尚未收到付款。您å¯ä»¥è”系账å·æŒæœ‰äººä»¥è¯·æ±‚付款,或者您å¯ä»¥å–消注册æ¤è¯¾ç¨‹ã€‚" #: lms/templates/dashboard/_dashboard_course_listing.html msgid "" @@ -16073,7 +16374,7 @@ msgid "" "{unenroll_link_start}unenroll{unenroll_link_end} from this course" msgstr "" "æ‚¨æ— æ³•å†è®¿é—®æ¤è¯¾ç¨‹ï¼Œå› 为尚未收到付款。您å¯ä»¥ " -"{contact_link_start}è”ç³»å¸æˆ·æŒæœ‰äºº{contact_link_end}以请求付款,或者您å¯ä»¥{unenroll_link_start}å–消注册{unenroll_link_end}æ¤è¯¾ç¨‹ã€‚" +"{contact_link_start}è”系账å·æŒæœ‰äºº{contact_link_end}以请求付款,或者您å¯ä»¥{unenroll_link_start}å–消注册{unenroll_link_end}æ¤è¯¾ç¨‹ã€‚" #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Verification not yet complete." @@ -16082,7 +16383,7 @@ msgstr "认è¯å°šä¸å®Œæ•´" #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You only have {days} day left to verify for this course." msgid_plural "You only have {days} days left to verify for this course." -msgstr[0] "ä½ è¿˜æœ‰ {days} 天时间验è¯æ¤è¯¾ç¨‹ã€‚" +msgstr[0] "您还有 {days} 天时间验è¯æ¤è¯¾ç¨‹ã€‚" #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Almost there!" @@ -16158,11 +16459,11 @@ msgstr "" msgid "" "You have completed this course and are eligible to purchase course credit. " "Select <strong>Get Credit</strong> to get started." -msgstr "ä½ å·²å®Œæˆæ¤è¯¾ç¨‹å¹¶æœ‰èµ„æ ¼è´ä¹°è¯¾ç¨‹å¦åˆ†ã€‚选择<strong>获得å¦åˆ†</strong>开始。" +msgstr "您已完æˆæ¤è¯¾ç¨‹å¹¶æœ‰èµ„æ ¼è´ä¹°è¯¾ç¨‹å¦åˆ†ã€‚选择<strong>获得å¦åˆ†</strong>开始。" #: lms/templates/dashboard/_dashboard_credit_info.html msgid "You are now eligible for credit from {provider}. Congratulations!" -msgstr "çŽ°åœ¨ï¼Œä½ æœ‰èµ„æ ¼ä»Ž {provider} 获得å¦åˆ†ã€‚æå–œä½ ï¼" +msgstr "çŽ°åœ¨ï¼Œæ‚¨æœ‰èµ„æ ¼ä»Ž {provider} 获得å¦åˆ†ã€‚æ喜您ï¼" #: lms/templates/dashboard/_dashboard_credit_info.html msgid "Get Credit" @@ -16176,7 +16477,7 @@ msgid "" "Thank you for your payment. To receive course credit, you must now request " "credit at the {link_to_provider_site} website. Select <b>Request Credit</b> " "to get started." -msgstr "æ„Ÿè°¢ä½ çš„ä»˜æ¬¾ã€‚è¦èŽ·å¾—课程å¦åˆ†ï¼Œä½ 现在必须在 {link_to_provider_site} 网站申请å¦åˆ†ã€‚选择<b>申请å¦åˆ†</b>开始。" +msgstr "感谢您的付款。è¦èŽ·å¾—课程å¦åˆ†ï¼Œæ‚¨çŽ°åœ¨å¿…须在 {link_to_provider_site} 网站申请å¦åˆ†ã€‚选择<b>申请å¦åˆ†</b>开始。" #: lms/templates/dashboard/_dashboard_credit_info.html msgid "Request Credit" @@ -16186,7 +16487,7 @@ msgstr "申请å¦åˆ†" msgid "" "{provider_name} has received your course credit request. We will update you " "when credit processing is complete." -msgstr "{provider_name} å·²æ”¶åˆ°ä½ çš„è¯¾ç¨‹å¦åˆ†ç”³è¯·ã€‚完æˆå¦åˆ†å¤„ç†åŽæˆ‘ä»¬å°†é€šçŸ¥ä½ ã€‚" +msgstr "{provider_name} 已收到您的课程å¦åˆ†ç”³è¯·ã€‚完æˆå¦åˆ†å¤„ç†åŽæˆ‘们将通知您。" #: lms/templates/dashboard/_dashboard_credit_info.html msgid "View Details" @@ -16202,8 +16503,8 @@ msgid "" " credit. To see your course credit, visit the {link_to_provider_site} " "website." msgstr "" -"<b>æå–œä½ ï¼</b> {provider_name} å·²æ‰¹å‡†ä½ çš„è¯¾ç¨‹å¦åˆ†ç”³è¯·ã€‚è¦æŸ¥çœ‹ä½ 的课程å¦åˆ†ï¼Œè¯·è®¿é—® " -"{link_to_provider_site} 网站。" +"<b>æå–œï¼</b> {provider_name} 已批准您的课程å¦åˆ†ç”³è¯·ã€‚è¦æŸ¥çœ‹æ‚¨çš„课程å¦åˆ†ï¼Œè¯·è®¿é—® {link_to_provider_site}" +" 网站。" #: lms/templates/dashboard/_dashboard_credit_info.html msgid "View Credit" @@ -16213,7 +16514,7 @@ msgstr "查看认è¯" msgid "" "{provider_name} did not approve your request for course credit. For more " "information, contact {link_to_provider_site} directly." -msgstr "{provider_name} æœªæ‰¹å‡†ä½ çš„è¯¾ç¨‹å¦åˆ†ç”³è¯·ã€‚欲了解更多信æ¯ï¼Œè¯·ç›´æŽ¥è”ç³» {link_to_provider_site}。" +msgstr "{provider_name} 未批准您的课程å¦åˆ†ç”³è¯·ã€‚欲了解更多信æ¯ï¼Œè¯·ç›´æŽ¥è”ç³» {link_to_provider_site}。" #: lms/templates/dashboard/_dashboard_credit_info.html msgid "" @@ -16290,7 +16591,7 @@ msgstr "您的认è¯å·²è¿‡æœŸï¼Œæ‚¨å¿…须在您课程的认è¯æˆªæ¢æ—¥æœŸå‰æ #: lms/templates/dashboard/_dashboard_third_party_error.html msgid "Could Not Link Accounts" -msgstr "æ— æ³•å…³è”账户" +msgstr "æ— æ³•å…³è”è´¦å·" #. Translators: this message is displayed when a user tries to link their #. account with a third-party authentication provider (for example, Google or @@ -16303,84 +16604,103 @@ msgstr "æ— æ³•å…³è”账户" msgid "" "The {provider_name} account you selected is already linked to another " "{platform_name} account." -msgstr "ä½ é€‰æ‹©çš„ {provider_name}账户已ç»å’Œ{platform_name}账户相关è”。" +msgstr "您选择的 {provider_name}è´¦å·å·²ç»å’Œ{platform_name}è´¦å·ç›¸å…³è”。" + +#: lms/templates/dashboard/_entitlement_reason_survey.html +msgid "" +"We're sorry to see you go! Read the following statements and rate your level" +" of agreement." +msgstr "很é—憾您è¦é€€é€‰è¯¾ç¨‹ï¼ 阅读以下声明并评估您的å议级别。" + +#: lms/templates/dashboard/_entitlement_reason_survey.html +msgid "Price is too high for me" +msgstr "å¯¹æˆ‘è€Œè¨€ä»·æ ¼è¿‡é«˜" + +#: lms/templates/dashboard/_entitlement_reason_survey.html +msgid "I was not satisfied with my experience taking the courses" +msgstr "我对å‚åŠ è¯¾ç¨‹çš„ç»åŽ†ä¸æ»¡æ„" + +#: lms/templates/dashboard/_entitlement_reason_survey.html +msgid "Content of the courses was too difficult" +msgstr "课程内容太难" + +#: lms/templates/dashboard/_entitlement_reason_survey.html +msgid "I did not have enough time to complete the courses" +msgstr "我没有足够的时间完æˆè¯¾ç¨‹" + +#: lms/templates/dashboard/_entitlement_reason_survey.html +msgid "The content was not available when I wanted to start" +msgstr "当我想开始的时候,内容ä¸å¯ç”¨" + +#: lms/templates/dashboard/_entitlement_reason_survey.html +msgid "Can we contact you via email for follow up?" +msgstr "我们å¯ä»¥é€šè¿‡ç”µå邮件与您è”系以便跟进å—?" + +#: lms/templates/dashboard/_entitlement_reason_survey.html +#: lms/templates/dashboard/_reason_survey.html +msgid "Thank you for sharing your reasons for unenrolling." +msgstr "æ„Ÿè°¢æ‚¨å‘ŠçŸ¥æˆ‘ä»¬åŽŸå› ã€‚" + +#: lms/templates/dashboard/_entitlement_reason_survey.html +#: lms/templates/dashboard/_reason_survey.html +msgid "You are unenrolled from" +msgstr "您已退选" + +#: lms/templates/dashboard/_entitlement_reason_survey.html +#: lms/templates/dashboard/_reason_survey.html +msgid "Return To Dashboard" +msgstr "返回é¢æ¿" #: lms/templates/dashboard/_entitlement_reason_survey.html +#: lms/templates/dashboard/_reason_survey.html +msgid "Browse Courses" +msgstr "æµè§ˆè¯¾ç¨‹" + #: lms/templates/dashboard/_reason_survey.html msgid "" "We're sorry to see you go! Please share your main reason for unenrolling." msgstr "很é—憾您è¦é€€é€‰è¯¾ç¨‹ï¼å¸Œæœ›æ‚¨å¯ä»¥å‘Šè¯‰æˆ‘们退选课程的主è¦åŽŸå› 。" -#: lms/templates/dashboard/_entitlement_reason_survey.html #: lms/templates/dashboard/_reason_survey.html msgid "I just wanted to browse the material" msgstr "我åªæƒ³æµè§ˆææ–™" -#: lms/templates/dashboard/_entitlement_reason_survey.html #: lms/templates/dashboard/_reason_survey.html msgid "This won't help me reach my goals" msgstr "æ¤é—¨è¯¾ç¨‹æ— 法帮助我达到å¦ä¹ ç›®æ ‡" -#: lms/templates/dashboard/_entitlement_reason_survey.html #: lms/templates/dashboard/_reason_survey.html msgid "I don't have the time" msgstr "没时间" -#: lms/templates/dashboard/_entitlement_reason_survey.html #: lms/templates/dashboard/_reason_survey.html msgid "I don't have the academic or language prerequisites" msgstr "我ä¸å…·å¤‡å¦æœ¯æˆ–è¯è¨€çš„先修æ¡ä»¶" -#: lms/templates/dashboard/_entitlement_reason_survey.html #: lms/templates/dashboard/_reason_survey.html msgid "I don't have enough support" msgstr "我的支æŒæ¡ä»¶ä¸å¤Ÿ" -#: lms/templates/dashboard/_entitlement_reason_survey.html #: lms/templates/dashboard/_reason_survey.html msgid "I am not happy with the quality of the content" msgstr "我对内容质é‡ä¸æ»¡æ„" -#: lms/templates/dashboard/_entitlement_reason_survey.html #: lms/templates/dashboard/_reason_survey.html msgid "The course material was too hard" msgstr "课程æ料太难" -#: lms/templates/dashboard/_entitlement_reason_survey.html #: lms/templates/dashboard/_reason_survey.html msgid "The course material was too easy" msgstr "课程æ料太简å•" -#: lms/templates/dashboard/_entitlement_reason_survey.html #: lms/templates/dashboard/_reason_survey.html msgid "Something was broken" msgstr "出错了" -#: lms/templates/dashboard/_entitlement_reason_survey.html #: lms/templates/dashboard/_reason_survey.html msgid "Other" msgstr "其他" -#: lms/templates/dashboard/_entitlement_reason_survey.html -#: lms/templates/dashboard/_reason_survey.html -msgid "Thank you for sharing your reasons for unenrolling." -msgstr "æ„Ÿè°¢æ‚¨å‘ŠçŸ¥æˆ‘ä»¬åŽŸå› ã€‚" - -#: lms/templates/dashboard/_entitlement_reason_survey.html -#: lms/templates/dashboard/_reason_survey.html -msgid "You are unenrolled from" -msgstr "您已退选" - -#: lms/templates/dashboard/_entitlement_reason_survey.html -#: lms/templates/dashboard/_reason_survey.html -msgid "Return To Dashboard" -msgstr "返回é¢æ¿" - -#: lms/templates/dashboard/_entitlement_reason_survey.html -#: lms/templates/dashboard/_reason_survey.html -msgid "Browse Courses" -msgstr "æµè§ˆè¯¾ç¨‹" - #: lms/templates/debug/run_python_form.html msgid "Results:" msgstr "结果:" @@ -16521,7 +16841,7 @@ msgstr "在æ¤è¯¾æˆ–者未æ¥çš„课程ä¸çªå‡ºé‡è¦ä¿¡æ¯ä»¥ä¾¿æ—¥åŽå›žé¡¾ã€‚ msgid "" "Get started by making a note in something you just read, like " "{section_link}." -msgstr "开始,åœ¨ä½ åˆšè¯»çš„ä¸œè¥¿,如{section_link}。" +msgstr "试ç€ç»™æ‚¨åˆšè¯»å®Œçš„ææ–™åŠ ä¸ªç¬”è®°å§ï¼Œå¦‚{section_link}。" #: lms/templates/edxnotes/toggle_notes.html msgid "Hide notes" @@ -16536,27 +16856,27 @@ msgid "" "You're almost there! Use the link to activate your account to access " "engaging, high-quality {platform_name} courses. Note that you will not be " "able to log back into your account until you have activated it." -msgstr "注册差ä¸å¤šå®Œæˆå•¦ï¼ç‚¹å‡»é“¾æŽ¥æ¿€æ´»æ‚¨çš„è´¦å·ï¼Œä½“验{platform_name}çš„ç²¾å“课程。注æ„,您必须激活账å·æ‰å¯ä»¥ç™»å½•ã€‚" +msgstr "" #: lms/templates/emails/activation_email.txt msgid "Enjoy learning with {platform_name}." -msgstr "享å—您在{platform_name}上的å¦ä¹ 之旅。" +msgstr "" #: lms/templates/emails/activation_email.txt msgid "" "If you need help, please use our web form at {support_url} or email " "{support_email}." -msgstr "å¦‚éœ€å¸®åŠ©ï¼Œè¯·ä½¿ç”¨æˆ‘ä»¬çš„ç½‘ç«™è¡¨æ ¼{support_url}或å‘邮件至{support_email}。" +msgstr "" #: lms/templates/emails/activation_email.txt msgid "" "This email message was automatically sent by {lms_url} because someone " "attempted to create an account on {platform_name} using this email address." -msgstr "这是一å°ç”±{lms_url}自动å‘é€çš„邮件,通知您有人使用æ¤é‚®ç®±åœ°å€æ³¨å†Œ{platform_name}è´¦å·ã€‚" +msgstr "" #: lms/templates/emails/activation_email_subject.txt msgid "Action Required: Activate your {platform_name} account" -msgstr "您必须激活您的{platform_name}è´¦å·" +msgstr "" #: lms/templates/emails/business_order_confirmation_email.txt msgid "Thank you for your purchase of " @@ -16680,7 +17000,7 @@ msgstr "您的兑æ¢URL是:[[在æ¤è¾“入从附件CSVä¸æ‰¾åˆ°çš„å…‘æ¢é“¾æŽ¥] #: lms/templates/emails/business_order_confirmation_email.txt msgid "(1) Register for an account at {site_name}" -msgstr "(1) 在 {site_name}注册一个账户" +msgstr "(1) 在 {site_name}注册一个账å·" #: lms/templates/emails/business_order_confirmation_email.txt msgid "" @@ -16697,7 +17017,7 @@ msgstr "(3) 在选课确认页é¢ï¼Œç‚¹å‡»â€œæ¿€æ´»é€‰è¯¾ç â€æŒ‰é’®ï¼Œæ‚¨å°† msgid "" "(4) You should be able to click on 'view course' button or see your course " "on your student dashboard at {url}" -msgstr "(4)您å¯ä»¥ç‚¹å‡»â€œæŸ¥çœ‹è¯¾ç¨‹â€æŒ‰é’®æˆ–者通过{url}处的å¦ç”Ÿè¯¾ç¨‹é¢æ¿æŸ¥çœ‹ä½ 的课程。" +msgstr "(4)您å¯ä»¥ç‚¹å‡»â€œæŸ¥çœ‹è¯¾ç¨‹â€æŒ‰é’®æˆ–者通过{url}处的å¦ç”Ÿè¯¾ç¨‹é¢æ¿æŸ¥çœ‹æ‚¨çš„课程。" #: lms/templates/emails/business_order_confirmation_email.txt msgid "" @@ -16709,27 +17029,7 @@ msgstr "(5) 课程开始åŽè¯¾ç¨‹èµ„æ–™æ‰å¯ç”¨ã€‚" #. tags in place. #: lms/templates/emails/business_order_confirmation_email.txt msgid "<p>Sincerely,</p><p>[[Your Signature]]</p>" -msgstr "<p>诚挚的,</p><p>[[您的ç¾å]]</p>" - -#: lms/templates/emails/confirm_email_change.txt -msgid "" -"This is to confirm that you changed the e-mail associated with " -"{platform_name} from {old_email} to {new_email}. If you did not make this " -"request, please contact us immediately. Contact information is listed at:" -msgstr "" -"è¿™å°é‚®ä»¶æ˜¯ä¸ºäº†ç¡®è®¤ä½ å’Œ {platform_name} 之间的电å邮件关è”ç”± {old_email} å˜æ›´ä¸º " -"{new_email}ã€‚å¦‚æžœä½ å¹¶æ²¡æœ‰å‘出该请求,请立å³è”系我们。è”系信æ¯å·²åœ¨ä»¥ä¸‹é¡µé¢ä¸åˆ—出:" - -#: lms/templates/emails/confirm_email_change.txt -#: themes/stanford-style/lms/templates/emails/confirm_email_change.txt -msgid "" -"We keep a log of old e-mails, so if this request was unintentional, we can " -"investigate." -msgstr "我们ä¿å˜ç€æ—§ç”µå邮件信æ¯çš„日志,所以如果该请求并éžæ˜¯æ‚¨æœ‰æ„å‘出的,我们å¯ä»¥å¯¹æ¤è¿›è¡Œè°ƒæŸ¥ã€‚" - -#: lms/templates/emails/email_change_subject.txt -msgid "Request to change {platform_name} account e-mail" -msgstr "å˜æ›´ {platform_name} 账户电å邮件的请求" +msgstr "<p>诚挚的,</p><p>[[Your Signature]]</p>" #: lms/templates/emails/failed_verification_email.txt msgid "" @@ -16739,15 +17039,15 @@ msgstr "对ä¸èµ·ï¼æ‚¨ä¸ºID验è¯æä¾›çš„ç…§ç‰‡æ²¡æœ‰é€šè¿‡ï¼ŒåŽŸå› ï¼ˆæˆ–å¤š #: lms/templates/emails/failed_verification_email.txt msgid "The photo(s) of you:" -msgstr "ä½ çš„ç…§ç‰‡(å¤šå¼ ):" +msgstr "您的照片(å¤šå¼ ):" #: lms/templates/emails/failed_verification_email.txt msgid "The photo of you:" -msgstr "ä½ çš„ç…§ç‰‡ï¼š" +msgstr "您的照片:" #: lms/templates/emails/failed_verification_email.txt msgid "The photo of your ID:" -msgstr "ä½ è¯ä»¶ID的图片:" +msgstr "您è¯ä»¶ID的照片:" #: lms/templates/emails/failed_verification_email.txt msgid "Other Reasons:" @@ -16761,13 +17061,6 @@ msgstr "é‡æ–°è®¤è¯: {reverify_url}" msgid "ID Verification FAQ: {faq_url}" msgstr "身份ID验è¯FAQ:{faq_url}" -#: lms/templates/emails/failed_verification_email.txt -#: lms/templates/emails/order_confirmation_email.txt -#: lms/templates/emails/passed_verification_email.txt -#: lms/templates/emails/photo_submission_confirmation.txt -msgid "Thank you," -msgstr "谢谢," - #: lms/templates/emails/failed_verification_email.txt #: lms/templates/emails/passed_verification_email.txt #: lms/templates/emails/photo_submission_confirmation.txt @@ -16779,7 +17072,7 @@ msgstr "{platform_name}团队" msgid "" "Your payment was successful. You will see the charge below on your next " "credit or debit card statement under the company name {merchant_name}." -msgstr "ä½ å·²ä»˜æ¬¾æˆåŠŸã€‚ä½ æœ€è¿‘ä¸€æœŸçš„ä¿¡ç”¨å¡æˆ–储蓄å¡ç»“å•å°†ä¼šåŒ…括æ¥è‡ªå…¬å¸å{merchant_name}的扣款。" +msgstr "您已付款æˆåŠŸã€‚您最近一期的信用å¡æˆ–储蓄å¡ç»“å•å°†ä¼šåŒ…括æ¥è‡ªå…¬å¸å{merchant_name}的扣款。" #: lms/templates/emails/order_confirmation_email.txt msgid "Your order number is: {order_number}" @@ -16787,11 +17080,11 @@ msgstr "您的订å•å·ä¸ºï¼š{order_number}" #: lms/templates/emails/passed_verification_email.txt msgid "Hi {full_name}" -msgstr " {full_name} ä½ å¥½" +msgstr " {full_name} 您好" #: lms/templates/emails/passed_verification_email.txt msgid "Congratulations! Your ID verification process was successful." -msgstr "æå–œä½ çš„èº«ä»½ID认è¯æˆåŠŸã€‚" +msgstr "æå–œï¼æ‚¨çš„身份ID已认è¯æˆåŠŸã€‚" #: lms/templates/emails/passed_verification_email.txt msgid "" @@ -16865,7 +17158,7 @@ msgstr "附件CSV文件ä¸çš„html链接" msgid "" "After you enroll, you can see the course on your student dashboard. You can " "see course materials after the course start date." -msgstr "åœ¨ä½ é€‰è¯¾ä¹‹åŽï¼Œä½ å¯ä»¥åœ¨ä½ çš„å¦ç”Ÿè¯¾ç¨‹é¢æ¿ä¸çœ‹åˆ°è¯¥è¯¾ç¨‹ã€‚在课程开始åŽï¼Œä½ å°±å¯ä»¥çœ‹åˆ°è¯¾ç¨‹çš„相关资料。" +msgstr "在您选课之åŽï¼Œæ‚¨å¯ä»¥åœ¨æ‚¨çš„å¦ç”Ÿè¯¾ç¨‹é¢æ¿ä¸çœ‹åˆ°è¯¥è¯¾ç¨‹ã€‚在课程开始åŽï¼Œæ‚¨å°±å¯ä»¥çœ‹åˆ°è¯¾ç¨‹çš„相关资料。" #. Translators: please translate the text inside [[ ]]. This is meant as a #. template for course teams to use. @@ -16877,7 +17170,7 @@ msgid "" "[[Your Signature]]" msgstr "" "诚挚的,\n" -"[[ä½ çš„ç¾å]]" +"[[Your Signature]]" #: lms/templates/emails/registration_codes_sale_invoice_attachment.txt msgid "INVOICE" @@ -16964,16 +17257,16 @@ msgid "" msgstr "" "æˆ‘ä»¬æ— æ³•ä¸ºæ‚¨åœ¨è¯¾ç¨‹ " "{course_name}ä¸çš„评估{assessment}验è¯èº«ä»½ã€‚您已ç»ä½¿ç”¨äº†{allowed_attempts}次å…许的ä¸çš„{used_attempts}" -" 试图验è¯ä½ 的身份。" +" 试图验è¯æ‚¨çš„身份。" #: lms/templates/emails/reverification_processed.txt msgid "" "You must verify your identity before the assessment closes on {due_date}." -msgstr "ä½ å¿…é¡»æ ¸å®žä½ çš„èº«ä»½åœ¨è¯„ä¼°å…³é—{due_date}。" +msgstr "您必须在{due_date}评估关é—å‰æ ¸å®žæ‚¨çš„身份。" #: lms/templates/emails/reverification_processed.txt msgid "To try to verify your identity again, select the following link:" -msgstr "å°è¯•å†æ¬¡æ ¸å®žä½ 的身份,选择下é¢çš„链接:" +msgstr "å°è¯•å†æ¬¡æ ¸å®žæ‚¨çš„身份,打开下é¢çš„链接:" #: lms/templates/emails/reverification_processed.txt msgid "" @@ -17031,7 +17324,7 @@ msgstr "感谢您报å{course_names},希望您å¦ä¹ 旅途愉快。" #: lms/templates/enrollment/course_enrollment_message.html msgid "Thank you for enrolling in:" -msgstr "æ„Ÿè°¢ä½ æŠ¥å:" +msgstr "感谢您报å:" #: lms/templates/enrollment/course_enrollment_message.html msgid "We hope you enjoy the course." @@ -17073,7 +17366,7 @@ msgid "" "If you are interested in working toward a Verified Certificate, but cannot " "afford to pay the fee, please apply now. Please note that financial " "assistance is limited and may not be awarded to all eligible candidates." -msgstr "å¦‚æžœä½ å¯¹èŽ·å¾—éªŒè¯è¯ä¹¦æ„Ÿå…´è¶£ä½†æ— 法承担费用,请现在就æ¥æ出申请。请注æ„,ç»æµŽæ´åŠ©æ˜¯æœ‰é™çš„且å¯èƒ½æ— 法授予所有符åˆæ¡ä»¶çš„申请者。" +msgstr "如果您对获得验è¯è¯ä¹¦æ„Ÿå…´è¶£ä½†æ— 法承担费用,请现在就æ¥æ出申请。请注æ„,ç»æµŽæ´åŠ©æ˜¯æœ‰é™çš„且å¯èƒ½æ— 法授予所有符åˆæ¡ä»¶çš„申请者。" #: lms/templates/financial-assistance/financial-assistance.html msgid "" @@ -17083,21 +17376,21 @@ msgid "" "applying and how the Verified Certificate will benefit you." msgstr "" "è¦ç¬¦åˆ edX " -"ç»æµŽæ´åŠ©çš„èµ„æ ¼æ¡ä»¶ï¼Œä½ å¿…é¡»è¯æ˜Žæ”¯ä»˜éªŒè¯è¯ä¹¦è´¹ç”¨ä¼šå¯¼è‡´ä½ ç»æµŽå›°éš¾ã€‚ä¸ºäº†è¿›è¡Œç”³è¯·ï¼Œä½ å¯èƒ½ä¼šè¢«è¦æ±‚回ç”ä¸€äº›å…³äºŽä½ ä¸ºä½•ç”³è¯·éªŒè¯è¯ä¹¦ä»¥åŠéªŒè¯è¯ä¹¦ä¼šç»™ä½ 带æ¥å“ªäº›å¥½å¤„的问题。" +"ç»æµŽæ´åŠ©çš„èµ„æ ¼æ¡ä»¶ï¼Œæ‚¨å¿…é¡»è¯æ˜Žæ”¯ä»˜éªŒè¯è¯ä¹¦è´¹ç”¨ä¼šå¯¼è‡´æ‚¨ç»æµŽå›°éš¾ã€‚为了进行申请,您å¯èƒ½ä¼šè¢«è¦æ±‚回ç”一些关于您为何申请验è¯è¯ä¹¦ä»¥åŠéªŒè¯è¯ä¹¦ä¼šç»™æ‚¨å¸¦æ¥å“ªäº›å¥½å¤„的问题。" #: lms/templates/financial-assistance/financial-assistance.html msgid "" "If your application is approved, we'll give you instructions for verifying " "your identity on edx.org so you can start working toward completing your edX" " course." -msgstr "å¦‚æžœä½ çš„ç”³è¯·è¢«æ‰¹å‡†ï¼Œæˆ‘ä»¬å°†ä¸ºä½ æ供在 edx.org 上验è¯ä½ çš„èº«ä»½çš„ç›¸å…³è¯´æ˜Žï¼Œä»¥ä¾¿ä½ å¯ä»¥å¼€å§‹ç€æ‰‹å®Œæˆä½ çš„ edx 课程。" +msgstr "如果您的申请被批准,我们将为您æ供在 edx.org 上验è¯æ‚¨çš„身份的相关说明,以便您å¯ä»¥å¼€å§‹ç€æ‰‹å®Œæˆæ‚¨çš„ edx 课程。" #: lms/templates/financial-assistance/financial-assistance.html msgid "" "EdX is committed to making it possible for you to take high quality courses " "from leading institutions regardless of your financial situation, earn a " "Verified Certificate, and share your success with others." -msgstr "æ— è®ºä½ çš„ç»æµŽçŠ¶å†µå¦‚何,EdX éƒ½è‡´åŠ›äºŽè®©ä½ ä»Žå„领先机构获得高质é‡çš„è¯¾ç¨‹ï¼Œè®©ä½ èŽ·å¾—éªŒè¯è¯ä¹¦å¹¶ä¸Žä»–äººåˆ†äº«ä½ çš„æˆåŠŸã€‚" +msgstr "æ— è®ºæ‚¨çš„ç»æµŽçŠ¶å†µå¦‚何,EdX 都致力于让您从å„领先机构获得高质é‡çš„课程,让您获得验è¯è¯ä¹¦å¹¶ä¸Žä»–人分享您的æˆåŠŸã€‚" #: lms/templates/financial-assistance/financial-assistance.html msgid "Sincerely, Anant" @@ -17127,7 +17420,7 @@ msgid "" "{begin_strong}Warning:{end_strong} Your browser is not fully supported. We " "strongly recommend using {chrome_link} or {ff_link}." msgstr "" -"{begin_strong}è¦å‘Šï¼š{end_strong}并ä¸å®Œå…¨æ”¯æŒä½ çš„æµè§ˆå™¨ã€‚我们强烈推è使用 {chrome_link} 或 {ff_link}。" +"{begin_strong}è¦å‘Šï¼š{end_strong}并ä¸å®Œå…¨æ”¯æŒæ‚¨çš„æµè§ˆå™¨ã€‚我们强烈推è使用 {chrome_link} 或 {ff_link}。" #: lms/templates/header/navbar-authenticated.html #: lms/templates/learner_dashboard/programs.html @@ -17144,14 +17437,6 @@ msgstr "程å¼" msgid "Journals" msgstr "æ–‡ç« " -#: lms/templates/header/navbar-authenticated.html -#: lms/templates/header/user_dropdown.html -#: lms/templates/navigation/navbar-authenticated.html -#: lms/templates/navigation/bootstrap/navbar-authenticated.html -#: themes/edx.org/lms/templates/header/navbar-authenticated.html -msgid "Profile" -msgstr "用户资料" - #: lms/templates/header/navbar-authenticated.html msgid "Discover New" msgstr "马上探索课程" @@ -17190,6 +17475,10 @@ msgstr "å¦æ ¡" msgid "Resume your last course" msgstr "继ç»ä¸Šé—¨è¯¾ç¨‹çš„å¦ä¹ " +#: lms/templates/header/user_dropdown.html +msgid "Profile" +msgstr "用户资料" + #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon Code" @@ -17255,7 +17544,7 @@ msgstr "å…许å¦ç”Ÿå‘行的è¯ä¹¦" msgid "" "You must successfully generate example certificates before you enable " "student-generated certificates." -msgstr "å‰ä½ å¿…é¡»æˆåŠŸåœ°ç”Ÿæˆç¤ºä¾‹è¯ä¹¦ä½¿å¦ç”Ÿè¯ä¹¦ã€‚" +msgstr "å¯ç”¨å¦ç”Ÿè¯ä¹¦å‰ï¼Œæ‚¨å¿…须生æˆä¸€ä¸ªç¤ºä¾‹è¯ä¹¦ã€‚" #: lms/templates/instructor/instructor_dashboard_2/certificates.html msgid "Generate Certificates" @@ -17299,7 +17588,7 @@ msgstr "é‡æ–°ç”Ÿæˆè¯ä¹¦" msgid "" "To regenerate certificates for your course, choose the learners who will " "receive regenerated certificates and click Regenerate Certificates." -msgstr "è¦é‡æ–°ç”Ÿæˆä½ 的课程è¯ä¹¦ï¼Œè¯·é€‰æ‹©å°†è¦æŽ¥æ”¶é‡æ–°ç”Ÿæˆè¯ä¹¦çš„å¦å‘˜å¹¶å•å‡»â€œé‡æ–°ç”Ÿæˆè¯ä¹¦â€ã€‚" +msgstr "è¦é‡æ–°ç”Ÿæˆæ‚¨çš„课程è¯ä¹¦ï¼Œè¯·é€‰æ‹©å°†è¦æŽ¥æ”¶é‡æ–°ç”Ÿæˆè¯ä¹¦çš„å¦å‘˜å¹¶å•å‡»â€œé‡æ–°ç”Ÿæˆè¯ä¹¦â€ã€‚" #: lms/templates/instructor/instructor_dashboard_2/certificates.html msgid "Choose learner types for regeneration" @@ -17344,7 +17633,7 @@ msgid "" " a certificate but have been given an exception by the course team. After " "you add learners to the exception list, click Generate Exception " "Certificates below." -msgstr "ä¸ºæ— èµ„æ ¼èŽ·å¾—è¯ä¹¦ä½†èŽ·å¾—课程组例外批准的å¦å‘˜è®¾ç½®ç”Ÿæˆè¯ä¹¦çš„特殊处ç†ã€‚åœ¨ä½ å°†å¦å‘˜æ·»åŠ 至特殊处ç†åˆ—表åŽï¼Œè¯·å•å‡»ä»¥ä¸‹â€œç”Ÿæˆç‰¹ä¾‹è¯ä¹¦â€ã€‚" +msgstr "ä¸ºæ— èµ„æ ¼èŽ·å¾—è¯ä¹¦ä½†èŽ·å¾—课程组例外批准的å¦å‘˜è®¾ç½®ç”Ÿæˆè¯ä¹¦çš„特殊处ç†ã€‚在您将å¦å‘˜æ·»åŠ 至特殊处ç†åˆ—表åŽï¼Œè¯·å•å‡»ä»¥ä¸‹â€œç”Ÿæˆç‰¹ä¾‹è¯ä¹¦â€ã€‚" #: lms/templates/instructor/instructor_dashboard_2/certificates.html msgid "Invalidate Certificates" @@ -17364,7 +17653,11 @@ msgstr "æ—å¬" #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Professional" -msgstr "专业的" +msgstr "专业" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Master's" +msgstr "硕士" #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Basic Course Information" @@ -17462,7 +17755,7 @@ msgstr "" msgid "" "Please be patient and do not click these buttons multiple times. Clicking " "these buttons multiple times will significantly slow the generation process." -msgstr "请è€å¿ƒç‰å¾…,ä¸è¦å¤šæ¬¡å•å‡»è¿™äº›æŒ‰é’®ã€‚多次点击这些按钮将大大å‡ç¼“生æˆè¿‡ç¨‹ã€‚" +msgstr "请è€å¿ƒç‰å¾…,ä¸è¦å¤šæ¬¡å•å‡»è¿™äº›æŒ‰é’®ã€‚多次点击这些按钮将大大å‡ç¼“生æˆè¿‡ç¨‹ã€‚" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" @@ -17570,12 +17863,9 @@ msgstr "报告已å¯ä¾›ä¸‹è½½" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The reports listed below are available for download. A link to every report " -"remains available on this page, identified by the UTC date and time of " -"generation. Reports are not deleted, so you will always be able to access " -"previously generated reports from this page." +"The reports listed below are available for download, identified by UTC date " +"and time of generation." msgstr "" -"您å¯ä»¥ä¸‹è½½ä»¥ä¸‹åˆ—出的报告。æ¯ä¸€ä»½æŠ¥å‘Šç”±ç”Ÿæˆçš„UTC日期和时间æ¥æ ‡è¯†ï¼Œå®ƒä»¬çš„链接将ä¿ç•™åœ¨æœ¬é¡µé¢ã€‚报告ä¸ä¼šè¢«åˆ 除,所以您总是å¯ä»¥ä»Žæœ¬é¡µè®¿é—®ä»¥å‰ç”Ÿæˆçš„报告。" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" @@ -17587,11 +17877,13 @@ msgstr "下é¢æ‰€åˆ—的作ç”分布报告由åŽå°ç¨‹åºå®šæœŸè‡ªåŠ¨ç”Ÿæˆã€‚报 #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"{strong_start}Note{strong_end}: To keep student data secure, you cannot save" -" or email these links for direct access. Copies of links expire within 5 " -"minutes." +"{strong_start}Note{strong_end}: {ul_start}{li_start}To keep student data " +"secure, you cannot save or email these links for direct access. Copies of " +"links expire within 5 minutes.{li_end}{li_start}Report files are deleted 90 " +"days after generation. If you will need access to old reports, download and " +"store the files, in accordance with your institution's data security " +"policies.{li_end}{ul_end}" msgstr "" -"{strong_start}注{strong_end}:为了确ä¿å¦ç”Ÿæ•°æ®çš„å®‰å…¨æ€§ï¼Œæ‚¨æ— æ³•ä¿å˜æˆ–者用邮件å‘é€è¿™äº›æœ‰ç›´æŽ¥è®¿é—®æƒçš„链接。å¤åˆ¶çš„链接将在5分钟åŽå¤±æ•ˆã€‚" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Enrollment Codes" @@ -17694,7 +17986,7 @@ msgstr "é‡æ–°æ交收æ®" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "" "Create a .csv file that contains enrollment information for your course." -msgstr "创建一个包å«æ‚¨çš„课程的选修信æ¯çš„.csv文件" +msgstr "创建一个包å«æ‚¨çš„课程的选修信æ¯çš„.csv文件。" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Create Enrollment Report" @@ -17790,11 +18082,11 @@ msgstr "å…¬å¸è”系人åå—ä¸èƒ½ä¸ºæ•°å—" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Enter the email address for the company contact." -msgstr "输入公å¸è”系人的电å邮件地å€ã€‚" +msgstr "输入公å¸è”系人的邮箱。" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Enter a valid email address." -msgstr "输入一个有效的电å邮件地å€" +msgstr "输入一个有效的邮箱。" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Enter the recipient name." @@ -17806,7 +18098,7 @@ msgstr "收件人åå—ä¸èƒ½ä¸ºæ•°å—" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Enter the recipient email address." -msgstr "输入收件人电å邮件地å€" +msgstr "输入收件人邮箱" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Enter the billing address." @@ -17930,19 +18222,19 @@ msgstr "已用时间" #: lms/templates/instructor/instructor_dashboard_2/executive_summary.html msgid "Bulk and Single Seat Purchases" -msgstr "大批和å•åº§é‡‡è´" +msgstr "批é‡å’Œå•ä¸ªåå¸é‡‡è´" #: lms/templates/instructor/instructor_dashboard_2/executive_summary.html msgid "Number of seats purchased individually" -msgstr "å•ç‹¬è´ä¹°çš„座ä½æ•°" +msgstr "å•ç‹¬è´ä¹°çš„åå¸æ•°" #: lms/templates/instructor/instructor_dashboard_2/executive_summary.html msgid "Number of seats purchased in bulk" -msgstr "批é‡è´ä¹°çš„座ä½æ•°" +msgstr "批é‡è´ä¹°çš„åå¸æ•°" #: lms/templates/instructor/instructor_dashboard_2/executive_summary.html msgid "Number of seats purchased with invoices" -msgstr "带å‘票的è´ä¹°åº§ä½æ•°" +msgstr "带å‘票的è´ä¹°åå¸æ•°" #: lms/templates/instructor/instructor_dashboard_2/executive_summary.html msgid "Unused bulk purchase seats (revenue at risk)" @@ -17950,15 +18242,15 @@ msgstr "未使用批é‡è´ä¹°å¸ä½(收入有风险)" #: lms/templates/instructor/instructor_dashboard_2/executive_summary.html msgid "Percentage of seats purchased individually" -msgstr "å•åº§è´ä¹°æ•°é‡æ‰€å 比例" +msgstr "å•ä¸ªåå¸è´ä¹°æ•°é‡æ‰€å 比例" #: lms/templates/instructor/instructor_dashboard_2/executive_summary.html msgid "Percentage of seats purchased in bulk" -msgstr "批é‡è´ä¹°åº§ä½æ•°ç›®æ‰€å 比例" +msgstr "批é‡è´ä¹°åå¸æ•°ç›®æ‰€å 比例" #: lms/templates/instructor/instructor_dashboard_2/executive_summary.html msgid "Percentage of seats purchased with invoices" -msgstr "带å‘票è´ä¹°åº§ä½æ•°ç›®æ‰€å 比例" +msgstr "带å‘票è´ä¹°åå¸æ•°ç›®æ‰€å 比例" #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Individual due date extensions" @@ -17966,24 +18258,24 @@ msgstr "延长个别截æ¢æ—¥æœŸ" #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "" -"In this section, you have the ability to grant extensions on specific units " -"to individual students. Please note that the latest date is always taken; " -"you cannot use this tool to make an assignment due earlier for a particular " -"student." -msgstr "在这个部分,您å¯ä»¥åœ¨ç‰¹å®šå•å…ƒé‡Œç»™ç‰¹å®šçš„å¦ç”Ÿå»¶é•¿æˆªæ¢æ—¥æœŸã€‚请注æ„,您ä¸èƒ½é€‰æ‹©æœ€è¿‘的一日;您ä¸èƒ½ä½¿ç”¨è¿™ä¸ªå·¥å…·è®©æŸä¸ªå¦ç”Ÿçš„作业截æ¢æ—¥æœŸæ早。" +"In this section, you have the ability to grant extensions on specific " +"subsections to individual students. Please note that the latest date is " +"always taken; you cannot use this tool to make an assignment due earlier for" +" a particular student." +msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "" "Specify the {platform_name} email address or username of a student here:" -msgstr "在这å¯ä»¥æŸ¥çœ‹{platform_name}的邮件地å€ä»¥åŠå¦ç”Ÿçš„用户å:" +msgstr "在这å¯ä»¥æŸ¥çœ‹{platform_name}的邮箱以åŠå¦ç”Ÿçš„用户å:" #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Student Email or Username" -msgstr "å¦ç”Ÿe-mail或者用户å" +msgstr "å¦ç”Ÿé‚®ç®±æˆ–者用户å" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -msgid "Choose the graded unit:" -msgstr "请选择评分å•å…ƒ" +msgid "Choose the graded subsection:" +msgstr "" #. Translators: "format_string" is the string MM/DD/YYYY HH:MM, as that is the #. format the system requires. @@ -17993,6 +18285,10 @@ msgid "" "{format_string})." msgstr "请输入新的截æ¢æ—¥æœŸå’Œæ—¶é—´(UTC 时间,请以 {format_string} æ ¼å¼è¾“å…¥)。" +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Reason for extension" +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Change due date for student" msgstr "修改å¦ç”Ÿçš„截æ¢æ—¥æœŸ" @@ -18003,15 +18299,15 @@ msgstr "查看已授æƒçš„宽é™æœŸ" #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "" -"Here you can see what extensions have been granted on particular units or " -"for a particular student." -msgstr "这里您å¯ä»¥æŸ¥çœ‹å·²ç»æŽˆæƒç»™ç‰¹åˆ«å¦ç”Ÿæˆ–者特殊å•å…ƒçš„宽é™æœŸ" +"Here you can see what extensions have been granted on particular subsection " +"or for a particular student." +msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "" -"Choose a graded unit and click the button to obtain a list of all students " -"who have extensions for the given unit." -msgstr "请选择一个评分å•å…ƒï¼Œå•å‡»èŽ·å¾—当å‰å•å…ƒä¸èŽ·å¾—宽é™æœŸçš„å¦ç”Ÿåˆ—表" +"Choose a graded subsection and click the button to obtain a list of all " +"students who have extensions for the given subsection." +msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "List all students with due date extensions" @@ -18032,9 +18328,13 @@ msgstr "é‡è®¾å®½é™æœŸ" #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "" "Resetting a problem's due date rescinds a due date extension for a student " -"on a particular unit. This will revert the due date for the student back to " -"the problem's original due date." -msgstr "é‡è®¾ä¸€ä¸ªé—®é¢˜çš„截æ¢æ—¥æœŸï¼Œå°†å–消å¦ç”Ÿåœ¨æŒ‡å®šå•å…ƒä¸Šçš„宽é™æœŸï¼Œä½¿å¦ç”Ÿçš„截æ¢æ—¥æœŸè¿˜åŽŸä¸ºé—®é¢˜çš„原始截æ¢æ—¥æœŸã€‚" +"on a particular subsection. This will revert the due date for the student " +"back to the problem's original due date." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Reason for reset" +msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Reset due date for student" @@ -18167,7 +18467,7 @@ msgstr "æœç´¢é€‰è¯¾ç " #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "Enter email addresses and/or usernames separated by new lines or commas." -msgstr "输入电å邮箱地å€ä¸Žï¼æˆ– 用户å,以逗å·åˆ†å‰²æˆ–é‡å¯ä¸€è¡Œã€‚" +msgstr "输入邮箱与ï¼æˆ– 用户å,以逗å·åˆ†å‰²æˆ–é‡å¯ä¸€è¡Œã€‚" #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" @@ -18210,8 +18510,7 @@ msgid "" "name, and country. Please include one student per row and do not include any" " headers, footers, or blank lines." msgstr "" -"如果想在这门课程ä¸æ‰¹é‡æ³¨å†Œå¹¶å½•å–å¦ç”Ÿï¼Œè¯·é€‰æ‹©ä¸€ä¸ªCSV文件,包å«E-" -"mailã€ç”¨æˆ·åã€å§“åå’Œå›½å®¶ï¼ˆä¸¥æ ¼æŒ‰ç…§æ¤é¡ºåºï¼‰ã€‚æ¯è¡ŒåŒ…å«ä¸€ä¸ªå¦ç”Ÿï¼Œè¯·ä¸è¦æ·»åŠ 任何页眉ã€é¡µè„šä»¥åŠç©ºè¡Œã€‚" +"如果想在这门课程ä¸æ‰¹é‡æ³¨å†Œå¹¶å½•å–å¦ç”Ÿï¼Œè¯·é€‰æ‹©ä¸€ä¸ªCSV文件,列åç§°ä¸¥æ ¼æŒ‰ç…§ä»¥ä¸‹é¡ºåºï¼šé‚®ç®±ã€ç”¨æˆ·åã€å§“å和国家。æ¯è¡ŒåŒ…å«ä¸€ä¸ªå¦ç”Ÿï¼Œè¯·ä¸è¦æ·»åŠ 任何页眉ã€é¡µè„šä»¥åŠç©ºè¡Œã€‚" #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Upload a CSV for bulk enrollment" @@ -18229,7 +18528,7 @@ msgstr "批é‡æ·»åŠ Beta测试员" msgid "" "Note: Users must have an activated {platform_name} account before they can " "be enrolled as beta testers." -msgstr "注:用户必须首先拥有已激活的{platform_name}账户方å¯æˆä¸ºBeta测试员。" +msgstr "注:用户必须首先拥有已激活的{platform_name}è´¦å·æ–¹å¯æˆä¸ºBeta测试员。" #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" @@ -18451,7 +18750,7 @@ msgstr "æ¯ä¸ªæ¡å½¢å›¾æ˜¾ç¤ºè¯¥é—®é¢˜çš„æˆç»©åˆ†å¸ƒåŒºé—´" msgid "" "You can click on any of the bars to list the students that attempted the " "problem, along with the grades they received." -msgstr "ä½ å¯ä»¥ç‚¹å‡»ä»»ä¸€æ¯ä¸ªæ¡å½¢å›¾åŽ»æŸ¥çœ‹æ‰€æœ‰å°è¯•å›žç”问题的å¦ç”Ÿåå•ä»¥åŠä»–们获得的æˆç»©" +msgstr "您å¯ä»¥ç‚¹å‡»ä»»ä¸€æ¯ä¸ªæ¡å½¢å›¾åŽ»æŸ¥çœ‹æ‰€æœ‰å°è¯•å›žç”问题的å¦ç”Ÿåå•ä»¥åŠä»–们获得的æˆç»©" #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Download Problem Data for all Problems as a CSV" @@ -18591,31 +18890,35 @@ msgstr "é»˜è®¤ç« èŠ‚" msgid "Student Special Exam Attempts" msgstr "å¦ç”Ÿç‰¹æ®Šè€ƒè¯•å°è¯•" +#: lms/templates/instructor/instructor_dashboard_2/special_exams.html +msgid "Review Dashboard" +msgstr "查看é¢æ¿" + #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "View gradebook for enrolled learners" msgstr "查看已注册å¦å‘˜çš„æˆç»©å•" +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "View Gradebook" +msgstr "查看æˆç»©å•" + #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "Note: This feature is available only to courses with a small number of " "enrolled learners." msgstr "注æ„:æ¤åŠŸèƒ½ä»…适用于注册选课å¦ç”Ÿæ•°é‡è¾ƒå°‘的课程。" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "View Gradebook" -msgstr "查看æˆç»©å•" - #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "View a specific learner's enrollment status" msgstr "查看特定员的选课状æ€" #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Learner's {platform_name} email address or username *" -msgstr "å¦å‘˜çš„{platform_name}邮箱地å€æˆ–用户å*" +msgstr "å¦å‘˜çš„{platform_name}邮箱或用户å*" #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Learner email address or username" -msgstr "å¦å‘˜é‚®ç®±åœ°å€æˆ–用户å" +msgstr "å¦å‘˜é‚®ç®±æˆ–用户å" #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "View Enrollment Status" @@ -18627,7 +18930,7 @@ msgstr "查看特定å¦å‘˜çš„æˆç»©å’Œè¿›åº¦" #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Learner's {platform_name} email address or username" -msgstr "å¦å‘˜çš„{platform_name}邮箱地å€æˆ–用户å" +msgstr "å¦å‘˜çš„{platform_name}邮箱或用户å" #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "View Progress Page" @@ -18951,7 +19254,7 @@ msgstr "å·²ç»å‡†å¤‡å¥½è¿›è¡Œè¯„分ï¼" msgid "" "You have finished learning to grade, which means that you are now ready to " "start grading." -msgstr "您已完æˆäº†è¯„分å¦ä¹ ,这æ„味ç€çŽ°åœ¨ä½ å¯ä»¥å¼€å§‹è¯„分了。" +msgstr "您已ç»å¦ä¹ 了如何评分,这æ„味ç€çŽ°åœ¨æ‚¨å¯ä»¥å¼€å§‹è¯„分了。" #: lms/templates/peer_grading/peer_grading_problem.html msgid "Start Grading!" @@ -19022,7 +19325,7 @@ msgstr "查看您的用户资料" #: lms/templates/provider/authorize.html msgid "Read your email address" -msgstr "查看您的邮箱地å€" +msgstr "查看您的邮箱" #: lms/templates/provider/authorize.html msgid "Read the list of courses in which you are a staff member." @@ -19055,11 +19358,11 @@ msgstr "密ç é‡ç½®å·²å®Œæˆ" #: lms/templates/registration/password_reset_complete.html msgid "" "Your password has been reset. {start_link}Sign-in to your account.{end_link}" -msgstr "ä½ çš„å¯†ç å·²é‡ç½®ã€‚{start_link}ç™»å½•ä½ çš„å¸å·ã€‚{end_link}" +msgstr "您的密ç å·²é‡ç½®ã€‚{start_link}登录您的账å·ã€‚{end_link}" #: lms/templates/registration/password_reset_confirm.html msgid "Reset Your {platform_name} Password" -msgstr "é‡ç½®ä½ çš„ {platform_name} 密ç " +msgstr "é‡ç½®æ‚¨çš„ {platform_name} 密ç " #: lms/templates/registration/password_reset_confirm.html msgid "Invalid Password Reset Link" @@ -19138,7 +19441,7 @@ msgstr "下载CSVæ•°æ®" #: lms/templates/shoppingcart/download_report.html msgid "" "There was an error in your date input. It should be formatted as YYYY-MM-DD" -msgstr "ä½ è¾“å…¥çš„æ—¥æœŸæœ‰è¯¯ã€‚å…¶æ ¼å¼åº”为YYYY-MM-DD" +msgstr "æ‚¨è¾“å…¥çš„æ—¥æœŸæœ‰è¯¯ã€‚å…¶æ ¼å¼åº”为YYYY-MM-DD" #: lms/templates/shoppingcart/download_report.html msgid "These reports are delimited by start and end dates." @@ -19210,7 +19513,7 @@ msgid "" "Please send each professional one of these unique registration codes to " "enroll into the course. The confirmation/receipt email you will receive has " "an example email template with directions for the individuals enrolling." -msgstr "请将æ¯ä¸ªä¸“业的其ä¸ä¸€ä¸ªç‹¬ç‰¹çš„注册ç 注册到课程。确认/收æ®é‚®ä»¶ä½ 会收到一个电å邮件模æ¿ç¤ºä¾‹è¯´æ˜Žä¸ªäººæŠ¥å。" +msgstr "请将æ¯ä¸ªä¸“业的其ä¸ä¸€ä¸ªç‹¬ç‰¹çš„注册ç 注册到课程。确认/收æ®é‚®ä»¶æ‚¨ä¼šæ”¶åˆ°ä¸€ä¸ªç”µå邮件模æ¿ç¤ºä¾‹è¯´æ˜Žä¸ªäººæŠ¥å。" #: lms/templates/shoppingcart/receipt.html msgid "Enrollment Link" @@ -19323,7 +19626,7 @@ msgstr "{course_number} {course_title}å°é¢å›¾ç‰‡" #: lms/templates/shoppingcart/registration_code_receipt.html #: lms/templates/shoppingcart/registration_code_redemption.html msgid "Confirm your enrollment for: {span_start}course dates{span_end}" -msgstr "ç¡®è®¤ä½ çš„é€‰è¯¾ï¼š{span_start}课程日期{span_end}" +msgstr "确认您的选课:{span_start}课程日期{span_end}" #: lms/templates/shoppingcart/registration_code_receipt.html msgid "{course_name}" @@ -19336,21 +19639,21 @@ msgid "" "Check your {link_start}course dashboard{link_end} to see if you're enrolled " "in the course, or contact your company's administrator." msgstr "" -"ä½ ç‚¹å‡»çš„è¿™ä¸ªé€‰è¯¾ç 的链接已ç»ä½¿ç”¨è¿‡äº†ã€‚æ£€æŸ¥ä½ çš„{link_start}课程é¢æ¿{link_end}æŸ¥çœ‹ä½ æ˜¯å¦å·²ç»æ³¨å†Œäº†è¿™ä»¬è¯¾ç¨‹ï¼Œæˆ–者è”ç³»ä½ å…¬å¸çš„管ç†å‘˜ã€‚" +"您点击的这个选课ç 的链接已ç»ä½¿ç”¨è¿‡äº†ã€‚检查您的{link_start}课程é¢æ¿{link_end}查看您是å¦å·²ç»æ³¨å†Œäº†è¿™ä»¬è¯¾ç¨‹ï¼Œæˆ–者è”系您公å¸çš„管ç†å‘˜ã€‚" #: lms/templates/shoppingcart/registration_code_receipt.html #: lms/templates/shoppingcart/registration_code_redemption.html msgid "" "You have successfully enrolled in {course_name}. This course has now been " "added to your dashboard." -msgstr "ä½ å·²ç»æˆåŠŸçš„选修了 {course_name}ï¼Œè¿™é—¨è¯¾ç¨‹çŽ°å·²æ·»åŠ åˆ°ä½ çš„è¯¾ç¨‹é¢æ¿ä¸ã€‚" +msgstr "您已ç»æˆåŠŸçš„选修了 {course_name}ï¼Œè¿™é—¨è¯¾ç¨‹çŽ°å·²æ·»åŠ åˆ°æ‚¨çš„è¯¾ç¨‹é¢æ¿ä¸ã€‚" #: lms/templates/shoppingcart/registration_code_receipt.html #: lms/templates/shoppingcart/registration_code_redemption.html msgid "" "You're already enrolled for this course. Visit your " "{link_start}dashboard{link_end} to see the course." -msgstr "ä½ å·²ç»é€‰ä¿®äº†è¿™é—¨è¯¾ç¨‹ï¼Œè¯·å‰å¾€ä½ çš„{link_start}课程é¢æ¿{link_end}查看该课程。" +msgstr "您已ç»é€‰ä¿®äº†è¿™é—¨è¯¾ç¨‹ï¼Œè¯·å‰å¾€æ‚¨çš„{link_start}课程é¢æ¿{link_end}查看该课程。" #: lms/templates/shoppingcart/registration_code_receipt.html msgid "The course you are enrolling for is full." @@ -19542,7 +19845,7 @@ msgstr " ç›®å‰{platform_name}å¹³å°çš„æœåŠ¡å™¨å·²ç»è¶…è´Ÿè·" #: lms/templates/student_account/account_settings.html msgid "Account Settings" -msgstr "账户设置" +msgstr "è´¦å·è®¾ç½®" #: lms/templates/student_account/finish_auth.html msgid "Please Wait" @@ -19570,15 +19873,23 @@ msgstr "å¦ç”Ÿæ”¯æŒï¼šé€‰è¯¾" #: lms/templates/support/feature_based_enrollments.html msgid "Student Support: Feature Based Enrollments" -msgstr "" +msgstr "å¦ç”Ÿæ”¯æŒï¼šåŸºäºŽåŠŸèƒ½çš„注册" + +#: lms/templates/support/feature_based_enrollments.html +msgid "Content Type Gating" +msgstr "内容类型选通" + +#: lms/templates/support/feature_based_enrollments.html +msgid "Course Duration Limits" +msgstr "课程æŒç»æ—¶é—´é™åˆ¶" #: lms/templates/support/feature_based_enrollments.html msgid "Is Enabled" -msgstr "" +msgstr "å·²å¯ç”¨" #: lms/templates/support/feature_based_enrollments.html msgid "No results found" -msgstr "" +msgstr "未找到结果" #: lms/templates/support/manage_user.html msgid "Student Support: Manage User" @@ -19721,7 +20032,7 @@ msgstr "这门课程申请认è¯è¯ä¹¦çš„截æ¢æ—¥æœŸå·²ç»è¿‡äº†ã€‚" #: lms/templates/verify_student/pay_and_verify.html msgid "Upgrade Your Enrollment For {course_name}." -msgstr "为{course_name}æ›´æ–°ä½ çš„é€‰è¯¾ä¿¡æ¯ã€‚" +msgstr "为{course_name}更新您的选课信æ¯ã€‚" #: lms/templates/verify_student/pay_and_verify.html msgid "Receipt For {course_name}" @@ -19746,7 +20057,7 @@ msgid "" "{strong_start}webcam is plugged in, turned on, and allowed to function in " "your web browser (commonly adjustable in your browser settings).{strong_end}" msgstr "" -"请确认您的æµè§ˆå™¨å·²æ›´æ–°è‡³{strong_start}{a_start}最新的å¯ç”¨ç‰ˆæœ¬{a_end}{strong_end}。åŒæ—¶ï¼Œè¯·ç¡®ä¿æ‚¨çš„{strong_start}网络摄åƒå¤´å·²æ’好ã€å·²å¼€å¯ä¸”åœ¨ä½ çš„ç½‘ç»œæµè§ˆå™¨(通常å¯åœ¨æ‚¨çš„æµè§ˆå™¨è®¾ç½®ä¸è¿›è¡Œè°ƒèŠ‚)ä¸å¯æ£å¸¸ä½¿ç”¨ã€‚{strong_end}" +"请确认您的æµè§ˆå™¨å·²æ›´æ–°è‡³{strong_start}{a_start}最新的å¯ç”¨ç‰ˆæœ¬{a_end}{strong_end}。åŒæ—¶ï¼Œè¯·ç¡®ä¿æ‚¨çš„{strong_start}网络摄åƒå¤´å·²æ’好ã€å·²å¼€å¯ä¸”在您的网络æµè§ˆå™¨(通常å¯åœ¨æ‚¨çš„æµè§ˆå™¨è®¾ç½®ä¸è¿›è¡Œè°ƒèŠ‚)ä¸å¯æ£å¸¸ä½¿ç”¨ã€‚{strong_end}" #: lms/templates/verify_student/reverify.html msgid "Re-Verification" @@ -20045,17 +20356,13 @@ msgstr "您尚未è´ä¹°æ¤æ–‡ç« 的访问æƒé™ã€‚" msgid "Explore journals and courses" msgstr "æŽ¢ç´¢æ–‡ç« å’Œè¯¾ç¨‹" -#: openedx/features/learner_analytics/templates/learner_analytics/dashboard.html -msgid "My Stats (Beta)" -msgstr "我的统计数æ®ï¼ˆBeta)" - #. Translators: this section lists all the third-party authentication #. providers #. (for example, Google and LinkedIn) the user can link with or unlink from #. their edX account. #: openedx/features/learner_profile/static/learner_profile/templates/third_party_auth.html msgid "Connected Accounts" -msgstr "已关è”çš„å¸å·" +msgstr "已关è”çš„è´¦å·" #: openedx/features/learner_profile/static/learner_profile/templates/third_party_auth.html msgid "Linked" @@ -20137,13 +20444,17 @@ msgstr "页脚" msgid "edX Home Page" msgstr "edX首页" +#: themes/edx.org/lms/templates/footer.html +msgid "Connect" +msgstr "连接" + #: themes/edx.org/lms/templates/footer.html msgid "© 2012–{year} edX Inc. " msgstr "© 2012–{year} edX股份有é™å…¬å¸ " #: themes/edx.org/lms/templates/footer.html -msgid "EdX, Open edX, and MicroMasters are registered trademarks of edX Inc. " -msgstr "EdXã€Open edX以åŠMicroMaster是edX股份有é™å…¬å¸çš„å•†æ ‡ã€‚" +msgid "edX, Open edX, and MicroMasters are registered trademarks of edX Inc. " +msgstr "" #: themes/edx.org/lms/templates/certificates/_about-accomplishments.html msgid "About edX Verified Certificates" @@ -20213,10 +20524,8 @@ msgstr "edX Inc." #: themes/edx.org/lms/templates/certificates/_accomplishment-footer.html msgid "" "All rights reserved except where noted. edX, Open edX and the edX and Open " -"edX logos are registered trademarks or trademarks of edX Inc." +"edX logos are registered trademarks of edX Inc." msgstr "" -"© edX Inc. ä¿ç•™æ‰€æœ‰æƒåˆ©ï¼ˆç‰¹åˆ«æ ‡æ³¨é™¤å¤–)。EdXã€Open edXã€edX å’Œ Open EdX æ ‡è¯†å‡ä¸ºæ³¨å†Œå•†æ ‡æˆ– edX Inc. " -"çš„å•†æ ‡ã€‚" #: themes/edx.org/lms/templates/course_modes/choose.html msgid "" @@ -20238,15 +20547,6 @@ msgstr "查找课程" msgid "Schools & Partners" msgstr "å¦æ ¡ & 伙伴" -#. Translators: 'EdX', 'edX', and 'Open edX' are trademarks of 'edX Inc.'. -#. Please do not translate any of these trademarks and company names. -#: themes/red-theme/lms/templates/footer.html -msgid "" -"EdX, Open edX, and the edX and Open edX logos are registered trademarks or " -"trademarks of {link_start}edX Inc.{link_end}" -msgstr "" -"EdXã€Open edXä»¥åŠ edXã€Open edX çš„æ ‡è¯†æ˜¯æ³¨å†Œå•†æ ‡æˆ–è€… {link_start}edX å…¬å¸{link_end} çš„å•†æ ‡ã€‚" - #: themes/red-theme/lms/templates/footer.html msgid "" "{tos_link_start}Terms of Service{tos_link_end} and {honor_link_start}Honor " @@ -20295,7 +20595,7 @@ msgid "" "Change your life and start learning today by activating your {platform_name}" " account. Click on the link below or copy and paste it into your browser's " "address bar." -msgstr "激活您的{platform_name}账户,从今天起开始å¦ä¹ ,并以æ¤æ”¹å˜ä½ 的生活。点击下é¢çš„链接或å¤åˆ¶å¹¶ç²˜è´´åˆ°æ‚¨æµè§ˆå™¨çš„地å€æ 。" +msgstr "激活您的{platform_name}è´¦å·ï¼Œä»Žä»Šå¤©èµ·å¼€å§‹å¦ä¹ ,并以æ¤æ”¹å˜æ‚¨çš„生活。点击下é¢çš„链接或å¤åˆ¶å¹¶ç²˜è´´åˆ°æ‚¨æµè§ˆå™¨çš„地å€æ 。" #: themes/stanford-style/lms/templates/emails/activation_email.txt #: themes/stanford-style/lms/templates/emails/email_change.txt @@ -20304,7 +20604,7 @@ msgid "" " any more email from us. Please do not reply to this e-mail; if you require " "assistance, check the about section of the {platform_name} Courses web site." msgstr "" -"å¦‚æžœä½ æ²¡å‘å‡ºè¿‡è¯¥è¯·æ±‚ï¼Œä½ ä¸éœ€è¦åšä»»ä½•äº‹æƒ…ï¼›ä½ å°†ä¸ä¼šæ”¶åˆ°å…¶ä»–任何电å邮件。请ä¸è¦å›žå¤æ¤ç”µåé‚®ä»¶ï¼›å¦‚æžœä½ éœ€è¦å¸®åŠ©ï¼Œè¯·è®¿é—® {platform_name} " +"如果您没å‘出过该请求,您ä¸éœ€è¦åšä»»ä½•äº‹æƒ…;您将ä¸ä¼šæ”¶åˆ°å…¶ä»–任何电å邮件。请ä¸è¦å›žå¤æ¤ç”µå邮件;如果您需è¦å¸®åŠ©ï¼Œè¯·è®¿é—® {platform_name} " "课程网站。" #: themes/stanford-style/lms/templates/emails/confirm_email_change.txt @@ -20313,8 +20613,8 @@ msgid "" "{platform_name} from {old_email} to {new_email}. If you did not make this " "request, please contact us at" msgstr "" -"è¿™å°é‚®ä»¶æ˜¯ä¸ºäº†ç¡®è®¤æ‚¨ä¸Ž{platform_name}å…³è”的电å邮件由 {old_email} å˜æ›´ä¸º " -"{new_email}ã€‚å¦‚æžœä½ å¹¶æ²¡æœ‰å‘出该请求,请通过下列地å€è”系我们:" +"è¿™å°é‚®ä»¶æ˜¯ä¸ºäº†ç¡®è®¤æ‚¨ä¸Ž{platform_name}å…³è”的邮箱由 {old_email} å˜æ›´ä¸º " +"{new_email}。如果您并没有å‘出该请求,请通过以下方å¼è”系我们:" #: themes/stanford-style/lms/templates/emails/email_change.txt msgid "" @@ -20322,8 +20622,8 @@ msgid "" "{platform_name} account from {old_email} to {new_email}. If this is correct," " please confirm your new e-mail address by visiting:" msgstr "" -"我们收到了您需è¦å°† {platform_name} 账户的电å邮件关è”ç”± {old_email} å˜æ›´ä¸º {new_email} " -"çš„è¯·æ±‚ã€‚å¦‚æžœè¯¥è¯·æ±‚æ— è¯¯ï¼Œè¯·è®¿é—®å¦‚ä¸‹ç½‘é¡µç¡®è®¤æ‚¨çš„æ–°ç”µå邮件地å€ï¼š" +"我们收到了您需è¦å°† {platform_name} è´¦å·çš„å…³è”邮箱由 {old_email} å˜æ›´ä¸º {new_email} " +"çš„è¯·æ±‚ã€‚å¦‚æžœè¯¥è¯·æ±‚æ— è¯¯ï¼Œè¯·è®¿é—®ä»¥ä¸‹ç½‘é¡µç¡®è®¤æ‚¨çš„æ–°é‚®ç®±ï¼š" #: themes/stanford-style/lms/templates/emails/reject_name_change.txt msgid "" @@ -20390,17 +20690,17 @@ msgstr "教室å¯è®¿é—®æ€§æ”¿ç–" #: cms/templates/activation_active.html cms/templates/activation_complete.html #: cms/templates/activation_invalid.html msgid "{studio_name} Account Activation" -msgstr "{studio_name}账户激活" +msgstr "{studio_name}è´¦å·æ¿€æ´»" #: cms/templates/activation_active.html msgid "Your account is already active" -msgstr "您的账户已ç»æ¿€æ´»" +msgstr "您的账å·å·²ç»æ¿€æ´»" #: cms/templates/activation_active.html msgid "" "This account, set up using {email}, has already been activated. Please sign " "in to start working within {studio_name}." -msgstr "通过{email}注册的这个账户已被激活,请登录以开始在{studio_name}ä¸å·¥ä½œã€‚" +msgstr "通过{email}注册的这个账å·å·²è¢«æ¿€æ´»ï¼Œè¯·ç™»å½•ä»¥å¼€å§‹åœ¨{studio_name}ä¸å·¥ä½œã€‚" #: cms/templates/activation_active.html cms/templates/activation_complete.html msgid "Sign into {studio_name}" @@ -20408,17 +20708,17 @@ msgstr "登录{studio_name}" #: cms/templates/activation_complete.html msgid "Your account activation is complete!" -msgstr "您的账户激活已ç»å®Œæˆï¼" +msgstr "您的账å·æ¿€æ´»å·²ç»å®Œæˆï¼" #: cms/templates/activation_complete.html msgid "" "Thank you for activating your account. You may now sign in and start using " "{studio_name} to author courses." -msgstr "谢谢您激活了您的账户,您现在å¯ä»¥ç™»å½• {studio_name}并开始创建课程了。" +msgstr "谢谢您激活了您的账å·ï¼Œæ‚¨çŽ°åœ¨å¯ä»¥ç™»å½• {studio_name}并开始创建课程了。" #: cms/templates/activation_invalid.html msgid "Your account activation is invalid" -msgstr "æ‚¨çš„è´¦æˆ·æ¿€æ´»æ˜¯æ— æ•ˆçš„" +msgstr "您的账å·æ¿€æ´»å¤±è´¥" #: cms/templates/activation_invalid.html msgid "" @@ -20726,11 +21026,6 @@ msgid "" "changed.)" msgstr "用于识别组织内新课程的唯一编å·ã€‚(æ¤ç¼–å·ä¸ŽåŽŸæ¥çš„课程编å·ä¸€è‡´ï¼Œæ— 法更改)" -#: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/settings.html -msgid "Course Run" -msgstr "开课时间" - #. Translators: This is an example for the "run" used to identify different #. instances of a course, seen when filling out the form to create a new #. course. @@ -20821,7 +21116,7 @@ msgstr "该课程使用了ä¸å†æ”¯æŒçš„特性。" #: cms/templates/course_outline.html msgid "You must delete or replace the following components." -msgstr "ä½ å¿…é¡»åˆ é™¤æˆ–æ›¿æ¢ä¸‹é¢è¿™äº›ç»„件。" +msgstr "æ‚¨å¿…é¡»åˆ é™¤æˆ–æ›¿æ¢ä¸‹é¢è¿™äº›ç»„件。" #: cms/templates/course_outline.html msgid "Unsupported Components" @@ -21591,7 +21886,7 @@ msgid "" "incremental release when it makes sense. And with co-authors, you can have a" " whole team building a course, together." msgstr "" -"{studio_name}的工作方å¼ä¸Žæ‚¨ç†ŸçŸ¥çš„网页应用类似,åªæ˜¯æ‚¨è¿˜éœ€è¦äº†è§£ä¸€ä¸‹å¦‚何创建课程。您å¯ä»¥æ ¹æ®éœ€è¦åœ¨ç½‘页上一次性地å‘布信æ¯ï¼Œæˆ–者采用增é‡å¼çš„å‘布形å¼ã€‚如果您有åˆä½œè€…ï¼Œä½ ä»¬è¿˜å¯ä»¥ä½œä¸ºä¸€ä¸ªå›¢é˜Ÿæ¥å…±åŒåˆ›å»ºè¯¾ç¨‹ã€‚" +"{studio_name}的工作方å¼ä¸Žæ‚¨ç†ŸçŸ¥çš„网页应用类似,åªæ˜¯æ‚¨è¿˜éœ€è¦äº†è§£ä¸€ä¸‹å¦‚何创建课程。您å¯ä»¥æ ¹æ®éœ€è¦åœ¨ç½‘页上一次性地å‘布信æ¯ï¼Œæˆ–者采用增é‡å¼çš„å‘布形å¼ã€‚如果您有åˆä½œè€…,您们还å¯ä»¥ä½œä¸ºä¸€ä¸ªå›¢é˜Ÿæ¥å…±åŒåˆ›å»ºè¯¾ç¨‹ã€‚" #: cms/templates/howitworks.html msgid "Instant Changes" @@ -21635,7 +21930,7 @@ msgstr "æ³¨å†Œå¹¶å¼€å§‹æ‰“é€ æ‚¨è‡ªå·±çš„{platform_name}课程" #: cms/templates/howitworks.html msgid "Already have a {studio_name} Account? Sign In" -msgstr "å·²ç»æœ‰ä¸€ä¸ª{studio_name}账户?请登录" +msgstr "å·²ç»æœ‰ä¸€ä¸ª{studio_name}è´¦å·ï¼Ÿè¯·ç™»å½•" #: cms/templates/howitworks.html msgid "Outlining Your Course" @@ -22228,14 +22523,14 @@ msgstr "感谢注册,{name}ï¼" #: cms/templates/index.html msgid "We need to verify your email address" -msgstr "我们需è¦éªŒè¯æ‚¨çš„电å邮箱地å€" +msgstr "我们需è¦éªŒè¯æ‚¨çš„邮箱" #: cms/templates/index.html msgid "" "Almost there! In order to complete your sign up we need you to verify your " "email address ({email}). An activation message and next steps should be " "waiting for you there." -msgstr "注册快完æˆå•¦ï¼æ‚¨çŽ°åœ¨éœ€è¦éªŒè¯æ‚¨çš„邮箱地å€({email}),已å‘é€æ¿€æ´»é‚®ä»¶è‡³æ¤é‚®ç®±ï¼Œè¯·æŒ‰ç…§æ¥éª¤å®Œæˆæ³¨å†Œã€‚" +msgstr "注册快完æˆå•¦ï¼æ‚¨çŽ°åœ¨éœ€è¦éªŒè¯æ‚¨çš„邮箱({email}),已å‘é€æ¿€æ´»é‚®ä»¶è‡³æ¤é‚®ç®±ï¼Œè¯·æŒ‰ç…§æ¥éª¤å®Œæˆæ³¨å†Œã€‚" #: cms/templates/index.html msgid "Need help?" @@ -22314,7 +22609,7 @@ msgstr "用户邮箱地å€" #: cms/templates/manage_users.html msgid "Provide the email address of the user you want to add as Staff" -msgstr "请æ供您想è¦æ·»åŠ æˆä¸ºå‘˜å·¥çš„用户的电å邮件地å€" +msgstr "请æ供您想è¦æ·»åŠ æˆä¸ºå‘˜å·¥çš„用户的邮箱" #: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "Add User" @@ -22328,7 +22623,7 @@ msgstr "å‘è¯¥è¯¾ç¨‹æ·»åŠ å›¢é˜Ÿæˆå‘˜" msgid "" "Adding team members makes course authoring collaborative. Users must be " "signed up for {studio_name} and have an active account." -msgstr "æ·»åŠ å›¢é˜Ÿæˆå‘˜ä½¿å¾—课程编写å¯ä»¥å作完æˆï¼Œç”¨æˆ·å¿…须已ç»æ³¨å†Œäº†{studio_name}并拥有一个已激活的账户。" +msgstr "æ·»åŠ å›¢é˜Ÿæˆå‘˜ä½¿å¾—课程编写å¯ä»¥å作完æˆï¼Œç”¨æˆ·å¿…须已ç»æ³¨å†Œäº†{studio_name}并拥有一个已激活的账å·ã€‚" #: cms/templates/manage_users.html msgid "Add a New Team Member" @@ -22354,7 +22649,7 @@ msgstr "管ç†å‘˜æ˜¯è¯¾ç¨‹å›¢é˜Ÿæˆå‘˜ä¸å¯ä»¥æ·»åŠ 和移除其它课程团队 msgid "" "All course team members can access content in Studio, the LMS, and Insights," " but are not automatically enrolled in the course." -msgstr "所有课程团队æˆå‘˜å¯ä»¥è®¿é—®æ•™å®¤, LMS, å’Œå¯ç¤ºä¸çš„内容,但ä¸ä¼šè‡ªåŠ¨æ³¨å†Œè¯¾ç¨‹ã€‚" +msgstr "所有课程团队æˆå‘˜å¯ä»¥è®¿é—®æ•™å®¤ï¼ŒLMS,和å¯ç¤ºä¸çš„内容,但ä¸ä¼šè‡ªåŠ¨æ³¨å†Œè¯¾ç¨‹ã€‚" #: cms/templates/manage_users.html msgid "Transferring Ownership" @@ -22383,7 +22678,7 @@ msgstr "授予对该知识库的访问æƒé™" #: cms/templates/manage_users_lib.html msgid "Provide the email address of the user you want to add" -msgstr "请æä¾›æ‚¨æƒ³æ·»åŠ çš„ç”¨æˆ·çš„é‚®ä»¶åœ°å€" +msgstr "请æä¾›æ‚¨æƒ³æ·»åŠ çš„ç”¨æˆ·çš„é‚®ç®±" #: cms/templates/manage_users_lib.html msgid "Add More Users to This Library" @@ -22393,7 +22688,7 @@ msgstr "æ·»åŠ æ›´å¤šç”¨æˆ·åˆ°è¯¥çŸ¥è¯†åº“ä¸" msgid "" "Grant other members of your course team access to this library. New library " "users must have an active {studio_name} account." -msgstr "å‘您课程团队的其他æˆå‘˜æŽˆäºˆè¯¥çŸ¥è¯†åº“的访问æƒé™ã€‚新的知识库用户必须有一个已激活的{studio_name}账户。" +msgstr "å‘您课程团队的其他æˆå‘˜æŽˆäºˆè¯¥çŸ¥è¯†åº“的访问æƒé™ã€‚新的知识库用户必须有一个已激活的{studio_name}è´¦å·ã€‚" #: cms/templates/manage_users_lib.html msgid "Add a New User" @@ -22436,7 +22731,7 @@ msgstr "注册{studio_name}" #: cms/templates/register.html msgid "Already have a {studio_name} Account? Sign in" -msgstr "å·²ç»æœ‰ä¸€ä¸ª{studio_name}账户了?请登录" +msgstr "å·²ç»æœ‰ä¸€ä¸ª{studio_name}è´¦å·äº†ï¼Ÿè¯·ç™»å½•" #: cms/templates/register.html msgid "" @@ -22468,7 +22763,7 @@ msgstr "我åŒæ„{a_start}æœåŠ¡æ¡çº¦{a_end}" #: cms/templates/register.html msgid "Create My Account & Start Authoring Courses" -msgstr "创建我的账户&开始创建课程" +msgstr "创建我的账å·ï¼†å¼€å§‹åˆ›å»ºè¯¾ç¨‹" #: cms/templates/register.html msgid "Common {studio_name} Questions" @@ -22619,7 +22914,7 @@ msgid "" "Instructor-paced courses progress at the pace that the course author sets. " "You can configure release dates for course content and due dates for " "assignments." -msgstr "教师教å¦è¯¾ç¨‹çš„进度å¯ä»¥ç”±è¯¥è¯¾ç¨‹ä½œè€…è®¾ç½®ã€‚ä½ å¯ä»¥ä¸ºè¯¥è¯¾ç¨‹è®¾ç½®è¯¾ç¨‹å†…容å‘布时间åŠåœæ¢è§‚看时间。" +msgstr "教师教å¦è¯¾ç¨‹çš„进度å¯ä»¥ç”±è¯¥è¯¾ç¨‹ä½œè€…设置。您å¯ä»¥ä¸ºè¯¥è¯¾ç¨‹è®¾ç½®è¯¾ç¨‹å†…容å‘布时间åŠåœæ¢è§‚看时间。" #: cms/templates/settings.html msgid "Self-Paced" @@ -22702,14 +22997,14 @@ msgstr "课程详情" #: cms/templates/settings.html msgid "Provide useful information about your course" -msgstr "æä¾›æœ‰å…³ä½ çš„è¯¾ç¨‹çš„æœ‰ç”¨ä¿¡æ¯" +msgstr "æ供有关您的课程的有用信æ¯" #: cms/templates/settings.html msgid "" "Identify the course language here. This is used to assist users find courses" " that are taught in a specific language. It is also used to localize the " "'From:' field in bulk emails." -msgstr "设置课程è¯è¨€ï¼Œç”¨äºŽå¸®åŠ©ç”¨æˆ·å¯»æ‰¾ç”¨æŸä¸ªè¯è¨€æ•™å¦çš„课程,并本地化批é‡é‚®ç®±åœ°å€ä¸çš„“Fromâ€è¾“入框。" +msgstr "设置课程è¯è¨€ï¼Œç”¨äºŽå¸®åŠ©ç”¨æˆ·å¯»æ‰¾ç”¨æŸä¸ªè¯è¨€æ•™å¦çš„课程,并本地化批é‡é‚®ç®±ä¸çš„“Fromâ€è¾“入框。" #: cms/templates/settings.html msgid "Introducing Your Course" @@ -22788,7 +23083,7 @@ msgstr "{a_link_start}您课程摘è¦é¡µé¢{a_link_end}的自定义工具æ 内 #: cms/templates/settings.html msgid "Course Card Image" -msgstr "课程å¡å›¾ç‰‡" +msgstr "课程å°é¢å›¾" #: cms/templates/settings.html msgid "" @@ -22816,7 +23111,7 @@ msgstr "请为您的课程图片æ供一个有效的路径和åå—(注æ„: #: cms/templates/settings.html msgid "Upload Course Card Image" -msgstr "ä¸Šä¼ è¯¾ç¨‹å¡å›¾ç‰‡" +msgstr "ä¸Šä¼ è¯¾ç¨‹å°é¢å›¾" #: cms/templates/settings.html msgid "" @@ -22921,6 +23216,10 @@ msgstr "在整个课程上投入的时间" msgid "Prerequisite Course" msgstr "先修课程" +#: cms/templates/settings.html +msgid "None" +msgstr "æ— " + #: cms/templates/settings.html msgid "Course that students must complete before beginning this course" msgstr "å¦ç”Ÿåœ¨å¼€å§‹æœ¬è¯¾ç¨‹ä¹‹å‰å¿…须完æˆçš„课程" @@ -23172,6 +23471,14 @@ msgstr "è§†é¢‘ä¸Šä¼ " msgid "Course Video Settings" msgstr "课程视频设置" +#: cms/templates/videos_index_pagination.html +msgid "Changing.." +msgstr "修改ä¸..." + +#: cms/templates/videos_index_pagination.html +msgid "Videos per page:" +msgstr "æ¯é¡µè§†é¢‘:" + #: cms/templates/visibility_editor.html msgid "Access is not restricted" msgstr "没有访问é™åˆ¶" @@ -23255,7 +23562,7 @@ msgstr "æ¤ç»„å·²ä¸å˜åœ¨ï¼Œè¯·é€‰æ‹©å…¶ä»–分组并撤销访问é™åˆ¶ã€‚" msgid "" "Thank you for signing up for {studio_name}! To activate your account, please" " copy and paste this address into your web browser's address bar:" -msgstr "感谢您注册{studio_name}ï¼è¦æ¿€æ´»æ‚¨çš„账户,请å¤åˆ¶å¹¶ç²˜è´´ä¸‹é¢çš„网å€åˆ°æ‚¨çš„æµè§ˆå™¨çš„地å€æ :" +msgstr "" #: cms/templates/emails/activation_email.txt msgid "" @@ -23263,11 +23570,10 @@ msgid "" " any more email from us. Please do not reply to this e-mail; if you require " "assistance, check the help section of the {studio_name} web site." msgstr "" -"如果您没å‘出过该请求,您ä¸éœ€è¦åšä»»ä½•äº‹æƒ…,您将ä¸ä¼šæ”¶åˆ°å…¶ä»–任何电å邮件。请ä¸è¦å›žå¤æ¤ç”µå邮件。如果您需è¦å¸®åŠ©ï¼Œè¯·è®¿é—®{studio_name}网站。" #: cms/templates/emails/activation_email_subject.txt msgid "Your account for {studio_name}" -msgstr "您的{studio_name}账户" +msgstr "" #: cms/templates/emails/course_creator_admin_subject.txt msgid "{email} has requested {studio_name} course creator privileges on edge" @@ -23277,7 +23583,7 @@ msgstr "{email} 已在边缘站点上å‘出è¦æ±‚获得{studio_name}上课程创 msgid "" "User '{user}' with e-mail {email} has requested {studio_name} course creator" " privileges on edge." -msgstr "用户“{user}â€ï¼ˆç”µå邮件地å€ï¼š{email})已在边缘站点上å‘出è¦æ±‚获得{studio_name}上课程创建者æƒé™çš„请求。" +msgstr "用户“{user}†邮箱:{email} 已在Edge站点上å‘出è¦æ±‚获得{studio_name}上课程创建者æƒé™çš„请求。" #: cms/templates/emails/course_creator_admin_user_pending.txt msgid "To grant or deny this request, use the course creator admin table." @@ -23325,6 +23631,26 @@ msgstr "您的任务:{task_name}已超过“{task_status}â€çŠ¶æ€ï¼Œè¯·ç™»å½• msgid "{platform_name} {studio_name}: Task Status Update" msgstr "{platform_name} {studio_name}:任务状æ€æ›´æ–°" +#: cms/templates/maintenance/_announcement_delete.html +msgid "Delete Announcement" +msgstr "åˆ é™¤å…¬å‘Š" + +#: cms/templates/maintenance/_announcement_delete.html +msgid "Are you sure you want to delete this Announcement?" +msgstr "您确定è¦åˆ 除这个公告å—" + +#: cms/templates/maintenance/_announcement_delete.html +msgid "Confirm" +msgstr "确认" + +#: cms/templates/maintenance/_announcement_edit.html +msgid "Edit Announcement" +msgstr "编辑公告" + +#: cms/templates/maintenance/_announcement_index.html +msgid "Create New" +msgstr "创建新" + #: cms/templates/maintenance/_force_publish_course.html msgid "Required data to force publish course." msgstr "强制å‘布课程所需的数æ®ã€‚" @@ -23343,15 +23669,15 @@ msgstr "维护é¢æ¿" #: cms/templates/registration/activation_complete.html msgid "Thanks for activating your account." -msgstr "谢谢您激活账户。" +msgstr "感谢您激活账å·ã€‚" #: cms/templates/registration/activation_complete.html msgid "This account has already been activated." -msgstr "本账户已ç»è¢«æ¿€æ´»" +msgstr "本账å·å·²ç»è¢«æ¿€æ´»ã€‚" #: cms/templates/registration/activation_complete.html msgid "Visit your {link_start}dashboard{link_end} to see your courses." -msgstr "è®¿é—®ä½ çš„{link_start}课程é¢æ¿{link_end}æ¥æŸ¥çœ‹è¯¾ç¨‹ã€‚" +msgstr "访问您的{link_start}课程é¢æ¿{link_end}æ¥æŸ¥çœ‹è¯¾ç¨‹ã€‚" #: cms/templates/registration/activation_complete.html msgid "You can now {link_start}sign in{link_end}." @@ -23378,7 +23704,7 @@ msgstr "返回到{link_start}主页{link_end}。" msgid "" "We've sent an email message to {email} with instructions for activating your" " account." -msgstr "我们已å‘您的邮箱{email}å‘é€äº†ä¸€å°é‚®ä»¶ï¼Œå…¶ä¸åŒ…å«æœ‰å…³æ¿€æ´»å¸æˆ·çš„说明" +msgstr "我们已å‘您的邮箱{email}å‘é€äº†ä¸€å°é‚®ä»¶ï¼Œå…¶ä¸åŒ…å«æœ‰å…³æ¿€æ´»è´¦å·çš„说明。" #: cms/templates/widgets/footer.html msgid "Policies" @@ -23392,16 +23718,6 @@ msgstr "å¯è®¿é—®çš„ä½å®¿ç”³è¯·" msgid "LMS" msgstr "LMS" -#. Translators: 'EdX', 'edX', 'Studio', and 'Open edX' are trademarks of 'edX -#. Inc.'. Please do not translate any of these trademarks and company names. -#: cms/templates/widgets/footer.html -msgid "" -"EdX, Open edX, Studio, and the edX and Open edX logos are registered " -"trademarks or trademarks of {link_start}edX Inc.{link_end}" -msgstr "" -"“EdXâ€ã€â€œOpen edXâ€ã€â€œStudioâ€å’Œ edXã€Open edX å›¾æ ‡æ˜¯ {link_start}edX å…¬å¸{link_end} " -"çš„ï¼ˆæ³¨å†Œï¼‰å•†æ ‡ã€‚" - #: cms/templates/widgets/header.html msgid "Current Course:" msgstr "当å‰è¯¾ç¨‹" @@ -23432,7 +23748,7 @@ msgstr "è¯è¨€é¦–选项" #: cms/templates/widgets/header.html msgid "Account Navigation" -msgstr "账户导航" +msgstr "è´¦å·å¯¼èˆª" #: cms/templates/widgets/header.html msgid "Contextual Online Help" @@ -23548,7 +23864,7 @@ msgstr "概è¦" #: wiki/forms.py msgid "" "Give a short reason for your edit, which will be stated in the revision log." -msgstr "ç»™å‡ºä½ ç¼–è¾‘æœ¬æ–‡ç« çš„ç®€çŸè¯´æ˜Žï¼Œå®ƒå°†ä¼šè¢«å†™å…¥ä¿®è®¢æ—¥å¿—ä¸ã€‚" +msgstr "ç»™å‡ºæ‚¨ç¼–è¾‘æœ¬æ–‡ç« çš„ç®€çŸè¯´æ˜Žï¼Œå®ƒå°†ä¼šè¢«å†™å…¥ä¿®è®¢æ—¥å¿—ä¸ã€‚" #: wiki/forms.py msgid "" @@ -23570,8 +23886,7 @@ msgid "" "This will be the address where your article can be found. Use only " "alphanumeric characters and - or _. Note that you cannot change the slug " "after creating the article." -msgstr "" -"这个地å€å°†ç”¨äºŽå®šä½ä½ 的文档。请使用由数å—ã€å—æ¯ã€ï¼ï¼ˆå‡å·ï¼‰ã€_(下划线)组æˆçš„å—符串。注æ„:一旦文档创建完毕将ä¸èƒ½å†å¯¹æ¤å›ºå®šé“¾æŽ¥åœ°å€è¿›è¡Œä¿®æ”¹ã€‚" +msgstr "这个地å€å°†ç”¨äºŽå®šä½æ‚¨çš„文档。请使用由数å—ã€å—æ¯ã€â€œ-â€ã€â€œ_â€ç»„æˆçš„å—符串。注æ„:一旦文档创建完毕将ä¸èƒ½å†å¯¹æ¤å›ºå®šé“¾æŽ¥åœ°å€è¿›è¡Œä¿®æ”¹ã€‚" #: wiki/forms.py msgid "Write a brief message for the article's history log." @@ -23604,12 +23919,12 @@ msgid "" "Purge the article: Completely remove it (and all its contents) with no undo." " Purging is a good idea if you want to free the slug such that users can " "create new articles in its place." -msgstr "æ¸…é™¤æ–‡æ¡£ï¼šå®Œå…¨åˆ é™¤å®ƒ(以åŠå…¶ä¸çš„内容)ä¸”æ— æ³•æ¢å¤ã€‚å½“ä½ éœ€è¦é‡Šæ”¾è¯¥å›ºå®šé“¾æŽ¥åœ°å€ä»¥ä¾¿å¯ä»¥åˆ›å»ºä¸€ä¸ªæ–°æ–‡æ¡£ç»§æ‰¿ä½¿ç”¨è¯¥å›ºå®šé“¾æŽ¥åœ°å€æ—¶é€‰æ‹©æ¸…除æ“作。" +msgstr "æ¸…é™¤æ–‡æ¡£ï¼šå®Œå…¨åˆ é™¤å®ƒ(以åŠå…¶ä¸çš„内容)ä¸”æ— æ³•æ¢å¤ã€‚当您需è¦é‡Šæ”¾è¯¥å›ºå®šé“¾æŽ¥åœ°å€ä»¥ä¾¿å¯ä»¥åˆ›å»ºä¸€ä¸ªæ–°æ–‡æ¡£ç»§æ‰¿ä½¿ç”¨è¯¥å›ºå®šé“¾æŽ¥åœ°å€æ—¶é€‰æ‹©æ¸…除æ“作。" #: wiki/forms.py wiki/plugins/attachments/forms.py #: wiki/plugins/images/forms.py msgid "You are not sure enough!" -msgstr "ä½ è¿˜ä¸å¤Ÿç¡®å®šï¼" +msgstr "您还ä¸å¤Ÿç¡®å®šï¼" #: wiki/forms.py msgid "While you tried to delete this article, it was modified. TAKE CARE!" @@ -23655,7 +23970,7 @@ msgstr "文档的æƒé™è®¾ç½®å·²æ›´æ–°ã€‚" #: wiki/forms.py msgid "Your permission settings were unchanged, so nothing saved." -msgstr "ä½ çš„æƒé™è®¾ç½®æ²¡æœ‰å˜æ›´ï¼Œä¸éœ€è¦ä¿å˜ã€‚" +msgstr "您的æƒé™è®¾ç½®æ²¡æœ‰å˜æ›´ï¼Œä¸éœ€è¦ä¿å˜ã€‚" #: wiki/forms.py msgid "No user with that username" @@ -23686,7 +24001,7 @@ msgstr "当å‰ç‰ˆæœ¬" msgid "" "The revision being displayed for this article. If you need to do a roll-" "back, simply change the value of this field." -msgstr "æ˜¾ç¤ºè¯¥æ–‡æ¡£çš„å¯¹åº”ç‰ˆæœ¬ã€‚å¦‚æžœä½ éœ€è¦å›žæ»šåˆ°åŽ†å²ç‰ˆæœ¬ï¼Œè¯·ä¿®æ”¹ç©ºæ ¼é‡Œçš„值。" +msgstr "显示该文档的对应版本。如果您需è¦å›žæ»šåˆ°åŽ†å²ç‰ˆæœ¬ï¼Œè¯·ä¿®æ”¹ç©ºæ ¼é‡Œçš„值。" #: wiki/models/article.py msgid "modified" @@ -23804,7 +24119,7 @@ msgstr "一个æ’件被å˜æ›´" msgid "" "The revision being displayed for this plugin.If you need to do a roll-back, " "simply change the value of this field." -msgstr "显示æ’件修订版本信æ¯ã€‚å¦‚æžœä½ éœ€è¦å›žæ»šåˆ°åŽ†å²ç‰ˆæœ¬ï¼Œè¯·ä¿®æ”¹æ¤å¤„的值。" +msgstr "显示æ’件修订版本信æ¯ã€‚如果您需è¦å›žæ»šåˆ°åŽ†å²ç‰ˆæœ¬ï¼Œè¯·ä¿®æ”¹æ¤å¤„的值。" #: wiki/models/urlpath.py msgid "Cache lookup value for articles" @@ -23828,7 +24143,7 @@ msgstr "URL路径" #: wiki/models/urlpath.py msgid "Sorry but you cannot have a root article with a slug." -msgstr "抱æ‰ï¼Œä½ æ— æ³•å¯¹æ ¹æ–‡æ¡£è®¾ç½®å›ºå®šé“¾æŽ¥åœ°å€ã€‚" +msgstr "抱æ‰ï¼Œæ‚¨æ— æ³•å¯¹æ ¹æ–‡æ¡£è®¾ç½®å›ºå®šé“¾æŽ¥åœ°å€ã€‚" #: wiki/models/urlpath.py msgid "A non-root note must always have a slug." @@ -23849,7 +24164,7 @@ msgstr "" "丢失父链接的文档\n" "===============================\n" "\n" -"该å文档的父链接已ç»è¢«åˆ é™¤ã€‚ä½ å¯ä»¥å¯ä»¥é‡æ–°ä¸ºä»–们寻找一个新的链接点。" +"该å文档的父链接已ç»è¢«åˆ 除。您å¯ä»¥é‡æ–°ä¸ºä»–们寻找一个新的链接点。" #: wiki/models/urlpath.py msgid "Lost and found" @@ -23905,13 +24220,13 @@ msgstr "%så·²ç»æˆåŠŸæ·»åŠ 。" #: wiki/plugins/attachments/views.py #, python-format msgid "Your file could not be saved: %s" -msgstr "ä½ çš„æ–‡ä»¶æ— æ³•è¢«ä¿å˜ï¼š%s" +msgstr "æ‚¨çš„æ–‡ä»¶æ— æ³•è¢«ä¿å˜ï¼š%s" #: wiki/plugins/attachments/views.py msgid "" "Your file could not be saved, probably because of a permission error on the " "web server." -msgstr "ä½ çš„æ–‡ä»¶æ— æ³•è¢«ä¿å˜ï¼Œå¯èƒ½æ˜¯ç”±äºŽæˆ–者WebæœåŠ¡å™¨çš„æƒé™å¼‚常。" +msgstr "æ‚¨çš„æ–‡ä»¶æ— æ³•è¢«ä¿å˜ï¼Œå¯èƒ½æ˜¯ç”±äºŽæˆ–者WebæœåŠ¡å™¨çš„æƒé™å¼‚常。" #: wiki/plugins/attachments/views.py #, python-format @@ -23922,7 +24237,7 @@ msgstr "%sä¸Šä¼ æˆåŠŸå¹¶è¦†ç›–原有附件。" msgid "" "Your new file will automatically be renamed to match the file already " "present. Files with different extensions are not allowed." -msgstr "ä½ çš„æ–°æ–‡ä»¶å°†è¢«è‡ªåŠ¨é‡å‘½å以匹é…å·²ç»å˜åœ¨çš„文件。ä¸å…许使用ä¸åŒçš„文件扩展å。" +msgstr "您的新文件将被自动é‡å‘½å以匹é…å·²ç»å˜åœ¨çš„文件。ä¸å…许使用ä¸åŒçš„文件扩展å。" #: wiki/plugins/attachments/views.py #, python-format @@ -24298,11 +24613,11 @@ msgstr "接收关于该文档编辑的电å邮件" #: wiki/plugins/notifications/forms.py msgid "Your notification settings were updated." -msgstr "ä½ çš„é€šçŸ¥è®¾ç½®å·²ç»æ›´æ–°ã€‚" +msgstr "您的通知设置已ç»æ›´æ–°ã€‚" #: wiki/plugins/notifications/forms.py msgid "Your notification settings were unchanged, so nothing saved." -msgstr "ä½ çš„é€šçŸ¥è®¾ç½®æ²¡æœ‰å˜æ›´ï¼Œå› æ¤æ— 需ä¿å˜ã€‚" +msgstr "您的通知设置没有å˜æ›´ï¼Œå› æ¤æ— 需ä¿å˜ã€‚" #: wiki/plugins/notifications/models.py #, python-format @@ -24514,7 +24829,7 @@ msgstr "已解é”" #: wiki/views/accounts.py msgid "You are now sign up... and now you can sign in!" -msgstr "您æ£åœ¨æ³¨å†Œâ€¦â€¦çŽ°åœ¨ä½ å¯ä»¥ç™»å½•äº†ï¼" +msgstr "您æ£åœ¨æ³¨å†Œâ€¦â€¦çŽ°åœ¨æ‚¨å¯ä»¥ç™»å½•äº†ï¼" #: wiki/views/accounts.py msgid "You are no longer logged in. Bye bye!" @@ -24593,3 +24908,25 @@ msgid "" "A new revision was created: Merge between Revision #%(r1)d and Revision " "#%(r2)d" msgstr "产生新的修订版本:åˆå¹¶ä¿®è®¢ç‰ˆæœ¬#%(r1)d与#%(r2)d" + +#: edx_proctoring_proctortrack/backends/proctortrack_rest.py +msgid "" +"Click on the \"Start System Check\" link below to download and run the " +"proctoring software." +msgstr "点击下é¢çš„“å¯åŠ¨ç³»ç»Ÿæ£€æŸ¥â€é“¾æŽ¥ä¸‹è½½å¹¶è¿è¡Œç›‘控软件。" + +#: edx_proctoring_proctortrack/backends/proctortrack_rest.py +msgid "" +"Once you have verified your identity and reviewed the exam guidelines in " +"Proctortrack, you will be redirected back to this page." +msgstr "一旦您验è¯äº†è‡ªå·±çš„身份并查看了Proctortrackä¸çš„考试指å—,您将被é‡å®šå‘回到æ¤é¡µé¢ã€‚" + +#: edx_proctoring_proctortrack/backends/proctortrack_rest.py +msgid "" +"To confirm that proctoring has started, make sure your webcam feed and the " +"blue Proctortrack box are both visible on your screen." +msgstr "è¦ç¡®è®¤å·²å¼€å§‹ç›‘控,请确ä¿æ‚¨çš„网络摄åƒå¤´æºå’Œè“色的Proctortrack框都在å±å¹•ä¸Šå¯è§ã€‚" + +#: edx_proctoring_proctortrack/backends/proctortrack_rest.py +msgid "Click on the \"Start Proctored Exam\" button below to continue." +msgstr "点击下方的“开始监考考试â€æŒ‰é’®ç»§ç»" diff --git a/conf/locale/zh_HANS/LC_MESSAGES/djangojs.mo b/conf/locale/zh_HANS/LC_MESSAGES/djangojs.mo index 1d8fbbf7b1e42a1b2b3ba0ddc988d6a2084a39e0..f5a33144e2a4bd0a6c7eba99c8d576cc39f21867 100644 Binary files a/conf/locale/zh_HANS/LC_MESSAGES/djangojs.mo and b/conf/locale/zh_HANS/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/zh_HANS/LC_MESSAGES/djangojs.po b/conf/locale/zh_HANS/LC_MESSAGES/djangojs.po index 666f4086ab79e1812772edc3dc42d507e2f7b1a8..9e6c1f8e81fe1005845a1cc4fe4a1aa36265e61f 100644 --- a/conf/locale/zh_HANS/LC_MESSAGES/djangojs.po +++ b/conf/locale/zh_HANS/LC_MESSAGES/djangojs.po @@ -23,7 +23,7 @@ # focusheart <focusheart@gmail.com>, 2014,2017 # freakylemon <freakylemon@ymail.com>, 2014 # freakylemon <freakylemon@ymail.com>, 2014 -# ckyOL, 2015 +# 1c836b125659bc943ac07aaf233cadb5, 2015 # GoodLuck <1833447072@qq.com>, 2014 # Wentao Han <wentao.han@gmail.com>, 2013 # Harry Li <harry75369@gmail.com>, 2014 @@ -31,7 +31,7 @@ # hohomi <hohomi@gmail.com>, 2014,2016 # bnw, 2014 # HYY <wingyin.wong@outlook.com>, 2019 -# ifLab <webmaster@iflab.org>, 2018 +# ifLab <webmaster@iflab.org>, 2018-2019 # Jerome Huang <canni3269@gmail.com>, 2014 # jg Ma <jg20040308@126.com>, 2016 # Jianfei Wang <me@thinxer.com>, 2013 @@ -43,6 +43,7 @@ # liuxing3169 <liuxing3169@gmail.com>, 2018 # 刘洋 <liuyang2011@tsinghua.edu.cn>, 2013 # Luyi Zheng <luyi.zheng@mail.mcgill.ca>, 2016 +# Muhammad Adeel Khan <adeel@edx.org>, 2019 # pku9104038 <pku9104038@hotmail.com>, 2014 # pku9104038 <pku9104038@hotmail.com>, 2014 # ranfish <ranfish@gmail.com>, 2015 @@ -141,6 +142,17 @@ # ç†Šå†¬å‡ <xdsnet@gmail.com>, 2013 # 竹轩 <fmyzjs@gmail.com>, 2014 # 肖寒 <bookman@vip.163.com>, 2013 +# #-#-#-#-# djangojs-account-settings-view.po (0.1a) #-#-#-#-# +# edX community translations have been downloaded from Chinese (China) (https://www.transifex.com/open-edx/teams/6205/zh_CN/). +# Copyright (C) 2019 EdX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# EdX Team <info@edx.org>, 2019. +# +# Translators: +# jsgang <jsgang9@gmail.com>, 2019 +# abby li <yc.li@eliteu.cn>, 2019 +# ifLab <webmaster@iflab.org>, 2019 +# # #-#-#-#-# underscore.po (edx-platform) #-#-#-#-# # edX community translations have been downloaded from Chinese (China) (http://www.transifex.com/open-edx/edx-platform/language/zh_CN/) # Copyright (C) 2019 edX @@ -153,7 +165,7 @@ # Bill <power_free@126.com>, 2015 # Changyue Wang <peterwang.dut@gmail.com>, 2015 # CharlotteDing <kikyoru@hotmail.com>, 2015 -# ifLab <webmaster@iflab.org>, 2018 +# ifLab <webmaster@iflab.org>, 2018-2019 # jg Ma <jg20040308@126.com>, 2016 # jsgang <jsgang9@gmail.com>, 2014-2016,2018 # Jun Hao Lin <xuxiao15994219982@gmail.com>, 2015 @@ -172,6 +184,7 @@ # å¼ é€¸æ¶µ <jeanzhang970128@gmail.com>, 2014 # å¾® æŽ <w.li@eliteu.com.cn>, 2018 # æˆç¾½ä¸° <onetwogoo@gmail.com>, 2015 +# æ–¹ 明旗 <mingflag@outlook.com>, 2019 # 汤和果 <hgtang93@163.com>, 2015 # èƒ¡è¶…å¨ <chadennishu@gmail.com>, 2014 # #-#-#-#-# underscore-studio.po (edx-platform) #-#-#-#-# @@ -187,7 +200,7 @@ # Dustin Yu <dustintt123@hotmail.com>, 2015 # focusheart <focusheart@gmail.com>, 2017 # GoodLuck <1833447072@qq.com>, 2014 -# ifLab <webmaster@iflab.org>, 2018 +# ifLab <webmaster@iflab.org>, 2018-2019 # Jiazhen Tan <jessie12@live.cn>, 2016 # jsgang <jsgang9@gmail.com>, 2015-2017 # LIU NIAN <lauraqq@gmail.com>, 2015 @@ -203,16 +216,16 @@ # Yu <inactive+harrycaoyu@transifex.com>, 2015 # Yu <inactive+harrycaoyu@transifex.com>, 2015 # å˜‰æ° æŽ <jj.li@eliteu.com.cn>, 2018 -# 大芳 刘 <liuxiaolinfk@gmail.com>, 2016 +# 刘啸林 <liuxiaolinfk@gmail.com>, 2016 # ç™¾æ° é™ˆ <bj.chen@eliteu.com.cn>, 2018 # 竹轩 <fmyzjs@gmail.com>, 2014 msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2019-02-17 20:42+0000\n" -"PO-Revision-Date: 2019-02-10 20:45+0000\n" -"Last-Translator: edx_transifex_bot <i18n-working-group+edx-transifex-bot@edx.org>\n" +"POT-Creation-Date: 2019-06-09 20:42+0000\n" +"PO-Revision-Date: 2019-04-27 06:57+0000\n" +"Last-Translator: ifLab <webmaster@iflab.org>\n" "Language-Team: Chinese (China) (http://www.transifex.com/open-edx/edx-platform/language/zh_CN/)\n" "Language: zh_CN\n" "MIME-Version: 1.0\n" @@ -262,7 +275,6 @@ msgstr "åˆ é™¤" #. #-#-#-#-# djangojs-partial.po (edx-platform) #-#-#-#-# #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: cms/static/js/certificates/views/signatory_editor.js #: cms/static/js/views/asset.js cms/static/js/views/course_info_update.js #: cms/static/js/views/export.js cms/static/js/views/manage_users_and_roles.js @@ -273,6 +285,7 @@ msgstr "åˆ é™¤" #: common/lib/xmodule/xmodule/js/src/html/edit.js #: common/static/common/js/components/utils/view_utils.js #: lms/static/js/Markdown.Editor.js +#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx #: cms/templates/js/add-xblock-component-menu-problem.underscore #: cms/templates/js/add-xblock-component-menu.underscore #: cms/templates/js/certificate-editor.underscore @@ -295,6 +308,7 @@ msgstr "åˆ é™¤" msgid "Cancel" msgstr "å–消" +#. Translators: This is the status of an active video upload #: cms/static/js/models/active_video_upload.js cms/static/js/views/assets.js #: cms/static/js/views/video_thumbnail.js lms/static/js/views/image_field.js msgid "Uploading" @@ -303,7 +317,6 @@ msgstr "ä¸Šä¼ ä¸" #. #-#-#-#-# djangojs-partial.po (edx-platform) #-#-#-#-# #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: cms/static/js/views/active_video_upload.js #: cms/static/js/views/modals/edit_xblock.js #: cms/static/js/views/video_transcripts.js @@ -321,7 +334,6 @@ msgstr "å…³é—" #. #-#-#-#-# djangojs-partial.po (edx-platform) #-#-#-#-# #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: cms/static/js/views/assets.js #: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/asset-library.underscore @@ -340,7 +352,6 @@ msgstr "选择文件" #. #-#-#-#-# djangojs-partial.po (edx-platform) #-#-#-#-# #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: cms/static/js/views/course_info_update.js cms/static/js/views/tabs.js #: common/lib/xmodule/xmodule/js/src/html/edit.js #: lms/static/js/Markdown.Editor.js @@ -352,7 +363,6 @@ msgstr "是的" #. #-#-#-#-# djangojs-partial.po (edx-platform) #-#-#-#-# #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: cms/static/js/views/course_video_settings.js #: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/timed-examination-preference-editor.underscore @@ -372,7 +382,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/js/views/manage_users_and_roles.js #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Ok" @@ -395,7 +404,6 @@ msgstr "ä¸Šä¼ æ–‡ä»¶" #. #-#-#-#-# djangojs-partial.po (edx-platform) #-#-#-#-# #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: cms/static/js/views/modals/base_modal.js #: cms/static/js/views/modals/course_outline_modals.js #: common/lib/xmodule/xmodule/js/src/html/edit.js @@ -417,7 +425,6 @@ msgstr "ä¿å˜" #. #-#-#-#-# djangojs-partial.po (edx-platform) #-#-#-#-# #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: cms/static/js/views/modals/course_outline_modals.js #: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/add-xblock-component-menu-problem.underscore @@ -437,6 +444,9 @@ msgstr "移除ä¸" msgid "Your changes have been saved." msgstr "您所作的å˜æ›´å·²ä¿å˜ã€‚" +#. Translators: This message will be added to the front of messages of type +#. error, +#. e.g. "Error: required field is missing". #: cms/static/js/views/xblock_validation.js #: common/static/common/js/discussion/utils.js #: common/static/common/js/discussion/views/discussion_inline_view.js @@ -500,31 +510,47 @@ msgstr "评注" msgid "Reply to Annotation" msgstr "回å¤æ‰¹æ³¨" +#. Translators: %(num_points)s is the number of points possible (examples: 1, +#. 3, 10).; #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "%(num_points)s point possible (graded, results hidden)" msgid_plural "%(num_points)s points possible (graded, results hidden)" msgstr[0] "%(num_points)s 满分 (计入æˆç»©ï¼Œéšè—ç”案)" +#. Translators: %(num_points)s is the number of points possible (examples: 1, +#. 3, 10).; #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "%(num_points)s point possible (ungraded, results hidden)" msgid_plural "%(num_points)s points possible (ungraded, results hidden)" msgstr[0] " %(num_points)s满分 (ä¸è®¡å…¥æˆç»©ï¼Œéšè—ç”案)" +#. Translators: %(num_points)s is the number of points possible (examples: 1, +#. 3, 10).; #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "%(num_points)s point possible (graded)" msgid_plural "%(num_points)s points possible (graded)" msgstr[0] "%(num_points)s 满分 (计入æˆç»©)" +#. Translators: %(num_points)s is the number of points possible (examples: 1, +#. 3, 10).; #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "%(num_points)s point possible (ungraded)" msgid_plural "%(num_points)s points possible (ungraded)" msgstr[0] "%(num_points)s满分(ä¸è®¡å…¥æˆç»©ï¼‰" +#. Translators: %(earned)s is the number of points earned. %(possible)s is the +#. total number of points (examples: 0/1, 1/1, 2/3, 5/10). The total number of +#. points will always be at least 1. We pluralize based on the total number of +#. points (example: 0/1 point; 1/2 points); #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "%(earned)s/%(possible)s point (graded)" msgid_plural "%(earned)s/%(possible)s points (graded)" msgstr[0] "%(earned)s/%(possible)s得分 (计入æˆç»©)" +#. Translators: %(earned)s is the number of points earned. %(possible)s is the +#. total number of points (examples: 0/1, 1/1, 2/3, 5/10). The total number of +#. points will always be at least 1. We pluralize based on the total number of +#. points (example: 0/1 point; 1/2 points); #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "%(earned)s/%(possible)s point (ungraded)" msgid_plural "%(earned)s/%(possible)s points (ungraded)" @@ -561,6 +587,8 @@ msgstr "您没有æ交需è¦çš„文件:{requiredFiles}。" msgid "You did not select any files to submit." msgstr "您未选择任何è¦ä¸Šä¼ 的文件。" +#. Translators: This is only translated to allow for reordering of label and +#. associated status.; #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "{label}: {status}" msgstr "{label}: {status}" @@ -575,7 +603,6 @@ msgstr "未æ交" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paragraph" msgstr "段è½" @@ -586,105 +613,90 @@ msgstr "é¢„è®¾æ ¼å¼" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 3" msgstr "æ ‡é¢˜ 3" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 4" msgstr "æ ‡é¢˜ 4" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 5" msgstr "æ ‡é¢˜ 5" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 6" msgstr "æ ‡é¢˜ 6" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Add to Dictionary" msgstr "åŠ å…¥åˆ°å—å…¸" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Align center" msgstr "å±…ä¸å¯¹é½" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Align left" msgstr "左对é½" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Align right" msgstr "å³å¯¹é½" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Alignment" msgstr "对é½" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Alternative source" msgstr "备用æº" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Anchor" msgstr "锚点" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Anchors" msgstr "锚点" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Author" msgstr "作者" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Background color" msgstr "背景颜色" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js #: lms/static/js/Markdown.Editor.js msgid "Blockquote" @@ -692,122 +704,104 @@ msgstr "引用" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Blocks" msgstr "å—" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Body" msgstr "主体" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Bold" msgstr "粗体" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Border color" msgstr "边框色" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Border" msgstr "边框" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Bottom" msgstr "底端" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Bullet list" msgstr "项目符å·åˆ—表" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Caption" msgstr "æ ‡é¢˜" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Cell padding" msgstr "å•å…ƒæ ¼è¾¹è·" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Cell properties" msgstr "å•å…ƒæ ¼å±žæ€§" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Cell spacing" msgstr "å•å…ƒæ ¼é—´è·" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Cell type" msgstr "å•å…ƒæ ¼ç±»åž‹" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Cell" msgstr "å•å…ƒæ ¼" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Center" msgstr "å±…ä¸å¯¹é½" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Circle" msgstr "空心圆" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Clear formatting" msgstr "æ¸…é™¤æ ¼å¼" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #. Translators: this is a toolbar button tooltip from the raw HTML editor #. displayed in the browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Code block" msgstr "代ç å—" @@ -815,7 +809,6 @@ msgstr "代ç å—" #. #-#-#-#-# djangojs-partial.po (edx-platform) #-#-#-#-# #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js #: lms/templates/instructor/instructor_dashboard_2/enrollment-code-lookup-links.underscore msgid "Code" @@ -823,119 +816,102 @@ msgstr "代ç " #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Color" msgstr "颜色" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Cols" msgstr "列" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Column group" msgstr "列组" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Column" msgstr "列" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Constrain proportions" msgstr "ä¿æŒçºµæ¨ªæ¯”" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Copy row" msgstr "å¤åˆ¶è¡Œ" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Copy" msgstr "å¤åˆ¶" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Could not find the specified string." msgstr "æ— æ³•æ‰¾åˆ°æŒ‡å®šçš„å—符串。" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Custom color" msgstr "自定义颜色" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Custom..." msgstr "自定义…" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Cut row" msgstr "剪切行" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Cut" msgstr "剪切" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Decrease indent" msgstr "å‡å°‘缩进" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Default" msgstr "默认" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Delete column" msgstr "åˆ é™¤åˆ—" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Delete row" msgstr "åˆ é™¤è¡Œ" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Delete table" msgstr "åˆ é™¤è¡¨æ ¼" @@ -943,7 +919,6 @@ msgstr "åˆ é™¤è¡¨æ ¼" #. #-#-#-#-# djangojs-partial.po (edx-platform) #-#-#-#-# #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/certificate-editor.underscore #: cms/templates/js/group-configuration-editor.underscore @@ -954,35 +929,30 @@ msgstr "æè¿°" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Dimensions" msgstr "尺寸" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Disc" msgstr "实心圆" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Div" msgstr "Div æ ‡ç¾" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Document properties" msgstr "文档属性" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Edit HTML" msgstr "编辑 HTML" @@ -990,7 +960,6 @@ msgstr "编辑 HTML" #. #-#-#-#-# djangojs-partial.po (edx-platform) #-#-#-#-# #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/certificate-details.underscore #: cms/templates/js/course_info_handouts.underscore @@ -1006,98 +975,84 @@ msgstr "编辑" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Embed" msgstr "内嵌" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Emoticons" msgstr "表情" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Encoding" msgstr "ç¼–ç " #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "File" msgstr "文件" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Find and replace" msgstr "查找和替æ¢" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Find next" msgstr "查找下一个" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Find previous" msgstr "查找上一个" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Find" msgstr "查找" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Finish" msgstr "完æˆ" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Font Family" msgstr "å—体" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Font Sizes" msgstr "å—å·" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Footer" msgstr "脚注" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Format" msgstr "æ ¼å¼" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Formats" msgstr "æ ¼å¼" @@ -1105,7 +1060,6 @@ msgstr "æ ¼å¼" #. #-#-#-#-# djangojs-partial.po (edx-platform) #-#-#-#-# #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js #: common/static/common/templates/image-modal.underscore msgid "Fullscreen" @@ -1113,70 +1067,60 @@ msgstr "å…¨å±" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "General" msgstr "一般" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "H Align" msgstr "水平对é½" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Header 1" msgstr "æ ‡é¢˜ 1" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Header 2" msgstr "æ ‡é¢˜ 2" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Header 3" msgstr "æ ‡é¢˜ 3" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Header 4" msgstr "æ ‡é¢˜ 4" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Header 5" msgstr "æ ‡é¢˜ 5" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Header 6" msgstr "æ ‡é¢˜ 6" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Header cell" msgstr "表头å•å…ƒæ ¼" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "Header" @@ -1184,280 +1128,240 @@ msgstr "表头" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Headers" msgstr "æ ‡é¢˜" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 1" msgstr "æ ‡é¢˜ 1" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 2" msgstr "æ ‡é¢˜ 2" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Headings" msgstr "æ ‡é¢˜" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Height" msgstr "高度" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Horizontal line" msgstr "水平线" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Horizontal space" msgstr "水平间è·" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "HTML source code" msgstr "HTML æºä»£ç " #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Ignore all" msgstr "全部忽略" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Ignore" msgstr "忽略" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Image description" msgstr "图片æè¿°" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Increase indent" msgstr "å¢žåŠ ç¼©è¿›" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Inline" msgstr "对é½" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Insert column after" msgstr "在å³ä¾§æ’入列" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Insert column before" msgstr "在左侧æ’入列" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Insert date/time" msgstr "æ’入日期ï¼æ—¶é—´" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Insert image" msgstr "æ’入图片" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Insert link" msgstr "æ’入链接" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Insert row after" msgstr "在下方æ’入行" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Insert row before" msgstr "在上方æ’入行" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Insert table" msgstr "æ’å…¥è¡¨æ ¼" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Insert template" msgstr "æ’入模æ¿" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Insert video" msgstr "æ’入视频" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Insert" msgstr "æ’å…¥" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Insert/edit image" msgstr "æ’å…¥ï¼ç¼–辑图片" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Insert/edit link" msgstr "æ’å…¥ï¼ç¼–辑链接" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Insert/edit video" msgstr "æ’å…¥ï¼ç¼–辑视频" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Italic" msgstr "斜体" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Justify" msgstr "两端对é½" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Keywords" msgstr "关键å—" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Left to right" msgstr "从左å‘å³" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Left" msgstr "左对é½" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Lower Alpha" msgstr "å°å†™å—æ¯" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Lower Greek" msgstr "å°å†™å¸Œè…Šå—æ¯" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Lower Roman" msgstr "å°å†™ç½—马å—æ¯" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Match case" msgstr "匹é…大å°å†™" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Merge cells" msgstr "åˆå¹¶å•å…ƒæ ¼" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Middle" msgstr "ä¸é—´" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "New document" msgstr "新建文档" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "New window" msgstr "新建窗å£" @@ -1465,7 +1369,6 @@ msgstr "新建窗å£" #. #-#-#-#-# djangojs-partial.po (edx-platform) #-#-#-#-# #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/paging-header.underscore #: common/static/common/templates/components/paging-footer.underscore @@ -1475,42 +1378,36 @@ msgstr "下一个" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "No color" msgstr "æ— é¢œè‰²" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Nonbreaking space" msgstr "ä¸é—´æ–ç©ºæ ¼" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Numbered list" msgstr "ç¼–å·åˆ—表" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Page break" msgstr "分页符" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paste as text" msgstr "粘贴为文本" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "" "Paste is now in plain text mode. Contents will now be pasted as plain text " @@ -1519,49 +1416,42 @@ msgstr "当å‰ä¸ºçº¯æ–‡æœ¬ç²˜è´´æ¨¡å¼ï¼Œæ‰€æœ‰å†…容都将以纯文本形å¼ç²˜ #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paste row after" msgstr "在下方粘贴行" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paste row before" msgstr "在上方粘贴行" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paste your embed code below:" msgstr "将内嵌代ç 粘贴到下方:" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paste" msgstr "粘贴" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Poster" msgstr "å°é¢" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Pre" msgstr "Pre æ ‡ç¾" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Prev" msgstr "上一个" @@ -1569,7 +1459,6 @@ msgstr "上一个" #. #-#-#-#-# djangojs-partial.po (edx-platform) #-#-#-#-# #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js lms/static/js/customwmd.js #: cms/templates/js/asset-library.underscore msgid "Preview" @@ -1577,35 +1466,30 @@ msgstr "预览" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Print" msgstr "打å°" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Redo" msgstr "é‡åš" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Remove link" msgstr "移除链接" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Replace all" msgstr "全部替æ¢" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Replace with" msgstr "替æ¢ä¸º" @@ -1613,7 +1497,6 @@ msgstr "替æ¢ä¸º" #. #-#-#-#-# djangojs-partial.po (edx-platform) #-#-#-#-# #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/metadata-file-uploader-item.underscore #: cms/templates/js/video-transcripts.underscore @@ -1623,14 +1506,12 @@ msgstr "替æ¢" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Restore last draft" msgstr "æ¢å¤ä¸Šä¸€ç‰ˆè‰ç¨¿" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "" "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press " @@ -1639,210 +1520,180 @@ msgstr "RTF富文本区域。按 ALT-F9 打开èœå•ï¼ŒæŒ‰ ALT-F10 打开工具 #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Right to left" msgstr "从å³å‘å·¦" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Right" msgstr "å³å¯¹é½" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Robots" msgstr "机器人" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Row group" msgstr "行组" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Row properties" msgstr "行属性" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Row type" msgstr "行类型" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Row" msgstr "è¡Œ" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Rows" msgstr "è¡Œ" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Scope" msgstr "范围" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Select all" msgstr "全选" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Show blocks" msgstr "显示å—" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Show invisible characters" msgstr "显示ä¸å¯è§å—符" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Source code" msgstr "æºä»£ç " #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Source" msgstr "æº" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Special character" msgstr "特殊å—符" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Spellcheck" msgstr "拼写检查" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Split cell" msgstr "拆分å•å…ƒæ ¼" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Square" msgstr "æ£æ–¹å½¢" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Start search" msgstr "开始æœç´¢" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Strikethrough" msgstr "åˆ é™¤çº¿" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Style" msgstr "æ ·å¼" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Subscript" msgstr "ä¸‹æ ‡" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Superscript" msgstr "ä¸Šæ ‡" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Table properties" msgstr "è¡¨æ ¼å±žæ€§" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Table" msgstr "è¡¨æ ¼" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Target" msgstr "ç›®æ ‡" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Templates" msgstr "模æ¿" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Text color" msgstr "文本颜色" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Text to display" msgstr "è¦æ˜¾ç¤ºçš„æ–‡å—" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "" "The URL you entered seems to be an email address. Do you want to add the " @@ -1851,7 +1702,6 @@ msgstr "输入的 URL 似乎是一个邮箱地å€ï¼Œæ‚¨æƒ³åŠ 上必è¦çš„ mailto #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "" "The URL you entered seems to be an external link. Do you want to add the " @@ -1861,7 +1711,6 @@ msgstr "输入的 URL ä¼¼ä¹Žæ˜¯ä¸€ä¸ªå¤–éƒ¨é“¾æŽ¥ï¼Œæ‚¨æƒ³åŠ ä¸Šå¿…è¦çš„ http:/ #. #-#-#-#-# djangojs-partial.po (edx-platform) #-#-#-#-# #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/course-instructor-details.underscore #: cms/templates/js/signatory-details.underscore @@ -1872,63 +1721,54 @@ msgstr "æ ‡é¢˜" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Tools" msgstr "工具" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Top" msgstr "顶端" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Underline" msgstr "下划线" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Undo" msgstr "撤销" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Upper Alpha" msgstr "大写å—æ¯" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Upper Roman" msgstr "大写罗马å—æ¯" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Url" msgstr "URL" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "V Align" msgstr "垂直对é½" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Vertical space" msgstr "åž‚ç›´é—´è·" @@ -1936,7 +1776,6 @@ msgstr "åž‚ç›´é—´è·" #. #-#-#-#-# djangojs-partial.po (edx-platform) #-#-#-#-# #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js #: openedx/features/course_bookmarks/static/course_bookmarks/templates/bookmarks-list.underscore #: openedx/features/course_search/static/course_search/templates/course_search_item.underscore @@ -1946,42 +1785,36 @@ msgstr "视图" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Visual aids" msgstr "ç½‘æ ¼çº¿" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Whole words" msgstr "å…¨å—匹é…" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Width" msgstr "宽" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Words: {0}" msgstr "å—数: {0}" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "You have unsaved changes are you sure you want to navigate away?" msgstr "有未ä¿å˜çš„更改,确定è¦ç¦»å¼€å—?" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "" "Your browser doesn't support direct access to the clipboard. Please use the " @@ -1990,7 +1823,6 @@ msgstr "您的æµè§ˆå™¨ä¸æ”¯æŒç›´æŽ¥è®¿é—®å‰ªè´´æ¿ï¼Œè¯·ä½¿ç”¨å¿«æ·é”® Ctrl+ #. Translators: this is a toolbar button tooltip from the raw HTML editor #. displayed in the browser when a user needs to edit HTML -#. */ #: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Insert/Edit Image" msgstr "æ’å…¥/编辑图片" @@ -2110,30 +1942,37 @@ msgstr "自动æ’放" msgid "Volume" msgstr "音é‡" +#. Translators: Volume level equals 0%. #: common/lib/xmodule/xmodule/js/src/video/00_i18n.js msgid "Muted" msgstr "é™éŸ³" +#. Translators: Volume level in range ]0,20]% #: common/lib/xmodule/xmodule/js/src/video/00_i18n.js msgid "Very low" msgstr "音é‡æœ€å°" +#. Translators: Volume level in range ]20,40]% #: common/lib/xmodule/xmodule/js/src/video/00_i18n.js msgid "Low" msgstr "音é‡è¾ƒå°" +#. Translators: Volume level in range ]40,60]% #: common/lib/xmodule/xmodule/js/src/video/00_i18n.js msgid "Average" msgstr "音é‡ä¸ç‰" +#. Translators: Volume level in range ]60,80]% #: common/lib/xmodule/xmodule/js/src/video/00_i18n.js msgid "Loud" msgstr "音é‡è¾ƒå¤§" +#. Translators: Volume level in range ]80,99]% #: common/lib/xmodule/xmodule/js/src/video/00_i18n.js msgid "Very loud" msgstr "音é‡æœ€å¤§" +#. Translators: Volume level equals 100%. #: common/lib/xmodule/xmodule/js/src/video/00_i18n.js msgid "Maximum" msgstr "最大数值" @@ -2280,6 +2119,18 @@ msgstr "å…³é—å—幕" msgid "View child items" msgstr "查看å类目" +#: common/static/common/js/components/BlockBrowser/components/BlockBrowser/BlockBrowser.jsx +msgid "Navigate up" +msgstr "å‘上导航" + +#: common/static/common/js/components/BlockBrowser/components/BlockBrowser/BlockBrowser.jsx +msgid "Browsing" +msgstr "æµè§ˆ" + +#: common/static/common/js/components/BlockBrowser/components/BlockBrowser/BlockBrowser.jsx +msgid "Select" +msgstr "选择" + #: common/static/common/js/components/utils/view_utils.js msgid "Required field." msgstr "å¿…å¡«å—段。" @@ -2553,11 +2404,13 @@ msgstr "在滑å—ä¸æ”¾ä¸‹" msgid "dropped on target" msgstr "åœ¨ç›®æ ‡ä¸Šæ”¾ä¸‹" +#. Translators: %s will be a time quantity, such as "4 minutes" or "1 day" #: common/static/js/src/jquery.timeago.locale.js #, javascript-format msgid "%s ago" msgstr "%s 以å‰" +#. Translators: %s will be a time quantity, such as "4 minutes" or "1 day" #: common/static/js/src/jquery.timeago.locale.js #, javascript-format msgid "%s from now" @@ -2672,6 +2525,10 @@ msgstr "æ·»åŠ é™„ä»¶" msgid "(Optional)" msgstr "(éžå¿…å¡«)" +#: lms/djangoapps/support/static/support/jsx/file_upload.jsx +msgid "Remove file" +msgstr "移除文件" + #: lms/djangoapps/support/static/support/jsx/logged_in_user.jsx msgid "Course Name" msgstr "课程å称" @@ -2680,10 +2537,23 @@ msgstr "课程å称" msgid "Not specific to a course" msgstr "ä¸é’ˆå¯¹ç‰¹å®šè¯¾ç¨‹" +#: lms/djangoapps/support/static/support/jsx/logged_in_user.jsx +msgid "What can we help you with, {username}?" +msgstr "亲爱的{username},有什么å¯ä»¥å¸®åŠ©æ‚¨ï¼Ÿ" + +#: lms/djangoapps/support/static/support/jsx/logged_in_user.jsx +#: lms/static/js/instructor_dashboard/util.js +msgid "Subject" +msgstr "æ ‡é¢˜" + #: lms/djangoapps/support/static/support/jsx/logged_in_user.jsx msgid "Details" msgstr "细节" +#: lms/djangoapps/support/static/support/jsx/logged_in_user.jsx +msgid "The more you tell us, the more quickly and helpfully we can respond!" +msgstr "您æ供的信æ¯è¶Šè¯¦ç»†ï¼Œæˆ‘们越能快速并有效地帮助到您ï¼" + #: lms/djangoapps/support/static/support/jsx/logged_in_user.jsx #: common/static/common/templates/discussion/new-post.underscore #: common/static/common/templates/discussion/thread-response.underscore @@ -2697,14 +2567,9 @@ msgid "Sign in to {platform} so we can help you better." msgstr "请登录{platform},以获得更好的帮助。" #: lms/djangoapps/support/static/support/jsx/logged_out_user.jsx -#: lms/templates/student_account/hinted_login.underscore -#: lms/templates/student_account/login.underscore -msgid "Sign in" -msgstr "登录" - -#: lms/djangoapps/support/static/support/jsx/logged_out_user.jsx -msgid "Create an {platform} account" -msgstr "创建{platform}è´¦å·" +msgid "" +"If you are unable to access your account contact us via email using {email}." +msgstr "å¦‚æžœæ‚¨æ— æ³•è®¿é—®è´¦å·ï¼Œè¯·é€šè¿‡ç”µå邮件è”系我们{email}。" #: lms/djangoapps/support/static/support/jsx/single_support_form.jsx msgid "" @@ -2720,10 +2585,19 @@ msgstr "输入您所需è¦çš„支æŒçš„主题。" msgid "Enter some details for your support request." msgstr "输入您所需è¦çš„支æŒçš„细节。" +#: lms/djangoapps/support/static/support/jsx/single_support_form.jsx +#: lms/djangoapps/support/static/support/jsx/success.jsx +msgid "Contact Us" +msgstr "è”系我们" + #: lms/djangoapps/support/static/support/jsx/single_support_form.jsx msgid "Find answers to the top questions asked by learners." msgstr "查看å¦å‘˜æœ€å¸¸é—®çš„问题åŠç”案。" +#: lms/djangoapps/support/static/support/jsx/single_support_form.jsx +msgid "Search the {platform} Help Center" +msgstr "在{platform}的帮助ä¸å¿ƒå¯»æ±‚帮助" + #: lms/djangoapps/support/static/support/jsx/success.jsx msgid "Go to my Dashboard" msgstr "å‰å¾€æˆ‘的课程é¢æ¿" @@ -2733,8 +2607,13 @@ msgid "Go to {platform} Home" msgstr "å‰å¾€{platform}主页" #: lms/djangoapps/support/static/support/jsx/success.jsx -msgid "Contact Us" -msgstr "è”系我们" +msgid "" +"Thank you for submitting a request! We will contact you within 24 hours." +msgstr "感谢您æ交的申请ï¼æˆ‘们会在24å°æ—¶å†…è”系您。" + +#: lms/djangoapps/support/static/support/jsx/upload_progress.jsx +msgid "Cancel upload" +msgstr "å–æ¶ˆä¸Šä¼ " #: lms/djangoapps/teams/static/teams/js/collections/team.js msgid "last activity" @@ -2748,6 +2627,8 @@ msgstr "开放的时段" msgid "name" msgstr "å称" +#. Translators: This refers to the number of teams (a count of how many teams +#. there are) #: lms/djangoapps/teams/static/teams/js/collections/topic.js msgid "team count" msgstr "团队计数" @@ -2841,10 +2722,14 @@ msgstr "移除æˆå‘˜æ—¶å‘生错误。请é‡è¯•ä¸€æ¬¡ã€‚" msgid "This team does not have any members." msgstr "本团队没有æˆå‘˜ã€‚" +#. Translators: 'date' is a placeholder for a fuzzy, relative timestamp (see: +#. https://github.com/rmm5t/jquery-timeago) #: lms/djangoapps/teams/static/teams/js/views/edit_team_members.js msgid "Joined %(date)s" msgstr "于 %(date)s åŠ å…¥" +#. Translators: 'date' is a placeholder for a fuzzy, relative timestamp (see: +#. https://github.com/rmm5t/jquery-timeago) #: lms/djangoapps/teams/static/teams/js/views/edit_team_members.js msgid "Last Activity %(date)s" msgstr "上一次活动在 %(date)s " @@ -2877,10 +2762,14 @@ msgstr "团队 \"{team}\" å·²æˆåŠŸåˆ 除。" msgid "You are not currently a member of any team." msgstr "您目å‰ä¸æ˜¯ä»»ä½•å›¢é˜Ÿä¸çš„一员。" +#. Translators: "and others" refers to fact that additional members of a team +#. exist that are not displayed. #: lms/djangoapps/teams/static/teams/js/views/team_card.js msgid "and others" msgstr "其他" +#. Translators: 'date' is a placeholder for a fuzzy, relative timestamp (see: +#. http://momentjs.com/) #: lms/djangoapps/teams/static/teams/js/views/team_card.js msgid "Last activity %(date)s" msgstr "上一次活动在 %(date)s " @@ -3034,6 +2923,14 @@ msgstr "主题" msgid "View Teams in the %(topic_name)s Topic" msgstr "查看 %(topic_name)s主题下的团队" +#. Translators: this string is shown at the bottom of the teams page +#. to find a team to join or else to create a new one. There are three +#. links that need to be included in the message: +#. 1. Browse teams in other topics +#. 2. search teams +#. 3. create a new team +#. Be careful to start each link with the appropriate start indicator +#. (e.g. {browse_span_start} for #1) and finish it with {span_end}. #: lms/djangoapps/teams/static/teams/js/views/topic_teams.js msgid "" "{browse_span_start}Browse teams in other topics{span_end} or " @@ -3117,6 +3014,7 @@ msgstr "URL" msgid "Please provide a valid URL." msgstr "请æ供一个有效的网å€ã€‚" +#. Translators: 'errorCount' is the number of errors found in the form. #: lms/static/js/Markdown.Editor.js msgid "%(errorCount)s error found in form." msgid_plural "%(errorCount)s errors found in form." @@ -3402,26 +3300,25 @@ msgstr "æ‚¨å°†æ— æ³•èŽ·å¾—å…¨é¢é€€æ¬¾ã€‚" #: lms/static/js/dashboard/legacy.js msgid "" -"Are you sure you want to unenroll from the purchased course %(courseName)s " -"(%(courseNumber)s)?" -msgstr "您确定è¦é€€é€‰å·²è´ä¹°è¯¾ç¨‹%(courseName)s(%(courseNumber)s)?" +"Are you sure you want to unenroll from the purchased course {courseName} " +"({courseNumber})?" +msgstr "您确定è¦é€€é€‰å·²è´ä¹°è¯¾ç¨‹{courseName} ({courseNumber} )?" #: lms/static/js/dashboard/legacy.js -msgid "" -"Are you sure you want to unenroll from %(courseName)s (%(courseNumber)s)?" -msgstr "您确定è¦é€€é€‰è¯¾ç¨‹%(courseName)s(%(courseNumber)s)?" +msgid "Are you sure you want to unenroll from {courseName} ({courseNumber})?" +msgstr "您确定è¦é€€é€‰è¯¾ç¨‹{courseName} ({courseNumber} )?" #: lms/static/js/dashboard/legacy.js msgid "" -"Are you sure you want to unenroll from the verified %(certNameLong)s track " -"of %(courseName)s (%(courseNumber)s)?" -msgstr "您确定è¦é€€é€‰å·²é€šè¿‡èº«ä»½è®¤è¯çš„课程%(certNameLong)sçš„%(courseName)s(%(courseNumber)s)?" +"Are you sure you want to unenroll from the verified {certNameLong} track of" +" {courseName} ({courseNumber})?" +msgstr "ä½ æ˜¯å¦ç¡®å®šè¦é€€å‡º{courseName}({courseNumber}) çš„å·²éªŒè¯ {certNameLong}路径?" #: lms/static/js/dashboard/legacy.js msgid "" -"Are you sure you want to unenroll from the verified %(certNameLong)s track " -"of %(courseName)s (%(courseNumber)s)?" -msgstr "您确定è¦é€€é€‰å·²ç»è¿‡èº«ä»½è®¤è¯çš„课程%(certNameLong)sçš„%(courseName)s(%(courseNumber)s)?" +"Are you sure you want to unenroll from the verified {certNameLong} track of " +"{courseName} ({courseNumber})?" +msgstr "ä½ æ˜¯å¦ç¡®å®šè¦é€€å‡º{courseName}({courseNumber}) çš„å·²éªŒè¯ {certNameLong}路径?" #: lms/static/js/dashboard/legacy.js msgid "" @@ -3563,10 +3460,21 @@ msgstr "未找到有关\"%(query_string)s\"的任何结果。请é‡æ–°æœç´¢ã€‚" msgid "Search Results" msgstr "æœç´¢ç»“æžœ" +#. Translators: this is a title shown before all Notes that have no associated +#. tags. It is put within +#. brackets to differentiate it from user-defined tags, but it should still be +#. translated. #: lms/static/js/edxnotes/views/tabs/tags.js msgid "[no tags]" msgstr "[æ— æ ‡ç¾]" +#. Translators: 'Tags' is the name of the view (noun) within the Student Notes +#. page that shows all +#. notes organized by the tags the student has associated with them (if any). +#. When defining a +#. note in the courseware, the student can choose to associate 1 or more tags +#. with the note +#. in order to group similar notes together and help with search. #: lms/static/js/edxnotes/views/tabs/tags.js msgid "Tags" msgstr "æ ‡ç¾" @@ -3913,6 +3821,7 @@ msgstr "所有账å·åˆ›å»ºæˆåŠŸã€‚" msgid "Error adding/removing users as beta testers." msgstr "æ·»åŠ ï¼åˆ 除beta测试用户出错。" +#. Translators: A list of users appears after this sentence; #: lms/static/js/instructor_dashboard/membership.js msgid "These users were successfully added as beta testers:" msgstr "这些用户已ç»æ·»åŠ 为beta测试者:" @@ -3923,14 +3832,17 @@ msgid "" "not yet activated:" msgstr "æ— æ³•å°†è¿™äº›ç”¨æˆ·è®¾ç½®ä¸ºBETAæµ‹è¯•å‘˜ï¼Œå› ä¸ºä»–ä»¬çš„è´¦å·æœªæ¿€æ´»ï¼š" +#. Translators: A list of users appears after this sentence; #: lms/static/js/instructor_dashboard/membership.js msgid "These users were successfully removed as beta testers:" msgstr "这些用户ä¸å†æ˜¯beta测试者:" +#. Translators: A list of users appears after this sentence; #: lms/static/js/instructor_dashboard/membership.js msgid "These users were not added as beta testers:" msgstr "è¿™äº›ç”¨æˆ·æœªæ·»åŠ ä¸ºbeta测试者:" +#. Translators: A list of users appears after this sentence; #: lms/static/js/instructor_dashboard/membership.js msgid "These users were not removed as beta testers:" msgstr "这些用户未从beta测试者ä¸åˆ 除:" @@ -3965,36 +3877,43 @@ msgstr "以下邮箱/用户åæ— æ•ˆï¼š" msgid "Successfully enrolled and sent email to the following users:" msgstr "以下用户已æˆåŠŸé€‰è¯¾ï¼Œå¹¶å‘他们å‘é€ç”µå邮件:" +#. Translators: A list of users appears after this sentence; #: lms/static/js/instructor_dashboard/membership.js msgid "Successfully enrolled the following users:" msgstr "以下用户已ç»æˆåŠŸé€‰è¯¾ï¼š" +#. Translators: A list of users appears after this sentence; #: lms/static/js/instructor_dashboard/membership.js msgid "" "Successfully sent enrollment emails to the following users. They will be " "allowed to enroll once they register:" msgstr "选课邮件已æˆåŠŸå‘é€è‡³ä»¥ä¸‹ç”¨æˆ·ï¼Œä»–们注册åŽå³å¯é€‰è¯¾ï¼š" +#. Translators: A list of users appears after this sentence; #: lms/static/js/instructor_dashboard/membership.js msgid "These users will be allowed to enroll once they register:" msgstr "这些用户一旦注册å³å¯é€‰è¯¾ï¼š" +#. Translators: A list of users appears after this sentence; #: lms/static/js/instructor_dashboard/membership.js msgid "" "Successfully sent enrollment emails to the following users. They will be " "enrolled once they register:" msgstr "选课邮件已æˆåŠŸå‘é€è‡³è¿™äº›ç”¨æˆ·ï¼Œä»–们注册åŽå³å·²é€‰è¯¾ï¼š" +#. Translators: A list of users appears after this sentence; #: lms/static/js/instructor_dashboard/membership.js msgid "These users will be enrolled once they register:" msgstr "这些用户注册åŽå³å·²é€‰è¯¾ï¼š" +#. Translators: A list of users appears after this sentence; #: lms/static/js/instructor_dashboard/membership.js msgid "" "Emails successfully sent. The following users are no longer enrolled in the " "course:" msgstr "邮件å‘é€æˆåŠŸï¼Œä»¥ä¸‹ç”¨æˆ·å·²ä¸å†é€‰ä¿®æœ¬è¯¾ç¨‹ï¼š" +#. Translators: A list of users appears after this sentence; #: lms/static/js/instructor_dashboard/membership.js msgid "The following users are no longer enrolled in the course:" msgstr "以下用户已ä¸å†é€‰ä¿®æœ¬è¯¾ç¨‹ï¼š" @@ -4275,63 +4194,54 @@ msgstr "å¯åŠ¨å¯¹é¢˜ç›®â€œ<%- problem_id %>â€é‡æ–°è¯„分的任务时出错。 #. Translators: a "Task" is a background process such as grading students or #. sending email -#. */ #: lms/static/js/instructor_dashboard/util.js msgid "Task Type" msgstr "任务类型" #. Translators: a "Task" is a background process such as grading students or #. sending email -#. */ #: lms/static/js/instructor_dashboard/util.js msgid "Task inputs" msgstr "任务输入" #. Translators: a "Task" is a background process such as grading students or #. sending email -#. */ #: lms/static/js/instructor_dashboard/util.js msgid "Task ID" msgstr "任务ID" #. Translators: a "Requester" is a username that requested a task such as #. sending email -#. */ #: lms/static/js/instructor_dashboard/util.js msgid "Requester" msgstr "请求者" #. Translators: A timestamp of when a task (eg, sending email) was submitted #. appears after this -#. */ #: lms/static/js/instructor_dashboard/util.js msgid "Submitted" msgstr "å·²æ交" #. Translators: The length of a task (eg, sending email) in seconds appears #. this -#. */ #: lms/static/js/instructor_dashboard/util.js msgid "Duration (sec)" msgstr "æŒç»æ—¶é—´(秒)" #. Translators: The state (eg, "In progress") of a task (eg, sending email) #. appears after this. -#. */ #: lms/static/js/instructor_dashboard/util.js msgid "State" msgstr "状æ€" #. Translators: a "Task" is a background process such as grading students or #. sending email -#. */ #: lms/static/js/instructor_dashboard/util.js msgid "Task Status" msgstr "任务状æ€" #. Translators: a "Task" is a background process such as grading students or #. sending email -#. */ #: lms/static/js/instructor_dashboard/util.js msgid "Task Progress" msgstr "任务进度" @@ -4342,10 +4252,6 @@ msgid "" " technical support if the problem persists." msgstr "获å–邮件å‘生错误,请ç¨åŽé‡è¯•ã€‚如问题æŒç»å‘生,请咨询技术支æŒã€‚" -#: lms/static/js/instructor_dashboard/util.js -msgid "Subject" -msgstr "æ ‡é¢˜" - #: lms/static/js/instructor_dashboard/util.js msgid "Sent By" msgstr "å‘é€äºº" @@ -4529,10 +4435,31 @@ msgstr "æˆåŠŸè¦†ç›–{user}的题目得分" msgid "Could not override problem score for {user}." msgstr "æ— æ³•è¦†ç›–{user}的题目得分。" +#: lms/static/js/student_account/components/PasswordResetConfirmation.jsx +msgid "Enter and confirm your new password." +msgstr "è¾“å…¥å¹¶ç¡®è®¤ä½ çš„æ–°å¯†ç 。" + #: lms/static/js/student_account/components/PasswordResetConfirmation.jsx msgid "New Password" msgstr "新密ç " +#: lms/static/js/student_account/components/PasswordResetConfirmation.jsx +msgid "Confirm Password" +msgstr "确认密ç " + +#: lms/static/js/student_account/components/PasswordResetConfirmation.jsx +msgid "Passwords do not match." +msgstr "密ç ä¸ä¸€è‡´ã€‚" + +#: lms/static/js/student_account/components/PasswordResetConfirmation.jsx +msgid "Reset My Password" +msgstr "é‡ç½®æˆ‘的密ç " + +#: lms/static/js/student_account/components/PasswordResetConfirmation.jsx +#: lms/static/js/student_account/views/account_settings_factory.js +msgid "Reset Your Password" +msgstr "é‡ç½®æ‚¨çš„密ç " + #: lms/static/js/student_account/components/PasswordResetInput.jsx msgid "Error: " msgstr "错误:" @@ -4575,6 +4502,13 @@ msgstr "" msgid "We’re sorry to see you go!" msgstr "很é—憾看到您è¦ç¦»å¼€ï¼" +#: lms/static/js/student_account/components/StudentAccountDeletion.jsx +msgid "" +"Please note: Deletion of your account and personal data is permanent and " +"cannot be undone. EdX will not be able to recover your account or the data " +"that is deleted." +msgstr "请注æ„ï¼šåˆ é™¤è´¦å·ä¸Žä¸ªäººæ•°æ®å°†æ— 法撤销。EdXæ— æ³•æ¢å¤æ‚¨å·²åˆ 除的账å·æˆ–æ•°æ®ã€‚" + #: lms/static/js/student_account/components/StudentAccountDeletion.jsx msgid "" "Once your account is deleted, you cannot use it to take courses on the edX " @@ -4620,12 +4554,27 @@ msgid "" "your account or the data that is deleted." msgstr "æ‚¨é€‰æ‹©äº†â€œåˆ é™¤æˆ‘çš„è´¦å·â€ï¼Œåˆ 除账å·ä¸Žä¸ªäººæ•°æ®å°†æ— 法撤销。EdXæ— æ³•æ¢å¤æ‚¨å·²åˆ 除的账å·æˆ–æ•°æ®ã€‚" +#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx +msgid "" +"If you proceed, you will be unable to use this account to take courses on " +"the edX app, edx.org, or any other site hosted by edX. This includes access " +"to edx.org from your employer’s or university’s system and access to private" +" sites offered by MIT Open Learning, Wharton Executive Education, and " +"Harvard Medical School." +msgstr "" +"如果您继ç»æ¤æ“ä½œï¼Œé‚£ä¹ˆæ‚¨å°†æ— æ³•åœ¨edX " +"Appã€edx.org或其他任何由edX托管的站点上å¦ä¹ è¯¾ç¨‹ï¼ŒåŒ…æ‹¬æ— æ³•ä»Žæ‚¨å…¬å¸æˆ–大å¦çš„系统访问edx.org,以åŠæ— 法访问麻çœç†å·¥å¦é™¢å¼€æ”¾å¦ä¹ ã€æ²ƒé¡¿å•†å¦é™¢å’Œå“ˆä½›åŒ»å¦é™¢æ供的ç§äººç½‘站。" + #: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx msgid "" "If you still wish to continue and delete your account, please enter your " "account password:" msgstr "如果您ä»ç„¶è¦åˆ 除账å·ï¼Œè¯·è¾“入您的账å·å¯†ç :" +#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx +msgid "Yes, Delete" +msgstr "æ˜¯çš„ï¼Œåˆ é™¤" + #: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx msgid "We're sorry to see you go! Your account will be deleted shortly." msgstr "很é—憾您è¦ç¦»å¼€ï¼æ‚¨çš„è´¦å·å°†å¾ˆå¿«è¢«åˆ 除。" @@ -4665,7 +4614,6 @@ msgstr "å‘生了一个错误。" #. Translators: This string is appended to optional field labels on the #. student login, registration, and #. profile forms. -#. */ #: lms/static/js/student_account/views/FormView.js msgid "(optional)" msgstr "(éžå¿…填)" @@ -4694,6 +4642,10 @@ msgid "" "spam folder.{paragraphEnd}{paragraphStart}If you need further assistance, " "{anchorStart}contact technical support{anchorEnd}.{paragraphEnd}" msgstr "" +"{paragraphStart}您输入了{boldStart} {email} {boldEnd}。 " +"如果æ¤ç”µå邮件地å€ä¸Žæ‚¨çš„{platform_name}å¸æˆ·ç›¸å…³è”,我们会å‘æ¤ç”µå邮件地å€å‘é€åŒ…å«å¯†ç æ¢å¤è¯´æ˜Žçš„邮件。{paragraphEnd} " +"{paragraphStart}如果您没有收到密ç é‡ç½®é‚®ä»¶ï¼Œè¯·ç¡®è®¤æ‚¨è¾“入了æ£ç¡®çš„电å邮件地å€ï¼Œæˆ–检查您的垃圾邮件文件夹。{paragraphEnd} " +"{paragraphStart}如果您需è¦è¿›ä¸€æ¥çš„帮助,{anchorStart}请è”系技术支æŒ{anchorEnd}。{paragraphEnd}" #: lms/static/js/student_account/views/LoginView.js msgid "" @@ -4749,13 +4701,13 @@ msgstr "æ¤é‚®ç®±ç”¨äºŽæŽ¥æ”¶æ¥è‡ª{platform_name}和课程团队的信æ¯ã€‚" #: lms/static/js/student_account/views/account_settings_factory.js msgid "Recovery Email Address" -msgstr "" +msgstr "验è¯é‚®ç®±åœ°å€" #: lms/static/js/student_account/views/account_settings_factory.js msgid "" "You may access your account with this address if single-sign on or access to" " your primary email is not available." -msgstr "" +msgstr "å¦‚æžœæ— æ³•ä½¿ç”¨å•ç‚¹ç™»å½•æˆ–访问您的主电å邮件,您å¯ä»¥ä½¿ç”¨æ¤åœ°å€è®¿é—®æ‚¨çš„å¸æˆ·ã€‚" #: lms/static/js/student_account/views/account_settings_factory.js #: openedx/features/learner_profile/static/learner_profile/js/learner_profile_factory.js @@ -4795,10 +4747,6 @@ msgstr "您在{platform_name}上的åå—,用户åæ— æ³•æ›´æ”¹ã€‚" msgid "Password" msgstr "密ç " -#: lms/static/js/student_account/views/account_settings_factory.js -msgid "Reset Your Password" -msgstr "é‡ç½®æ‚¨çš„密ç " - #: lms/static/js/student_account/views/account_settings_factory.js msgid "Check your email account for instructions to reset your password." msgstr "查看邮箱ä¸çš„é‡ç½®å¯†ç 指引。" @@ -4854,7 +4802,7 @@ msgstr "首选è¯è¨€" msgid "" "We've sent a confirmation message to {new_secondary_email_address}. Click " "the link in the message to update your secondary email address." -msgstr "" +msgstr "我们已å‘{new_secondary_email_address}å‘é€äº†ç¡®è®¤æ¶ˆæ¯ã€‚ 点击邮件ä¸çš„链接以更新辅助电å邮件地å€ã€‚" #: lms/static/js/student_account/views/account_settings_factory.js msgid "Social Media Links" @@ -4971,26 +4919,6 @@ msgstr "å…³è”ä¸" msgid "Successfully unlinked." msgstr "解绑æˆåŠŸã€‚" -#: lms/static/js/student_account/views/account_settings_view.js -msgid "Account Information" -msgstr "è´¦å·ä¿¡æ¯" - -#: lms/static/js/student_account/views/account_settings_view.js -msgid "Order History" -msgstr "订å•è®°å½•" - -#: lms/static/js/student_account/views/account_settings_view.js -msgid "" -"You have set your language to {beta_language}, which is currently not fully " -"translated. You can help us translate this language fully by joining the " -"Transifex community and adding translations from English for learners that " -"speak {beta_language}." -msgstr "" - -#: lms/static/js/student_account/views/account_settings_view.js -msgid "Help Translate into {beta_language}" -msgstr "" - #: lms/static/js/verify_student/views/image_input_view.js msgid "Image Upload Error" msgstr "å›¾ç‰‡ä¸Šä¼ é”™è¯¯" @@ -5033,6 +4961,8 @@ msgstr "付款" msgid "Checkout with PayPal" msgstr "使用PayPal付款" +#. Translators: 'processor' is the name of a third-party payment processing +#. vendor (example: "PayPal") #: lms/static/js/verify_student/views/make_payment_step_view.js msgid "Checkout with {processor}" msgstr "使用{processor}付款" @@ -5229,10 +5159,12 @@ msgstr "您已æˆåŠŸæ›´æ–°ç›®æ ‡ã€‚" msgid "There was an error updating your goal." msgstr "æ›´æ–°ç›®æ ‡æ—¶å‡ºé”™ã€‚" +#: openedx/features/course_experience/static/course_experience/js/CourseOutline.js #: lms/templates/ccx/schedule.underscore msgid "Expand All" msgstr "展开全部" +#: openedx/features/course_experience/static/course_experience/js/CourseOutline.js #: lms/templates/ccx/schedule.underscore msgid "Collapse All" msgstr "折å 全部" @@ -5370,6 +5302,8 @@ msgstr "æ¤è¯ä¹¦å·²è¢«æ¿€æ´»ä¸”æ£åœ¨ä½¿ç”¨ä¸ã€‚确定è¦ç»§ç»ç¼–辑?" msgid "Yes, allow edits to the active Certificate" msgstr "是的,å…许编辑激活的è¯ä¹¦" +#. Translators: This field pertains to the custom label for a certificate. +#. Translators: this refers to a collection of certificates. #: cms/static/js/certificates/views/certificate_item.js #: cms/static/js/certificates/views/certificates_list.js msgid "certificate" @@ -5379,6 +5313,8 @@ msgstr "è¯ä¹¦" msgid "Set up your certificate" msgstr "设置您的è¯ä¹¦" +#. Translators: This line refers to the initial state of the form when no data +#. has been inserted #: cms/static/js/certificates/views/certificates_list.js msgid "You have not created any certificates yet." msgstr "您尚未创建任何è¯ä¹¦ã€‚" @@ -5415,7 +5351,6 @@ msgstr "%s组" #. Translators: Dictionary used for creation ids that are used in #. default group names. For example: A, B, AA in Group A, #. Group B, ..., Group AA, etc. -#. */ #: cms/static/js/collections/group.js msgid "ABCDEFGHIJKLMNOPQRSTUVWXYZ" msgstr "ABCDEFGHIJKLMNOPQRSTUVWXYZ" @@ -5516,26 +5451,48 @@ msgstr "导入课程时出错" msgid "There was an error with the upload" msgstr "æ–‡ä»¶ä¸Šä¼ é”™è¯¯" +#: cms/static/js/features_jsx/studio/CourseOrLibraryListing.jsx +msgid "Organization:" +msgstr "机构:" + #: cms/static/js/features_jsx/studio/CourseOrLibraryListing.jsx msgid "Course Number:" msgstr "课程编å·ï¼š" +#: cms/static/js/features_jsx/studio/CourseOrLibraryListing.jsx +msgid "Course Run:" +msgstr "课程长度:" + #: cms/static/js/features_jsx/studio/CourseOrLibraryListing.jsx msgid "(Read-only)" msgstr "(åªè¯»ï¼‰" +#: cms/static/js/features_jsx/studio/CourseOrLibraryListing.jsx +msgid "Re-run Course" +msgstr "é‡å¯è¯¾ç¨‹" + +#: cms/static/js/features_jsx/studio/CourseOrLibraryListing.jsx +#: cms/templates/js/show-textbook.underscore +msgid "View Live" +msgstr "查看线上版本" + #: cms/static/js/maintenance/force_publish_course.js msgid "Internal Server Error." msgstr "内部æœåŠ¡å™¨å‡ºé”™" +#. Translators: This is the status of a video upload that is queued +#. waiting for other uploads to complete #: cms/static/js/models/active_video_upload.js msgid "Queued" msgstr "已排队" +#. Translators: This is the status of a video upload that has +#. completed successfully #: cms/static/js/models/active_video_upload.js msgid "Upload completed" msgstr "ä¸Šä¼ å®Œæˆ" +#. Translators: This is the status of a video upload that has failed #: cms/static/js/models/active_video_upload.js msgid "Upload failed" msgstr "ä¸Šä¼ å¤±è´¥" @@ -5906,7 +5863,6 @@ msgstr "导出时å‘生了错误。" #. Translators: 'count' is number of groups that the group #. configuration contains. -#. */ #: cms/static/js/views/group_configuration_details.js msgid "Contains {count} group" msgid_plural "Contains {count} groups" @@ -5919,16 +5875,15 @@ msgstr "未使用" #. Translators: 'count' is number of units that the group #. configuration is used in. -#. */ #. Translators: 'count' is number of locations that the group #. configuration is used in. -#. */ #: cms/static/js/views/group_configuration_details.js #: cms/static/js/views/partition_group_details.js msgid "Used in {count} location" msgid_plural "Used in {count} locations" msgstr[0] "在 {count} 个ä½ç½®ä½¿ç”¨" +#. Translators: this refers to a collection of groups. #: cms/static/js/views/group_configuration_item.js #: cms/static/js/views/group_configurations_list.js msgid "group configuration" @@ -6013,10 +5968,12 @@ msgid "" " Derivatives\"." msgstr "在éµå®ˆä¸Žæœ¬ä½œå“一致的授æƒæ¡æ¬¾çš„å‰æ下,å…许他人å‘è¡Œè¡ç”Ÿä½œå“。该选项ä¸ç¬¦åˆâ€œç¦æ¢æ”¹ä½œâ€çš„规定" +#. Translators: "item_display_name" is the name of the item to be deleted. #: cms/static/js/views/list_item.js msgid "Delete this %(item_display_name)s?" msgstr "è¦åˆ 除该%(item_display_name)så—?" +#. Translators: "item_display_name" is the name of the item to be deleted. #: cms/static/js/views/list_item.js msgid "Deleting this %(item_display_name)s is permanent and cannot be undone." msgstr "å°†æ°¸ä¹…åˆ é™¤è¯¥%(item_display_name)sï¼Œæ— æ³•æ’¤é”€ã€‚" @@ -6109,6 +6066,7 @@ msgstr "基本" msgid "Visibility" msgstr "å¯è§æ€§" +#. Translators: "title" is the name of the current component being edited. #: cms/static/js/views/modals/edit_xblock.js msgid "Editing: {title}" msgstr "æ£åœ¨ç¼–辑:{title}" @@ -6185,6 +6143,8 @@ msgstr "课程大纲" msgid "Date added" msgstr "æ·»åŠ æ—¥æœŸ" +#. Translators: "title" is the name of the current component or unit being +#. edited. #: cms/static/js/views/pages/container.js msgid "Editing access for: %(title)s" msgstr "编辑接入:%(title)s " @@ -6253,6 +6213,9 @@ msgstr "éšè—预览" msgid "Show Previews" msgstr "显示预览" +#. Translators: sample result: +#. "Showing 0-9 out of 25 total, filtered by Images, sorted by Date Added +#. ascending" #: cms/static/js/views/paging_header.js msgid "" "Showing {currentItemRange} out of {totalItemsCount}, filtered by " @@ -6261,6 +6224,9 @@ msgstr "" "在 {totalItemsCount} 外显示 {currentItemRange} ,由 {assetType} 进行ç›é€‰ï¼Œå¹¶æ ¹æ® " "{sortName} å‡åºè¿›è¡Œåˆ†ç±»" +#. Translators: sample result: +#. "Showing 0-9 out of 25 total, filtered by Images, sorted by Date Added +#. descending" #: cms/static/js/views/paging_header.js msgid "" "Showing {currentItemRange} out of {totalItemsCount}, filtered by " @@ -6269,22 +6235,30 @@ msgstr "" "在 {totalItemsCount} 外显示 {currentItemRange},由 {assetType} 进行ç›é€‰ï¼Œå¹¶æ ¹æ® " "{sortName} é™åºè¿›è¡Œåˆ†ç±»" +#. Translators: sample result: +#. "Showing 0-9 out of 25 total, sorted by Date Added ascending" #: cms/static/js/views/paging_header.js msgid "" "Showing {currentItemRange} out of {totalItemsCount}, sorted by {sortName} " "ascending" msgstr "在 {totalItemsCount} ä¸æ˜¾ç¤º {currentItemRange},按 {sortName} å‡åºæŽ’åº" +#. Translators: sample result: +#. "Showing 0-9 out of 25 total, sorted by Date Added descending" #: cms/static/js/views/paging_header.js msgid "" "Showing {currentItemRange} out of {totalItemsCount}, sorted by {sortName} " "descending" msgstr "在 {totalItemsCount} 外显示 {currentItemRange}ï¼Œæ ¹æ® {sortName} é™åºè¿›è¡Œåˆ†ç±»" +#. Translators: turns into "25 total" to be used in other sentences, e.g. +#. "Showing 0-9 out of 25 total". #: cms/static/js/views/paging_header.js msgid "{totalItems} total" msgstr "å…±{totalItems} " +#. Translators: This refers to a content group that can be linked to a student +#. cohort. #: cms/static/js/views/partition_group_item.js #: cms/static/js/views/partition_group_list.js msgid "content group" @@ -6553,6 +6527,7 @@ msgstr "æ·»åŠ ç¼©ç•¥å›¾" msgid "Edit Thumbnail" msgstr "编辑缩略图" +#. Translators: This is a 2 part text which tells the image requirements. #: cms/static/js/views/video_thumbnail.js msgid "" "{InstructionsSpanStart}{videoImageResoultion}{lineBreak} " @@ -6565,6 +6540,7 @@ msgstr "" msgid "Image upload failed" msgstr "å›¾ç‰‡ä¸Šä¼ å¤±è´¥" +#. Translators: This is a 3 part text which tells the image requirements. #: cms/static/js/views/video_thumbnail.js msgid "" "{ReqTextSpanStart}Requirements{spanEnd}{lineBreak}{InstructionsSpanStart}{videoImageResoultion}{lineBreak}" @@ -6573,18 +6549,23 @@ msgstr "" "{ReqTextSpanStart}Requirements{spanEnd}{lineBreak}{InstructionsSpanStart}{videoImageResoultion}{lineBreak}" " {videoImageSupportedFileFormats}{spanEnd}" +#. Translators: message will be like 1280x720 pixels #: cms/static/js/views/video_thumbnail.js msgid "{maxWidth}x{maxHeight} pixels" msgstr "{maxWidth}x{maxHeight} åƒç´ " +#. Translators: message will be like Thumbnail for Arrow.mp4 #: cms/static/js/views/video_thumbnail.js msgid "Thumbnail for {videoName}" msgstr "{videoName} 缩略图" +#. Translators: message will be like Add Thumbnail - Arrow.mp4 #: cms/static/js/views/video_thumbnail.js msgid "Add Thumbnail - {videoName}" msgstr "æ·»åŠ {videoName} 缩略图" +#. Translators: humanizeDuration will be like 10 minutes, an hour and 20 +#. minutes etc #: cms/static/js/views/video_thumbnail.js msgid "Video duration is {humanizeDuration}" msgstr "视频时长 {humanizeDuration}" @@ -6597,6 +6578,7 @@ msgstr "分" msgid "minute" msgstr "分" +#. Translators: message will be like 15 minutes, 1 minute #: cms/static/js/views/video_thumbnail.js msgid "{minutes} {unit}" msgstr "{minutes} {unit}" @@ -6609,10 +6591,13 @@ msgstr "秒" msgid "second" msgstr "秒" +#. Translators: message will be like 20 seconds, 1 second #: cms/static/js/views/video_thumbnail.js msgid "{seconds} {unit}" msgstr "{seconds} {unit}" +#. Translators: `and` will be used to combine both miuntes and seconds like +#. `13 minutes and 45 seconds` #: cms/static/js/views/video_thumbnail.js msgid " and " msgstr "åŠ" @@ -6631,10 +6616,12 @@ msgid "" "{supportedFileFormats}." msgstr "æ¤å›¾ç‰‡æ–‡ä»¶ç±»åž‹ä¸æ”¯æŒã€‚ä»…æ”¯æŒ {supportedFileFormats} æ ¼å¼ã€‚" +#. Translators: maxFileSizeInMB will be like 2 MB. #: cms/static/js/views/video_thumbnail.js msgid "The selected image must be smaller than {maxFileSizeInMB}." msgstr "所选择的图片必须å°äºŽ {maxFileSizeInMB}。" +#. Translators: minFileSizeInKB will be like 2 KB. #: cms/static/js/views/video_thumbnail.js msgid "The selected image must be larger than {minFileSizeInKB}." msgstr "所选择的图片必须大于 {minFileSizeInKB}。" @@ -6689,6 +6676,9 @@ msgstr "设置" msgid "New {component_type}" msgstr "新建 {component_type}" +#. Translators: This message will be added to the front of messages of type +#. warning, +#. e.g. "Warning: this component has not been configured yet". #: cms/static/js/views/xblock_validation.js msgid "Warning" msgstr "è¦å‘Š" @@ -6697,6 +6687,28 @@ msgstr "è¦å‘Š" msgid "Updating Tags" msgstr "æ›´æ–°æ ‡ç¾ä¸" +#: lms/static/js/student_account/views/account_settings_view.js +msgid "Account Information" +msgstr "è´¦å·ä¿¡æ¯" + +#: lms/static/js/student_account/views/account_settings_view.js +msgid "Order History" +msgstr "订å•è®°å½•" + +#: lms/static/js/student_account/views/account_settings_view.js +msgid "" +"You have set your language to {beta_language}, which is currently not fully " +"translated. You can help us translate this language fully by joining the " +"Transifex community and adding translations from English for learners that " +"speak {beta_language}." +msgstr "" +"您已将è¯è¨€è®¾ç½®ä¸º{beta_language},目å‰å°šæœªå®Œå…¨ç¿»è¯‘。 " +"您å¯ä»¥åŠ å…¥Transifex社区,并为使用{beta_language}çš„å¦å‘˜æ·»åŠ 英è¯ç¿»è¯‘,从而帮助我们充分翻译这门è¯è¨€ã€‚" + +#: lms/static/js/student_account/views/account_settings_view.js +msgid "Help Translate into {beta_language}" +msgstr "Help Translate into {beta_language}" + #: cms/templates/js/asset-library.underscore #: cms/templates/js/basic-modal.underscore #: lms/templates/instructor/instructor_dashboard_2/enrollment-code-lookup-links.underscore @@ -7511,12 +7523,16 @@ msgid "Mark Exam As Completed" msgstr "æ ‡è®°è€ƒè¯•å®Œæˆ" #: lms/templates/courseware/proctored-exam-status.underscore -msgid "a timed exam" +msgid "You are taking \"{exam_link}\" as {exam_type}. " msgstr "" +#: lms/templates/courseware/proctored-exam-status.underscore +msgid "a timed exam" +msgstr "计时测验" + #: lms/templates/courseware/proctored-exam-status.underscore msgid "The timer on the right shows the time remaining in the exam." -msgstr "" +msgstr "å³è¾¹çš„计时器显示考试剩下的时间。" #: lms/templates/courseware/proctored-exam-status.underscore msgid "" @@ -7526,15 +7542,15 @@ msgstr "在点击 “结æŸæˆ‘的考试†之å‰ï¼Œæ‚¨å¿…须点击 \"æ交\" #: lms/templates/courseware/proctored-exam-status.underscore msgid "Show More" -msgstr "" +msgstr "显示更多" #: lms/templates/courseware/proctored-exam-status.underscore msgid "Show Less" -msgstr "" +msgstr "查看收起" #: lms/templates/courseware/proctored-exam-status.underscore msgid "Exam timer and end exam button" -msgstr "" +msgstr "考试计时器和结æŸè€ƒè¯•æŒ‰é’®" #: lms/templates/courseware/proctored-exam-status.underscore msgid "End My Exam" @@ -8220,7 +8236,7 @@ msgstr "é‡è®¾å¯†ç " #: lms/templates/student_account/account_settings.underscore msgid "Switch Language Back" -msgstr "" +msgstr "切æ¢è¯è¨€" #: lms/templates/student_account/account_settings.underscore msgid "Account Settings" @@ -8232,7 +8248,12 @@ msgstr "å‘生了一个错误,请é‡æ–°åŠ 载页é¢ã€‚" #: lms/templates/student_account/form_field.underscore msgid "Need help logging in?" -msgstr "" +msgstr "登录时需è¦å¸®åŠ©ï¼Ÿ" + +#: lms/templates/student_account/hinted_login.underscore +#: lms/templates/student_account/login.underscore +msgid "Sign in" +msgstr "登录" #: lms/templates/student_account/hinted_login.underscore #, python-format @@ -8266,8 +8287,9 @@ msgid "Register with Institution/Campus Credentials" msgstr "使用机构/æ ¡å›è´¦å·æ³¨å†Œ" #: lms/templates/student_account/institution_register.underscore -msgid "Register through edX" -msgstr "通过edX注册" +#: lms/templates/student_account/register.underscore +msgid "Create an Account" +msgstr "注册" #: lms/templates/student_account/login.underscore msgid "First time here?" @@ -8346,11 +8368,11 @@ msgstr "密ç 帮助" msgid "" "Please enter your log-in or recovery email address below and we will send " "you an email with instructions." -msgstr "" +msgstr "请在下é¢è¾“入您的登录或验è¯é‚®ç®±åœ°å€ï¼Œæˆ‘们会å‘您å‘é€ä¸€å°åŒ…å«è¯´æ˜Žçš„电å邮件。" #: lms/templates/student_account/password_reset.underscore msgid "Recover my password" -msgstr "" +msgstr "æ¢å¤æˆ‘的密ç " #: lms/templates/student_account/register.underscore msgid "Already have an {platformName} account?" @@ -8373,10 +8395,6 @@ msgstr "使用 %(providerName)s 创建账å·ã€‚" msgid "or create a new one here" msgstr "或在æ¤åˆ›å»ºä¸€ä¸ªæ–°è´¦å·" -#: lms/templates/student_account/register.underscore -msgid "Create an Account" -msgstr "注册" - #: lms/templates/student_account/register.underscore msgid "Support education research by providing additional information" msgstr "请æ供您的其他信æ¯ï¼Œä»¥æ”¯æŒæˆ‘ä»¬çš„æ•™è‚²ç ”ç©¶è°ƒæŸ¥" @@ -9415,7 +9433,7 @@ msgstr "未分级" #: cms/templates/js/course-outline.underscore msgid "Onboarding Exam" -msgstr "" +msgstr "å…¥èŒè€ƒè¯•" #: cms/templates/js/course-outline.underscore msgid "Practice proctored Exam" @@ -9441,7 +9459,7 @@ msgstr "显示å称" #: cms/templates/js/course-outline.underscore msgid "Proctoring Settings" -msgstr "" +msgstr "监考设置" #: cms/templates/js/course-outline.underscore msgid "Configure" @@ -10126,10 +10144,6 @@ msgstr "如果节ä¸è®¾æœ‰æˆªæ¢æ—¥æœŸï¼Œé‚£ä¹ˆåªè¦å¦å‘˜æ交ç”案至评分 msgid "PDF Chapters" msgstr "PDFå„ç« èŠ‚" -#: cms/templates/js/show-textbook.underscore -msgid "View Live" -msgstr "查看在线版" - #: cms/templates/js/signatory-details.underscore #: cms/templates/js/signatory-editor.underscore msgid "Signatory" @@ -10281,7 +10295,7 @@ msgstr "监考下的考试是计时的,并且æ¯ä¸ªå¦ç”Ÿçš„考试过程将被 #: cms/templates/js/timed-examination-preference-editor.underscore msgid "Onboarding" -msgstr "" +msgstr "å…¥èŒ" #: cms/templates/js/timed-examination-preference-editor.underscore msgid "" @@ -10290,6 +10304,7 @@ msgid "" "profile step prior to taking a proctored exam. Profile reviews take 2+ " "business days." msgstr "" +"使用入èŒåŸ¹è®å¦ä¹ 者介ç»ç»™ç›‘考,验è¯ä»–们的身份,并创建一个é…置文件上岗。 å¦å‘˜å¿…须在å‚åŠ ç›‘è€ƒè€ƒè¯•ä¹‹å‰å®Œæˆå…¥èŒèµ„æ ¼ã€‚ 个人资料评论需è¦2+个工作日。" #: cms/templates/js/timed-examination-preference-editor.underscore msgid "Practice Proctored" diff --git a/conf/locale/zh_TW/LC_MESSAGES/django.mo b/conf/locale/zh_TW/LC_MESSAGES/django.mo index 932f4ddbfaed29f76c11e9283d0672d435a482c1..dfa4e0d810a8eda7e5840f17580ae7006c7a39c4 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 076ecae7210d6a6a612d5369405d9a8cb0920dfb..a30d89d4e12337b2aadbffa457555ee75917bb02 100644 --- a/conf/locale/zh_TW/LC_MESSAGES/django.po +++ b/conf/locale/zh_TW/LC_MESSAGES/django.po @@ -174,7 +174,7 @@ msgid "" msgstr "" "Project-Id-Version: 0.1a\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2019-04-22 10:50+0000\n" +"POT-Creation-Date: 2019-06-09 20:42+0000\n" "PO-Revision-Date: 2019-01-20 20:43+0000\n" "Last-Translator: Waheed Ahmed <waheed@edx.org>, 2019\n" "Language-Team: Chinese (Taiwan) (https://www.transifex.com/open-edx/teams/6205/zh_TW/)\n" @@ -479,27 +479,6 @@ msgstr "é¸æ“‡äº†ç„¡æ•ˆçš„金é¡ã€‚" msgid "No selected price or selected price is too low." msgstr "沒有é¸æ“‡åƒ¹æ ¼æˆ–é¸æ“‡çš„åƒ¹æ ¼å¤ªä½Žã€‚" -#: common/djangoapps/django_comment_common/models.py -msgid "Administrator" -msgstr "管ç†å“¡" - -#: common/djangoapps/django_comment_common/models.py -msgid "Moderator" -msgstr "æ¿ä¸»" - -#: common/djangoapps/django_comment_common/models.py -msgid "Group Moderator" -msgstr "" - -#: common/djangoapps/django_comment_common/models.py -msgid "Community TA" -msgstr "社群助教" - -#: common/djangoapps/django_comment_common/models.py -#: lms/djangoapps/instructor/paidcourse_enrollment_report.py -msgid "Student" -msgstr "å¸ç”Ÿ" - #: common/djangoapps/student/admin.py msgid "User profile" msgstr "使用者個人檔案" @@ -556,8 +535,8 @@ msgid "A properly formatted e-mail is required" msgstr "一個æ£ç¢ºæ ¼å¼çš„é›»å郵件是必需的" #: common/djangoapps/student/forms.py -msgid "Your legal name must be a minimum of two characters long" -msgstr "您的åç¨±å¿…é ˆè‡³å°‘æœ‰å…©å€‹å—å…ƒ" +msgid "Your legal name must be a minimum of one character long" +msgstr "" #: common/djangoapps/student/forms.py #, python-format @@ -929,11 +908,11 @@ msgstr "您尋找的課程已於 {date} çµæŸè¨»å†Šã€‚" #: common/djangoapps/student/views/management.py msgid "No inactive user with this e-mail exists" -msgstr "本郵件地å€æ²’有éžå•Ÿç”¨ç”¨æˆ¶ã€‚" +msgstr "" #: common/djangoapps/student/views/management.py msgid "Unable to send reactivation email" -msgstr "無法發é€å†æ¬¡å•Ÿå‹•çš„é›»å郵件。" +msgstr "" #: common/djangoapps/student/views/management.py msgid "Course id not specified" @@ -1078,6 +1057,12 @@ msgid "" "\"Institution\" login providers." msgstr "二級供應商都顯示ä¸é‚£éº¼æ˜Žé¡¯ï¼Œåœ¨â€œæ©Ÿæ§‹â€è¨»å†Šå•†çš„å–®ç¨åˆ—表。" +#: common/djangoapps/third_party_auth/models.py +msgid "" +"optional. If this provider is an Organization, this attribute can be used " +"reference users in that Organization" +msgstr "" + #: common/djangoapps/third_party_auth/models.py msgid "The Site that this provider configuration belongs to." msgstr "æ¤æ供者è¨å®šæ¸å±¬çš„網站。" @@ -2790,13 +2775,13 @@ msgstr "討論主題圖" msgid "" "Enter discussion categories in the following format: \"CategoryName\": " "{\"id\": \"i4x-InstitutionName-CourseNumber-course-CourseRun\"}. For " -"example, one discussion category may be \"Lydian Mode\": {\"id\": \"i4x-" -"UniversityX-MUS101-course-2015_T1\"}. The \"id\" value for each category " -"must be unique. In \"id\" values, the only special characters that are " -"supported are underscore, hyphen, and period. You can also specify a " +"example, one discussion category may be \"Lydian Mode\": {\"id\": " +"\"i4x-UniversityX-MUS101-course-2015_T1\"}. The \"id\" value for each " +"category must be unique. In \"id\" values, the only special characters that " +"are supported are underscore, hyphen, and period. You can also specify a " "category as the default for new posts in the Discussion page by setting its " -"\"default\" attribute to true. For example, \"Lydian Mode\": {\"id\": \"i4x-" -"UniversityX-MUS101-course-2015_T1\", \"default\": true}." +"\"default\" attribute to true. For example, \"Lydian Mode\": {\"id\": " +"\"i4x-UniversityX-MUS101-course-2015_T1\", \"default\": true}." msgstr "" #: common/lib/xmodule/xmodule/course_module.py @@ -3298,8 +3283,8 @@ msgid "" "sites can link to. URLs must be fully qualified. For example: " "http://www.edx.org/course/Introduction-to-MOOCs-ITM001" msgstr "" -"如果課程é¢æ¿çš„社交分享和自訂課程網å€è¢«å•Ÿç”¨ï¼Œæ‚¨å°±å¯ä»¥æ供一個網å€(åƒæ˜¯åœ¨èª²ç¨‹é—œæ–¼é é¢çš„網å€)讓社交媒體å¯ä»¥é€£çµåˆ°å®ƒã€‚網å€å¿…é ˆå®Œå…¨åˆæ ¼ã€‚例如:http://www.edx.org/course" -"/Introduction-to-MOOCs-ITM001" +"如果課程é¢æ¿çš„社交分享和自訂課程網å€è¢«å•Ÿç”¨ï¼Œæ‚¨å°±å¯ä»¥æ供一個網å€(åƒæ˜¯åœ¨èª²ç¨‹é—œæ–¼é é¢çš„網å€)讓社交媒體å¯ä»¥é€£çµåˆ°å®ƒã€‚網å€å¿…é ˆå®Œå…¨åˆæ ¼ã€‚例如:http://www.edx.org/course/Introduction-" +"to-MOOCs-ITM001" #: common/lib/xmodule/xmodule/course_module.py cms/templates/settings.html msgid "Course Language" @@ -4946,17 +4931,17 @@ msgstr "請檢查輸入內容的語法。" msgid "Take free online courses at edX.org" msgstr "" -#. Translators: 'EdX', 'edX', and 'Open edX' are trademarks of 'edX Inc.'. +#. Translators: 'edX' and 'Open edX' are trademarks of 'edX Inc.'. #. Please do not translate any of these trademarks and company names. #: lms/djangoapps/branding/api.py #, python-brace-format msgid "" -"© {org_name}. All rights reserved except where noted. EdX, Open edX and " -"their respective logos are trademarks or registered trademarks of edX Inc." +"© {org_name}. All rights reserved except where noted. edX, Open edX and " +"their respective logos are registered trademarks of edX Inc." msgstr "" #. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# -#. Translators: 'Open edX' is a brand, please keep this untranslated. +#. Translators: 'Open edX' is a trademark, please keep this untranslated. #. See http://openedx.org for more information. #. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# #. Translators: 'Open edX' is a brand, please keep this untranslated. See @@ -6010,6 +5995,18 @@ msgstr "您的è‰æ›¸å·²å¯å–å¾—" msgid "To see course content, {sign_in_link} or {register_link}." msgstr "" +#: lms/djangoapps/courseware/views/views.py +#: openedx/features/course_experience/views/course_home_messages.py +#, python-brace-format +msgid "{sign_in_link} or {register_link}." +msgstr "" + +#: lms/templates/header/navbar-not-authenticated.html +#: lms/templates/navigation/navbar-not-authenticated.html +#: themes/edx.org/lms/templates/header/navbar-not-authenticated.html +msgid "Sign in" +msgstr "登入" + #: lms/djangoapps/courseware/views/views.py #, python-brace-format msgid "" @@ -6115,8 +6112,8 @@ msgstr "路徑{0}ä¸å˜åœ¨ï¼Œè«‹å»ºç«‹å®ƒï¼Œæˆ–者用GIT_REPO_DIRé…ç½®ä¸åŒçš„ #: lms/djangoapps/dashboard/git_import.py msgid "" "Non usable git url provided. Expecting something like: " -"git@github.com:mitocw/edx4edx_lite.git" -msgstr "è¨ç½®äº†ä¸å¯ç”¨çš„git URL。 é 期是這樣的:git@github.com:mitocw/edx4edx_lite.git" +"git@github.com:edx/edx4edx_lite.git" +msgstr "" #: lms/djangoapps/dashboard/git_import.py msgid "Unable to get git log" @@ -6296,47 +6293,47 @@ msgstr "角色" msgid "full_name" msgstr "full_name" -#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.html -#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.txt -#, python-format -msgid "%(comment_username)s replied to <b>%(thread_title)s</b>:" -msgstr "" - -#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.html -#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.txt -msgid "View discussion" -msgstr "" - -#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/subject.txt -#, python-format -msgid "Response to %(thread_title)s" -msgstr "" - -#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/discussion/django_comment_client/base/views.py msgid "Title can't be empty" msgstr "標題ä¸å¯ç©ºç™½" -#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/discussion/django_comment_client/base/views.py msgid "Body can't be empty" msgstr "內文ä¸å¯ç©ºç™½" -#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/discussion/django_comment_client/base/views.py msgid "Topic doesn't exist" msgstr "主題並ä¸å˜åœ¨" -#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/discussion/django_comment_client/base/views.py msgid "Comment level too deep" msgstr "評論階層éŽæ·±" -#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/discussion/django_comment_client/base/views.py msgid "" "Error uploading file. Please contact the site administrator. Thank you." msgstr "上傳文件出ç¾å•é¡Œï¼Œè«‹è¯çµ¡ç¶²ç«™ç®¡ç†å“¡ï¼Œè¬è¬ã€‚" -#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/discussion/django_comment_client/base/views.py msgid "Good" msgstr "好" +#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.html +#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.txt +#, python-format +msgid "%(comment_username)s replied to <b>%(thread_title)s</b>:" +msgstr "" + +#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.html +#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.txt +msgid "View discussion" +msgstr "" + +#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/subject.txt +#, python-format +msgid "Response to %(thread_title)s" +msgstr "" + #: lms/djangoapps/edxnotes/helpers.py msgid "EdxNotes Service is unavailable. Please try again in a few minutes." msgstr "EdxNoteså°šä¸å¯ä»¥ä½¿ç”¨ã€‚è«‹ç¨å€™æ•¸åˆ†é˜å†è©¦ã€‚" @@ -6449,6 +6446,11 @@ msgstr "{platform_name} 工作人員" msgid "Course Staff" msgstr "課程人員" +#: lms/djangoapps/instructor/paidcourse_enrollment_report.py +#: openedx/core/djangoapps/django_comment_common/models.py +msgid "Student" +msgstr "å¸ç”Ÿ" + #: lms/djangoapps/instructor/paidcourse_enrollment_report.py #: lms/templates/preview_menu.html #: lms/templates/instructor/instructor_dashboard_2/membership.html @@ -7231,10 +7233,6 @@ msgstr "單元 {0} 並沒有截æ¢æ—¥å¯å»¶æœŸã€‚" msgid "An extended due date must be later than the original due date." msgstr "較長的截æ¢æ—¥æœŸå¿…é ˆè¦æ¯”原先截æ¢æ—¥æœŸé‚„è¦å¾Œé¢ã€‚" -#: lms/djangoapps/instructor/views/tools.py -msgid "No due date extension is set for that student and unit." -msgstr "未å°å¸ç”Ÿå’Œå–®å…ƒåšå»¶é•·æˆªæ¢æ—¥æœŸè¨å®šã€‚" - #. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# #. Translators: This label appears above a field on the registration form #. meant to hold the user's full name. @@ -7688,6 +7686,10 @@ msgstr "" msgid "My Notes" msgstr "我的ç†è¨˜" +#: lms/djangoapps/program_enrollments/models.py +msgid "One of user or external_user_key must not be null." +msgstr "" + #: lms/djangoapps/shoppingcart/models.py msgid "Order Payment Confirmation" msgstr "訂單付款確èª" @@ -8723,8 +8725,8 @@ msgstr "找ä¸åˆ°ä½¿ç”¨è€…的個人檔案" #: lms/djangoapps/verify_student/views.py #, python-brace-format -msgid "Name must be at least {min_length} characters long." -msgstr "ä½¿ç”¨è€…å¸³è™Ÿå¿…é ˆæ˜¯è‡³å°‘æœ‰{min_length}å—長。" +msgid "Name must be at least {min_length} character long." +msgstr "" #: lms/djangoapps/verify_student/views.py msgid "Image data is not valid." @@ -9155,8 +9157,9 @@ msgid "Hello %(full_name)s," msgstr "" #: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt #, python-format -msgid "Your %(platform_name)s ID verification has expired.\" " +msgid "Your %(platform_name)s ID verification has expired. " msgstr "" #: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html @@ -9207,11 +9210,6 @@ msgstr "" msgid "Hello %(full_name)s, " msgstr "" -#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt -#, python-format -msgid "Your %(platform_name)s ID verification has expired. " -msgstr "" - #: lms/templates/verify_student/edx_ace/verificationexpiry/email/subject.txt #, python-format msgid "Your %(platform_name)s Verification has Expired" @@ -9761,15 +9759,6 @@ msgstr "èˆ‡é€™ä½ API 使用者相關的網站 URL。" msgid "The reason this user wants to access the API." msgstr "這ä½ä½¿ç”¨è€…想è¦å˜å– API çš„åŽŸå› ã€‚" -#: openedx/core/djangoapps/api_admin/models.py -#, python-brace-format -msgid "API access request from {company}" -msgstr "{company} 發出 API å˜å–è¦æ±‚" - -#: openedx/core/djangoapps/api_admin/models.py -msgid "API access request" -msgstr "API å˜å–è¦æ±‚" - #: openedx/core/djangoapps/api_admin/widgets.py #, python-brace-format msgid "" @@ -10093,6 +10082,22 @@ msgstr "" msgid "This is a test error" msgstr "" +#: openedx/core/djangoapps/django_comment_common/models.py +msgid "Administrator" +msgstr "管ç†å“¡" + +#: openedx/core/djangoapps/django_comment_common/models.py +msgid "Moderator" +msgstr "æ¿ä¸»" + +#: openedx/core/djangoapps/django_comment_common/models.py +msgid "Group Moderator" +msgstr "" + +#: openedx/core/djangoapps/django_comment_common/models.py +msgid "Community TA" +msgstr "社群助教" + #: openedx/core/djangoapps/embargo/forms.py #: openedx/core/djangoapps/verified_track_content/forms.py msgid "COURSE NOT FOUND. Please check that the course ID is valid." @@ -10641,8 +10646,11 @@ msgid "Specialty" msgstr "" #: openedx/core/djangoapps/user_api/accounts/utils.py +#, python-brace-format msgid "" -" Make sure that you are providing a valid username or a URL that contains \"" +"Make sure that you are providing a valid username or a URL that contains " +"\"{url_stub}\". To remove the link from your edX profile, leave this field " +"blank." msgstr "" #: openedx/core/djangoapps/user_api/accounts/views.py @@ -10779,11 +10787,11 @@ msgstr "æ‚¨å¿…é ˆåŒæ„ {platform_name} çš„{terms_of_service}。" #: openedx/core/djangoapps/user_api/api.py #, python-brace-format msgid "" -"By creating an account with {platform_name}, you agree to " -"abide by our {platform_name} " +"By creating an account, you agree to the " "{terms_of_service_link_start}{terms_of_service}{terms_of_service_link_end}" -" and agree to our {privacy_policy_link_start}Privacy " -"Policy{privacy_policy_link_end}." +" and you acknowledge that {platform_name} and each Member " +"process your personal data in accordance with the " +"{privacy_policy_link_start}Privacy Policy{privacy_policy_link_end}." msgstr "" #. Translators: "Terms of service" is a legal document users must agree to @@ -11212,17 +11220,18 @@ msgstr "" msgid "Reviews" msgstr "" +#: openedx/features/course_experience/utils.py +#, no-python-format, python-brace-format +msgid "" +"{banner_open}{percentage}% off your first upgrade.{span_close} Discount " +"automatically applied.{div_close}" +msgstr "" + #: openedx/features/course_experience/views/course_home_messages.py #, python-brace-format msgid "{sign_in_link} or {register_link} and then enroll in this course." msgstr "" -#: lms/templates/header/navbar-not-authenticated.html -#: lms/templates/navigation/navbar-not-authenticated.html -#: themes/edx.org/lms/templates/header/navbar-not-authenticated.html -msgid "Sign in" -msgstr "登入" - #: openedx/features/course_experience/views/course_home_messages.py #, python-brace-format msgid "Welcome to {course_display_name}" @@ -11262,6 +11271,29 @@ msgstr "" msgid "Set goal to: {goal_text}" msgstr "" +#: openedx/features/discounts/admin.py +msgid "" +"These define the context to disable lms-controlled discounts on. If no " +"values are set, then the configuration applies globally. If a single value " +"is set, then the configuration applies to all courses within that context. " +"At most one value can be set at a time.<br>If multiple contexts apply to a " +"course (for example, if configuration is specified for the course " +"specifically, and for the org that the course is in, then the more specific " +"context overrides the more general context." +msgstr "" + +#: openedx/features/discounts/admin.py +msgid "" +"If any of these values is left empty or \"Unknown\", then their value at " +"runtime will be retrieved from the next most specific context that applies. " +"For example, if \"Disabled\" is left as \"Unknown\" in the course context, " +"then that course will be Disabled only if the org that it is in is Disabled." +msgstr "" + +#: openedx/features/discounts/models.py +msgid "Disabled" +msgstr "" + #: openedx/features/enterprise_support/api.py #, python-brace-format msgid "Enrollment in {course_title} was not complete." @@ -11371,8 +11403,8 @@ msgstr "" #: cms/djangoapps/contentstore/git_export_utils.py msgid "" "Non writable git url provided. Expecting something like: " -"git@github.com:mitocw/edx4edx_lite.git" -msgstr "您所æ供的 Git URL 是唯讀的,æ£å¸¸çš„範例åƒæ˜¯ git@github.com:mitocw/edx4edx_lite.git" +"git@github.com:edx/edx4edx_lite.git" +msgstr "" #: cms/djangoapps/contentstore/git_export_utils.py msgid "" @@ -12199,6 +12231,15 @@ msgstr "é‡ç½®" msgid "Legal" msgstr "åˆæ³•" +#. Translators: 'edX' and 'Open edX' are trademarks of 'edX Inc.'. Please do +#. not translate any of these trademarks and company names. +#: cms/templates/widgets/footer.html +#: themes/red-theme/lms/templates/footer.html +msgid "" +"edX, Open edX, and the edX and Open edX logos are registered trademarks of " +"{link_start}edX Inc.{link_end}" +msgstr "" + #: cms/templates/widgets/header.html lms/templates/header/header.html #: lms/templates/navigation/navigation.html #: lms/templates/widgets/footer-language-selector.html @@ -12584,6 +12625,10 @@ msgstr "除錯:" msgid "External Authentication failed" msgstr "外部èªè‰å¤±æ•—" +#: lms/templates/footer.html +msgid "organization logo" +msgstr "" + #: lms/templates/forgot_password_modal.html msgid "" "Please enter your e-mail address below, and we will e-mail instructions for " @@ -12773,17 +12818,15 @@ msgstr "" msgid "Search for a course" msgstr "æœå°‹èª²ç¨‹" -#. Translators: 'Open edX' is a registered trademark, please keep this -#. untranslated. See http://open.edx.org for more information. -#: lms/templates/index_overlay.html -msgid "Welcome to the Open edX{registered_trademark} platform!" -msgstr "æ¡è¿Žä½¿ç”¨ Open edX{registered_trademark} å¹³å°!" +#: lms/templates/index_overlay.html lms/templates/register-sidebar.html +msgid "Welcome to {platform_name}" +msgstr "æ¡è¿Žä¾†åˆ°{platform_name}" #. Translators: 'Open edX' is a registered trademark, please keep this #. untranslated. See http://open.edx.org for more information. #: lms/templates/index_overlay.html -msgid "It works! This is the default homepage for this Open edX instance." -msgstr "æ£å¸¸å·¥ä½œä¸ï¼é€™æ˜¯é è¨çš„首é 。" +msgid "It works! Powered by Open edX{registered_trademark}" +msgstr "" #: lms/templates/invalid_email_key.html msgid "Invalid email change key" @@ -13068,6 +13111,10 @@ msgstr "儲å˜æ‚¨çš„ç”案" msgid "Reset your answer" msgstr "" +#: lms/templates/problem.html +msgid "Answers are displayed within the problem" +msgstr "" + #: lms/templates/problem_notifications.html msgid "Next Hint" msgstr "下一個æ示" @@ -13260,10 +13307,6 @@ msgstr "已經註冊éŽäº†ï¼Ÿ" msgid "Log in" msgstr "登入" -#: lms/templates/register-sidebar.html -msgid "Welcome to {platform_name}" -msgstr "æ¡è¿Žä¾†åˆ°{platform_name}" - #: lms/templates/register-sidebar.html msgid "" "Registering with {platform_name} gives you access to all of our current and " @@ -13618,11 +13661,6 @@ msgstr "課程編號或目錄" msgid "Delete course from site" msgstr "從網站ä¸åˆªé™¤èª²ç¨‹" -#. Translators: A version number appears after this string -#: lms/templates/sysadmin_dashboard.html -msgid "Platform Version" -msgstr "å¹³å°ç‰ˆæœ¬" - #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Page {current_page} of {total_pages}" msgstr "{total_pages}ä¸{current_page}é é¢" @@ -14874,6 +14912,20 @@ msgstr "載入訂單ä¸..." msgid "Please wait while we retrieve your order details." msgstr "è«‹ç¨å€™ï¼Œæˆ‘們æ£åœ¨å–得您的訂單資訊。" +#: lms/templates/course_modes/_upgrade_button.html +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/_upgrade_button.html +#: themes/edx.org/lms/templates/course_modes/choose.html +msgid "Pursue the Verified Track" +msgstr "" + +#: lms/templates/course_modes/_upgrade_button.html +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/_upgrade_button.html +#: themes/edx.org/lms/templates/course_modes/choose.html +msgid "Pursue a Verified Certificate" +msgstr "" + #: lms/templates/course_modes/choose.html #: themes/edx.org/lms/templates/course_modes/choose.html msgid "Enroll In {course_name} | Choose Your Track" @@ -14955,16 +15007,6 @@ msgid "" "or post it directly on LinkedIn" msgstr "" -#: lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -msgid "Pursue a Verified Certificate" -msgstr "" - -#: lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -msgid "Pursue the Verified Track" -msgstr "" - #: lms/templates/course_modes/choose.html #: themes/edx.org/lms/templates/course_modes/choose.html msgid "" @@ -15071,6 +15113,10 @@ msgstr "" msgid "An error occurred. Please try again later." msgstr "發生錯誤。請ç¨å¾Œå†è©¦ä¸€æ¬¡ã€‚" +#: lms/templates/courseware/course_about.html +msgid "An error has occurred. Please ensure that you are logged in to enroll." +msgstr "" + #: lms/templates/courseware/course_about.html msgid "You are enrolled in this course" msgstr "您åƒåŠ æ¤èª²ç¨‹" @@ -15211,7 +15257,6 @@ msgstr "å°æœç´¢ç¯„åœ" #: lms/templates/courseware/courseware-chromeless.html #: lms/templates/courseware/courseware.html #: openedx/features/course_bookmarks/templates/course_bookmarks/course-bookmarks.html -#: openedx/features/learner_analytics/templates/learner_analytics/dashboard.html msgid "{course_number} Courseware" msgstr "{course_number}課程" @@ -15440,8 +15485,8 @@ msgid "View Grading in studio" msgstr "在Studioä¸æª¢è¦–評分" #: lms/templates/courseware/progress.html -msgid "Course Progress for Student '{username}' ({email})" -msgstr "å¸ç”Ÿ '{username}' ({email}) 的課程å¸ç¿’進度" +msgid "Course Progress for '{username}' ({email})" +msgstr "" #: lms/templates/courseware/progress.html msgid "View Certificate" @@ -17311,10 +17356,8 @@ msgstr "å ±å‘Šå·²å¯ä¾›ä¸‹è¼‰" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The reports listed below are available for download. A link to every report " -"remains available on this page, identified by the UTC date and time of " -"generation. Reports are not deleted, so you will always be able to access " -"previously generated reports from this page." +"The reports listed below are available for download, identified by UTC date " +"and time of generation." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -17327,11 +17370,13 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"{strong_start}Note{strong_end}: To keep student data secure, you cannot save" -" or email these links for direct access. Copies of links expire within 5 " -"minutes." +"{strong_start}Note{strong_end}: {ul_start}{li_start}To keep student data " +"secure, you cannot save or email these links for direct access. Copies of " +"links expire within 5 minutes.{li_end}{li_start}Report files are deleted 90 " +"days after generation. If you will need access to old reports, download and " +"store the files, in accordance with your institution's data security " +"policies.{li_end}{ul_end}" msgstr "" -"{strong_start}注æ„{strong_end}:為了確ä¿å¸ç¿’者個資安全,您ä¸èƒ½å„²å˜æˆ–通éŽé›»å郵件發é€é€™äº›é€£çµä¸¦ç›´æŽ¥è¨ªå•ã€‚複製的連çµå°‡æ–¼5分é˜å¾Œå¤±æ•ˆã€‚" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Enrollment Codes" @@ -17706,10 +17751,10 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "" -"In this section, you have the ability to grant extensions on specific units " -"to individual students. Please note that the latest date is always taken; " -"you cannot use this tool to make an assignment due earlier for a particular " -"student." +"In this section, you have the ability to grant extensions on specific " +"subsections to individual students. Please note that the latest date is " +"always taken; you cannot use this tool to make an assignment due earlier for" +" a particular student." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html @@ -17722,7 +17767,7 @@ msgid "Student Email or Username" msgstr "å¸ç”Ÿçš„é›»å郵件或使用者帳號" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -msgid "Choose the graded unit:" +msgid "Choose the graded subsection:" msgstr "" #. Translators: "format_string" is the string MM/DD/YYYY HH:MM, as that is the @@ -17733,6 +17778,10 @@ msgid "" "{format_string})." msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Reason for extension" +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Change due date for student" msgstr "修改å¸ç”Ÿçš„çµæŸæ™‚é–“" @@ -17743,15 +17792,15 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "" -"Here you can see what extensions have been granted on particular units or " -"for a particular student." +"Here you can see what extensions have been granted on particular subsection " +"or for a particular student." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "" -"Choose a graded unit and click the button to obtain a list of all students " -"who have extensions for the given unit." -msgstr "é¸æ“‡ä¸€å€‹è©•åˆ†å–®å…ƒï¼Œç„¶å¾Œé»žæ“ŠæŒ‰éˆ•ä¾†å–得所有å¸ç”Ÿä¸åœ¨å–®å…ƒä¸æœ‰å»¶æœŸæƒ…æ³çš„列表。" +"Choose a graded subsection and click the button to obtain a list of all " +"students who have extensions for the given subsection." +msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "List all students with due date extensions" @@ -17772,8 +17821,12 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "" "Resetting a problem's due date rescinds a due date extension for a student " -"on a particular unit. This will revert the due date for the student back to " -"the problem's original due date." +"on a particular subsection. This will revert the due date for the student " +"back to the problem's original due date." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Reason for reset" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html @@ -19773,10 +19826,6 @@ msgstr "" msgid "Explore journals and courses" msgstr "" -#: openedx/features/learner_analytics/templates/learner_analytics/dashboard.html -msgid "My Stats (Beta)" -msgstr "" - #. Translators: this section lists all the third-party authentication #. providers #. (for example, Google and LinkedIn) the user can link with or unlink from @@ -19874,7 +19923,7 @@ msgid "© 2012–{year} edX Inc. " msgstr "" #: themes/edx.org/lms/templates/footer.html -msgid "EdX, Open edX, and MicroMasters are registered trademarks of edX Inc. " +msgid "edX, Open edX, and MicroMasters are registered trademarks of edX Inc. " msgstr "" #: themes/edx.org/lms/templates/certificates/_about-accomplishments.html @@ -19940,7 +19989,7 @@ msgstr "" #: themes/edx.org/lms/templates/certificates/_accomplishment-footer.html msgid "" "All rights reserved except where noted. edX, Open edX and the edX and Open " -"edX logos are registered trademarks or trademarks of edX Inc." +"edX logos are registered trademarks of edX Inc." msgstr "" #: themes/edx.org/lms/templates/course_modes/choose.html @@ -19963,14 +20012,6 @@ msgstr "尋找課程" msgid "Schools & Partners" msgstr "è¯ç›Ÿå¤¥ä¼´" -#. Translators: 'EdX', 'edX', and 'Open edX' are trademarks of 'edX Inc.'. -#. Please do not translate any of these trademarks and company names. -#: themes/red-theme/lms/templates/footer.html -msgid "" -"EdX, Open edX, and the edX and Open edX logos are registered trademarks or " -"trademarks of {link_start}edX Inc.{link_end}" -msgstr "" - #: themes/red-theme/lms/templates/footer.html msgid "" "{tos_link_start}Terms of Service{tos_link_end} and {honor_link_start}Honor " @@ -22952,11 +22993,10 @@ msgid "" " any more email from us. Please do not reply to this e-mail; if you require " "assistance, check the help section of the {studio_name} web site." msgstr "" -"如果您沒發出éŽä»»ä½•è«‹æ±‚,則您ä¸éœ€è¦åšä»»ä½•äº‹æƒ…;您將ä¸æœƒå†æ”¶åˆ°ä»»ä½•ä¾†è‡ªæˆ‘們的電å郵件。如果您需è¦å¹«åŠ©ï¼Œè«‹ä¸è¦å›žè¦†æ¤é›»å郵件,請ç€è¦½{studio_name}網站。" #: cms/templates/emails/activation_email_subject.txt msgid "Your account for {studio_name}" -msgstr "您的帳號為{studio_name}" +msgstr "" #: cms/templates/emails/course_creator_admin_subject.txt msgid "{email} has requested {studio_name} course creator privileges on edge" @@ -23096,14 +23136,6 @@ msgstr "" msgid "LMS" msgstr "" -#. Translators: 'EdX', 'edX', 'Studio', and 'Open edX' are trademarks of 'edX -#. Inc.'. Please do not translate any of these trademarks and company names. -#: cms/templates/widgets/footer.html -msgid "" -"EdX, Open edX, Studio, and the edX and Open edX logos are registered " -"trademarks or trademarks of {link_start}edX Inc.{link_end}" -msgstr "" - #: cms/templates/widgets/header.html msgid "Current Course:" msgstr "ç¾åœ¨çš„課程" diff --git a/conf/locale/zh_TW/LC_MESSAGES/djangojs.mo b/conf/locale/zh_TW/LC_MESSAGES/djangojs.mo index 9e28df5433741ed8e3235e0aa7ed23a18f727e8c..80006961d83630266d7ccc78f48a2d5ddc4bd317 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/lms/djangoapps/branding/api.py b/lms/djangoapps/branding/api.py index 671ee63e00d66d0bbfec984f5f8f8e86a30b38ad..7cb8409e210c8e675ab32fb57f42533be22bf40e 100644 --- a/lms/djangoapps/branding/api.py +++ b/lms/djangoapps/branding/api.py @@ -587,12 +587,6 @@ def get_about_url(): def get_home_url(): """ - Lookup and return home page url, lookup is performed in the following order - - 1. return marketing root URL, If marketing is enabled - 2. Otherwise return dashboard URL. + Return Dashboard page url """ - if settings.FEATURES.get('ENABLE_MKTG_SITE', False): - return marketing_link('ROOT') - return reverse('dashboard') diff --git a/lms/djangoapps/branding/tests/test_api.py b/lms/djangoapps/branding/tests/test_api.py index 883fe4ee5d7f6a59c5cb145ae6cfa5898d8eb39c..23ee29cf542c7307a92e563418a1b6a0f5b7dff9 100644 --- a/lms/djangoapps/branding/tests/test_api.py +++ b/lms/djangoapps/branding/tests/test_api.py @@ -37,18 +37,10 @@ class TestHeader(TestCase): self.assertEqual(logo_url, cdn_url) - def test_home_url_with_mktg_disabled(self): + def test_home_url(self): expected_url = get_home_url() self.assertEqual(reverse('dashboard'), expected_url) - @mock.patch.dict('django.conf.settings.FEATURES', {'ENABLE_MKTG_SITE': True}) - @mock.patch.dict('django.conf.settings.MKTG_URLS', { - "ROOT": "https://edx.org", - }) - def test_home_url_with_mktg_enabled(self): - expected_url = get_home_url() - self.assertEqual(marketing_link('ROOT'), expected_url) - class TestFooter(TestCase): """Test retrieving the footer. """ diff --git a/lms/djangoapps/courseware/views/views.py b/lms/djangoapps/courseware/views/views.py index a5f6d4c3f0c8ed74d1489168e712df94264db836..8906b253f0babc7d19673414e7cf889de93cb863 100644 --- a/lms/djangoapps/courseware/views/views.py +++ b/lms/djangoapps/courseware/views/views.py @@ -21,7 +21,8 @@ from django.urls import reverse from django.utils.decorators import method_decorator from django.utils.http import urlquote_plus from django.utils.text import slugify -from django.utils.translation import ugettext as _ +from django.utils.translation import ugettext_lazy as _ +from django.utils.translation import ugettext from django.views.decorators.cache import cache_control from django.views.decorators.clickjacking import xframe_options_exempt from django.views.decorators.csrf import ensure_csrf_cookie @@ -1692,7 +1693,7 @@ def financial_assistance_form(request): 'defaultValue': '', 'required': True, 'options': enrolled_courses, - 'instructions': _( + 'instructions': ugettext( 'Select the course for which you want to earn a verified certificate. If' ' the course does not appear in the list, make sure that you have enrolled' ' in the audit track for the course.' diff --git a/requirements/edx/base.txt b/requirements/edx/base.txt index e9ce7c8665a3f166162308fd6ecce7e365eb72f5..56fd7d28cf05c26f9388b43f763fceefeeb89b27 100644 --- a/requirements/edx/base.txt +++ b/requirements/edx/base.txt @@ -105,7 +105,7 @@ edx-django-release-util==0.3.1 edx-django-sites-extensions==2.3.1 edx-django-utils==1.0.3 edx-drf-extensions==2.3.1 -edx-enterprise==1.6.7 +edx-enterprise==1.6.9 edx-i18n-tools==0.4.8 edx-milestones==0.2.2 edx-oauth2-provider==1.2.2 diff --git a/requirements/edx/development.txt b/requirements/edx/development.txt index 9d730df16b0437af186f74738007b370df19041f..348991da27bd6cc2bfca514a82d2a38f1cc6da6b 100644 --- a/requirements/edx/development.txt +++ b/requirements/edx/development.txt @@ -125,7 +125,7 @@ edx-django-release-util==0.3.1 edx-django-sites-extensions==2.3.1 edx-django-utils==1.0.3 edx-drf-extensions==2.3.1 -edx-enterprise==1.6.7 +edx-enterprise==1.6.9 edx-i18n-tools==0.4.8 edx-lint==1.3.0 edx-milestones==0.2.2 diff --git a/requirements/edx/testing.txt b/requirements/edx/testing.txt index 7117b370a9bc0dfbbbc33d745bc9a656efacb786..3ea2e186cbacf8b2caeba94d526fb497db498486 100644 --- a/requirements/edx/testing.txt +++ b/requirements/edx/testing.txt @@ -121,7 +121,7 @@ edx-django-release-util==0.3.1 edx-django-sites-extensions==2.3.1 edx-django-utils==1.0.3 edx-drf-extensions==2.3.1 -edx-enterprise==1.6.7 +edx-enterprise==1.6.9 edx-i18n-tools==0.4.8 edx-lint==1.3.0 edx-milestones==0.2.2 diff --git a/themes/conf/locale/en/LC_MESSAGES/django.mo b/themes/conf/locale/en/LC_MESSAGES/django.mo index 96cf8f3bf5bb493b66e4e950867da68c1dfff3d7..7730002f4107e498cc966d84ef55d6178e87fadc 100644 Binary files a/themes/conf/locale/en/LC_MESSAGES/django.mo and b/themes/conf/locale/en/LC_MESSAGES/django.mo differ