diff --git a/cms/envs/common.py b/cms/envs/common.py index d5ea6b47bd..2d977717a6 100644 --- a/cms/envs/common.py +++ b/cms/envs/common.py @@ -1950,7 +1950,8 @@ MANUAL_ENROLLMENT_ROLE_CHOICES = ['Learner', 'Support', 'Partner'] ############## Settings for the Discovery App ###################### -COURSE_CATALOG_API_URL = 'http://localhost:8008/api/v1' +COURSE_CATALOG_URL_ROOT = 'http://localhost:8008' +COURSE_CATALOG_API_URL = '{}/api/v1'.format(COURSE_CATALOG_URL_ROOT) # which access.py permission name to check in order to determine if a course is visible in # the course catalog. We default this to the legacy permission 'see_exists'. diff --git a/common/djangoapps/student/models.py b/common/djangoapps/student/models.py index 9f6c01996e..ed61cdd99c 100644 --- a/common/djangoapps/student/models.py +++ b/common/djangoapps/student/models.py @@ -1031,7 +1031,6 @@ class CourseEnrollmentManager(models.Manager): def num_enrolled_in(self, course_id): """ Returns the count of active enrollments in a course. - 'course_id' is the course_id to return enrollments """ @@ -1042,6 +1041,21 @@ class CourseEnrollmentManager(models.Manager): return enrollment_number + def is_small_course(self, course_id): + """ + Returns false if the number of enrollments are one greater than 'max_enrollments' else true + + 'course_id' is the course_id to return enrollments + """ + max_enrollments = settings.FEATURES.get("MAX_ENROLLMENT_INSTR_BUTTONS") + + enrollment_number = super(CourseEnrollmentManager, self).get_queryset().filter( + course_id=course_id, + is_active=1 + )[:max_enrollments + 1].count() + + return enrollment_number <= max_enrollments + def num_enrolled_in_exclude_admins(self, course_id): """ Returns the count of active enrollments in a course excluding instructors, staff and CCX coaches. diff --git a/common/lib/xmodule/xmodule/library_content_module.py b/common/lib/xmodule/xmodule/library_content_module.py index 077d457fce..a8bd13a4a8 100644 --- a/common/lib/xmodule/xmodule/library_content_module.py +++ b/common/lib/xmodule/xmodule/library_content_module.py @@ -19,6 +19,7 @@ from six import text_type from six.moves import zip from web_fragments.fragment import Fragment from webob import Response +from xblock.completable import XBlockCompletionMode from xblock.core import XBlock from xblock.fields import Integer, List, Scope, String @@ -65,6 +66,7 @@ class LibraryContentFields(object): Separated out for now because they need to be added to the module and the descriptor. """ + completion_mode = XBlockCompletionMode.AGGREGATOR # Please note the display_name of each field below is used in # common/test/acceptance/pages/studio/library.py:StudioLibraryContentXBlockEditModal # to locate input elements - keep synchronized diff --git a/common/static/data/geoip/GeoLite2-Country.mmdb b/common/static/data/geoip/GeoLite2-Country.mmdb index 8e413da8d6..64fc157742 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_migrations.sha1 b/common/test/db_cache/bok_choy_migrations.sha1 index a9deb1fc7d..501b53f75c 100644 --- a/common/test/db_cache/bok_choy_migrations.sha1 +++ b/common/test/db_cache/bok_choy_migrations.sha1 @@ -1 +1 @@ -9e67e58c02090de23499589640eb0b9de3b8e31f \ No newline at end of file +a068d86fc46fd6f9a2180d4fb63c1a789ab1be9a \ 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 e3354344aa..01113f90ef 100644 --- a/common/test/db_cache/bok_choy_migrations_data_default.sql +++ b/common/test/db_cache/bok_choy_migrations_data_default.sql @@ -12,7 +12,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'),(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'),(558,'enterprise','0069_auto_20190613_0607','2019-06-13 20:29:34.416315'),(559,'course_modes','0012_historicalcoursemode','2019-06-20 14:16:40.384457'),(560,'student','0022_indexing_in_courseenrollment','2019-06-28 07:52:29.598606'),(561,'courseware','0009_auto_20190703_1955','2019-07-03 19:59:27.956010'),(562,'bulk_grades','0002_auto_20190703_1526','2019-07-09 16:23:49.075404'),(563,'course_overviews','0015_historicalcourseoverview','2019-07-09 16:23:49.552185'),(564,'courseware','0010_auto_20190709_1559','2019-07-09 16:23:49.959864'),(565,'grades','0016_auto_20190703_1446','2019-07-09 16:23:51.049448'),(566,'cornerstone','0003_auto_20190621_1000','2019-08-16 20:33:03.878476'),(567,'enterprise','0070_enterprise_catalog_query','2019-08-16 20:33:05.128301'),(568,'enterprise','0071_historicalpendingenrollment_historicalpendingenterprisecustomeruser','2019-08-16 20:33:06.381233'),(569,'instructor_task','0003_alter_task_input_field','2019-08-16 20:33:06.777708'),(570,'microsite_configuration','004_delete_all_tables','2019-08-16 20:33:08.216606'),(571,'sap_success_factors','0018_sapsuccessfactorsenterprisecustomerconfiguration_show_course_price','2019-08-16 20:33:08.320866'),(572,'super_csv','0003_csvoperation_original_filename','2019-08-16 20:33:08.729724'),(573,'system_wide_roles','0001_SystemWideRole_SystemWideRoleAssignment','2019-08-16 20:33:09.236280'),(574,'system_wide_roles','0002_add_system_wide_student_support_role','2019-08-16 20:33:10.100114'),(575,'contentstore','0004_remove_push_notification_configmodel_table','2019-08-16 20:33:16.971775'),(576,'xapi','0003_auto_20190807_1006','2019-08-23 11:39:26.089273'),(577,'program_enrollments','0006_add_the_correct_constraints','2019-08-23 18:08:47.891260'),(578,'video_config','0008_courseyoutubeblockedflag','2019-08-25 18:16:55.143257'),(579,'program_enrollments','0007_waiting_programcourseenrollment_constraint','2019-08-27 19:09:05.805301'),(580,'content_libraries','0001_initial','2019-08-30 19:27:59.312920'),(581,'courseware','0011_csm_id_bigint','2019-08-30 19:28:00.069282'),(582,'enterprise','0072_add_enterprise_report_config_feature_role','2019-08-30 19:28:00.572179'),(583,'enterprise','0073_enterprisecustomerreportingconfiguration_uuid','2019-08-30 19:28:01.681347'),(584,'enterprise','0074_auto_20190904_1143','2019-09-06 21:16:52.036849'),(585,'xapi','0004_auto_20190830_0710','2019-09-06 21:16:52.593883'),(586,'enterprise','0075_auto_20190916_1030','2019-09-16 21:24:18.290842'),(587,'course_overviews','0016_simulatecoursepublishconfig','2019-09-17 14:32:57.081562'),(588,'courseware','0012_adjust_fields','2019-09-19 19:47:08.473302'),(589,'enterprise','0076_auto_20190918_2037','2019-09-19 19:47:09.682209'),(590,'cornerstone','0004_cornerstoneglobalconfiguration_languages','2019-09-25 09:51:51.980971'),(591,'cornerstone','0005_auto_20190925_0730','2019-09-25 09:51:52.420065'),(592,'degreed','0007_auto_20190925_0730','2019-09-25 09:51:52.912089'),(593,'integrated_channel','0007_auto_20190925_0730','2019-09-25 09:51:52.965350'),(594,'sap_success_factors','0019_auto_20190925_0730','2019-09-25 09:51:53.387921'),(595,'course_overviews','0017_auto_20191002_0823','2019-10-03 17:35:24.874445'),(596,'courseware','0013_auto_20191001_1858','2019-10-03 17:35:25.469758'),(597,'edx_when','0004_datepolicy_rel_date','2019-10-03 17:35:25.561499'),(598,'edx_when','0005_auto_20190911_1056','2019-10-03 17:35:26.248583'),(599,'student','0023_bulkunenrollconfiguration','2019-10-08 08:54:34.630958'),(600,'program_enrollments','0008_add_ended_programenrollment_status','2019-10-15 16:54:18.793465'),(601,'enterprise','0077_auto_20191002_1529','2019-10-15 21:48:34.650220'),(602,'completion','0003_learning_context','2019-10-22 18:42:12.945705'),(603,'teams','0002_slug_field_ids','2019-10-22 18:42:13.905915'),(604,'entitlements','0012_allow_blank_order_number_values','2019-10-23 16:23:32.583686'),(605,'discounts','0002_auto_20191022_1720','2019-10-25 14:14:05.485328'),(606,'commerce','0008_auto_20191024_2048','2019-10-30 16:42:28.671238'),(607,'student','0024_fbeenrollmentexclusion','2019-10-31 16:16:17.991800'),(608,'student','0025_auto_20191101_1846','2019-11-05 14:23:09.546047'),(609,'cornerstone','0006_auto_20191001_0742','2019-11-15 09:41:31.515102'),(610,'degreed','0008_auto_20191001_0742','2019-11-15 09:41:31.985210'),(611,'enterprise','0078_auto_20191107_1536','2019-11-15 09:41:32.071798'),(612,'enterprise','0079_AddEnterpriseEnrollmentSource','2019-11-15 09:41:35.077452'),(613,'enterprise','0080_auto_20191113_1708','2019-11-15 09:41:35.165258'),(614,'sap_success_factors','0020_sapsuccessfactorsenterprisecustomerconfiguration_catalogs_to_transmit','2019-11-15 09:41:35.278200'),(615,'student','0026_allowedauthuser','2019-11-15 09:41:35.750216'),(616,'teams','0003_courseteam_organization_protected','2019-11-15 09:41:36.470845'),(617,'schedules','0008_add_new_start_date_field','2019-11-21 18:12:34.458532'),(618,'enterprise','0081_UpdateEnterpriseEnrollmentSource','2019-11-25 17:51:47.303851'),(619,'enterprise','0082_AddManagementEnterpriseEnrollmentSource','2019-12-03 20:57:24.426283'),(620,'edxval','0012_thirdpartytranscriptcredentialsstate_has_creds','2019-12-06 10:56:08.552448'),(621,'edxval','0013_thirdpartytranscriptcredentialsstate_copy_values','2019-12-13 13:13:20.308012'),(622,'edxval','0014_transcript_credentials_state_retype_exists','2019-12-13 13:13:20.408578'),(623,'programs','0013_customprogramsconfig','2019-12-13 13:13:21.067118'),(624,'verify_student','0012_sspverificationretryconfig','2019-12-13 13:13:21.515002'),(625,'assessment','0004_historicalsharedfileupload_sharedfileupload','2019-12-16 06:29:30.675880'),(626,'certificates','0016_historicalgeneratedcertificate','2019-12-17 14:29:56.935433'),(627,'entitlements','0013_historicalcourseentitlementsupportdetail','2019-12-17 14:29:57.436302'),(628,'credit','0005_creditrequirement_sort_value','2019-12-19 10:51:12.337166'),(629,'student','0027_courseenrollment_mode_callable_default','2019-12-26 15:35:57.040621'),(630,'enterprise','0083_enterprisecustomerreportingconfiguration_include_date','2019-12-26 21:47:14.728344'),(631,'schedules','0009_schedule_copy_column_values','2020-01-02 13:28:19.802979'),(632,'credit','0006_creditrequirement_alter_ordering','2020-01-03 18:18:36.334211'),(633,'credit','0007_creditrequirement_copy_values','2020-01-03 18:18:36.973921'),(634,'credit','0008_creditrequirement_remove_order','2020-01-08 11:38:24.657306'),(635,'grades','0017_delete_manual_psgoverride_table','2020-01-08 11:38:25.213640'),(636,'waffle','0003_update_strings_for_i18n','2020-01-08 14:05:29.720079'),(637,'student','0028_historicalmanualenrollmentaudit','2020-01-10 11:40:11.268574'),(638,'assessment','0005_add_filename_to_sharedupload','2020-01-13 10:35:07.847171'),(639,'course_overviews','0018_add_start_end_in_CourseOverview','2020-01-13 17:26:36.464326'),(640,'wiki','0006_auto_20200110_1003','2020-01-13 17:26:36.697919'),(641,'course_modes','0013_auto_20200115_2022','2020-01-15 20:27:50.992526'),(642,'entitlements','0014_auto_20200115_2022','2020-01-15 20:27:51.322976'),(643,'schedules','0010_remove_null_blank_from_schedules_date','2020-01-22 12:55:34.725873'),(644,'edxval','0015_remove_thirdpartytranscriptcredentialsstate_exists','2020-01-24 14:35:44.099846'),(645,'enterprise','0084_auto_20200120_1137','2020-01-24 14:35:44.172381'),(646,'enterprise','0085_enterprisecustomeruser_linked','2020-01-24 14:35:44.282887'),(647,'sap_success_factors','0021_sapsuccessfactorsenterprisecustomerconfiguration_show_total_hours','2020-01-27 10:53:31.872214'),(648,'course_overviews','0019_improve_courseoverviewtab','2020-01-28 16:51:30.714982'),(649,'enterprise','0086_auto_20200128_1726','2020-01-31 16:49:18.025706'),(650,'student','0029_add_data_researcher','2020-01-31 16:49:18.401525'),(651,'entitlements','0015_add_unique_together_constraint','2020-02-11 13:55:29.655054'),(652,'external_user_ids','0001_initial','2020-02-11 13:55:31.498884'),(653,'external_user_ids','0002_mb_coaching_20200210_1754','2020-02-11 13:55:31.894541'),(654,'sap_success_factors','0022_auto_20200206_1046','2020-02-11 13:55:32.101815'),(655,'track','0002_delete_trackinglog','2020-02-11 13:55:32.134542'),(656,'enterprise','0087_auto_20200206_1151','2020-02-18 09:55:42.697992'),(657,'site_configuration','0003_auto_20200217_1058','2020-02-18 09:55:42.825644'),(658,'student','0030_userprofile_phone_number','2020-02-20 14:48:47.685095'),(659,'course_date_signals','0001_initial','2020-02-21 16:45:43.955340'),(660,'oauth_dispatch','0008_applicationaccess_filters','2020-02-21 16:45:44.019075'),(661,'site_configuration','0004_add_site_values_field','2020-02-21 16:45:44.195027'),(662,'calendar_sync','0001_initial','2020-02-21 20:04:38.131685'),(663,'site_configuration','0005_copy_values_to_site_values','2020-02-24 18:47:53.200107'),(664,'external_user_ids','0003_auto_20200224_1836','2020-02-26 19:11:47.388528'),(665,'course_overviews','0020_courseoverviewtab_url_slug','2020-02-28 17:48:04.195272'),(666,'schedules','0011_auto_20200228_2018','2020-03-02 19:21:13.196282'),(667,'schedules','0012_auto_20200302_1914','2020-03-02 19:21:13.520829'),(668,'enterprise','0088_auto_20200224_1341','2020-03-03 20:05:46.920547'),(669,'experiments','0004_historicalexperimentkeyvalue','2020-03-03 20:05:47.277998'),(670,'program_enrollments','0009_update_course_enrollment_field_to_foreign_key','2020-03-03 20:05:47.685409'),(671,'site_configuration','0005_populate_siteconfig_history_site_values','2020-03-03 20:05:47.719133'),(672,'third_party_auth','0025_auto_20200303_1448','2020-03-03 20:05:48.252619'),(673,'oauth_dispatch','0009_delete_enable_scopes_waffle_switch','2020-03-04 16:01:48.080593'),(674,'schedules','0013_historicalschedule','2020-03-04 20:45:56.581945'),(675,'content_libraries','0002_group_permissions','2020-03-06 17:55:42.233448'),(676,'enterprise','0089_auto_20200305_0652','2020-03-06 17:55:42.297353'),(677,'site_configuration','0006_copy_values_to_site_values','2020-03-06 17:55:42.678035'),(678,'site_configuration','0007_remove_values_field','2020-03-06 17:55:42.788856'),(679,'schedules','0014_historicalschedule_drop_fk','2020-03-09 17:24:50.018834'),(680,'enterprise','0090_update_content_filter','2020-03-10 17:57:05.339287'),(681,'schedules','0015_schedules_start_nullable','2020-03-10 17:57:05.707643'),(682,'courseware','0014_fix_nan_value_for_global_speed','2020-03-11 13:49:13.615966'),(683,'enterprise','0091_add_sales_force_id_in_pendingenrollment','2020-03-12 10:54:44.467230'),(684,'enterprise','0092_auto_20200312_1650','2020-03-13 15:23:45.800175'),(685,'schedules','0016_remove_start_from_schedules','2020-03-13 15:23:45.883904'),(686,'schedules','0017_remove_start_from_historicalschedule','2020-03-13 15:23:45.976652'),(687,'schedules','0018_readd_historicalschedule_fks','2020-03-16 14:38:14.274410'),(688,'student','0031_auto_20200317_1122','2020-03-17 13:50:05.335676'),(689,'schedules','0019_auto_20200316_1935','2020-03-17 18:44:35.891013'),(690,'teams','0004_alter_defaults','2020-03-18 15:44:58.524624'),(691,'edxval','0016_add_transcript_credentials_model','2020-03-27 07:02:09.981900'),(692,'assessment','0006_TeamWorkflows','2020-03-30 19:21:36.208357'),(693,'edx_when','0006_drop_active_index','2020-03-30 19:21:36.251955'),(694,'program_enrollments','0010_add_courseaccessroleassignment','2020-03-30 19:21:36.855995'),(695,'workflow','0003_TeamWorkflows','2020-03-30 19:21:36.925096'),(696,'submissions','0005_CreateTeamModel','2020-04-01 20:57:39.372024'),(697,'third_party_auth','0026_auto_20200401_1932','2020-04-02 13:16:01.972784'),(698,'enterprise','0093_add_use_enterprise_catalog_flag','2020-04-08 18:22:44.709305'),(699,'enterprise','0094_add_use_enterprise_catalog_sample','2020-04-10 22:07:16.661282'),(700,'organizations','0001_squashed_0007_historicalorganization','2020-04-10 22:07:16.677543'),(701,'submissions','0001_squashed_0005_CreateTeamModel','2020-04-10 22:07:16.686207'),(702,'admin','0003_logentry_add_action_flag_choices','2020-04-23 18:11:46.942946'),(703,'auth','0009_alter_user_last_name_max_length','2020-04-23 18:11:47.230497'),(704,'auth','0010_alter_group_name_max_length','2020-04-23 18:11:47.298692'),(705,'auth','0011_update_proxy_permissions','2020-04-23 18:11:47.664132'),(706,'edx_when','0007_meta_tweaks','2020-04-23 18:11:47.691758'),(707,'oauth2_provider','0002_auto_20190406_1805','2020-04-23 18:11:47.818878'),(708,'student','0032_removed_logout_view_configuration','2020-04-23 18:11:48.393044'),(709,'student','0001_squashed_0031_auto_20200317_1122','2020-04-23 18:11:48.408997'),(710,'edxval','0001_squashed_0016_add_transcript_credentials_model','2020-04-23 18:11:48.416824'),(711,'enterprise','0001_squashed_0092_auto_20200312_1650','2020-04-23 18:11:48.424495'),(712,'third_party_auth','0001_squashed_0026_auto_20200401_1932','2020-04-23 18:11:48.432006'),(713,'integrated_channel','0001_squashed_0007_auto_20190925_0730','2020-04-24 16:47:34.188700'),(714,'sap_success_factors','0001_squashed_0022_auto_20200206_1046','2020-04-24 16:47:34.229718'),(715,'course_overviews','0021_courseoverviewtab_link','2020-05-04 10:59:26.420098'),(716,'course_overviews','0022_courseoverviewtab_is_hidden','2020-05-04 10:59:26.485523'),(717,'edxval','0002_add_error_description_field','2020-05-04 10:59:26.540249'),(718,'external_user_ids','0004_add_lti_type','2020-05-04 10:59:26.921830'),(719,'enterprise','0095_auto_20200507_1138','2020-05-08 20:20:32.807231'),(720,'enterprise','0096_enterprise_catalog_admin_role','2020-05-13 22:12:12.358228'),(721,'student','0033_userprofile_state','2020-05-13 22:12:12.631121'),(722,'edxval','0003_delete_transcriptcredentials','2020-05-27 10:59:38.022407'),(723,'learning_sequences','0001_initial','2020-06-04 06:05:36.384464'),(724,'video_pipeline','0004_vempipelineintegration','2020-06-04 06:05:36.976657'),(725,'social_django','0009_auto_20191118_0520','2020-06-19 00:00:47.256847'),(726,'social_django','0010_uid_db_index','2020-06-19 00:00:47.498169'),(727,'student','0034_courseenrollmentcelebration','2020-06-19 00:00:48.071380'),(728,'enterprise','0097_auto_20200619_1130','2020-06-19 19:05:07.673699'),(729,'grades','0018_add_waffle_flag_defaults','2020-06-23 18:17:18.366253'),(730,'contentstore','0005_add_enable_checklists_quality_waffle_flag','2020-06-23 18:17:25.592864'),(731,'video_pipeline','0005_add_vem_course_percentage','2020-06-26 08:11:39.037796'); +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'),(558,'enterprise','0069_auto_20190613_0607','2019-06-13 20:29:34.416315'),(559,'course_modes','0012_historicalcoursemode','2019-06-20 14:16:40.384457'),(560,'student','0022_indexing_in_courseenrollment','2019-06-28 07:52:29.598606'),(561,'courseware','0009_auto_20190703_1955','2019-07-03 19:59:27.956010'),(562,'bulk_grades','0002_auto_20190703_1526','2019-07-09 16:23:49.075404'),(563,'course_overviews','0015_historicalcourseoverview','2019-07-09 16:23:49.552185'),(564,'courseware','0010_auto_20190709_1559','2019-07-09 16:23:49.959864'),(565,'grades','0016_auto_20190703_1446','2019-07-09 16:23:51.049448'),(566,'cornerstone','0003_auto_20190621_1000','2019-08-16 20:33:03.878476'),(567,'enterprise','0070_enterprise_catalog_query','2019-08-16 20:33:05.128301'),(568,'enterprise','0071_historicalpendingenrollment_historicalpendingenterprisecustomeruser','2019-08-16 20:33:06.381233'),(569,'instructor_task','0003_alter_task_input_field','2019-08-16 20:33:06.777708'),(570,'microsite_configuration','004_delete_all_tables','2019-08-16 20:33:08.216606'),(571,'sap_success_factors','0018_sapsuccessfactorsenterprisecustomerconfiguration_show_course_price','2019-08-16 20:33:08.320866'),(572,'super_csv','0003_csvoperation_original_filename','2019-08-16 20:33:08.729724'),(573,'system_wide_roles','0001_SystemWideRole_SystemWideRoleAssignment','2019-08-16 20:33:09.236280'),(574,'system_wide_roles','0002_add_system_wide_student_support_role','2019-08-16 20:33:10.100114'),(575,'contentstore','0004_remove_push_notification_configmodel_table','2019-08-16 20:33:16.971775'),(576,'xapi','0003_auto_20190807_1006','2019-08-23 11:39:26.089273'),(577,'program_enrollments','0006_add_the_correct_constraints','2019-08-23 18:08:47.891260'),(578,'video_config','0008_courseyoutubeblockedflag','2019-08-25 18:16:55.143257'),(579,'program_enrollments','0007_waiting_programcourseenrollment_constraint','2019-08-27 19:09:05.805301'),(580,'content_libraries','0001_initial','2019-08-30 19:27:59.312920'),(581,'courseware','0011_csm_id_bigint','2019-08-30 19:28:00.069282'),(582,'enterprise','0072_add_enterprise_report_config_feature_role','2019-08-30 19:28:00.572179'),(583,'enterprise','0073_enterprisecustomerreportingconfiguration_uuid','2019-08-30 19:28:01.681347'),(584,'enterprise','0074_auto_20190904_1143','2019-09-06 21:16:52.036849'),(585,'xapi','0004_auto_20190830_0710','2019-09-06 21:16:52.593883'),(586,'enterprise','0075_auto_20190916_1030','2019-09-16 21:24:18.290842'),(587,'course_overviews','0016_simulatecoursepublishconfig','2019-09-17 14:32:57.081562'),(588,'courseware','0012_adjust_fields','2019-09-19 19:47:08.473302'),(589,'enterprise','0076_auto_20190918_2037','2019-09-19 19:47:09.682209'),(590,'cornerstone','0004_cornerstoneglobalconfiguration_languages','2019-09-25 09:51:51.980971'),(591,'cornerstone','0005_auto_20190925_0730','2019-09-25 09:51:52.420065'),(592,'degreed','0007_auto_20190925_0730','2019-09-25 09:51:52.912089'),(593,'integrated_channel','0007_auto_20190925_0730','2019-09-25 09:51:52.965350'),(594,'sap_success_factors','0019_auto_20190925_0730','2019-09-25 09:51:53.387921'),(595,'course_overviews','0017_auto_20191002_0823','2019-10-03 17:35:24.874445'),(596,'courseware','0013_auto_20191001_1858','2019-10-03 17:35:25.469758'),(597,'edx_when','0004_datepolicy_rel_date','2019-10-03 17:35:25.561499'),(598,'edx_when','0005_auto_20190911_1056','2019-10-03 17:35:26.248583'),(599,'student','0023_bulkunenrollconfiguration','2019-10-08 08:54:34.630958'),(600,'program_enrollments','0008_add_ended_programenrollment_status','2019-10-15 16:54:18.793465'),(601,'enterprise','0077_auto_20191002_1529','2019-10-15 21:48:34.650220'),(602,'completion','0003_learning_context','2019-10-22 18:42:12.945705'),(603,'teams','0002_slug_field_ids','2019-10-22 18:42:13.905915'),(604,'entitlements','0012_allow_blank_order_number_values','2019-10-23 16:23:32.583686'),(605,'discounts','0002_auto_20191022_1720','2019-10-25 14:14:05.485328'),(606,'commerce','0008_auto_20191024_2048','2019-10-30 16:42:28.671238'),(607,'student','0024_fbeenrollmentexclusion','2019-10-31 16:16:17.991800'),(608,'student','0025_auto_20191101_1846','2019-11-05 14:23:09.546047'),(609,'cornerstone','0006_auto_20191001_0742','2019-11-15 09:41:31.515102'),(610,'degreed','0008_auto_20191001_0742','2019-11-15 09:41:31.985210'),(611,'enterprise','0078_auto_20191107_1536','2019-11-15 09:41:32.071798'),(612,'enterprise','0079_AddEnterpriseEnrollmentSource','2019-11-15 09:41:35.077452'),(613,'enterprise','0080_auto_20191113_1708','2019-11-15 09:41:35.165258'),(614,'sap_success_factors','0020_sapsuccessfactorsenterprisecustomerconfiguration_catalogs_to_transmit','2019-11-15 09:41:35.278200'),(615,'student','0026_allowedauthuser','2019-11-15 09:41:35.750216'),(616,'teams','0003_courseteam_organization_protected','2019-11-15 09:41:36.470845'),(617,'schedules','0008_add_new_start_date_field','2019-11-21 18:12:34.458532'),(618,'enterprise','0081_UpdateEnterpriseEnrollmentSource','2019-11-25 17:51:47.303851'),(619,'enterprise','0082_AddManagementEnterpriseEnrollmentSource','2019-12-03 20:57:24.426283'),(620,'edxval','0012_thirdpartytranscriptcredentialsstate_has_creds','2019-12-06 10:56:08.552448'),(621,'edxval','0013_thirdpartytranscriptcredentialsstate_copy_values','2019-12-13 13:13:20.308012'),(622,'edxval','0014_transcript_credentials_state_retype_exists','2019-12-13 13:13:20.408578'),(623,'programs','0013_customprogramsconfig','2019-12-13 13:13:21.067118'),(624,'verify_student','0012_sspverificationretryconfig','2019-12-13 13:13:21.515002'),(625,'assessment','0004_historicalsharedfileupload_sharedfileupload','2019-12-16 06:29:30.675880'),(626,'certificates','0016_historicalgeneratedcertificate','2019-12-17 14:29:56.935433'),(627,'entitlements','0013_historicalcourseentitlementsupportdetail','2019-12-17 14:29:57.436302'),(628,'credit','0005_creditrequirement_sort_value','2019-12-19 10:51:12.337166'),(629,'student','0027_courseenrollment_mode_callable_default','2019-12-26 15:35:57.040621'),(630,'enterprise','0083_enterprisecustomerreportingconfiguration_include_date','2019-12-26 21:47:14.728344'),(631,'schedules','0009_schedule_copy_column_values','2020-01-02 13:28:19.802979'),(632,'credit','0006_creditrequirement_alter_ordering','2020-01-03 18:18:36.334211'),(633,'credit','0007_creditrequirement_copy_values','2020-01-03 18:18:36.973921'),(634,'credit','0008_creditrequirement_remove_order','2020-01-08 11:38:24.657306'),(635,'grades','0017_delete_manual_psgoverride_table','2020-01-08 11:38:25.213640'),(636,'waffle','0003_update_strings_for_i18n','2020-01-08 14:05:29.720079'),(637,'student','0028_historicalmanualenrollmentaudit','2020-01-10 11:40:11.268574'),(638,'assessment','0005_add_filename_to_sharedupload','2020-01-13 10:35:07.847171'),(639,'course_overviews','0018_add_start_end_in_CourseOverview','2020-01-13 17:26:36.464326'),(640,'wiki','0006_auto_20200110_1003','2020-01-13 17:26:36.697919'),(641,'course_modes','0013_auto_20200115_2022','2020-01-15 20:27:50.992526'),(642,'entitlements','0014_auto_20200115_2022','2020-01-15 20:27:51.322976'),(643,'schedules','0010_remove_null_blank_from_schedules_date','2020-01-22 12:55:34.725873'),(644,'edxval','0015_remove_thirdpartytranscriptcredentialsstate_exists','2020-01-24 14:35:44.099846'),(645,'enterprise','0084_auto_20200120_1137','2020-01-24 14:35:44.172381'),(646,'enterprise','0085_enterprisecustomeruser_linked','2020-01-24 14:35:44.282887'),(647,'sap_success_factors','0021_sapsuccessfactorsenterprisecustomerconfiguration_show_total_hours','2020-01-27 10:53:31.872214'),(648,'course_overviews','0019_improve_courseoverviewtab','2020-01-28 16:51:30.714982'),(649,'enterprise','0086_auto_20200128_1726','2020-01-31 16:49:18.025706'),(650,'student','0029_add_data_researcher','2020-01-31 16:49:18.401525'),(651,'entitlements','0015_add_unique_together_constraint','2020-02-11 13:55:29.655054'),(652,'external_user_ids','0001_initial','2020-02-11 13:55:31.498884'),(653,'external_user_ids','0002_mb_coaching_20200210_1754','2020-02-11 13:55:31.894541'),(654,'sap_success_factors','0022_auto_20200206_1046','2020-02-11 13:55:32.101815'),(655,'track','0002_delete_trackinglog','2020-02-11 13:55:32.134542'),(656,'enterprise','0087_auto_20200206_1151','2020-02-18 09:55:42.697992'),(657,'site_configuration','0003_auto_20200217_1058','2020-02-18 09:55:42.825644'),(658,'student','0030_userprofile_phone_number','2020-02-20 14:48:47.685095'),(659,'course_date_signals','0001_initial','2020-02-21 16:45:43.955340'),(660,'oauth_dispatch','0008_applicationaccess_filters','2020-02-21 16:45:44.019075'),(661,'site_configuration','0004_add_site_values_field','2020-02-21 16:45:44.195027'),(662,'calendar_sync','0001_initial','2020-02-21 20:04:38.131685'),(663,'site_configuration','0005_copy_values_to_site_values','2020-02-24 18:47:53.200107'),(664,'external_user_ids','0003_auto_20200224_1836','2020-02-26 19:11:47.388528'),(665,'course_overviews','0020_courseoverviewtab_url_slug','2020-02-28 17:48:04.195272'),(666,'schedules','0011_auto_20200228_2018','2020-03-02 19:21:13.196282'),(667,'schedules','0012_auto_20200302_1914','2020-03-02 19:21:13.520829'),(668,'enterprise','0088_auto_20200224_1341','2020-03-03 20:05:46.920547'),(669,'experiments','0004_historicalexperimentkeyvalue','2020-03-03 20:05:47.277998'),(670,'program_enrollments','0009_update_course_enrollment_field_to_foreign_key','2020-03-03 20:05:47.685409'),(671,'site_configuration','0005_populate_siteconfig_history_site_values','2020-03-03 20:05:47.719133'),(672,'third_party_auth','0025_auto_20200303_1448','2020-03-03 20:05:48.252619'),(673,'oauth_dispatch','0009_delete_enable_scopes_waffle_switch','2020-03-04 16:01:48.080593'),(674,'schedules','0013_historicalschedule','2020-03-04 20:45:56.581945'),(675,'content_libraries','0002_group_permissions','2020-03-06 17:55:42.233448'),(676,'enterprise','0089_auto_20200305_0652','2020-03-06 17:55:42.297353'),(677,'site_configuration','0006_copy_values_to_site_values','2020-03-06 17:55:42.678035'),(678,'site_configuration','0007_remove_values_field','2020-03-06 17:55:42.788856'),(679,'schedules','0014_historicalschedule_drop_fk','2020-03-09 17:24:50.018834'),(680,'enterprise','0090_update_content_filter','2020-03-10 17:57:05.339287'),(681,'schedules','0015_schedules_start_nullable','2020-03-10 17:57:05.707643'),(682,'courseware','0014_fix_nan_value_for_global_speed','2020-03-11 13:49:13.615966'),(683,'enterprise','0091_add_sales_force_id_in_pendingenrollment','2020-03-12 10:54:44.467230'),(684,'enterprise','0092_auto_20200312_1650','2020-03-13 15:23:45.800175'),(685,'schedules','0016_remove_start_from_schedules','2020-03-13 15:23:45.883904'),(686,'schedules','0017_remove_start_from_historicalschedule','2020-03-13 15:23:45.976652'),(687,'schedules','0018_readd_historicalschedule_fks','2020-03-16 14:38:14.274410'),(688,'student','0031_auto_20200317_1122','2020-03-17 13:50:05.335676'),(689,'schedules','0019_auto_20200316_1935','2020-03-17 18:44:35.891013'),(690,'teams','0004_alter_defaults','2020-03-18 15:44:58.524624'),(691,'edxval','0016_add_transcript_credentials_model','2020-03-27 07:02:09.981900'),(692,'assessment','0006_TeamWorkflows','2020-03-30 19:21:36.208357'),(693,'edx_when','0006_drop_active_index','2020-03-30 19:21:36.251955'),(694,'program_enrollments','0010_add_courseaccessroleassignment','2020-03-30 19:21:36.855995'),(695,'workflow','0003_TeamWorkflows','2020-03-30 19:21:36.925096'),(696,'submissions','0005_CreateTeamModel','2020-04-01 20:57:39.372024'),(697,'third_party_auth','0026_auto_20200401_1932','2020-04-02 13:16:01.972784'),(698,'enterprise','0093_add_use_enterprise_catalog_flag','2020-04-08 18:22:44.709305'),(699,'enterprise','0094_add_use_enterprise_catalog_sample','2020-04-10 22:07:16.661282'),(700,'organizations','0001_squashed_0007_historicalorganization','2020-04-10 22:07:16.677543'),(701,'submissions','0001_squashed_0005_CreateTeamModel','2020-04-10 22:07:16.686207'),(702,'admin','0003_logentry_add_action_flag_choices','2020-04-23 18:11:46.942946'),(703,'auth','0009_alter_user_last_name_max_length','2020-04-23 18:11:47.230497'),(704,'auth','0010_alter_group_name_max_length','2020-04-23 18:11:47.298692'),(705,'auth','0011_update_proxy_permissions','2020-04-23 18:11:47.664132'),(706,'edx_when','0007_meta_tweaks','2020-04-23 18:11:47.691758'),(707,'oauth2_provider','0002_auto_20190406_1805','2020-04-23 18:11:47.818878'),(708,'student','0032_removed_logout_view_configuration','2020-04-23 18:11:48.393044'),(709,'student','0001_squashed_0031_auto_20200317_1122','2020-04-23 18:11:48.408997'),(710,'edxval','0001_squashed_0016_add_transcript_credentials_model','2020-04-23 18:11:48.416824'),(711,'enterprise','0001_squashed_0092_auto_20200312_1650','2020-04-23 18:11:48.424495'),(712,'third_party_auth','0001_squashed_0026_auto_20200401_1932','2020-04-23 18:11:48.432006'),(713,'integrated_channel','0001_squashed_0007_auto_20190925_0730','2020-04-24 16:47:34.188700'),(714,'sap_success_factors','0001_squashed_0022_auto_20200206_1046','2020-04-24 16:47:34.229718'),(715,'course_overviews','0021_courseoverviewtab_link','2020-05-04 10:59:26.420098'),(716,'course_overviews','0022_courseoverviewtab_is_hidden','2020-05-04 10:59:26.485523'),(717,'edxval','0002_add_error_description_field','2020-05-04 10:59:26.540249'),(718,'external_user_ids','0004_add_lti_type','2020-05-04 10:59:26.921830'),(719,'enterprise','0095_auto_20200507_1138','2020-05-08 20:20:32.807231'),(720,'enterprise','0096_enterprise_catalog_admin_role','2020-05-13 22:12:12.358228'),(721,'student','0033_userprofile_state','2020-05-13 22:12:12.631121'),(722,'edxval','0003_delete_transcriptcredentials','2020-05-27 10:59:38.022407'),(723,'learning_sequences','0001_initial','2020-06-04 06:05:36.384464'),(724,'video_pipeline','0004_vempipelineintegration','2020-06-04 06:05:36.976657'),(725,'social_django','0009_auto_20191118_0520','2020-06-19 00:00:47.256847'),(726,'social_django','0010_uid_db_index','2020-06-19 00:00:47.498169'),(727,'student','0034_courseenrollmentcelebration','2020-06-19 00:00:48.071380'),(728,'enterprise','0097_auto_20200619_1130','2020-06-19 19:05:07.673699'),(729,'grades','0018_add_waffle_flag_defaults','2020-06-23 18:17:18.366253'),(730,'contentstore','0005_add_enable_checklists_quality_waffle_flag','2020-06-23 18:17:25.592864'),(731,'video_pipeline','0005_add_vem_course_percentage','2020-06-26 08:11:39.037796'),(732,'enterprise','0098_auto_20200629_1756','2020-07-01 12:52:54.719532'); /*!40000 ALTER TABLE `django_migrations` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; 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 7c36fa95db..3d775325cb 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 @@ -12,7 +12,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'),(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'),(558,'enterprise','0069_auto_20190613_0607','2019-06-13 20:29:54.231876'),(559,'course_modes','0012_historicalcoursemode','2019-06-20 14:17:00.883900'),(560,'student','0022_indexing_in_courseenrollment','2019-06-28 07:52:49.937484'),(561,'courseware','0009_auto_20190703_1955','2019-07-03 19:59:48.322976'),(562,'bulk_grades','0002_auto_20190703_1526','2019-07-09 16:24:12.489841'),(563,'course_overviews','0015_historicalcourseoverview','2019-07-09 16:24:12.865655'),(564,'courseware','0010_auto_20190709_1559','2019-07-09 16:24:13.249043'),(565,'grades','0016_auto_20190703_1446','2019-07-09 16:24:14.162438'),(566,'cornerstone','0003_auto_20190621_1000','2019-08-16 20:33:30.643210'),(567,'enterprise','0070_enterprise_catalog_query','2019-08-16 20:33:31.677056'),(568,'enterprise','0071_historicalpendingenrollment_historicalpendingenterprisecustomeruser','2019-08-16 20:33:32.745997'),(569,'instructor_task','0003_alter_task_input_field','2019-08-16 20:33:33.017938'),(570,'microsite_configuration','004_delete_all_tables','2019-08-16 20:33:34.256853'),(571,'sap_success_factors','0018_sapsuccessfactorsenterprisecustomerconfiguration_show_course_price','2019-08-16 20:33:34.327113'),(572,'super_csv','0003_csvoperation_original_filename','2019-08-16 20:33:34.600410'),(573,'system_wide_roles','0001_SystemWideRole_SystemWideRoleAssignment','2019-08-16 20:33:34.993423'),(574,'system_wide_roles','0002_add_system_wide_student_support_role','2019-08-16 20:33:35.022596'),(575,'contentstore','0004_remove_push_notification_configmodel_table','2019-08-16 20:33:41.465727'),(576,'xapi','0003_auto_20190807_1006','2019-08-23 11:39:48.729878'),(577,'program_enrollments','0006_add_the_correct_constraints','2019-08-23 18:09:09.268961'),(578,'video_config','0008_courseyoutubeblockedflag','2019-08-25 18:17:15.983779'),(579,'program_enrollments','0007_waiting_programcourseenrollment_constraint','2019-08-27 19:09:27.680607'),(580,'content_libraries','0001_initial','2019-08-30 19:28:25.635235'),(581,'courseware','0011_csm_id_bigint','2019-08-30 19:28:26.395259'),(582,'enterprise','0072_add_enterprise_report_config_feature_role','2019-08-30 19:28:26.428135'),(583,'enterprise','0073_enterprisecustomerreportingconfiguration_uuid','2019-08-30 19:28:26.610136'),(584,'enterprise','0074_auto_20190904_1143','2019-09-06 21:17:13.932220'),(585,'xapi','0004_auto_20190830_0710','2019-09-06 21:17:14.456308'),(586,'enterprise','0075_auto_20190916_1030','2019-09-16 21:24:40.846129'),(587,'course_overviews','0016_simulatecoursepublishconfig','2019-09-17 14:33:18.318209'),(588,'courseware','0012_adjust_fields','2019-09-19 19:47:32.265973'),(589,'enterprise','0076_auto_20190918_2037','2019-09-19 19:47:33.356916'),(590,'cornerstone','0004_cornerstoneglobalconfiguration_languages','2019-09-25 09:52:14.183189'),(591,'cornerstone','0005_auto_20190925_0730','2019-09-25 09:52:14.554260'),(592,'degreed','0007_auto_20190925_0730','2019-09-25 09:52:14.965290'),(593,'integrated_channel','0007_auto_20190925_0730','2019-09-25 09:52:15.001578'),(594,'sap_success_factors','0019_auto_20190925_0730','2019-09-25 09:52:15.372786'),(595,'course_overviews','0017_auto_20191002_0823','2019-10-03 17:35:47.108732'),(596,'courseware','0013_auto_20191001_1858','2019-10-03 17:35:47.675913'),(597,'edx_when','0004_datepolicy_rel_date','2019-10-03 17:35:47.714137'),(598,'edx_when','0005_auto_20190911_1056','2019-10-03 17:35:48.352268'),(599,'student','0023_bulkunenrollconfiguration','2019-10-08 08:54:55.531674'),(600,'program_enrollments','0008_add_ended_programenrollment_status','2019-10-15 16:54:40.812546'),(601,'enterprise','0077_auto_20191002_1529','2019-10-15 21:48:57.015096'),(602,'completion','0003_learning_context','2019-10-22 18:42:37.071520'),(603,'teams','0002_slug_field_ids','2019-10-22 18:42:37.978486'),(604,'entitlements','0012_allow_blank_order_number_values','2019-10-23 16:23:53.619696'),(605,'discounts','0002_auto_20191022_1720','2019-10-25 14:14:29.317857'),(606,'commerce','0008_auto_20191024_2048','2019-10-30 16:42:49.876338'),(607,'student','0024_fbeenrollmentexclusion','2019-10-31 16:16:38.116056'),(608,'student','0025_auto_20191101_1846','2019-11-05 14:23:29.298316'),(609,'cornerstone','0006_auto_20191001_0742','2019-11-15 09:41:58.615907'),(610,'degreed','0008_auto_20191001_0742','2019-11-15 09:41:59.004037'),(611,'enterprise','0078_auto_20191107_1536','2019-11-15 09:41:59.081745'),(612,'enterprise','0079_AddEnterpriseEnrollmentSource','2019-11-15 09:42:01.297444'),(613,'enterprise','0080_auto_20191113_1708','2019-11-15 09:42:01.373867'),(614,'sap_success_factors','0020_sapsuccessfactorsenterprisecustomerconfiguration_catalogs_to_transmit','2019-11-15 09:42:01.448662'),(615,'student','0026_allowedauthuser','2019-11-15 09:42:01.867741'),(616,'teams','0003_courseteam_organization_protected','2019-11-15 09:42:02.160822'),(617,'schedules','0008_add_new_start_date_field','2019-11-21 18:12:54.950500'),(618,'enterprise','0081_UpdateEnterpriseEnrollmentSource','2019-11-25 17:52:07.779142'),(619,'enterprise','0082_AddManagementEnterpriseEnrollmentSource','2019-12-03 20:57:44.528593'),(620,'edxval','0012_thirdpartytranscriptcredentialsstate_has_creds','2019-12-06 10:56:28.616253'),(621,'edxval','0013_thirdpartytranscriptcredentialsstate_copy_values','2019-12-13 13:13:43.103802'),(622,'edxval','0014_transcript_credentials_state_retype_exists','2019-12-13 13:13:43.146474'),(623,'programs','0013_customprogramsconfig','2019-12-13 13:13:43.769272'),(624,'verify_student','0012_sspverificationretryconfig','2019-12-13 13:13:44.172148'),(625,'assessment','0004_historicalsharedfileupload_sharedfileupload','2019-12-16 06:29:51.457888'),(626,'certificates','0016_historicalgeneratedcertificate','2019-12-17 14:30:19.195816'),(627,'entitlements','0013_historicalcourseentitlementsupportdetail','2019-12-17 14:30:19.608404'),(628,'credit','0005_creditrequirement_sort_value','2019-12-19 10:51:33.510519'),(629,'student','0027_courseenrollment_mode_callable_default','2019-12-26 15:36:18.942310'),(630,'enterprise','0083_enterprisecustomerreportingconfiguration_include_date','2019-12-26 21:47:36.992960'),(631,'schedules','0009_schedule_copy_column_values','2020-01-02 13:28:40.924356'),(632,'credit','0006_creditrequirement_alter_ordering','2020-01-03 18:18:59.132478'),(633,'credit','0007_creditrequirement_copy_values','2020-01-03 18:18:59.153966'),(634,'credit','0008_creditrequirement_remove_order','2020-01-08 11:38:46.464661'),(635,'grades','0017_delete_manual_psgoverride_table','2020-01-08 11:38:46.979886'),(636,'waffle','0003_update_strings_for_i18n','2020-01-08 14:05:56.793699'),(637,'student','0028_historicalmanualenrollmentaudit','2020-01-10 11:40:33.721153'),(638,'assessment','0005_add_filename_to_sharedupload','2020-01-13 10:35:30.849694'),(639,'course_overviews','0018_add_start_end_in_CourseOverview','2020-01-13 17:26:59.381741'),(640,'wiki','0006_auto_20200110_1003','2020-01-13 17:26:59.580772'),(641,'course_modes','0013_auto_20200115_2022','2020-01-15 20:28:11.826240'),(642,'entitlements','0014_auto_20200115_2022','2020-01-15 20:28:12.121824'),(643,'schedules','0010_remove_null_blank_from_schedules_date','2020-01-22 12:55:55.562069'),(644,'edxval','0015_remove_thirdpartytranscriptcredentialsstate_exists','2020-01-24 14:36:05.625239'),(645,'enterprise','0084_auto_20200120_1137','2020-01-24 14:36:05.682781'),(646,'enterprise','0085_enterprisecustomeruser_linked','2020-01-24 14:36:05.737471'),(647,'sap_success_factors','0021_sapsuccessfactorsenterprisecustomerconfiguration_show_total_hours','2020-01-27 10:53:54.883903'),(648,'course_overviews','0019_improve_courseoverviewtab','2020-01-28 16:51:53.392851'),(649,'enterprise','0086_auto_20200128_1726','2020-01-31 16:49:40.116068'),(650,'student','0029_add_data_researcher','2020-01-31 16:49:40.134245'),(651,'entitlements','0015_add_unique_together_constraint','2020-02-11 13:55:54.821099'),(652,'external_user_ids','0001_initial','2020-02-11 13:55:56.286689'),(653,'external_user_ids','0002_mb_coaching_20200210_1754','2020-02-11 13:55:56.302455'),(654,'sap_success_factors','0022_auto_20200206_1046','2020-02-11 13:55:56.431451'),(655,'track','0002_delete_trackinglog','2020-02-11 13:55:56.448287'),(656,'enterprise','0087_auto_20200206_1151','2020-02-18 09:56:05.261459'),(657,'site_configuration','0003_auto_20200217_1058','2020-02-18 09:56:05.382056'),(658,'student','0030_userprofile_phone_number','2020-02-20 14:49:09.679286'),(659,'course_date_signals','0001_initial','2020-02-21 16:46:07.245424'),(660,'oauth_dispatch','0008_applicationaccess_filters','2020-02-21 16:46:07.279347'),(661,'site_configuration','0004_add_site_values_field','2020-02-21 16:46:07.400523'),(662,'calendar_sync','0001_initial','2020-02-21 20:05:00.723064'),(663,'site_configuration','0005_copy_values_to_site_values','2020-02-24 18:48:13.968250'),(664,'external_user_ids','0003_auto_20200224_1836','2020-02-26 19:12:10.225163'),(665,'course_overviews','0020_courseoverviewtab_url_slug','2020-02-28 17:48:26.402935'),(666,'schedules','0011_auto_20200228_2018','2020-03-02 19:21:35.447856'),(667,'schedules','0012_auto_20200302_1914','2020-03-02 19:21:35.760107'),(668,'enterprise','0088_auto_20200224_1341','2020-03-03 20:06:11.193549'),(669,'experiments','0004_historicalexperimentkeyvalue','2020-03-03 20:06:11.472740'),(670,'program_enrollments','0009_update_course_enrollment_field_to_foreign_key','2020-03-03 20:06:11.793880'),(671,'site_configuration','0005_populate_siteconfig_history_site_values','2020-03-03 20:06:11.809759'),(672,'third_party_auth','0025_auto_20200303_1448','2020-03-03 20:06:12.334364'),(673,'oauth_dispatch','0009_delete_enable_scopes_waffle_switch','2020-03-04 16:02:10.087753'),(674,'schedules','0013_historicalschedule','2020-03-04 20:46:18.382627'),(675,'content_libraries','0002_group_permissions','2020-03-06 17:56:06.253916'),(676,'enterprise','0089_auto_20200305_0652','2020-03-06 17:56:06.313096'),(677,'site_configuration','0006_copy_values_to_site_values','2020-03-06 17:56:06.328937'),(678,'site_configuration','0007_remove_values_field','2020-03-06 17:56:06.393334'),(679,'schedules','0014_historicalschedule_drop_fk','2020-03-09 17:25:11.320964'),(680,'enterprise','0090_update_content_filter','2020-03-10 17:57:28.234120'),(681,'schedules','0015_schedules_start_nullable','2020-03-10 17:57:28.512287'),(682,'courseware','0014_fix_nan_value_for_global_speed','2020-03-11 13:49:34.540416'),(683,'enterprise','0091_add_sales_force_id_in_pendingenrollment','2020-03-12 10:55:06.528703'),(684,'enterprise','0092_auto_20200312_1650','2020-03-13 15:24:08.871983'),(685,'schedules','0016_remove_start_from_schedules','2020-03-13 15:24:08.919319'),(686,'schedules','0017_remove_start_from_historicalschedule','2020-03-13 15:24:08.961171'),(687,'schedules','0018_readd_historicalschedule_fks','2020-03-16 14:38:37.163574'),(688,'student','0031_auto_20200317_1122','2020-03-17 13:50:29.328406'),(689,'schedules','0019_auto_20200316_1935','2020-03-17 18:44:58.495941'),(690,'teams','0004_alter_defaults','2020-03-18 15:45:23.207866'),(691,'edxval','0016_add_transcript_credentials_model','2020-03-27 07:02:32.020569'),(692,'assessment','0006_TeamWorkflows','2020-03-30 19:21:59.600633'),(693,'edx_when','0006_drop_active_index','2020-03-30 19:21:59.632637'),(694,'program_enrollments','0010_add_courseaccessroleassignment','2020-03-30 19:22:00.189635'),(695,'workflow','0003_TeamWorkflows','2020-03-30 19:22:00.217685'),(696,'submissions','0005_CreateTeamModel','2020-04-01 20:58:02.569032'),(697,'third_party_auth','0026_auto_20200401_1932','2020-04-02 13:16:24.403863'),(698,'enterprise','0093_add_use_enterprise_catalog_flag','2020-04-08 18:23:05.688441'),(699,'enterprise','0094_add_use_enterprise_catalog_sample','2020-04-10 22:07:38.597967'),(700,'submissions','0001_squashed_0005_CreateTeamModel','2020-04-10 22:07:38.604906'),(701,'organizations','0001_squashed_0007_historicalorganization','2020-04-10 22:07:38.607140'),(702,'admin','0003_logentry_add_action_flag_choices','2020-04-23 18:12:12.574100'),(703,'auth','0009_alter_user_last_name_max_length','2020-04-23 18:12:12.796012'),(704,'auth','0010_alter_group_name_max_length','2020-04-23 18:12:12.828059'),(705,'auth','0011_update_proxy_permissions','2020-04-23 18:12:12.844008'),(706,'edx_when','0007_meta_tweaks','2020-04-23 18:12:12.867316'),(707,'oauth2_provider','0002_auto_20190406_1805','2020-04-23 18:12:12.934409'),(708,'student','0032_removed_logout_view_configuration','2020-04-23 18:12:13.224802'),(709,'third_party_auth','0001_squashed_0026_auto_20200401_1932','2020-04-23 18:12:13.228610'),(710,'student','0001_squashed_0031_auto_20200317_1122','2020-04-23 18:12:13.230794'),(711,'enterprise','0001_squashed_0092_auto_20200312_1650','2020-04-23 18:12:13.231901'),(712,'edxval','0001_squashed_0016_add_transcript_credentials_model','2020-04-23 18:12:13.233806'),(713,'integrated_channel','0001_squashed_0007_auto_20190925_0730','2020-04-24 16:47:58.386734'),(714,'sap_success_factors','0001_squashed_0022_auto_20200206_1046','2020-04-24 16:47:58.389680'),(715,'course_overviews','0021_courseoverviewtab_link','2020-05-04 10:59:50.657693'),(716,'course_overviews','0022_courseoverviewtab_is_hidden','2020-05-04 10:59:50.698025'),(717,'edxval','0002_add_error_description_field','2020-05-04 10:59:50.726121'),(718,'external_user_ids','0004_add_lti_type','2020-05-04 10:59:50.742411'),(719,'enterprise','0095_auto_20200507_1138','2020-05-08 20:20:57.110248'),(720,'enterprise','0096_enterprise_catalog_admin_role','2020-05-13 22:12:35.726151'),(721,'student','0033_userprofile_state','2020-05-13 22:12:35.951058'),(722,'edxval','0003_delete_transcriptcredentials','2020-05-27 11:00:00.899989'),(723,'learning_sequences','0001_initial','2020-06-04 06:06:00.367312'),(724,'video_pipeline','0004_vempipelineintegration','2020-06-04 06:06:00.662081'),(725,'social_django','0009_auto_20191118_0520','2020-06-19 00:01:12.172817'),(726,'social_django','0010_uid_db_index','2020-06-19 00:01:12.397908'),(727,'student','0034_courseenrollmentcelebration','2020-06-19 00:01:12.953638'),(728,'enterprise','0097_auto_20200619_1130','2020-06-19 19:05:31.695995'),(729,'grades','0018_add_waffle_flag_defaults','2020-06-23 18:17:40.133076'),(730,'contentstore','0005_add_enable_checklists_quality_waffle_flag','2020-06-23 18:17:46.707561'),(731,'video_pipeline','0005_add_vem_course_percentage','2020-06-26 08:12:02.660023'); +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'),(558,'enterprise','0069_auto_20190613_0607','2019-06-13 20:29:54.231876'),(559,'course_modes','0012_historicalcoursemode','2019-06-20 14:17:00.883900'),(560,'student','0022_indexing_in_courseenrollment','2019-06-28 07:52:49.937484'),(561,'courseware','0009_auto_20190703_1955','2019-07-03 19:59:48.322976'),(562,'bulk_grades','0002_auto_20190703_1526','2019-07-09 16:24:12.489841'),(563,'course_overviews','0015_historicalcourseoverview','2019-07-09 16:24:12.865655'),(564,'courseware','0010_auto_20190709_1559','2019-07-09 16:24:13.249043'),(565,'grades','0016_auto_20190703_1446','2019-07-09 16:24:14.162438'),(566,'cornerstone','0003_auto_20190621_1000','2019-08-16 20:33:30.643210'),(567,'enterprise','0070_enterprise_catalog_query','2019-08-16 20:33:31.677056'),(568,'enterprise','0071_historicalpendingenrollment_historicalpendingenterprisecustomeruser','2019-08-16 20:33:32.745997'),(569,'instructor_task','0003_alter_task_input_field','2019-08-16 20:33:33.017938'),(570,'microsite_configuration','004_delete_all_tables','2019-08-16 20:33:34.256853'),(571,'sap_success_factors','0018_sapsuccessfactorsenterprisecustomerconfiguration_show_course_price','2019-08-16 20:33:34.327113'),(572,'super_csv','0003_csvoperation_original_filename','2019-08-16 20:33:34.600410'),(573,'system_wide_roles','0001_SystemWideRole_SystemWideRoleAssignment','2019-08-16 20:33:34.993423'),(574,'system_wide_roles','0002_add_system_wide_student_support_role','2019-08-16 20:33:35.022596'),(575,'contentstore','0004_remove_push_notification_configmodel_table','2019-08-16 20:33:41.465727'),(576,'xapi','0003_auto_20190807_1006','2019-08-23 11:39:48.729878'),(577,'program_enrollments','0006_add_the_correct_constraints','2019-08-23 18:09:09.268961'),(578,'video_config','0008_courseyoutubeblockedflag','2019-08-25 18:17:15.983779'),(579,'program_enrollments','0007_waiting_programcourseenrollment_constraint','2019-08-27 19:09:27.680607'),(580,'content_libraries','0001_initial','2019-08-30 19:28:25.635235'),(581,'courseware','0011_csm_id_bigint','2019-08-30 19:28:26.395259'),(582,'enterprise','0072_add_enterprise_report_config_feature_role','2019-08-30 19:28:26.428135'),(583,'enterprise','0073_enterprisecustomerreportingconfiguration_uuid','2019-08-30 19:28:26.610136'),(584,'enterprise','0074_auto_20190904_1143','2019-09-06 21:17:13.932220'),(585,'xapi','0004_auto_20190830_0710','2019-09-06 21:17:14.456308'),(586,'enterprise','0075_auto_20190916_1030','2019-09-16 21:24:40.846129'),(587,'course_overviews','0016_simulatecoursepublishconfig','2019-09-17 14:33:18.318209'),(588,'courseware','0012_adjust_fields','2019-09-19 19:47:32.265973'),(589,'enterprise','0076_auto_20190918_2037','2019-09-19 19:47:33.356916'),(590,'cornerstone','0004_cornerstoneglobalconfiguration_languages','2019-09-25 09:52:14.183189'),(591,'cornerstone','0005_auto_20190925_0730','2019-09-25 09:52:14.554260'),(592,'degreed','0007_auto_20190925_0730','2019-09-25 09:52:14.965290'),(593,'integrated_channel','0007_auto_20190925_0730','2019-09-25 09:52:15.001578'),(594,'sap_success_factors','0019_auto_20190925_0730','2019-09-25 09:52:15.372786'),(595,'course_overviews','0017_auto_20191002_0823','2019-10-03 17:35:47.108732'),(596,'courseware','0013_auto_20191001_1858','2019-10-03 17:35:47.675913'),(597,'edx_when','0004_datepolicy_rel_date','2019-10-03 17:35:47.714137'),(598,'edx_when','0005_auto_20190911_1056','2019-10-03 17:35:48.352268'),(599,'student','0023_bulkunenrollconfiguration','2019-10-08 08:54:55.531674'),(600,'program_enrollments','0008_add_ended_programenrollment_status','2019-10-15 16:54:40.812546'),(601,'enterprise','0077_auto_20191002_1529','2019-10-15 21:48:57.015096'),(602,'completion','0003_learning_context','2019-10-22 18:42:37.071520'),(603,'teams','0002_slug_field_ids','2019-10-22 18:42:37.978486'),(604,'entitlements','0012_allow_blank_order_number_values','2019-10-23 16:23:53.619696'),(605,'discounts','0002_auto_20191022_1720','2019-10-25 14:14:29.317857'),(606,'commerce','0008_auto_20191024_2048','2019-10-30 16:42:49.876338'),(607,'student','0024_fbeenrollmentexclusion','2019-10-31 16:16:38.116056'),(608,'student','0025_auto_20191101_1846','2019-11-05 14:23:29.298316'),(609,'cornerstone','0006_auto_20191001_0742','2019-11-15 09:41:58.615907'),(610,'degreed','0008_auto_20191001_0742','2019-11-15 09:41:59.004037'),(611,'enterprise','0078_auto_20191107_1536','2019-11-15 09:41:59.081745'),(612,'enterprise','0079_AddEnterpriseEnrollmentSource','2019-11-15 09:42:01.297444'),(613,'enterprise','0080_auto_20191113_1708','2019-11-15 09:42:01.373867'),(614,'sap_success_factors','0020_sapsuccessfactorsenterprisecustomerconfiguration_catalogs_to_transmit','2019-11-15 09:42:01.448662'),(615,'student','0026_allowedauthuser','2019-11-15 09:42:01.867741'),(616,'teams','0003_courseteam_organization_protected','2019-11-15 09:42:02.160822'),(617,'schedules','0008_add_new_start_date_field','2019-11-21 18:12:54.950500'),(618,'enterprise','0081_UpdateEnterpriseEnrollmentSource','2019-11-25 17:52:07.779142'),(619,'enterprise','0082_AddManagementEnterpriseEnrollmentSource','2019-12-03 20:57:44.528593'),(620,'edxval','0012_thirdpartytranscriptcredentialsstate_has_creds','2019-12-06 10:56:28.616253'),(621,'edxval','0013_thirdpartytranscriptcredentialsstate_copy_values','2019-12-13 13:13:43.103802'),(622,'edxval','0014_transcript_credentials_state_retype_exists','2019-12-13 13:13:43.146474'),(623,'programs','0013_customprogramsconfig','2019-12-13 13:13:43.769272'),(624,'verify_student','0012_sspverificationretryconfig','2019-12-13 13:13:44.172148'),(625,'assessment','0004_historicalsharedfileupload_sharedfileupload','2019-12-16 06:29:51.457888'),(626,'certificates','0016_historicalgeneratedcertificate','2019-12-17 14:30:19.195816'),(627,'entitlements','0013_historicalcourseentitlementsupportdetail','2019-12-17 14:30:19.608404'),(628,'credit','0005_creditrequirement_sort_value','2019-12-19 10:51:33.510519'),(629,'student','0027_courseenrollment_mode_callable_default','2019-12-26 15:36:18.942310'),(630,'enterprise','0083_enterprisecustomerreportingconfiguration_include_date','2019-12-26 21:47:36.992960'),(631,'schedules','0009_schedule_copy_column_values','2020-01-02 13:28:40.924356'),(632,'credit','0006_creditrequirement_alter_ordering','2020-01-03 18:18:59.132478'),(633,'credit','0007_creditrequirement_copy_values','2020-01-03 18:18:59.153966'),(634,'credit','0008_creditrequirement_remove_order','2020-01-08 11:38:46.464661'),(635,'grades','0017_delete_manual_psgoverride_table','2020-01-08 11:38:46.979886'),(636,'waffle','0003_update_strings_for_i18n','2020-01-08 14:05:56.793699'),(637,'student','0028_historicalmanualenrollmentaudit','2020-01-10 11:40:33.721153'),(638,'assessment','0005_add_filename_to_sharedupload','2020-01-13 10:35:30.849694'),(639,'course_overviews','0018_add_start_end_in_CourseOverview','2020-01-13 17:26:59.381741'),(640,'wiki','0006_auto_20200110_1003','2020-01-13 17:26:59.580772'),(641,'course_modes','0013_auto_20200115_2022','2020-01-15 20:28:11.826240'),(642,'entitlements','0014_auto_20200115_2022','2020-01-15 20:28:12.121824'),(643,'schedules','0010_remove_null_blank_from_schedules_date','2020-01-22 12:55:55.562069'),(644,'edxval','0015_remove_thirdpartytranscriptcredentialsstate_exists','2020-01-24 14:36:05.625239'),(645,'enterprise','0084_auto_20200120_1137','2020-01-24 14:36:05.682781'),(646,'enterprise','0085_enterprisecustomeruser_linked','2020-01-24 14:36:05.737471'),(647,'sap_success_factors','0021_sapsuccessfactorsenterprisecustomerconfiguration_show_total_hours','2020-01-27 10:53:54.883903'),(648,'course_overviews','0019_improve_courseoverviewtab','2020-01-28 16:51:53.392851'),(649,'enterprise','0086_auto_20200128_1726','2020-01-31 16:49:40.116068'),(650,'student','0029_add_data_researcher','2020-01-31 16:49:40.134245'),(651,'entitlements','0015_add_unique_together_constraint','2020-02-11 13:55:54.821099'),(652,'external_user_ids','0001_initial','2020-02-11 13:55:56.286689'),(653,'external_user_ids','0002_mb_coaching_20200210_1754','2020-02-11 13:55:56.302455'),(654,'sap_success_factors','0022_auto_20200206_1046','2020-02-11 13:55:56.431451'),(655,'track','0002_delete_trackinglog','2020-02-11 13:55:56.448287'),(656,'enterprise','0087_auto_20200206_1151','2020-02-18 09:56:05.261459'),(657,'site_configuration','0003_auto_20200217_1058','2020-02-18 09:56:05.382056'),(658,'student','0030_userprofile_phone_number','2020-02-20 14:49:09.679286'),(659,'course_date_signals','0001_initial','2020-02-21 16:46:07.245424'),(660,'oauth_dispatch','0008_applicationaccess_filters','2020-02-21 16:46:07.279347'),(661,'site_configuration','0004_add_site_values_field','2020-02-21 16:46:07.400523'),(662,'calendar_sync','0001_initial','2020-02-21 20:05:00.723064'),(663,'site_configuration','0005_copy_values_to_site_values','2020-02-24 18:48:13.968250'),(664,'external_user_ids','0003_auto_20200224_1836','2020-02-26 19:12:10.225163'),(665,'course_overviews','0020_courseoverviewtab_url_slug','2020-02-28 17:48:26.402935'),(666,'schedules','0011_auto_20200228_2018','2020-03-02 19:21:35.447856'),(667,'schedules','0012_auto_20200302_1914','2020-03-02 19:21:35.760107'),(668,'enterprise','0088_auto_20200224_1341','2020-03-03 20:06:11.193549'),(669,'experiments','0004_historicalexperimentkeyvalue','2020-03-03 20:06:11.472740'),(670,'program_enrollments','0009_update_course_enrollment_field_to_foreign_key','2020-03-03 20:06:11.793880'),(671,'site_configuration','0005_populate_siteconfig_history_site_values','2020-03-03 20:06:11.809759'),(672,'third_party_auth','0025_auto_20200303_1448','2020-03-03 20:06:12.334364'),(673,'oauth_dispatch','0009_delete_enable_scopes_waffle_switch','2020-03-04 16:02:10.087753'),(674,'schedules','0013_historicalschedule','2020-03-04 20:46:18.382627'),(675,'content_libraries','0002_group_permissions','2020-03-06 17:56:06.253916'),(676,'enterprise','0089_auto_20200305_0652','2020-03-06 17:56:06.313096'),(677,'site_configuration','0006_copy_values_to_site_values','2020-03-06 17:56:06.328937'),(678,'site_configuration','0007_remove_values_field','2020-03-06 17:56:06.393334'),(679,'schedules','0014_historicalschedule_drop_fk','2020-03-09 17:25:11.320964'),(680,'enterprise','0090_update_content_filter','2020-03-10 17:57:28.234120'),(681,'schedules','0015_schedules_start_nullable','2020-03-10 17:57:28.512287'),(682,'courseware','0014_fix_nan_value_for_global_speed','2020-03-11 13:49:34.540416'),(683,'enterprise','0091_add_sales_force_id_in_pendingenrollment','2020-03-12 10:55:06.528703'),(684,'enterprise','0092_auto_20200312_1650','2020-03-13 15:24:08.871983'),(685,'schedules','0016_remove_start_from_schedules','2020-03-13 15:24:08.919319'),(686,'schedules','0017_remove_start_from_historicalschedule','2020-03-13 15:24:08.961171'),(687,'schedules','0018_readd_historicalschedule_fks','2020-03-16 14:38:37.163574'),(688,'student','0031_auto_20200317_1122','2020-03-17 13:50:29.328406'),(689,'schedules','0019_auto_20200316_1935','2020-03-17 18:44:58.495941'),(690,'teams','0004_alter_defaults','2020-03-18 15:45:23.207866'),(691,'edxval','0016_add_transcript_credentials_model','2020-03-27 07:02:32.020569'),(692,'assessment','0006_TeamWorkflows','2020-03-30 19:21:59.600633'),(693,'edx_when','0006_drop_active_index','2020-03-30 19:21:59.632637'),(694,'program_enrollments','0010_add_courseaccessroleassignment','2020-03-30 19:22:00.189635'),(695,'workflow','0003_TeamWorkflows','2020-03-30 19:22:00.217685'),(696,'submissions','0005_CreateTeamModel','2020-04-01 20:58:02.569032'),(697,'third_party_auth','0026_auto_20200401_1932','2020-04-02 13:16:24.403863'),(698,'enterprise','0093_add_use_enterprise_catalog_flag','2020-04-08 18:23:05.688441'),(699,'enterprise','0094_add_use_enterprise_catalog_sample','2020-04-10 22:07:38.597967'),(700,'submissions','0001_squashed_0005_CreateTeamModel','2020-04-10 22:07:38.604906'),(701,'organizations','0001_squashed_0007_historicalorganization','2020-04-10 22:07:38.607140'),(702,'admin','0003_logentry_add_action_flag_choices','2020-04-23 18:12:12.574100'),(703,'auth','0009_alter_user_last_name_max_length','2020-04-23 18:12:12.796012'),(704,'auth','0010_alter_group_name_max_length','2020-04-23 18:12:12.828059'),(705,'auth','0011_update_proxy_permissions','2020-04-23 18:12:12.844008'),(706,'edx_when','0007_meta_tweaks','2020-04-23 18:12:12.867316'),(707,'oauth2_provider','0002_auto_20190406_1805','2020-04-23 18:12:12.934409'),(708,'student','0032_removed_logout_view_configuration','2020-04-23 18:12:13.224802'),(709,'third_party_auth','0001_squashed_0026_auto_20200401_1932','2020-04-23 18:12:13.228610'),(710,'student','0001_squashed_0031_auto_20200317_1122','2020-04-23 18:12:13.230794'),(711,'enterprise','0001_squashed_0092_auto_20200312_1650','2020-04-23 18:12:13.231901'),(712,'edxval','0001_squashed_0016_add_transcript_credentials_model','2020-04-23 18:12:13.233806'),(713,'integrated_channel','0001_squashed_0007_auto_20190925_0730','2020-04-24 16:47:58.386734'),(714,'sap_success_factors','0001_squashed_0022_auto_20200206_1046','2020-04-24 16:47:58.389680'),(715,'course_overviews','0021_courseoverviewtab_link','2020-05-04 10:59:50.657693'),(716,'course_overviews','0022_courseoverviewtab_is_hidden','2020-05-04 10:59:50.698025'),(717,'edxval','0002_add_error_description_field','2020-05-04 10:59:50.726121'),(718,'external_user_ids','0004_add_lti_type','2020-05-04 10:59:50.742411'),(719,'enterprise','0095_auto_20200507_1138','2020-05-08 20:20:57.110248'),(720,'enterprise','0096_enterprise_catalog_admin_role','2020-05-13 22:12:35.726151'),(721,'student','0033_userprofile_state','2020-05-13 22:12:35.951058'),(722,'edxval','0003_delete_transcriptcredentials','2020-05-27 11:00:00.899989'),(723,'learning_sequences','0001_initial','2020-06-04 06:06:00.367312'),(724,'video_pipeline','0004_vempipelineintegration','2020-06-04 06:06:00.662081'),(725,'social_django','0009_auto_20191118_0520','2020-06-19 00:01:12.172817'),(726,'social_django','0010_uid_db_index','2020-06-19 00:01:12.397908'),(727,'student','0034_courseenrollmentcelebration','2020-06-19 00:01:12.953638'),(728,'enterprise','0097_auto_20200619_1130','2020-06-19 19:05:31.695995'),(729,'grades','0018_add_waffle_flag_defaults','2020-06-23 18:17:40.133076'),(730,'contentstore','0005_add_enable_checklists_quality_waffle_flag','2020-06-23 18:17:46.707561'),(731,'video_pipeline','0005_add_vem_course_percentage','2020-06-26 08:12:02.660023'),(732,'enterprise','0098_auto_20200629_1756','2020-07-01 12:53:15.837538'); /*!40000 ALTER TABLE `django_migrations` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; diff --git a/common/test/db_cache/bok_choy_schema_default.sql b/common/test/db_cache/bok_choy_schema_default.sql index df220299f9..c9007df2ce 100644 --- a/common/test/db_cache/bok_choy_schema_default.sql +++ b/common/test/db_cache/bok_choy_schema_default.sql @@ -2632,7 +2632,7 @@ CREATE TABLE `django_migrations` ( `name` varchar(255) NOT NULL, `applied` datetime(6) NOT NULL, PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=732 DEFAULT CHARSET=utf8; +) ENGINE=InnoDB AUTO_INCREMENT=733 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 */; @@ -3152,6 +3152,7 @@ CREATE TABLE `enterprise_enterprisecourseenrollment` ( `enterprise_customer_user_id` int(11) NOT NULL, `marked_done` tinyint(1) NOT NULL, `source_id` int(11) DEFAULT NULL, + `saved_for_later` tinyint(1) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `enterprise_enterprisecou_enterprise_customer_user_71fe301a_uniq` (`enterprise_customer_user_id`,`course_id`), KEY `enterprise_enterpris_source_id_c347bfa6_fk_enterpris` (`source_id`), @@ -3399,6 +3400,7 @@ CREATE TABLE `enterprise_historicalenterprisecourseenrollment` ( `history_change_reason` varchar(100) DEFAULT NULL, `marked_done` tinyint(1) NOT NULL, `source_id` int(11) DEFAULT NULL, + `saved_for_later` tinyint(1) NOT NULL, PRIMARY KEY (`history_id`), KEY `enterprise_historica_history_user_id_a7d84786_fk_auth_user` (`history_user_id`), KEY `enterprise_historicalenterprisecourseenrollment_id_452a4b04` (`id`), 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 14bcf2b627..12cd2cf2f5 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=732 DEFAULT CHARSET=utf8; +) ENGINE=InnoDB AUTO_INCREMENT=733 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; diff --git a/conf/locale/ca/LC_MESSAGES/django.mo b/conf/locale/ca/LC_MESSAGES/django.mo index c372ab9e03..9f59998db2 100644 Binary files a/conf/locale/ca/LC_MESSAGES/django.mo and b/conf/locale/ca/LC_MESSAGES/django.mo differ diff --git a/conf/locale/ca/LC_MESSAGES/django.po b/conf/locale/ca/LC_MESSAGES/django.po index 7bbe2fb7c2..f52de48bb5 100644 --- a/conf/locale/ca/LC_MESSAGES/django.po +++ b/conf/locale/ca/LC_MESSAGES/django.po @@ -64,7 +64,7 @@ msgid "" msgstr "" "Project-Id-Version: 0.1a\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2020-06-21 20:42+0000\n" +"POT-Creation-Date: 2020-07-01 16:15+0000\n" "PO-Revision-Date: 2019-01-20 20:43+0000\n" "Last-Translator: Waheed Ahmed , 2019\n" "Language-Team: Catalan (https://www.transifex.com/open-edx/teams/6205/ca/)\n" @@ -2022,6 +2022,7 @@ msgid "Never" msgstr "" #: common/lib/xmodule/xmodule/capa_base.py lms/templates/courseware/dates.html +#: lms/templates/vert_module.html msgid "Past Due" msgstr "" @@ -3131,6 +3132,17 @@ msgid "" "from the following options: {available_providers}." msgstr "" +#: common/lib/xmodule/xmodule/course_module.py +msgid "Proctortrack Exam Escalation Contact" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Required if 'proctortrack' is selected as your proctoring provider. Enter an" +" email address to be contacted by the support team whenever there are " +"escalations (e.g. appeals, delayed reviews, etc.)." +msgstr "" + #: common/lib/xmodule/xmodule/course_module.py msgid "Allow Opting Out of Proctored Exams" msgstr "" @@ -4057,6 +4069,7 @@ msgid "External Discussion" msgstr "" #: common/lib/xmodule/xmodule/tabs.py lms/djangoapps/courseware/tabs.py +#: openedx/features/enterprise_support/templates/enterprise_support/admin/enrollment_attributes_override.html msgid "Home" msgstr "" @@ -5770,6 +5783,23 @@ msgstr "" msgid "Annual Household Income" msgstr "" +#: lms/djangoapps/courseware/views/views.py +msgid "" +"Tell us about your current financial situation. Why do you need assistance?" +msgstr "" + +#: lms/djangoapps/courseware/views/views.py +msgid "" +"Tell us about your learning or professional goals. How will a Verified " +"Certificate in this course help you achieve these goals?" +msgstr "" + +#: lms/djangoapps/courseware/views/views.py +msgid "" +"Tell us about your plans for this course. What steps will you take to help " +"you complete the course work and receive a certificate?" +msgstr "" + #: lms/djangoapps/courseware/views/views.py msgid "Use between 1250 and 2500 characters or so in your response." msgstr "" @@ -6407,11 +6437,6 @@ msgstr "" msgid "detailed enrollment" msgstr "" -#: lms/djangoapps/instructor/views/api.py -#: lms/djangoapps/instructor_task/api_helper.py -msgid "executive summary" -msgstr "" - #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor_task/api_helper.py msgid "survey" @@ -7748,7 +7773,6 @@ msgstr "Moneda" #: lms/djangoapps/shoppingcart/reports.py #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: wiki/plugins/attachments/forms.py #: wiki/plugins/attachments/templates/wiki/plugins/attachments/history.html @@ -7767,10 +7791,9 @@ msgstr "" msgid "Course Announce Date" msgstr "" -#: cms/templates/settings.html -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +#: lms/djangoapps/shoppingcart/reports.py cms/templates/settings.html msgid "Course Start Date" -msgstr "Data d'inici del curs" +msgstr "" #: lms/djangoapps/shoppingcart/reports.py msgid "Course Registration Close Date" @@ -7796,9 +7819,9 @@ msgstr "Inscripció de Codi d'Honor" msgid "Verified Enrollment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +#: lms/djangoapps/shoppingcart/reports.py msgid "Gross Revenue" -msgstr "Ingressos bruts" +msgstr "" #: lms/djangoapps/shoppingcart/reports.py msgid "Gross Revenue over the Minimum" @@ -8594,17 +8617,64 @@ msgstr "" msgid "Error" msgstr "Error" -#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html -msgid "Expired ID Verification" +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html +msgid "ID Verification Approved" msgstr "" +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html #: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/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 "" +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.txt +#, python-format +msgid "Your %(platform_name)s ID verification photos have been approved." +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.txt +#, python-format +msgid "" +"Your approval status remains valid for one year, and it will expire " +"%(expiry_date)s." +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.txt +msgid "Enjoy your studies," +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.txt +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +#, python-format +msgid "The %(platform_name)s Team " +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.txt +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +#, python-format +msgid "Hello %(full_name)s, " +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationapproved/email/subject.txt +#, python-format +msgid "Your %(platform_name)s ID verification was approved!" +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 #: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt #, python-format @@ -8650,22 +8720,44 @@ msgstr "" msgid "Thank you," msgstr "Gràcies," -#: 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 "" - -#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt -#, python-format -msgid "Hello %(full_name)s, " -msgstr "" - #: lms/templates/verify_student/edx_ace/verificationexpiry/email/subject.txt #, python-format msgid "Your %(platform_name)s Verification has Expired" msgstr "" +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +msgid "ID Verification Submitted" +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +#, python-format +msgid "" +"Thank you for submitting your photos for identity verification with " +"%(platform_name)s. " +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +msgid "" +"We have received your photos and they will be reviewed within 5-7 days." +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +#, python-format +msgid "You may check the status on your dashboard: %(dashboard_link)s " +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +msgid "Best regards," +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/subject.txt +msgid "Thank you for submitting your photos!" +msgstr "" + #: lms/templates/wiki/article.html msgid "Last modified:" msgstr "Darrera modificació:" @@ -8745,7 +8837,6 @@ msgstr "Estàs esborrant un article. Si us plau, confirma-ho." #: lms/templates/wiki/edit.html cms/templates/component.html #: cms/templates/container.html cms/templates/studio_xblock_wrapper.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/wiki/includes/article_menu.html wiki/templates/wiki/edit.html #: wiki/templates/wiki/includes/article_menu.html msgid "Edit" @@ -10277,7 +10368,6 @@ msgid "Success" msgstr "Éxit" #: openedx/core/djangoapps/user_api/admin.py -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/staff_problem_info.html msgid "Actions" msgstr "Accions" @@ -10764,6 +10854,10 @@ msgstr "" msgid "Username created for VEM Integration, e.g. vem_service_user." msgstr "" +#: openedx/core/djangoapps/video_pipeline/models.py +msgid "Percentage of courses allowed to use VEM pipeline" +msgstr "" + #: openedx/core/djangoapps/waffle_utils/models.py msgid "Force On" msgstr "" @@ -10861,31 +10955,11 @@ msgstr "" msgid "Subscribe to calendar updates" msgstr "" -#: openedx/features/calendar_sync/views/management.py -#, python-brace-format -msgid "Updates for Your {course} Schedule" -msgstr "" - -#: openedx/features/calendar_sync/views/management.py -msgid "Update Your Calendar" -msgstr "" - -#: openedx/features/calendar_sync/views/management.py -#, python-brace-format -msgid "" -"Your assignment due dates for {course} were recently adjusted. Update your " -"calendarwith your new schedule to ensure that you stay on track!" -msgstr "" - -#: openedx/features/calendar_sync/views/management.py +#: openedx/features/calendar_sync/utils.py msgid "Stay on Track" msgstr "" -#: openedx/features/calendar_sync/views/management.py -msgid "Mark Your Calendar" -msgstr "" - -#: openedx/features/calendar_sync/views/management.py +#: openedx/features/calendar_sync/utils.py #, python-brace-format msgid "" "Sticking to a schedule is the best way to ensure that you successfully " @@ -10893,6 +10967,18 @@ msgid "" "{course} will help you stay on track!" msgstr "" +#: openedx/features/calendar_sync/utils.py +#, python-brace-format +msgid "Updates for Your {course} Schedule" +msgstr "" + +#: openedx/features/calendar_sync/utils.py +#, python-brace-format +msgid "" +"Your assignment due dates for {course} were recently adjusted. Update your " +"calendar with your new schedule to ensure that you stay on track!" +msgstr "" + #: openedx/features/content_type_gating/models.py #: openedx/features/course_duration_limits/models.py #: lms/templates/support/feature_based_enrollments.html @@ -11088,6 +11174,23 @@ msgid "" "checkout! {a_open}Upgrade Now{a_close}{div_close}" msgstr "" +#: openedx/features/enterprise_support/admin/forms.py +msgid "CSV File" +msgstr "" + +#: openedx/features/enterprise_support/admin/forms.py +msgid "" +"CSV file should have 3 columns having names lms_user_id, course_id, " +"opportunity_id" +msgstr "" + +#: openedx/features/enterprise_support/admin/views.py +#, python-brace-format +msgid "" +"Enrollment attributes were not updated for records at following line numbers" +" in csv because no enrollment found for these records: {error_line_numbers}" +msgstr "" + #: openedx/features/enterprise_support/api.py #, python-brace-format msgid "Enrollment in {course_title} was not complete." @@ -11100,6 +11203,18 @@ msgid "" "administrator at {enterprise_customer_name}." msgstr "" +#: openedx/features/enterprise_support/templates/enterprise_support/admin/enrollment_attributes_override.html +msgid "Enterprise Course Enrollments" +msgstr "" + +#: openedx/features/enterprise_support/templates/enterprise_support/admin/enrollment_attributes_override.html +msgid "Override Enrollment Attributes" +msgstr "" + +#: openedx/features/enterprise_support/templates/enterprise_support/admin/enrollment_attributes_override.html +msgid "Upload CSV to override enrollment attributes for learners" +msgstr "" + #: openedx/features/enterprise_support/utils.py #, python-brace-format msgid "" @@ -11960,6 +12075,7 @@ msgid "Course Outline" msgstr "Esquema del curs" #: cms/templates/course_outline.html +#: cms/templates/widgets/deprecated-course-key-warning.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "Warning" msgstr "" @@ -12001,11 +12117,6 @@ msgstr "Cursos" msgid "example: username@domain.com" msgstr "exemple:nomusuari@domini.com" -#: cms/templates/settings.html -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Course End Date" -msgstr "Data de finalització del curs" - #: cms/templates/settings.html lms/templates/courseware/program_marketing.html msgid "Instructors" msgstr "Instructors" @@ -12943,6 +13054,7 @@ msgid "Sequence" msgstr "Seqüència" #: lms/templates/courseware/dates.html lms/templates/seq_module.html +#: lms/templates/vert_module.html #: openedx/features/course_experience/templates/course_experience/course-outline-fragment.html msgid "Completed" msgstr "" @@ -13342,6 +13454,11 @@ msgstr "" " de navegadors per escalar-los o baixar-los. A Google Chrome, això es fa " "pressionant ctrl-més o ctrl-menys alhora." +#: lms/templates/vert_module.html +#: openedx/features/course_experience/templates/course_experience/course-outline-fragment.html +msgid "{subsection_format} due {{date}}" +msgstr "{subsection_format} vençuda {{date}}" + #: lms/templates/video.html msgid "Loading video player" msgstr "Càrrega de reproductor de vídeo" @@ -15904,6 +16021,12 @@ msgstr "Opcions del curs per a" msgid "Available Actions" msgstr "Accions disponibles" +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"You are enrolled by your institution and you should reach out to your " +"institution to drop this course." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_entitlement_actions.html msgid "Email Settings" @@ -15913,28 +16036,6 @@ msgstr "Configuració del correu electrònic" msgid "Related Programs" msgstr "Programes relacionats" -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "" -"You can no longer access this course because payment has not yet been " -"received. You can contact the account holder to request payment, or you can " -"unenroll from this course" -msgstr "" -"Ja no podeu accedir a aquest curs perquè el pagament encara no s'ha rebut. " -"Podeu contactar amb el titular del compte per sol·licitar el pagament o " -"podeu cancel·lar la matrícula d'aquest curs" - -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "" -"You can no longer access this course because payment has not yet been " -"received. You can {contact_link_start}contact the account " -"holder{contact_link_end} to request payment, or you can " -"{unenroll_link_start}unenroll{unenroll_link_end} from this course" -msgstr "" -"Ja no podeu accedir a aquest curs perquè el pagament encara no s'ha rebut. " -"Podeu {contact_link_start} posar-vos en contacte amb el titular del compte " -"{contact_link_end} per sol·licitar el pagament o podeu {unenroll_link_start}" -" cancel·lar la inscripció {unenroll_link_end} d'aquest curs" - #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Verification not yet complete." msgstr "La verificació encara no s'ha completat." @@ -16980,7 +17081,6 @@ msgid "Order History" msgstr "Historial de Comandes" #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon Code" msgstr "Afegiu el codi de cupó" @@ -16989,8 +17089,6 @@ msgid "Enter information about the coupon code below." msgstr "Introduïu informació sobre el codi de cupó a continuació." #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html msgid "Coupon Code" msgstr "Codi de cupó" @@ -17079,7 +17177,6 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/certificates.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/data_download.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Pending Tasks" @@ -17088,7 +17185,6 @@ msgstr "Tasques pendents" #: lms/templates/instructor/instructor_dashboard_2/certificates.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/data_download.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "The status for any active tasks appears in a table below." msgstr "L'estat de qualsevol tasca activa apareix a la taula següent." @@ -17265,7 +17361,6 @@ msgid "Get Student Anonymized IDs CSV" msgstr "Obtenir identificadors anònims d'estudiants CSV" #: lms/templates/instructor/instructor_dashboard_2/data_download.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Reports" msgstr "Informes" @@ -17445,293 +17540,6 @@ msgid "" "policies.{li_end}{ul_end}" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enrollment Codes" -msgstr "Codis d'inscripció" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Create one or more pre-paid course enrollment codes. Students can use these " -"codes to enroll in the course." -msgstr "" -"Creeu un o més codis de matrícula de prepagament. Els estudiants poden " -"utilitzar aquests codis per inscriure's al curs." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -msgid "Create Enrollment Codes" -msgstr "Crea codis d'inscripció" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Cancel, restore, or mark an enrollment code as unused." -msgstr "Cancel·la, restaura o marca un codi d'inscripció com a no utilitzat." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Change Enrollment Code Status" -msgstr "Canvieu l'estat del codi d'inscripció" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download a .csv file of all enrollment codes for this course." -msgstr "" -"Descarregueu un fitxer .csv de tots els codis d'inscripció per a aquest " -"curs." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download All Enrollment Codes" -msgstr "Baixa tots els codis d'inscripció" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download a .csv file of all unused enrollment codes for this course." -msgstr "" -"Descarregueu un fitxer .csv de tots els codis d'inscripció no utilitzats per" -" a aquest curs." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download Unused Enrollment Codes" -msgstr "Baixeu els codis d'inscripció no utilitzats" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download a .csv file of all used enrollment codes for this course." -msgstr "" -"Descarregueu un fitxer .csv de tots els codis d'inscripció utilitzats per a " -"aquest curs." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download Used Enrollment Codes" -msgstr "Baixeu els codis d'inscripció utilitzats" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html -msgid "Course Price" -msgstr "Preu del curs" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Course price per seat: " -msgstr "Preu del curs per seient:" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Edit Price" -msgstr "Editar preu" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Course Seat Purchases" -msgstr "Compra de seients del curs" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Total Credit Card Purchases: " -msgstr "Compra total de targetes de crèdit:" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Download a .csv file for all credit card purchases or for all invoices, " -"regardless of status." -msgstr "" -"Descarregueu un fitxer .csv per a totes les compres de targetes de crèdit o " -"per a totes les factures, independentment de l'estat." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download All Invoices" -msgstr "Descarregueu totes les factures" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download All Credit Card Purchases" -msgstr "Baixar totes les compres de la targeta de crèdit" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "To cancel or resubmit an invoice, enter the invoice number below." -msgstr "" -"Per cancel·lar o tornar a enviar una factura, introduïu el número de la " -"factura a continuació." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Invoice Number" -msgstr "Nombre de factura" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Cancel Invoice" -msgstr "Cancel·la la factura" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Resubmit Invoice" -msgstr "Torneu a enviar la factura" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Create a .csv file that contains enrollment information for your course." -msgstr "" -"Creeu un fitxer .csv que contingui informació d'inscripció per al vostre " -"curs." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Create Enrollment Report" -msgstr "Crea un informe d'inscripció" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Create an HTML file that contains an executive summary for this course." -msgstr "" -"Create an HTML file that contains an executive summary for this course." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Create Executive Summary" -msgstr "Crea un Resum Executiu" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Available Reports" -msgstr "Informes disponibles" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"The following reports are available for download. Reports are not deleted. A" -" link to every report remains available on this page, identified by the date" -" and time (in UTC) that the report was generated." -msgstr "" -"Els següents informes estan disponibles per a la seva descàrrega. Els " -"informes no se suprimeixen. Un enllaç a cada informe roman disponible en " -"aquesta pàgina, identificat per la data i l'hora (a UTC) que es generava " -"l'informe." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"{strong_start}Note{strong_end}: To help protect learner data, links to these" -" reports that you save outside of this page or that you send or receive in " -"email expire after five minutes." -msgstr "" -"{strong_start} Nota {strong_end}: per ajudar a protegir dades dels " -"aprenents, els enllaços a aquests informes que deseu fora d'aquesta pàgina o" -" que envieu o rebeu en el correu electrònic caduquen al cap de cinc minuts." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Coupon Code List" -msgstr "Llista de codis de cupons" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download a .csv file of all coupon codes for this course." -msgstr "" -"Descarregueu un fitxer .csv de tots els codis de descompte per a aquest " -"curs." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download Coupon Codes" -msgstr "Descarregueu els codis de cupó" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Coupon Codes" -msgstr "Codis de cupons" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html -msgid "Expiration Date" -msgstr "Data de caducitat" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Coupon (%)" -msgstr "Cupó (%)" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Number Redeemed" -msgstr "Número redimensionat" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "{code}" -msgstr "{code}" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "{description}" -msgstr "{description}" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "{discount}" -msgstr "{discount}" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The Invoice Number field cannot be empty." -msgstr "El camp Número de la factura no pot estar buit." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "No Expiration Date" -msgstr "Sense data de caducitat" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the company name." -msgstr "Introduïu el nom de l'empresa." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The company name cannot be a number." -msgstr "El nom de l'empresa no pot ser un número." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the company contact name." -msgstr "Introduïu el nom del contacte de l'empresa." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The company contact name cannot be a number." -msgstr "El nom de contacte de l'empresa no pot ser un número." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the email address for the company contact." -msgstr "Introduïu l'adreça electrònica del contacte de l'empresa." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter a valid email address." -msgstr "Introdueix un correu electrònic vàlid." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the recipient name." -msgstr "Introduïu el nom del destinatari." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The recipient name cannot be a number." -msgstr "El nom del destinatari no pot ser un número." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the recipient email address." -msgstr "Introduïu l'adreça electrònica del destinatari." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the billing address." -msgstr "Introduïu l'adreça de facturació." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the price per course seat." -msgstr "Introduïu el preu per seient del curs." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Enter a numeric value for the price per course seat. Do not include currency" -" symbols." -msgstr "" -"Introduïu un valor numèric per al seient de preu per curs. No inclogueu " -"símbols de moneda." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the number of enrollment codes." -msgstr "Introduïu el nombre de codis d'inscripció." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter a numeric value for the number of enrollment codes." -msgstr "Introduïu un valor numèric per al nombre de codis d'inscripció." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Select a currency." -msgstr "Seleccioneu una moneda." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter a coupon code." -msgstr "Introduïu un codi de cupó." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The discount percentage must be less than or equal to 100." -msgstr "El percentatge de descompte ha de ser inferior o igual a 100." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Enter a numeric value for the discount amount. Do not include the percent " -"sign." -msgstr "" -"Introduïu un valor numèric per a l'import del descompte. No inclogueu el " -"signe de percentatge." - #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Edit Coupon Code" msgstr "Edita el codi de cupó" @@ -17752,98 +17560,14 @@ msgstr "exemple: A123DS" msgid "Percentage Discount" msgstr "Descompte percentual" +#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html +msgid "Expiration Date" +msgstr "Data de caducitat" + #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon Code" msgstr "Actualització del codi de cupó" -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Executive Summary for {display_name}" -msgstr "Resum executiu de {display_name}" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Report Creation Date" -msgstr "Data de creació de l'informe" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of Seats" -msgstr "Nombre de seients" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of Enrollments" -msgstr "Nombre d'inscripcions" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Gross Revenue Collected" -msgstr "Ingressos bruts recaptats" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Gross Revenue Pending" -msgstr "Ingressos bruts pendents" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of Enrollment Refunds" -msgstr "Nombre de reemborsaments d'inscripció" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Amount Refunded" -msgstr "Import reemborsat" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Average Price per Seat" -msgstr "Preu mitjà per seient" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Frequently Used Coupon Codes" -msgstr "Codis de cupons d'ús freqüent" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of seats purchased using coupon codes" -msgstr "Nombre de places comprades amb codis de descompte" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Rank" -msgstr "Classificar" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Percent Discount" -msgstr "Descompte per cent" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Times Used" -msgstr "Temps usats" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Bulk and Single Seat Purchases" -msgstr "Compra a granel i en un sol seient" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of seats purchased individually" -msgstr "Nombre de seients adquirits individualment" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of seats purchased in bulk" -msgstr "Nombre de seients comprats a granel" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of seats purchased with invoices" -msgstr "Nombre de places comprades amb factures" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Unused bulk purchase seats (revenue at risk)" -msgstr "Seients de compra massius no utilitzats (ingressos en risc)" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Percentage of seats purchased individually" -msgstr "Percentatge de seients adquirits individualment" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Percentage of seats purchased in bulk" -msgstr "Percentatge de places comprades a granel" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Percentage of seats purchased with invoices" -msgstr "Percentatge de places comprades amb factures" - #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Individual due date extensions" msgstr "Extensions individuals de data de venciment" @@ -17941,6 +17665,10 @@ msgstr "Restablir la data de venciment de l'estudiant" msgid "Generate Registration Code Modal" msgstr "Genera el codi de registre modal" +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "Create Enrollment Codes" +msgstr "Crea codis d'inscripció" + #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "* Required Information" msgstr "* Informació requerida" @@ -18493,10 +18221,18 @@ msgstr "Estableix el preu del mode de curs" msgid "Please enter Course Mode detail below" msgstr "Introduïu el detall del mode de curs a continuació" +#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html +msgid "Course Price" +msgstr "Preu del curs" + #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Price" msgstr "Establir Preu" +#: lms/templates/instructor/instructor_dashboard_2/special_exams.html +msgid "Proctortrack Escalation Email:" +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/special_exams.html msgid "Allowance Section" msgstr "Secció de bonificacions" @@ -19475,14 +19211,10 @@ msgstr "" msgid "" "Our system indicates that you are trying to access this {platform_name} " "course from a country or region currently subject to U.S. economic and trade" -" sanctions.Unfortunately, because {platform_name} is required to comply with" -" export controls,we cannot allow you to access this course at this time." +" sanctions. Unfortunately, because {platform_name} is required to comply " +"with export controls, we cannot allow you to access this course at this " +"time." msgstr "" -"El nostre sistema indica que esteu intentant accedir a aquest curs " -"{platform_name} d'un país o regió que actualment està sotmès a sancions " -"econòmiques i comercials dels Estats Units. Malauradament, perquè " -"{platform_name} és obligatori per complir els controls d'exportació, no " -"podem permetre-vos accedir a aquest curs en aquest moment." #: lms/templates/static_templates/faq.html #: themes/red-theme/lms/templates/footer.html @@ -19866,10 +19598,6 @@ msgstr[1] "" msgid "Prerequisite: " msgstr "Requisit previ:" -#: openedx/features/course_experience/templates/course_experience/course-outline-fragment.html -msgid "{subsection_format} due {{date}}" -msgstr "{subsection_format} vençuda {{date}}" - #: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html msgid "Learn About Verified Certificates" msgstr "Conegui els certificats verificats" @@ -20056,6 +19784,14 @@ msgstr "" msgid "edX Partner Portal" msgstr "edX Partner Portal" +#: themes/edx.org/lms/templates/dashboard.html +msgid "Want to make edX better for everyone?" +msgstr "" + +#: themes/edx.org/lms/templates/dashboard.html +msgid "Get started" +msgstr "" + #: themes/edx.org/lms/templates/dashboard.html msgid "" "Browse recently launched courses and see what's new in your favorite " @@ -22961,6 +22697,10 @@ msgstr "Hora d'inici del curs" msgid "(UTC)" msgstr "(UTC)" +#: cms/templates/settings.html +msgid "Course End Date" +msgstr "" + #: cms/templates/settings.html msgid "Last day your course is active" msgstr "L'últim dia el curs està actiu" @@ -23823,6 +23563,24 @@ msgstr "" msgid "Return to the {link_start}home page{link_end}." msgstr "Torna a la {link_start} pàgina d'inici {link_end}." +#: cms/templates/widgets/deprecated-course-key-warning.html +msgid "Support will be removed in an upcoming release." +msgstr "" + +#: cms/templates/widgets/deprecated-course-key-warning.html +msgid "Support will be removed on {expiration_date}." +msgstr "" + +#: cms/templates/widgets/deprecated-course-key-warning.html +msgid "This course uses a legacy storage format." +msgstr "" + +#: cms/templates/widgets/deprecated-course-key-warning.html +msgid "" +"Please reach out to your support team contact, if you have any additional " +"questions or concerns." +msgstr "" + #: cms/templates/widgets/footer.html msgid "Policies" msgstr "Polítiques" diff --git a/conf/locale/de_DE/LC_MESSAGES/django.mo b/conf/locale/de_DE/LC_MESSAGES/django.mo index 5b15405d18..c81c95eada 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 d7b1652012..98d9030c76 100644 --- a/conf/locale/de_DE/LC_MESSAGES/django.po +++ b/conf/locale/de_DE/LC_MESSAGES/django.po @@ -172,7 +172,7 @@ msgid "" msgstr "" "Project-Id-Version: 0.1a\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2020-06-21 20:42+0000\n" +"POT-Creation-Date: 2020-07-01 16:15+0000\n" "PO-Revision-Date: 2019-01-20 20:43+0000\n" "Last-Translator: Stefania Trabucchi , 2019\n" "Language-Team: German (Germany) (https://www.transifex.com/open-edx/teams/6205/de_DE/)\n" @@ -3688,6 +3688,17 @@ msgstr "" " verwenden möchten. Wählen Sie aus den folgenden Optionen: " "{available_providers}." +#: common/lib/xmodule/xmodule/course_module.py +msgid "Proctortrack Exam Escalation Contact" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Required if 'proctortrack' is selected as your proctoring provider. Enter an" +" email address to be contacted by the support team whenever there are " +"escalations (e.g. appeals, delayed reviews, etc.)." +msgstr "" + #: common/lib/xmodule/xmodule/course_module.py msgid "Allow Opting Out of Proctored Exams" msgstr "Erlauben Sie die Abmeldung von beaufsichtigten Prüfungen" @@ -4836,6 +4847,7 @@ msgid "External Discussion" msgstr "Externes Forum" #: common/lib/xmodule/xmodule/tabs.py lms/djangoapps/courseware/tabs.py +#: openedx/features/enterprise_support/templates/enterprise_support/admin/enrollment_attributes_override.html msgid "Home" msgstr "Home" @@ -6841,6 +6853,23 @@ msgstr "" msgid "Annual Household Income" msgstr "Jährliches Haushaltseinkommen" +#: lms/djangoapps/courseware/views/views.py +msgid "" +"Tell us about your current financial situation. Why do you need assistance?" +msgstr "" + +#: lms/djangoapps/courseware/views/views.py +msgid "" +"Tell us about your learning or professional goals. How will a Verified " +"Certificate in this course help you achieve these goals?" +msgstr "" + +#: lms/djangoapps/courseware/views/views.py +msgid "" +"Tell us about your plans for this course. What steps will you take to help " +"you complete the course work and receive a certificate?" +msgstr "" + #: lms/djangoapps/courseware/views/views.py msgid "Use between 1250 and 2500 characters or so in your response." msgstr "Verwenden Sie in Ihrer Antwort zwischen 1250 und 2500 Zeichen." @@ -7556,11 +7585,6 @@ msgstr "" msgid "detailed enrollment" msgstr "detaillierte Einschreibung" -#: lms/djangoapps/instructor/views/api.py -#: lms/djangoapps/instructor_task/api_helper.py -msgid "executive summary" -msgstr "Kurzfassung" - #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor_task/api_helper.py msgid "survey" @@ -9121,7 +9145,6 @@ msgstr "Währung" #: lms/djangoapps/shoppingcart/reports.py #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: wiki/plugins/attachments/forms.py #: wiki/plugins/attachments/templates/wiki/plugins/attachments/history.html @@ -9140,8 +9163,7 @@ msgstr "Universität" msgid "Course Announce Date" msgstr "Kursankündigungsdatum" -#: lms/djangoapps/shoppingcart/reports.py cms/templates/settings.html -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +#: lms/djangoapps/shoppingcart/reports.py msgid "Course Start Date" msgstr "Startdatum" @@ -9170,7 +9192,6 @@ msgid "Verified Enrollment" msgstr "Verifizierte Einschreibung" #: lms/djangoapps/shoppingcart/reports.py -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html msgid "Gross Revenue" msgstr "Bruttoumsatz" @@ -10061,17 +10082,64 @@ msgstr "Erlauben" msgid "Error" msgstr "Fehler" -#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html -msgid "Expired ID Verification" -msgstr "Ausgelaufene ID Verifikation" +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html +msgid "ID Verification Approved" +msgstr "" +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html #: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/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 "Hallo %(full_name)s," +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.txt +#, python-format +msgid "Your %(platform_name)s ID verification photos have been approved." +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.txt +#, python-format +msgid "" +"Your approval status remains valid for one year, and it will expire " +"%(expiry_date)s." +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.txt +msgid "Enjoy your studies," +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.txt +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +#, python-format +msgid "The %(platform_name)s Team " +msgstr "Das %(platform_name)s Team" + +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.txt +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +#, python-format +msgid "Hello %(full_name)s, " +msgstr "Hallo %(full_name)s," + +#: lms/templates/verify_student/edx_ace/verificationapproved/email/subject.txt +#, python-format +msgid "Your %(platform_name)s ID verification was approved!" +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html +msgid "Expired ID Verification" +msgstr "Ausgelaufene ID Verifikation" + #: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html #: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt #, python-format @@ -10121,22 +10189,44 @@ msgstr "ID Verifikation FAQ: %(help_center_link)s" msgid "Thank you," msgstr "Vielen Dank," -#: 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 "Das %(platform_name)s Team" - -#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt -#, python-format -msgid "Hello %(full_name)s, " -msgstr "Hallo %(full_name)s," - #: lms/templates/verify_student/edx_ace/verificationexpiry/email/subject.txt #, python-format msgid "Your %(platform_name)s Verification has Expired" msgstr "Ihre %(platform_name)s Verifikation ist abgelaufen" +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +msgid "ID Verification Submitted" +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +#, python-format +msgid "" +"Thank you for submitting your photos for identity verification with " +"%(platform_name)s. " +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +msgid "" +"We have received your photos and they will be reviewed within 5-7 days." +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +#, python-format +msgid "You may check the status on your dashboard: %(dashboard_link)s " +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +msgid "Best regards," +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/subject.txt +msgid "Thank you for submitting your photos!" +msgstr "" + #: lms/templates/wiki/article.html msgid "Last modified:" msgstr "Zuletzt geändert:" @@ -10218,7 +10308,6 @@ msgstr "Sie löschen gerade einen Artikel. Bitte bestätigen." #: lms/templates/wiki/edit.html cms/templates/component.html #: cms/templates/container.html cms/templates/studio_xblock_wrapper.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/wiki/includes/article_menu.html wiki/templates/wiki/edit.html #: wiki/templates/wiki/includes/article_menu.html msgid "Edit" @@ -11957,7 +12046,6 @@ msgid "Success" msgstr "Operation Erfolgreich" #: openedx/core/djangoapps/user_api/admin.py -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/staff_problem_info.html msgid "Actions" msgstr "Aktionen" @@ -12529,6 +12617,10 @@ msgstr "" msgid "Username created for VEM Integration, e.g. vem_service_user." msgstr "" +#: openedx/core/djangoapps/video_pipeline/models.py +msgid "Percentage of courses allowed to use VEM pipeline" +msgstr "" + #: openedx/core/djangoapps/waffle_utils/models.py msgid "Force On" msgstr "Aufdrücken" @@ -12637,34 +12729,11 @@ msgstr "Kalenderaktualisierungen abbestellen" msgid "Subscribe to calendar updates" msgstr "Abonnieren Sie Kalenderaktualisierungen" -#: openedx/features/calendar_sync/views/management.py -#, python-brace-format -msgid "Updates for Your {course} Schedule" -msgstr "Updates für Ihren {course} Zeitplan" - -#: openedx/features/calendar_sync/views/management.py -msgid "Update Your Calendar" -msgstr "Aktualisieren Sie Ihren Kalender" - -#: openedx/features/calendar_sync/views/management.py -#, python-brace-format -msgid "" -"Your assignment due dates for {course} were recently adjusted. Update your " -"calendarwith your new schedule to ensure that you stay on track!" -msgstr "" -"Ihre Fälligkeitstermine für {course} wurden kürzlich angepasst. " -"Aktualisieren Sie Ihren Kalender mit Ihrem neuen Zeitplan, um " -"sicherzustellen, dass Sie auf dem richtigen Kurs bleiben!" - -#: openedx/features/calendar_sync/views/management.py +#: openedx/features/calendar_sync/utils.py msgid "Stay on Track" msgstr "Auf Kurs bleiben" -#: openedx/features/calendar_sync/views/management.py -msgid "Mark Your Calendar" -msgstr "Markiere deinen Kalender" - -#: openedx/features/calendar_sync/views/management.py +#: openedx/features/calendar_sync/utils.py #, python-brace-format msgid "" "Sticking to a schedule is the best way to ensure that you successfully " @@ -12676,6 +12745,18 @@ msgstr "" "mit den Fälligkeitsterminen für {course} hilft Ihnen dabei, auf dem " "richtigen Kurs zu bleiben!" +#: openedx/features/calendar_sync/utils.py +#, python-brace-format +msgid "Updates for Your {course} Schedule" +msgstr "Updates für Ihren {course} Zeitplan" + +#: openedx/features/calendar_sync/utils.py +#, python-brace-format +msgid "" +"Your assignment due dates for {course} were recently adjusted. Update your " +"calendar with your new schedule to ensure that you stay on track!" +msgstr "" + #: openedx/features/content_type_gating/models.py #: openedx/features/course_duration_limits/models.py #: lms/templates/support/feature_based_enrollments.html @@ -12925,6 +13006,23 @@ msgstr "" "{b_open}{code}{b_close} an der Kasse! {a_open}Jetzt " "Upgraden{a_close}{div_close}" +#: openedx/features/enterprise_support/admin/forms.py +msgid "CSV File" +msgstr "" + +#: openedx/features/enterprise_support/admin/forms.py +msgid "" +"CSV file should have 3 columns having names lms_user_id, course_id, " +"opportunity_id" +msgstr "" + +#: openedx/features/enterprise_support/admin/views.py +#, python-brace-format +msgid "" +"Enrollment attributes were not updated for records at following line numbers" +" in csv because no enrollment found for these records: {error_line_numbers}" +msgstr "" + #: openedx/features/enterprise_support/api.py #, python-brace-format msgid "Enrollment in {course_title} was not complete." @@ -12939,6 +13037,18 @@ msgstr "" "Wenn Sie Bedenken bezüglich der Weitergabe Ihrer Daten haben, wenden Sie " "sich bitte an Ihren Administrator unter {enterprise_customer_name}." +#: openedx/features/enterprise_support/templates/enterprise_support/admin/enrollment_attributes_override.html +msgid "Enterprise Course Enrollments" +msgstr "" + +#: openedx/features/enterprise_support/templates/enterprise_support/admin/enrollment_attributes_override.html +msgid "Override Enrollment Attributes" +msgstr "" + +#: openedx/features/enterprise_support/templates/enterprise_support/admin/enrollment_attributes_override.html +msgid "Upload CSV to override enrollment attributes for learners" +msgstr "" + #: openedx/features/enterprise_support/utils.py #, python-brace-format msgid "" @@ -13830,6 +13940,7 @@ msgid "Course Outline" msgstr "Kursübersicht" #: cms/templates/course_outline.html +#: cms/templates/widgets/deprecated-course-key-warning.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "Warning" msgstr "Warnung" @@ -13871,11 +13982,6 @@ msgstr "Meine Kurse" msgid "example: username@domain.com" msgstr "Beispiel: benutzername@domain.com" -#: cms/templates/settings.html -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Course End Date" -msgstr "Kurs Enddatum" - #: cms/templates/settings.html lms/templates/courseware/program_marketing.html msgid "Instructors" msgstr "Dozenten" @@ -14816,6 +14922,7 @@ msgid "Sequence" msgstr "Ablauf" #: lms/templates/courseware/dates.html lms/templates/seq_module.html +#: lms/templates/vert_module.html #: openedx/features/course_experience/templates/course_experience/course-outline-fragment.html msgid "Completed" msgstr "Beendet" @@ -15217,6 +15324,11 @@ msgstr "" "Browsereinstellungen um Sie zu ändern. Bei Google Chrome funktioniert das, " "indem man STRG und + bzw. STRG und - zeitgleich drückt. " +#: lms/templates/vert_module.html +#: openedx/features/course_experience/templates/course_experience/course-outline-fragment.html +msgid "{subsection_format} due {{date}}" +msgstr "{subsection_format} fällig am {{date}}" + #: lms/templates/video.html msgid "Loading video player" msgstr "Video laden" @@ -17858,6 +17970,12 @@ msgstr "Kursoptionen für" msgid "Available Actions" msgstr "Verfügbare Aktionen" +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"You are enrolled by your institution and you should reach out to your " +"institution to drop this course." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_entitlement_actions.html msgid "Email Settings" @@ -17867,29 +17985,6 @@ msgstr "E-Mail Einstellungen" msgid "Related Programs" msgstr "Ähnliche Programme" -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "" -"You can no longer access this course because payment has not yet been " -"received. You can contact the account holder to request payment, or you can " -"unenroll from this course" -msgstr "" -"Sie können nicht mehr auf diesen Kurs zugreifen, da die Zahlung noch nicht " -"eingegangen ist. Sie können den Kontoinhaber kontaktieren, um eine Zahlung " -"zu beantragen, oder Sie können sich von diesem Kurs ausschreiben." - -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "" -"You can no longer access this course because payment has not yet been " -"received. You can {contact_link_start}contact the account " -"holder{contact_link_end} to request payment, or you can " -"{unenroll_link_start}unenroll{unenroll_link_end} from this course" -msgstr "" -"Sie können nicht mehr auf diesen Kurs zugreifen, da die Zahlung noch nicht " -"eingegangen ist. Sie können den {contact_link_start}Kontoinhaber " -"kontaktieren{contact_link_end}, um eine Zahlung zu beantragen, oder Sie " -"können sich von diesem Kurs " -"{unenroll_link_start}ausschreiben{unenroll_link_end}." - #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Verification not yet complete." msgstr "Verifikation noch nicht vollständig." @@ -18976,7 +19071,6 @@ msgid "Order History" msgstr "Bestellverlauf" #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon Code" msgstr "Gutschein-Code hinzufügen" @@ -18985,8 +19079,6 @@ msgid "Enter information about the coupon code below." msgstr "Geben Sie Informationen zu diesem Gutschein-Code unten ein. " #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html msgid "Coupon Code" msgstr "Gutschein-Code" @@ -19075,7 +19167,6 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/certificates.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/data_download.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Pending Tasks" @@ -19084,7 +19175,6 @@ msgstr "Offene Aufgaben" #: lms/templates/instructor/instructor_dashboard_2/certificates.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/data_download.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "The status for any active tasks appears in a table below." msgstr "Der Status für alle aktiven Aufgaben erscheint in der Tabelle unten." @@ -19271,7 +19361,6 @@ msgid "Get Student Anonymized IDs CSV" msgstr "Erhalte CSV von anonymisierten Teilnehmer-IDs" #: lms/templates/instructor/instructor_dashboard_2/data_download.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Reports" msgstr "Meldungen" @@ -19460,286 +19549,6 @@ msgstr "" "benötigen, laden Sie die Dateien herunter und speichern Sie sie gemäß den " "Datenschutzrichtlinien Ihrer Einrichtung.{li_end}{ul_end}" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enrollment Codes" -msgstr "Zugangscodes" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Create one or more pre-paid course enrollment codes. Students can use these " -"codes to enroll in the course." -msgstr "" -"Erstellen Sie einen oder mehrere Zugangscodes, mit welchen sich die " -"Teilnehmer, ohne zahlen zu müssen, in einen Kurs einschreiben können." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -msgid "Create Enrollment Codes" -msgstr "Zugangcodes erstellen" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Cancel, restore, or mark an enrollment code as unused." -msgstr "Löschen, widerrufen oder markieren Sie Zugangscodes als unbenutzt." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Change Enrollment Code Status" -msgstr "Ändern Sie den Status von Zugangscodes" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download a .csv file of all enrollment codes for this course." -msgstr "Eine CSV-Datei der Zugangscodes dieses Kurses herunterladen." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download All Enrollment Codes" -msgstr "Alle erstellten Zugangscodes herunterladen" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download a .csv file of all unused enrollment codes for this course." -msgstr "" -"Eine CSV-Datei alle unbenutzter Zugangscodes dieses Kurses herunterladen." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download Unused Enrollment Codes" -msgstr "Lade unbenutzte Einschreibungscodes herunter" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download a .csv file of all used enrollment codes for this course." -msgstr "" -"Eine CSV-Datei aller benutzten Zugangscodes dieses Kurses herunterladen." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download Used Enrollment Codes" -msgstr "Lade verwendete Einschreibungscodes herunter" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html -msgid "Course Price" -msgstr "Kursbeitrag" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Course price per seat: " -msgstr "Preis pro Platz." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Edit Price" -msgstr "Preis bearbeiten" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Course Seat Purchases" -msgstr "Käufe" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Total Credit Card Purchases: " -msgstr "Alle Käufe mit Kreditkarte" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Download a .csv file for all credit card purchases or for all invoices, " -"regardless of status." -msgstr "" -"Eine CSV-Datei für alle Kreditkarten-Käufe oder Rechnungen herunterladen." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download All Invoices" -msgstr "Alle Rechnungen herunterladen" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download All Credit Card Purchases" -msgstr "Alle Kreditkarten-Käufe herunterladen" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "To cancel or resubmit an invoice, enter the invoice number below." -msgstr "" -"Um eine Rechnung zu widerrufen oder zu bestätigen, geben Sie bitte die " -"Rechnungsnummer unten ein." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Invoice Number" -msgstr "Rechnungsnummer" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Cancel Invoice" -msgstr "Rechnung zurückziehen" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Resubmit Invoice" -msgstr "Neuübermittlung der Rechnung" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Create a .csv file that contains enrollment information for your course." -msgstr "Eine CSV-Datei mit allen Informationen dieses Kurses erstellen." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Create Enrollment Report" -msgstr "Erstelle Einschreibungsreport" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Create an HTML file that contains an executive summary for this course." -msgstr "Eine HTML-Datei mit allen Zusammenfassungen dieses Kurses erstellen." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Create Executive Summary" -msgstr "Erstelle Kurzzusammenfassung" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Available Reports" -msgstr "Verfügbare Berichte" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"The following reports are available for download. Reports are not deleted. A" -" link to every report remains available on this page, identified by the date" -" and time (in UTC) that the report was generated." -msgstr "" -"Die folgenden Berichte stehen zum Herunterladen zur Verfügung. Berichte " -"werden nicht gelöscht. Auf dieser Seite bleibt ein Link zu jedem Bericht " -"verfügbar, der durch das Datum und die Uhrzeit (in UTC) gekennzeichnet ist, " -"zu der der Bericht erstellt wurde." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"{strong_start}Note{strong_end}: To help protect learner data, links to these" -" reports that you save outside of this page or that you send or receive in " -"email expire after five minutes." -msgstr "" -"{strong_start}Hinweis{strong_end}: Um die Daten der Lernenden zu schützen, " -"laufen die Links zu diesen Berichten, die Sie außerhalb dieser Seite " -"speichern oder die Sie per E-Mail senden oder empfangen, nach fünf Minuten " -"ab." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Coupon Code List" -msgstr "Liste der Gutschein-Codes" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download a .csv file of all coupon codes for this course." -msgstr "" -"Eine CSV-Datei aller existierenden Gutschein/-e dieses Kurses herunterladen " - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download Coupon Codes" -msgstr "Gutschein-Codes herunterladen" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Coupon Codes" -msgstr "Gutschein Codes" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html -msgid "Expiration Date" -msgstr "Ablaufdatum" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Coupon (%)" -msgstr "Gutschein (%)" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Number Redeemed" -msgstr "Eingelöste Anzahl" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "{code}" -msgstr "{code}" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "{description}" -msgstr "{description}" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "{discount}" -msgstr "{discount}" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The Invoice Number field cannot be empty." -msgstr "Das Feld der Rechnungsnummer muss ausgefüllt werden." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "No Expiration Date" -msgstr "Kein Ablaufdatum" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the company name." -msgstr "Geben Sie einen Unternehmensnamen ein." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The company name cannot be a number." -msgstr "Der Unternehmensname kann keine Nummer sein." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the company contact name." -msgstr "Geben Sie eine Kontaktperson des Unternehmens an." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The company contact name cannot be a number." -msgstr "Der Name der Kontaktperson kann keine Nummer sein" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the email address for the company contact." -msgstr "" -"Geben Sie die E-Mail Adresse für die Kontaktperson des Unternehmens an." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter a valid email address." -msgstr "Geben Sie eine gültige E-Mail Adresse ein." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the recipient name." -msgstr "Geben Sie einen Empfängernamen ein." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The recipient name cannot be a number." -msgstr "Der Name eines Empfängers kann keine Nummer sein." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the recipient email address." -msgstr "Geben Sie die E-Mail Adresse des Empfängers ein." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the billing address." -msgstr "Geben Sie eine Rechnungsadresse ein." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the price per course seat." -msgstr "Geben Sie einen Preis pro Platz im Kurs ein." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Enter a numeric value for the price per course seat. Do not include currency" -" symbols." -msgstr "" -"Geben Sie einen numerischen Wert für die Preisangaben an. Dieser darf keine " -"Symbole beinhalten." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the number of enrollment codes." -msgstr "Geben Sie die gewünschte Anzahl der Zugangscodes ein" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter a numeric value for the number of enrollment codes." -msgstr "Geben Sie einen numerischen Wert für die Anzahl der Zugangscodes ein." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Select a currency." -msgstr "Wählen Sie ein Währung." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter a coupon code." -msgstr "Gutschein-Code eingeben" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The discount percentage must be less than or equal to 100." -msgstr "Der Prozentwert des Rabattes muss kleiner gleich 100 sein." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Enter a numeric value for the discount amount. Do not include the percent " -"sign." -msgstr "" -"Geben Sie einen numerischen Wert für den Rabattbetrag an, ohne das " -"Prozentzeichen." - #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Edit Coupon Code" msgstr "Gutschein-Code bearbeiten" @@ -19760,98 +19569,14 @@ msgstr "Beispiel: A123DS" msgid "Percentage Discount" msgstr "Prozentueller Rabatt" +#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html +msgid "Expiration Date" +msgstr "Ablaufdatum" + #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon Code" msgstr "Gutschein-Code aktualisieren" -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Executive Summary for {display_name}" -msgstr "Zusammenfassung für {display_name}" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Report Creation Date" -msgstr "Erstellungsdatum des Berichts" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of Seats" -msgstr "Anzahl der Plätze" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of Enrollments" -msgstr "Anzahl an Einschreibungen" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Gross Revenue Collected" -msgstr "Erfasste Bruttoeinnahmen" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Gross Revenue Pending" -msgstr "Ausstehende Bruttoeinnahmen " - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of Enrollment Refunds" -msgstr "Anzahl der Rückerstattungen" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Amount Refunded" -msgstr "Erstatteter Betrag" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Average Price per Seat" -msgstr "Durchschnittlicher Preis pro Platz" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Frequently Used Coupon Codes" -msgstr "Meist genutzte Gutschein-Codes" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of seats purchased using coupon codes" -msgstr "Anzahl der Kursteilnehmer, welche einen Coupon genutzt haben" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Rank" -msgstr "Rang" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Percent Discount" -msgstr "Rabatt" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Times Used" -msgstr "Genutzt" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Bulk and Single Seat Purchases" -msgstr "Mengen- und Einzelkäufe" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of seats purchased individually" -msgstr "Anzahl der Einzelkäufe." - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of seats purchased in bulk" -msgstr "Anzahl der Mengenkäufe" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of seats purchased with invoices" -msgstr "Anzahl der Rechnungskäufe" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Unused bulk purchase seats (revenue at risk)" -msgstr "Unbenutzte Plätze aus Mengenkäufen (riskante Einnahme)" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Percentage of seats purchased individually" -msgstr "Prozentuale Menge der Einzelkäufe" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Percentage of seats purchased in bulk" -msgstr "Prozentuale Menge der Mengenkäufe" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Percentage of seats purchased with invoices" -msgstr "Prozentuale Menge der Rechnungskäufe" - #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Individual due date extensions" msgstr "Individuelle Verlängerung des Abgabedatums" @@ -19962,6 +19687,10 @@ msgstr "Zurücksetzen des Fälligkeitsdatums für Teilnehmer" msgid "Generate Registration Code Modal" msgstr "Erzeuge den abhängigen Registrierungssschlüssel" +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "Create Enrollment Codes" +msgstr "Zugangcodes erstellen" + #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "* Required Information" msgstr "* erforderliche Angabe" @@ -20518,10 +20247,18 @@ msgstr "Lege den Preis dieses Kursmodus fest" msgid "Please enter Course Mode detail below" msgstr "Bitte gib unten Details zum Kursmodus ein" +#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html +msgid "Course Price" +msgstr "Kursbeitrag" + #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Price" msgstr "Kursbeitrag festlegen" +#: lms/templates/instructor/instructor_dashboard_2/special_exams.html +msgid "Proctortrack Escalation Email:" +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/special_exams.html msgid "Allowance Section" msgstr "Berücksichtigung" @@ -21525,14 +21262,10 @@ msgstr "Diese Seite ist noch in Arbeit. " msgid "" "Our system indicates that you are trying to access this {platform_name} " "course from a country or region currently subject to U.S. economic and trade" -" sanctions.Unfortunately, because {platform_name} is required to comply with" -" export controls,we cannot allow you to access this course at this time." +" sanctions. Unfortunately, because {platform_name} is required to comply " +"with export controls, we cannot allow you to access this course at this " +"time." msgstr "" -"Unser System zeigt an, dass Sie versuchen, von einem Land oder einer Region " -"aus, die derzeit den Wirtschafts- und Handelssanktionen der USA unterliegen," -" auf diesen {platform_name} Kurs zuzugreifen. Da {platform_name} zur " -"Einhaltung der Exportkontrollen erfordert ist, können wir Ihnen zu diesem " -"Zeitpunkt leider keinen Zugang zu diesem Kurs gewähren." #: lms/templates/static_templates/faq.html #: themes/red-theme/lms/templates/footer.html @@ -21917,10 +21650,6 @@ msgstr[1] "({number} Fragen)" msgid "Prerequisite: " msgstr "Voraussetzung: " -#: openedx/features/course_experience/templates/course_experience/course-outline-fragment.html -msgid "{subsection_format} due {{date}}" -msgstr "{subsection_format} fällig am {{date}}" - #: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html msgid "Learn About Verified Certificates" msgstr "Erfahren Sie mehr über verifizierte Zertifikate" @@ -22107,6 +21836,14 @@ msgstr "" msgid "edX Partner Portal" msgstr "edX-Partnerportal" +#: themes/edx.org/lms/templates/dashboard.html +msgid "Want to make edX better for everyone?" +msgstr "" + +#: themes/edx.org/lms/templates/dashboard.html +msgid "Get started" +msgstr "" + #: themes/edx.org/lms/templates/dashboard.html msgid "" "Browse recently launched courses and see what's new in your favorite " @@ -25045,6 +24782,10 @@ msgstr "Startzeit" msgid "(UTC)" msgstr "(UTC)" +#: cms/templates/settings.html +msgid "Course End Date" +msgstr "" + #: cms/templates/settings.html msgid "Last day your course is active" msgstr "Letztes Datum an dem Ihr Kurs aktiv ist" @@ -25913,6 +25654,24 @@ msgstr "" msgid "Return to the {link_start}home page{link_end}." msgstr "Zurück zur {link_start}Startseite{link_end}." +#: cms/templates/widgets/deprecated-course-key-warning.html +msgid "Support will be removed in an upcoming release." +msgstr "" + +#: cms/templates/widgets/deprecated-course-key-warning.html +msgid "Support will be removed on {expiration_date}." +msgstr "" + +#: cms/templates/widgets/deprecated-course-key-warning.html +msgid "This course uses a legacy storage format." +msgstr "" + +#: cms/templates/widgets/deprecated-course-key-warning.html +msgid "" +"Please reach out to your support team contact, if you have any additional " +"questions or concerns." +msgstr "" + #: cms/templates/widgets/footer.html msgid "Policies" msgstr "Richtlinien" diff --git a/conf/locale/de_DE/LC_MESSAGES/djangojs.po b/conf/locale/de_DE/LC_MESSAGES/djangojs.po index 8a42066ca4..43b808b760 100644 --- a/conf/locale/de_DE/LC_MESSAGES/djangojs.po +++ b/conf/locale/de_DE/LC_MESSAGES/djangojs.po @@ -129,7 +129,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2020-06-21 20:42+0000\n" +"POT-Creation-Date: 2020-07-01 16:14+0000\n" "PO-Revision-Date: 2020-06-14 20:45+0000\n" "Last-Translator: edx_transifex_bot \n" "Language-Team: German (Germany) (http://www.transifex.com/open-edx/edx-platform/language/de_DE/)\n" @@ -3063,6 +3063,11 @@ msgstr "" "kein Team zum Beitreten finden kannst, {create_span_start}erstelle ein neues" " Team für dieses Thema{span_end}." +#: lms/djangoapps/teams/static/teams/js/views/topic_teams.js +msgid "" +"An error occurred while looking up team membership. Try refreshing the page." +msgstr "" + #: lms/djangoapps/teams/static/teams/js/views/topics.js msgid "All topics" msgstr "Alle Themen" diff --git a/conf/locale/en/LC_MESSAGES/django.po b/conf/locale/en/LC_MESSAGES/django.po index 3b4abda8b2..89061865e9 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: 2020-06-28 20:50+0000\n" -"PO-Revision-Date: 2020-06-28 20:50:23.707499\n" +"POT-Creation-Date: 2020-07-05 20:50+0000\n" +"PO-Revision-Date: 2020-07-05 20:50:24.140977\n" "Last-Translator: \n" "Language-Team: openedx-translation \n" "Language: en\n" @@ -6441,11 +6441,6 @@ msgstr "" msgid "detailed enrollment" msgstr "" -#: lms/djangoapps/instructor/views/api.py -#: lms/djangoapps/instructor_task/api_helper.py -msgid "executive summary" -msgstr "" - #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor_task/api_helper.py msgid "survey" @@ -7783,7 +7778,6 @@ msgstr "" #: lms/djangoapps/shoppingcart/reports.py #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: wiki/plugins/attachments/forms.py #: wiki/plugins/attachments/templates/wiki/plugins/attachments/history.html @@ -7803,7 +7797,6 @@ msgid "Course Announce Date" msgstr "" #: lms/djangoapps/shoppingcart/reports.py cms/templates/settings.html -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html msgid "Course Start Date" msgstr "" @@ -7832,7 +7825,6 @@ msgid "Verified Enrollment" msgstr "" #: lms/djangoapps/shoppingcart/reports.py -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html msgid "Gross Revenue" msgstr "" @@ -8637,17 +8629,64 @@ msgstr "" msgid "Error" msgstr "" -#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html -msgid "Expired ID Verification" +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html +msgid "ID Verification Approved" msgstr "" +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html #: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/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 "" +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.txt +#, python-format +msgid "Your %(platform_name)s ID verification photos have been approved." +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.txt +#, python-format +msgid "" +"Your approval status remains valid for one year, and it will expire " +"%(expiry_date)s." +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.txt +msgid "Enjoy your studies," +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.txt +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +#, python-format +msgid "The %(platform_name)s Team " +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.txt +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +#, python-format +msgid "Hello %(full_name)s, " +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationapproved/email/subject.txt +#, python-format +msgid "Your %(platform_name)s ID verification was approved!" +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 #: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt #, python-format @@ -8693,22 +8732,44 @@ msgstr "" 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 "" - -#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt -#, python-format -msgid "Hello %(full_name)s, " -msgstr "" - #: lms/templates/verify_student/edx_ace/verificationexpiry/email/subject.txt #, python-format msgid "Your %(platform_name)s Verification has Expired" msgstr "" +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +msgid "ID Verification Submitted" +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +#, python-format +msgid "" +"Thank you for submitting your photos for identity verification with " +"%(platform_name)s. " +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +msgid "" +"We have received your photos and they will be reviewed within 5-7 days." +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +#, python-format +msgid "You may check the status on your dashboard: %(dashboard_link)s " +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +msgid "Best regards," +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/subject.txt +msgid "Thank you for submitting your photos!" +msgstr "" + #: lms/templates/wiki/article.html msgid "Last modified:" msgstr "" @@ -8784,7 +8845,6 @@ msgstr "" #: lms/templates/wiki/edit.html cms/templates/component.html #: cms/templates/container.html cms/templates/studio_xblock_wrapper.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/wiki/includes/article_menu.html wiki/templates/wiki/edit.html #: wiki/templates/wiki/includes/article_menu.html msgid "Edit" @@ -10316,7 +10376,6 @@ msgid "Success" msgstr "" #: openedx/core/djangoapps/user_api/admin.py -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/staff_problem_info.html msgid "Actions" msgstr "" @@ -11981,6 +12040,7 @@ msgid "Course Outline" msgstr "" #: cms/templates/course_outline.html +#: cms/templates/widgets/deprecated-course-key-warning.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "Warning" msgstr "" @@ -12022,11 +12082,6 @@ msgstr "" msgid "example: username@domain.com" msgstr "" -#: cms/templates/settings.html -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Course End Date" -msgstr "" - #: cms/templates/settings.html lms/templates/courseware/program_marketing.html msgid "Instructors" msgstr "" @@ -15440,6 +15495,12 @@ msgstr "" msgid "Available Actions" msgstr "" +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"You are enrolled by your institution and you should reach out to your " +"institution to drop this course." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_entitlement_actions.html msgid "Email Settings" @@ -16381,7 +16442,6 @@ msgid "Order History" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon Code" msgstr "" @@ -16390,8 +16450,6 @@ msgid "Enter information about the coupon code below." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html msgid "Coupon Code" msgstr "" @@ -16473,7 +16531,6 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/certificates.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/data_download.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Pending Tasks" @@ -16482,7 +16539,6 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/certificates.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/data_download.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "The status for any active tasks appears in a table below." msgstr "" @@ -16642,7 +16698,6 @@ msgid "Get Student Anonymized IDs CSV" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Reports" msgstr "" @@ -16788,265 +16843,6 @@ msgid "" "policies.{li_end}{ul_end}" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enrollment Codes" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Create one or more pre-paid course enrollment codes. Students can use these " -"codes to enroll in the course." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -msgid "Create Enrollment Codes" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Cancel, restore, or mark an enrollment code as unused." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Change Enrollment Code Status" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download a .csv file of all enrollment codes for this course." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download All Enrollment Codes" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download a .csv file of all unused enrollment codes for this course." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download Unused Enrollment Codes" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download a .csv file of all used enrollment codes for this course." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download Used Enrollment Codes" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html -msgid "Course Price" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Course price per seat: " -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Edit Price" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Course Seat Purchases" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Total Credit Card Purchases: " -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Download a .csv file for all credit card purchases or for all invoices, " -"regardless of status." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download All Invoices" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download All Credit Card Purchases" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "To cancel or resubmit an invoice, enter the invoice number below." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Invoice Number" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Cancel Invoice" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Resubmit Invoice" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Create a .csv file that contains enrollment information for your course." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Create Enrollment Report" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Create an HTML file that contains an executive summary for this course." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Create Executive Summary" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Available Reports" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"The following reports are available for download. Reports are not deleted. A" -" link to every report remains available on this page, identified by the date" -" and time (in UTC) that the report was generated." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"{strong_start}Note{strong_end}: To help protect learner data, links to these" -" reports that you save outside of this page or that you send or receive in " -"email expire after five minutes." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Coupon Code List" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download a .csv file of all coupon codes for this course." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download Coupon Codes" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Coupon Codes" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html -msgid "Expiration Date" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Coupon (%)" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Number Redeemed" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "{code}" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "{description}" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "{discount}" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The Invoice Number field cannot be empty." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "No Expiration Date" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the company name." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The company name cannot be a number." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the company contact name." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The company contact name cannot be a number." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the email address for the company contact." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter a valid email address." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the recipient name." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The recipient name cannot be a number." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the recipient email address." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the billing address." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the price per course seat." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Enter a numeric value for the price per course seat. Do not include currency" -" symbols." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the number of enrollment codes." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter a numeric value for the number of enrollment codes." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Select a currency." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter a coupon code." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The discount percentage must be less than or equal to 100." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Enter a numeric value for the discount amount. Do not include the percent " -"sign." -msgstr "" - #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Edit Coupon Code" msgstr "" @@ -17067,98 +16863,14 @@ msgstr "" msgid "Percentage Discount" msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html +msgid "Expiration Date" +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon Code" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Executive Summary for {display_name}" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Report Creation Date" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of Seats" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of Enrollments" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Gross Revenue Collected" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Gross Revenue Pending" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of Enrollment Refunds" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Amount Refunded" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Average Price per Seat" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Frequently Used Coupon Codes" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of seats purchased using coupon codes" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Rank" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Percent Discount" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Times Used" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Bulk and Single Seat Purchases" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of seats purchased individually" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of seats purchased in bulk" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of seats purchased with invoices" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Unused bulk purchase seats (revenue at risk)" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Percentage of seats purchased individually" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Percentage of seats purchased in bulk" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Percentage of seats purchased with invoices" -msgstr "" - #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Individual due date extensions" msgstr "" @@ -17251,6 +16963,10 @@ msgstr "" msgid "Generate Registration Code Modal" msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "Create Enrollment Codes" +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "* Required Information" msgstr "" @@ -17716,10 +17432,18 @@ msgstr "" msgid "Please enter Course Mode detail below" msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html +msgid "Course Price" +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Price" msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/special_exams.html +msgid "Proctortrack Escalation Email:" +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/special_exams.html msgid "Allowance Section" msgstr "" @@ -21596,6 +21320,10 @@ msgstr "" msgid "(UTC)" msgstr "" +#: cms/templates/settings.html +msgid "Course End Date" +msgstr "" + #: cms/templates/settings.html msgid "Last day your course is active" msgstr "" @@ -22341,6 +22069,24 @@ msgstr "" msgid "Return to the {link_start}home page{link_end}." msgstr "" +#: cms/templates/widgets/deprecated-course-key-warning.html +msgid "Support will be removed in an upcoming release." +msgstr "" + +#: cms/templates/widgets/deprecated-course-key-warning.html +msgid "Support will be removed on {expiration_date}." +msgstr "" + +#: cms/templates/widgets/deprecated-course-key-warning.html +msgid "This course uses a legacy storage format." +msgstr "" + +#: cms/templates/widgets/deprecated-course-key-warning.html +msgid "" +"Please reach out to your support team contact, if you have any additional " +"questions or concerns." +msgstr "" + #: cms/templates/widgets/footer.html msgid "Policies" msgstr "" diff --git a/conf/locale/en/LC_MESSAGES/djangojs.po b/conf/locale/en/LC_MESSAGES/djangojs.po index 19214a6f85..4decbd8428 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: 2020-06-28 20:50+0000\n" -"PO-Revision-Date: 2020-06-28 20:50:23.689858\n" +"POT-Creation-Date: 2020-07-05 20:50+0000\n" +"PO-Revision-Date: 2020-07-05 20:50:23.560748\n" "Last-Translator: \n" "Language-Team: openedx-translation \n" "Language: en\n" diff --git a/conf/locale/eo/LC_MESSAGES/django.mo b/conf/locale/eo/LC_MESSAGES/django.mo index dfa6d852f4..8e76300085 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 34c438579b..9d0e490828 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: 2020-06-28 20:50+0000\n" -"PO-Revision-Date: 2020-06-28 20:50:23.707499\n" +"POT-Creation-Date: 2020-07-05 20:50+0000\n" +"PO-Revision-Date: 2020-07-05 20:50:24.140977\n" "Last-Translator: \n" "Language-Team: openedx-translation \n" "Language: eo\n" @@ -8301,11 +8301,6 @@ msgstr "" msgid "detailed enrollment" msgstr "détäïléd énröllmént Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт,#" -#: lms/djangoapps/instructor/views/api.py -#: lms/djangoapps/instructor_task/api_helper.py -msgid "executive summary" -msgstr "éxéçütïvé sümmärý Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмє#" - #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor_task/api_helper.py msgid "survey" @@ -10055,7 +10050,6 @@ msgstr "Çürrénçý Ⱡ'σяєм ιρѕυм ∂#" #: lms/djangoapps/shoppingcart/reports.py #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: wiki/plugins/attachments/forms.py #: wiki/plugins/attachments/templates/wiki/plugins/attachments/history.html @@ -10075,7 +10069,6 @@ msgid "Course Announce Date" msgstr "Çöürsé Ànnöünçé Däté Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, #" #: lms/djangoapps/shoppingcart/reports.py cms/templates/settings.html -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html msgid "Course Start Date" msgstr "Çöürsé Stärt Däté Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмє#" @@ -10104,7 +10097,6 @@ msgid "Verified Enrollment" msgstr "Vérïfïéd Énröllmént Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт,#" #: lms/djangoapps/shoppingcart/reports.py -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html msgid "Gross Revenue" msgstr "Gröss Révénüé Ⱡ'σяєм ιρѕυм ∂σłσя ѕι#" @@ -11124,17 +11116,70 @@ msgstr "Àllöw Ⱡ'σяєм ιρѕ#" msgid "Error" msgstr "Érrör Ⱡ'σяєм ιρѕ#" -#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html -msgid "Expired ID Verification" -msgstr "Éxpïréd ÌD Vérïfïçätïön Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σ#" +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html +msgid "ID Verification Approved" +msgstr "ÌD Vérïfïçätïön Àpprövéd Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢ση#" +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html #: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/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 "Héllö %(full_name)s, Ⱡ'σяєм ιρѕυм ∂σłσ#" +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.txt +#, python-format +msgid "Your %(platform_name)s ID verification photos have been approved." +msgstr "" +"Ýöür %(platform_name)s ÌD vérïfïçätïön phötös hävé ßéén äpprövéd. Ⱡ'σяєм " +"ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє¢тєтυя α#" + +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.txt +#, python-format +msgid "" +"Your approval status remains valid for one year, and it will expire " +"%(expiry_date)s." +msgstr "" +"Ýöür äppröväl stätüs rémäïns välïd för öné ýéär, änd ït wïll éxpïré " +"%(expiry_date)s. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє¢тєтυя#" + +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.txt +msgid "Enjoy your studies," +msgstr "Énjöý ýöür stüdïés, Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт,#" + +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.txt +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +#, python-format +msgid "The %(platform_name)s Team " +msgstr "Thé %(platform_name)s Téäm Ⱡ'σяєм ιρѕυм ∂σłσя ѕι#" + +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.txt +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +#, python-format +msgid "Hello %(full_name)s, " +msgstr "Héllö %(full_name)s, Ⱡ'σяєм ιρѕυм ∂σłσя #" + +#: lms/templates/verify_student/edx_ace/verificationapproved/email/subject.txt +#, python-format +msgid "Your %(platform_name)s ID verification was approved!" +msgstr "" +"Ýöür %(platform_name)s ÌD vérïfïçätïön wäs äpprövéd! Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт " +"αмєт, ¢σηѕє¢тєтυя#" + +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html +msgid "Expired ID Verification" +msgstr "Éxpïréd ÌD Vérïfïçätïön Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σ#" + #: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html #: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt #, python-format @@ -11192,17 +11237,6 @@ msgstr "" msgid "Thank you," msgstr "Thänk ýöü, Ⱡ'σяєм ιρѕυм ∂σłσ#" -#: 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 "Thé %(platform_name)s Téäm Ⱡ'σяєм ιρѕυм ∂σłσя ѕι#" - -#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt -#, python-format -msgid "Hello %(full_name)s, " -msgstr "Héllö %(full_name)s, Ⱡ'σяєм ιρѕυм ∂σłσя #" - #: lms/templates/verify_student/edx_ace/verificationexpiry/email/subject.txt #, python-format msgid "Your %(platform_name)s Verification has Expired" @@ -11210,6 +11244,47 @@ msgstr "" "Ýöür %(platform_name)s Vérïfïçätïön häs Éxpïréd Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт," " ¢σηѕє¢тє#" +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +msgid "ID Verification Submitted" +msgstr "ÌD Vérïfïçätïön Süßmïttéd Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕ#" + +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +#, python-format +msgid "" +"Thank you for submitting your photos for identity verification with " +"%(platform_name)s. " +msgstr "" +"Thänk ýöü för süßmïttïng ýöür phötös för ïdéntïtý vérïfïçätïön wïth " +"%(platform_name)s. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє¢тєтυя#" + +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +msgid "" +"We have received your photos and they will be reviewed within 5-7 days." +msgstr "" +"Wé hävé réçéïvéd ýöür phötös änd théý wïll ßé révïéwéd wïthïn 5-7 däýs. " +"Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє¢тєтυя#" + +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +#, python-format +msgid "You may check the status on your dashboard: %(dashboard_link)s " +msgstr "" +"Ýöü mäý çhéçk thé stätüs ön ýöür däshßöärd: %(dashboard_link)s Ⱡ'σяєм ιρѕυм" +" ∂σłσя ѕιт αмєт, ¢σηѕє¢тєтυя α#" + +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +msgid "Best regards," +msgstr "Bést régärds, Ⱡ'σяєм ιρѕυм ∂σłσя ѕι#" + +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/subject.txt +msgid "Thank you for submitting your photos!" +msgstr "" +"Thänk ýöü för süßmïttïng ýöür phötös! Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, " +"¢σηѕє¢тєтυ#" + #: lms/templates/wiki/article.html msgid "Last modified:" msgstr "Läst mödïfïéd: Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт#" @@ -11304,7 +11379,6 @@ msgstr "" #: lms/templates/wiki/edit.html cms/templates/component.html #: cms/templates/container.html cms/templates/studio_xblock_wrapper.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/wiki/includes/article_menu.html wiki/templates/wiki/edit.html #: wiki/templates/wiki/includes/article_menu.html msgid "Edit" @@ -13259,7 +13333,6 @@ msgid "Success" msgstr "Süççéss Ⱡ'σяєм ιρѕυм #" #: openedx/core/djangoapps/user_api/admin.py -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/staff_problem_info.html msgid "Actions" msgstr "Àçtïöns Ⱡ'σяєм ιρѕυм #" @@ -15398,6 +15471,7 @@ msgid "Course Outline" msgstr "Çöürsé Öütlïné Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт#" #: cms/templates/course_outline.html +#: cms/templates/widgets/deprecated-course-key-warning.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "Warning" msgstr "Wärnïng Ⱡ'σяєм ιρѕυм #" @@ -15439,11 +15513,6 @@ msgstr "Çöürsés Ⱡ'σяєм ιρѕυм #" msgid "example: username@domain.com" msgstr "éxämplé: üsérnämé@dömäïn.çöm Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє¢#" -#: cms/templates/settings.html -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Course End Date" -msgstr "Çöürsé Énd Däté Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт α#" - #: cms/templates/settings.html lms/templates/courseware/program_marketing.html msgid "Instructors" msgstr "Ìnstrüçtörs Ⱡ'σяєм ιρѕυм ∂σłσя #" @@ -19764,6 +19833,14 @@ msgstr "Çöürsé öptïöns för Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт α msgid "Available Actions" msgstr "Àväïläßlé Àçtïöns Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмє#" +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"You are enrolled by your institution and you should reach out to your " +"institution to drop this course." +msgstr "" +"Ýöü äré énrölléd ßý ýöür ïnstïtütïön änd ýöü shöüld réäçh öüt tö ýöür " +"ïnstïtütïön tö dröp thïs çöürsé. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αм#" + #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_entitlement_actions.html msgid "Email Settings" @@ -21009,7 +21086,6 @@ msgid "Order History" msgstr "Ördér Hïstörý Ⱡ'σяєм ιρѕυм ∂σłσя ѕι#" #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon Code" msgstr "Àdd Çöüpön Çödé Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт α#" @@ -21020,8 +21096,6 @@ msgstr "" "¢σηѕє¢тєтυя α#" #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html msgid "Coupon Code" msgstr "Çöüpön Çödé Ⱡ'σяєм ιρѕυм ∂σłσя #" @@ -21125,7 +21199,6 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/certificates.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/data_download.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Pending Tasks" @@ -21134,7 +21207,6 @@ msgstr "Péndïng Täsks Ⱡ'σяєм ιρѕυм ∂σłσя ѕι#" #: lms/templates/instructor/instructor_dashboard_2/certificates.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/data_download.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "The status for any active tasks appears in a table below." msgstr "" @@ -21338,7 +21410,6 @@ msgid "Get Student Anonymized IDs CSV" msgstr "Gét Stüdént Ànönýmïzéd ÌDs ÇSV Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє¢т#" #: lms/templates/instructor/instructor_dashboard_2/data_download.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Reports" msgstr "Répörts Ⱡ'σяєм ιρѕυм #" @@ -21561,326 +21632,6 @@ msgstr "" "pölïçïés.{li_end}{ul_end} Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє¢тєтυя " "α∂ιριѕι¢ιηg єłιт, ѕє∂ ∂σ єιυѕмσ∂ тємρσя ιη¢ι∂ι∂υ#" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enrollment Codes" -msgstr "Énröllmént Çödés Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αм#" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Create one or more pre-paid course enrollment codes. Students can use these " -"codes to enroll in the course." -msgstr "" -"Çréäté öné ör möré pré-päïd çöürsé énröllmént çödés. Stüdénts çän üsé thésé " -"çödés tö énröll ïn thé çöürsé. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт #" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -msgid "Create Enrollment Codes" -msgstr "Çréäté Énröllmént Çödés Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σ#" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Cancel, restore, or mark an enrollment code as unused." -msgstr "" -"Çänçél, réstöré, ör märk än énröllmént çödé äs ünüséd. Ⱡ'σяєм ιρѕυм ∂σłσя " -"ѕιт αмєт, ¢σηѕє¢тєтυя α#" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Change Enrollment Code Status" -msgstr "Çhängé Énröllmént Çödé Stätüs Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє¢#" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download a .csv file of all enrollment codes for this course." -msgstr "" -"Döwnlöäd ä .çsv fïlé öf äll énröllmént çödés för thïs çöürsé. Ⱡ'σяєм ιρѕυм " -"∂σłσя ѕιт αмєт, ¢σηѕє¢тєтυя α#" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download All Enrollment Codes" -msgstr "Döwnlöäd Àll Énröllmént Çödés Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє¢#" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download a .csv file of all unused enrollment codes for this course." -msgstr "" -"Döwnlöäd ä .çsv fïlé öf äll ünüséd énröllmént çödés för thïs çöürsé. Ⱡ'σяєм " -"ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє¢тєтυя #" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download Unused Enrollment Codes" -msgstr "" -"Döwnlöäd Ûnüséd Énröllmént Çödés Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє¢тє#" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download a .csv file of all used enrollment codes for this course." -msgstr "" -"Döwnlöäd ä .çsv fïlé öf äll üséd énröllmént çödés för thïs çöürsé. Ⱡ'σяєм " -"ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє¢тєтυя #" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download Used Enrollment Codes" -msgstr "Döwnlöäd Ûséd Énröllmént Çödés Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє¢т#" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html -msgid "Course Price" -msgstr "Çöürsé Prïçé Ⱡ'σяєм ιρѕυм ∂σłσя ѕ#" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Course price per seat: " -msgstr "Çöürsé prïçé pér séät: Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σ#" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Edit Price" -msgstr "Édït Prïçé Ⱡ'σяєм ιρѕυм ∂σłσ#" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Course Seat Purchases" -msgstr "Çöürsé Séät Pürçhäsés Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, #" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Total Credit Card Purchases: " -msgstr "Tötäl Çrédït Çärd Pürçhäsés: Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє¢#" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Download a .csv file for all credit card purchases or for all invoices, " -"regardless of status." -msgstr "" -"Döwnlöäd ä .çsv fïlé för äll çrédït çärd pürçhäsés ör för äll ïnvöïçés, " -"régärdléss öf stätüs. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σ#" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download All Invoices" -msgstr "Döwnlöäd Àll Ìnvöïçés Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, #" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download All Credit Card Purchases" -msgstr "" -"Döwnlöäd Àll Çrédït Çärd Pürçhäsés Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє¢тєт#" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "To cancel or resubmit an invoice, enter the invoice number below." -msgstr "" -"Tö çänçél ör résüßmït än ïnvöïçé, éntér thé ïnvöïçé nümßér ßélöw. Ⱡ'σяєм " -"ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє¢тєтυя α#" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Invoice Number" -msgstr "Ìnvöïçé Nümßér Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт#" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Cancel Invoice" -msgstr "Çänçél Ìnvöïçé Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт#" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Resubmit Invoice" -msgstr "Résüßmït Ìnvöïçé Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αм#" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Create a .csv file that contains enrollment information for your course." -msgstr "" -"Çréäté ä .çsv fïlé thät çöntäïns énröllmént ïnförmätïön för ýöür çöürsé. " -"Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє¢тєтυя#" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Create Enrollment Report" -msgstr "Çréäté Énröllmént Répört Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢ση#" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Create an HTML file that contains an executive summary for this course." -msgstr "" -"Çréäté än HTML fïlé thät çöntäïns än éxéçütïvé sümmärý för thïs çöürsé. " -"Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє¢тєтυя#" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Create Executive Summary" -msgstr "Çréäté Éxéçütïvé Sümmärý Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢ση#" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Available Reports" -msgstr "Àväïläßlé Répörts Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмє#" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"The following reports are available for download. Reports are not deleted. A" -" link to every report remains available on this page, identified by the date" -" and time (in UTC) that the report was generated." -msgstr "" -"Thé föllöwïng répörts äré äväïläßlé för döwnlöäd. Répörts äré nöt délétéd. À" -" lïnk tö évérý répört rémäïns äväïläßlé ön thïs pägé, ïdéntïfïéd ßý thé däté" -" änd tïmé (ïn ÛTÇ) thät thé répört wäs générätéd. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт " -"αмєт, ¢σηѕє¢тєтυя α∂ιριѕι¢ιηg єłιт, ѕє∂ ∂σ єιυѕмσ∂ тємρσя ιη¢ι∂ι∂υηт υт " -"łαвσяє єт ∂σłσяє мαgηα αłιqυα. υт єηιм α∂ мιηιм νєηιαм, qυιѕ ησѕтяυ∂ " -"єχєя¢ιтαтιση υłłαм¢σ łαвσяιѕ ηιѕι υт αłιqυιρ єχ єα ¢σммσ∂σ ¢σηѕєqυαт. ∂υιѕ " -"αυтє ιяυяє ∂σłσя ιη яєρяєнєη∂єяιт ιη νσłυρтαтє νєłιт єѕѕє ¢ιłłυм ∂σłσяє єυ " -"ƒυgιαт ηυłłα ραяιαтυя. єχ¢єρтєυя ѕιηт σ¢¢αє¢α#" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"{strong_start}Note{strong_end}: To help protect learner data, links to these" -" reports that you save outside of this page or that you send or receive in " -"email expire after five minutes." -msgstr "" -"{strong_start}Nöté{strong_end}: Tö hélp prötéçt léärnér dätä, lïnks tö thésé" -" répörts thät ýöü sävé öütsïdé öf thïs pägé ör thät ýöü sénd ör réçéïvé ïn " -"émäïl éxpïré äftér fïvé mïnütés. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє¢тєтυя " -"α∂ιριѕι¢ιηg єłιт, ѕє∂ ∂σ єιυѕмσ∂ тємρσя ιη¢ι∂ι∂υηт υт łαвσяє єт ∂σłσяє мαgηα" -" αłιqυα. υт єηιм α∂ мιηιм νєηιαм, qυιѕ ησѕтяυ∂ єχєя¢ιтαтιση υłłαм¢σ łαвσяιѕ " -"ηιѕι υт αłιqυιρ єχ єα ¢σммσ∂σ ¢σηѕєqυαт. ∂υιѕ αυтє ιяυяє ∂σłσя ιη " -"яєρяєнєη∂єяιт ιη νσłυρтαтє νєłιт єѕѕє ¢ιłłυм ∂σłσяє єυ ƒυgιαт ηυłłα " -"ραяιαтυя. єχ¢єρтєυя ѕιηт σ¢¢αє¢αт ¢υρι∂αтαт ηση ρяσι∂єηт, ѕυηт ιη ¢υłρα qυι " -"σƒƒι¢ια ∂є#" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Coupon Code List" -msgstr "Çöüpön Çödé Lïst Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αм#" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download a .csv file of all coupon codes for this course." -msgstr "" -"Döwnlöäd ä .çsv fïlé öf äll çöüpön çödés för thïs çöürsé. Ⱡ'σяєм ιρѕυм ∂σłσя" -" ѕιт αмєт, ¢σηѕє¢тєтυя α#" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download Coupon Codes" -msgstr "Döwnlöäd Çöüpön Çödés Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, #" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Coupon Codes" -msgstr "Çöüpön Çödés Ⱡ'σяєм ιρѕυм ∂σłσя ѕ#" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html -msgid "Expiration Date" -msgstr "Éxpïrätïön Däté Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт α#" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Coupon (%)" -msgstr "Çöüpön (%) Ⱡ'σяєм ιρѕυм ∂σłσ#" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Number Redeemed" -msgstr "Nümßér Rédééméd Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт α#" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "{code}" -msgstr "{code} Ⱡ'σяєм#" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "{description}" -msgstr "{description} Ⱡ'σяєм#" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "{discount}" -msgstr "{discount} Ⱡ'σяєм#" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The Invoice Number field cannot be empty." -msgstr "" -"Thé Ìnvöïçé Nümßér fïéld çännöt ßé émptý. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, " -"¢σηѕє¢тєтυя #" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "No Expiration Date" -msgstr "Nö Éxpïrätïön Däté Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт#" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the company name." -msgstr "Éntér thé çömpäný nämé. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σ#" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The company name cannot be a number." -msgstr "" -"Thé çömpäný nämé çännöt ßé ä nümßér. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, " -"¢σηѕє¢тєтυ#" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the company contact name." -msgstr "Éntér thé çömpäný çöntäçt nämé. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє¢т#" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The company contact name cannot be a number." -msgstr "" -"Thé çömpäný çöntäçt nämé çännöt ßé ä nümßér. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, " -"¢σηѕє¢тєтυя #" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the email address for the company contact." -msgstr "" -"Éntér thé émäïl äddréss för thé çömpäný çöntäçt. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт " -"αмєт, ¢σηѕє¢тєтυя α#" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter a valid email address." -msgstr "Éntér ä välïd émäïl äddréss. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє¢#" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the recipient name." -msgstr "Éntér thé réçïpïént nämé. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕ#" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The recipient name cannot be a number." -msgstr "" -"Thé réçïpïént nämé çännöt ßé ä nümßér. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, " -"¢σηѕє¢тєтυя#" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the recipient email address." -msgstr "" -"Éntér thé réçïpïént émäïl äddréss. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє¢тєт#" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the billing address." -msgstr "Éntér thé ßïllïng äddréss. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕ#" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the price per course seat." -msgstr "" -"Éntér thé prïçé pér çöürsé séät. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє¢тє#" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Enter a numeric value for the price per course seat. Do not include currency" -" symbols." -msgstr "" -"Éntér ä nümérïç välüé för thé prïçé pér çöürsé séät. Dö nöt ïnçlüdé çürrénçý" -" sýmßöls. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє¢#" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the number of enrollment codes." -msgstr "" -"Éntér thé nümßér öf énröllmént çödés. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, " -"¢σηѕє¢тєтυ#" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter a numeric value for the number of enrollment codes." -msgstr "" -"Éntér ä nümérïç välüé för thé nümßér öf énröllmént çödés. Ⱡ'σяєм ιρѕυм ∂σłσя" -" ѕιт αмєт, ¢σηѕє¢тєтυя α#" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Select a currency." -msgstr "Séléçt ä çürrénçý. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт#" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter a coupon code." -msgstr "Éntér ä çöüpön çödé. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, #" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The discount percentage must be less than or equal to 100." -msgstr "" -"Thé dïsçöünt pérçéntägé müst ßé léss thän ör éqüäl tö 100. Ⱡ'σяєм ιρѕυм " -"∂σłσя ѕιт αмєт, ¢σηѕє¢тєтυя α#" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Enter a numeric value for the discount amount. Do not include the percent " -"sign." -msgstr "" -"Éntér ä nümérïç välüé för thé dïsçöünt ämöünt. Dö nöt ïnçlüdé thé pérçént " -"sïgn. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє¢тєт#" - #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Edit Coupon Code" msgstr "Édït Çöüpön Çödé Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αм#" @@ -21901,114 +21652,14 @@ msgstr "éxämplé: À123DS Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт α#" msgid "Percentage Discount" msgstr "Pérçéntägé Dïsçöünt Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт,#" +#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html +msgid "Expiration Date" +msgstr "Éxpïrätïön Däté Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт α#" + #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon Code" msgstr "Ûpdäté Çöüpön Çödé Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт#" -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Executive Summary for {display_name}" -msgstr "" -"Éxéçütïvé Sümmärý för {display_name} Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕ#" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Report Creation Date" -msgstr "Répört Çréätïön Däté Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, #" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of Seats" -msgstr "Nümßér öf Séäts Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт α#" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of Enrollments" -msgstr "Nümßér öf Énröllménts Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, #" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Gross Revenue Collected" -msgstr "Gröss Révénüé Çölléçtéd Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σ#" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Gross Revenue Pending" -msgstr "Gröss Révénüé Péndïng Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, #" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of Enrollment Refunds" -msgstr "Nümßér öf Énröllmént Réfünds Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє¢#" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Amount Refunded" -msgstr "Àmöünt Réfündéd Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт α#" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Average Price per Seat" -msgstr "Àvérägé Prïçé pér Séät Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢#" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Frequently Used Coupon Codes" -msgstr "Fréqüéntlý Ûséd Çöüpön Çödés Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє¢#" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of seats purchased using coupon codes" -msgstr "" -"Nümßér öf séäts pürçhäséd üsïng çöüpön çödés Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, " -"¢σηѕє¢тєтυя #" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Rank" -msgstr "Ränk Ⱡ'σяєм ι#" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Percent Discount" -msgstr "Pérçént Dïsçöünt Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αм#" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Times Used" -msgstr "Tïmés Ûséd Ⱡ'σяєм ιρѕυм ∂σłσ#" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Bulk and Single Seat Purchases" -msgstr "Bülk änd Sïnglé Séät Pürçhäsés Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє¢т#" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of seats purchased individually" -msgstr "" -"Nümßér öf séäts pürçhäséd ïndïvïdüällý Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, " -"¢σηѕє¢тєтυя#" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of seats purchased in bulk" -msgstr "" -"Nümßér öf séäts pürçhäséd ïn ßülk Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє¢тє#" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of seats purchased with invoices" -msgstr "" -"Nümßér öf séäts pürçhäséd wïth ïnvöïçés Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, " -"¢σηѕє¢тєтυя#" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Unused bulk purchase seats (revenue at risk)" -msgstr "" -"Ûnüséd ßülk pürçhäsé séäts (révénüé ät rïsk) Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, " -"¢σηѕє¢тєтυя #" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Percentage of seats purchased individually" -msgstr "" -"Pérçéntägé öf séäts pürçhäséd ïndïvïdüällý Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, " -"¢σηѕє¢тєтυя #" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Percentage of seats purchased in bulk" -msgstr "" -"Pérçéntägé öf séäts pürçhäséd ïn ßülk Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, " -"¢σηѕє¢тєтυ#" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Percentage of seats purchased with invoices" -msgstr "" -"Pérçéntägé öf séäts pürçhäséd wïth ïnvöïçés Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, " -"¢σηѕє¢тєтυя #" - #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Individual due date extensions" msgstr "Ìndïvïdüäl düé däté éxténsïöns Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє¢т#" @@ -22131,6 +21782,10 @@ msgid "Generate Registration Code Modal" msgstr "" "Généräté Régïsträtïön Çödé Mödäl Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє¢тє#" +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "Create Enrollment Codes" +msgstr "Çréäté Énröllmént Çödés Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σ#" + #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "* Required Information" msgstr "* Réqüïréd Ìnförmätïön Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢#" @@ -22725,10 +22380,18 @@ msgstr "" "Pléäsé éntér Çöürsé Mödé détäïl ßélöw Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, " "¢σηѕє¢тєтυ#" +#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html +msgid "Course Price" +msgstr "Çöürsé Prïçé Ⱡ'σяєм ιρѕυм ∂σłσя ѕ#" + #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Price" msgstr "Sét Prïçé Ⱡ'σяєм ιρѕυм ∂σł#" +#: lms/templates/instructor/instructor_dashboard_2/special_exams.html +msgid "Proctortrack Escalation Email:" +msgstr "Pröçtörträçk Ésçälätïön Émäïl: Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє¢т#" + #: lms/templates/instructor/instructor_dashboard_2/special_exams.html msgid "Allowance Section" msgstr "Àllöwänçé Séçtïön Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмє#" @@ -27920,6 +27583,10 @@ msgstr "Çöürsé Stärt Tïmé Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αм msgid "(UTC)" msgstr "(ÛTÇ) Ⱡ'σяєм ιρѕ#" +#: cms/templates/settings.html +msgid "Course End Date" +msgstr "Çöürsé Énd Däté Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт α#" + #: cms/templates/settings.html msgid "Last day your course is active" msgstr "Läst däý ýöür çöürsé ïs äçtïvé Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє¢т#" @@ -28904,6 +28571,32 @@ msgstr "" "Rétürn tö thé {link_start}hömé pägé{link_end}. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, " "¢σηѕє¢т#" +#: cms/templates/widgets/deprecated-course-key-warning.html +msgid "Support will be removed in an upcoming release." +msgstr "" +"Süppört wïll ßé rémövéd ïn än üpçömïng réléäsé. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт," +" ¢σηѕє¢тєтυя α#" + +#: cms/templates/widgets/deprecated-course-key-warning.html +msgid "Support will be removed on {expiration_date}." +msgstr "" +"Süppört wïll ßé rémövéd ön {expiration_date}. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, " +"¢σηѕє¢т#" + +#: cms/templates/widgets/deprecated-course-key-warning.html +msgid "This course uses a legacy storage format." +msgstr "" +"Thïs çöürsé üsés ä légäçý störägé förmät. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, " +"¢σηѕє¢тєтυя #" + +#: cms/templates/widgets/deprecated-course-key-warning.html +msgid "" +"Please reach out to your support team contact, if you have any additional " +"questions or concerns." +msgstr "" +"Pléäsé réäçh öüt tö ýöür süppört téäm çöntäçt, ïf ýöü hävé äný äddïtïönäl " +"qüéstïöns ör çönçérns. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, #" + #: cms/templates/widgets/footer.html msgid "Policies" msgstr "Pölïçïés Ⱡ'σяєм ιρѕυм ∂#" diff --git a/conf/locale/eo/LC_MESSAGES/djangojs.mo b/conf/locale/eo/LC_MESSAGES/djangojs.mo index 07b7644b04..b7cbb082bb 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 ef20a328c0..8992c8b4c7 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: 2020-06-28 20:50+0000\n" -"PO-Revision-Date: 2020-06-28 20:50:23.689858\n" +"POT-Creation-Date: 2020-07-05 20:50+0000\n" +"PO-Revision-Date: 2020-07-05 20:50:23.560748\n" "Last-Translator: \n" "Language-Team: openedx-translation \n" "Language: eo\n" diff --git a/conf/locale/es_419/LC_MESSAGES/django.mo b/conf/locale/es_419/LC_MESSAGES/django.mo index d4f99c1f74..ed18a519ad 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 fbf3aad939..04f77f3062 100644 --- a/conf/locale/es_419/LC_MESSAGES/django.po +++ b/conf/locale/es_419/LC_MESSAGES/django.po @@ -34,6 +34,7 @@ # Juan Camilo Montoya Franco , 2013-2014 # Juan Camilo Montoya Franco , 2013 # Juan , 2015 +# Juliana Kang , 2020 # karlman72 , 2014 # Laura Silva , 2015-2018 # Lohenrex , 2019 @@ -255,7 +256,7 @@ msgid "" msgstr "" "Project-Id-Version: 0.1a\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2020-06-21 20:42+0000\n" +"POT-Creation-Date: 2020-07-01 16:15+0000\n" "PO-Revision-Date: 2019-01-20 20:43+0000\n" "Last-Translator: Albeiro Gonzalez , 2019\n" "Language-Team: Spanish (Latin America) (https://www.transifex.com/open-edx/teams/6205/es_419/)\n" @@ -2401,6 +2402,7 @@ msgid "Never" msgstr "Nunca" #: common/lib/xmodule/xmodule/capa_base.py lms/templates/courseware/dates.html +#: lms/templates/vert_module.html msgid "Past Due" msgstr "Vencido" @@ -3734,6 +3736,17 @@ msgstr "" "Indique el proveedor de supervisión que quiere usar para el tiempo durante el cual se realizará el curso. Eliga entre las siguientes opciones:\n" "{available_providers}" +#: common/lib/xmodule/xmodule/course_module.py +msgid "Proctortrack Exam Escalation Contact" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Required if 'proctortrack' is selected as your proctoring provider. Enter an" +" email address to be contacted by the support team whenever there are " +"escalations (e.g. appeals, delayed reviews, etc.)." +msgstr "" + #: common/lib/xmodule/xmodule/course_module.py msgid "Allow Opting Out of Proctored Exams" msgstr "Habilitar Opción de No Tomar Exámenes Supervisados" @@ -4865,6 +4878,7 @@ msgid "External Discussion" msgstr "Discusión externa" #: common/lib/xmodule/xmodule/tabs.py lms/djangoapps/courseware/tabs.py +#: openedx/features/enterprise_support/templates/enterprise_support/admin/enrollment_attributes_override.html msgid "Home" msgstr "Inicio" @@ -6837,6 +6851,29 @@ msgstr "" msgid "Annual Household Income" msgstr "Ingresos anuales en tu hogar" +#: lms/djangoapps/courseware/views/views.py +msgid "" +"Tell us about your current financial situation. Why do you need assistance?" +msgstr "" +"Cuéntenos sobre su situación financiera actual. ¿Por qué requiere " +"asistencia?" + +#: 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 "" +"Cuéntenos sobre sus metas de aprendizaje y profesionales. ¿Cómo le puede " +"ayudar a lograr estas metas un Certificado Verificado?" + +#: 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 "" +"Cuéntenos sobre sus planes respecto a este curso. ¿Cuáles son los pasos que " +"tomará para completar las asignaciones del curso y recibir un certificado?" + #: lms/djangoapps/courseware/views/views.py msgid "Use between 1250 and 2500 characters or so in your response." msgstr "Use entre 1250 y 2500 caracteres más o menos en su respuesta" @@ -7547,11 +7584,6 @@ msgstr "" msgid "detailed enrollment" msgstr "Inscripción detallada" -#: lms/djangoapps/instructor/views/api.py -#: lms/djangoapps/instructor_task/api_helper.py -msgid "executive summary" -msgstr "resumen ejecutivo" - #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor_task/api_helper.py msgid "survey" @@ -9114,7 +9146,6 @@ msgstr "Moneda" #: lms/djangoapps/shoppingcart/reports.py #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: wiki/plugins/attachments/forms.py #: wiki/plugins/attachments/templates/wiki/plugins/attachments/history.html @@ -9133,8 +9164,7 @@ msgstr "Universidad" msgid "Course Announce Date" msgstr "Fecha de anuncio del curso" -#: lms/djangoapps/shoppingcart/reports.py cms/templates/settings.html -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +#: lms/djangoapps/shoppingcart/reports.py msgid "Course Start Date" msgstr "Fecha de inicio del curso" @@ -9163,7 +9193,6 @@ msgid "Verified Enrollment" msgstr "Inscripciones verificadas" #: lms/djangoapps/shoppingcart/reports.py -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html msgid "Gross Revenue" msgstr "Ingresos brutos" @@ -10056,17 +10085,64 @@ msgstr "Permitir" msgid "Error" msgstr "Error" -#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html -msgid "Expired ID Verification" -msgstr "verificación de ID caducada" +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html +msgid "ID Verification Approved" +msgstr "" +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html #: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/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 "Hola %(full_name)s," +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.txt +#, python-format +msgid "Your %(platform_name)s ID verification photos have been approved." +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.txt +#, python-format +msgid "" +"Your approval status remains valid for one year, and it will expire " +"%(expiry_date)s." +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.txt +msgid "Enjoy your studies," +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.txt +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +#, python-format +msgid "The %(platform_name)s Team " +msgstr "El %(platform_name)s equipo" + +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.txt +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +#, python-format +msgid "Hello %(full_name)s, " +msgstr "Hola %(full_name)s, " + +#: lms/templates/verify_student/edx_ace/verificationapproved/email/subject.txt +#, python-format +msgid "Your %(platform_name)s ID verification was approved!" +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html +msgid "Expired ID Verification" +msgstr "verificación de ID caducada" + #: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html #: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt #, python-format @@ -10117,22 +10193,44 @@ msgstr "" msgid "Thank you," msgstr "Gracias." -#: 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 "El %(platform_name)s equipo" - -#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt -#, python-format -msgid "Hello %(full_name)s, " -msgstr "Hola %(full_name)s, " - #: lms/templates/verify_student/edx_ace/verificationexpiry/email/subject.txt #, python-format msgid "Your %(platform_name)s Verification has Expired" msgstr "Tu %(platform_name)s verificación ha expirado" +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +msgid "ID Verification Submitted" +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +#, python-format +msgid "" +"Thank you for submitting your photos for identity verification with " +"%(platform_name)s. " +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +msgid "" +"We have received your photos and they will be reviewed within 5-7 days." +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +#, python-format +msgid "You may check the status on your dashboard: %(dashboard_link)s " +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +msgid "Best regards," +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/subject.txt +msgid "Thank you for submitting your photos!" +msgstr "" + #: lms/templates/wiki/article.html msgid "Last modified:" msgstr "Última modificación:" @@ -10214,7 +10312,6 @@ msgstr "Está a punto de borrar un artículo. Favor confirmar." #: lms/templates/wiki/edit.html cms/templates/component.html #: cms/templates/container.html cms/templates/studio_xblock_wrapper.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/wiki/includes/article_menu.html wiki/templates/wiki/edit.html #: wiki/templates/wiki/includes/article_menu.html msgid "Edit" @@ -11942,7 +12039,6 @@ msgid "Success" msgstr "Éxito" #: openedx/core/djangoapps/user_api/admin.py -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/staff_problem_info.html msgid "Actions" msgstr "Acciones" @@ -12507,6 +12603,10 @@ msgstr "" msgid "Username created for VEM Integration, e.g. vem_service_user." msgstr "" +#: openedx/core/djangoapps/video_pipeline/models.py +msgid "Percentage of courses allowed to use VEM pipeline" +msgstr "" + #: openedx/core/djangoapps/waffle_utils/models.py msgid "Force On" msgstr "Forzar encendido" @@ -12614,34 +12714,11 @@ msgstr "Desuscribirse de las actualizaciones de calendario" msgid "Subscribe to calendar updates" msgstr "Suscribirse a las actualizaciones de calendario" -#: openedx/features/calendar_sync/views/management.py -#, python-brace-format -msgid "Updates for Your {course} Schedule" -msgstr "Actualizaciones para su calendario de {course}" - -#: openedx/features/calendar_sync/views/management.py -msgid "Update Your Calendar" -msgstr "Actualice su calendario" - -#: openedx/features/calendar_sync/views/management.py -#, python-brace-format -msgid "" -"Your assignment due dates for {course} were recently adjusted. Update your " -"calendarwith your new schedule to ensure that you stay on track!" -msgstr "" -"Las fechas de vencimiento de su tarea para {course} se ajustaron " -"recientemente. Actualice su calendario con su nuevo horario para asegurarse " -"de mantenerse en el camino correcto!" - -#: openedx/features/calendar_sync/views/management.py +#: openedx/features/calendar_sync/utils.py msgid "Stay on Track" msgstr "Manténgase al día" -#: openedx/features/calendar_sync/views/management.py -msgid "Mark Your Calendar" -msgstr "Marque su calendario" - -#: openedx/features/calendar_sync/views/management.py +#: openedx/features/calendar_sync/utils.py #, python-brace-format msgid "" "Sticking to a schedule is the best way to ensure that you successfully " @@ -12652,6 +12729,18 @@ msgstr "" "éxito su curso a su propio ritmo. ¡Este cronograma de fechas de vencimiento " "de tareas para {course} lo ayudará a mantenerse en el camino!" +#: openedx/features/calendar_sync/utils.py +#, python-brace-format +msgid "Updates for Your {course} Schedule" +msgstr "Actualizaciones para su calendario de {course}" + +#: openedx/features/calendar_sync/utils.py +#, python-brace-format +msgid "" +"Your assignment due dates for {course} were recently adjusted. Update your " +"calendar with your new schedule to ensure that you stay on track!" +msgstr "" + #: openedx/features/content_type_gating/models.py #: openedx/features/course_duration_limits/models.py #: lms/templates/support/feature_based_enrollments.html @@ -12901,6 +12990,23 @@ msgstr "" "{b_open}{code}{b_close} durante el pago! {a_open}Haga el Upgrade " "ahora{a_close}{div_close}" +#: openedx/features/enterprise_support/admin/forms.py +msgid "CSV File" +msgstr "" + +#: openedx/features/enterprise_support/admin/forms.py +msgid "" +"CSV file should have 3 columns having names lms_user_id, course_id, " +"opportunity_id" +msgstr "" + +#: openedx/features/enterprise_support/admin/views.py +#, python-brace-format +msgid "" +"Enrollment attributes were not updated for records at following line numbers" +" in csv because no enrollment found for these records: {error_line_numbers}" +msgstr "" + #: openedx/features/enterprise_support/api.py #, python-brace-format msgid "Enrollment in {course_title} was not complete." @@ -12915,6 +13021,18 @@ msgstr "" "Si tiene dudas acerca de compartir sus datos, contacte a su administrador de" " {enterprise_customer_name}." +#: openedx/features/enterprise_support/templates/enterprise_support/admin/enrollment_attributes_override.html +msgid "Enterprise Course Enrollments" +msgstr "" + +#: openedx/features/enterprise_support/templates/enterprise_support/admin/enrollment_attributes_override.html +msgid "Override Enrollment Attributes" +msgstr "" + +#: openedx/features/enterprise_support/templates/enterprise_support/admin/enrollment_attributes_override.html +msgid "Upload CSV to override enrollment attributes for learners" +msgstr "" + #: openedx/features/enterprise_support/utils.py #, python-brace-format msgid "" @@ -13802,6 +13920,7 @@ msgid "Course Outline" msgstr "Estructura del curso" #: cms/templates/course_outline.html +#: cms/templates/widgets/deprecated-course-key-warning.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "Warning" msgstr "Advertencia" @@ -13843,11 +13962,6 @@ msgstr "Cursos" msgid "example: username@domain.com" msgstr "ejemplo: usuario@dominio.com" -#: cms/templates/settings.html -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Course End Date" -msgstr "Fecha de finalización del curso" - #: cms/templates/settings.html lms/templates/courseware/program_marketing.html msgid "Instructors" msgstr "Instructores" @@ -14801,6 +14915,7 @@ msgid "Sequence" msgstr "Secuencia" #: lms/templates/courseware/dates.html lms/templates/seq_module.html +#: lms/templates/vert_module.html #: openedx/features/course_experience/templates/course_experience/course-outline-fragment.html msgid "Completed" msgstr "Completado" @@ -15201,6 +15316,11 @@ msgstr "" " los navegadores para aumentar o disminuir el tamaño. En Google Chrome, esto" " se hace pulsando ctrl +, o ctrl - al mismo tiempo." +#: lms/templates/vert_module.html +#: openedx/features/course_experience/templates/course_experience/course-outline-fragment.html +msgid "{subsection_format} due {{date}}" +msgstr "{subsection_format} fecha límite {{date}}" + #: lms/templates/video.html msgid "Loading video player" msgstr "Cargando reproductor de video" @@ -17804,6 +17924,12 @@ msgstr "Opciones de curso para" msgid "Available Actions" msgstr "Acciones disponibles" +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"You are enrolled by your institution and you should reach out to your " +"institution to drop this course." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_entitlement_actions.html msgid "Email Settings" @@ -17813,28 +17939,6 @@ msgstr "Configuración de email" msgid "Related Programs" msgstr "Programas relacionados" -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "" -"You can no longer access this course because payment has not yet been " -"received. You can contact the account holder to request payment, or you can " -"unenroll from this course" -msgstr "" -"Ya no puede acceder a este curso porque no se ha recibido el pago. puede " -"contactar el titular de la cuenta para solicitar el pago o puede cancelar su" -" inscripción a este curso." - -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "" -"You can no longer access this course because payment has not yet been " -"received. You can {contact_link_start}contact the account " -"holder{contact_link_end} to request payment, or you can " -"{unenroll_link_start}unenroll{unenroll_link_end} from this course" -msgstr "" -"Ya no se puede acceder a este curso porque el pago no ha sido recibido aún. " -"Puedes contactarte {contact_link_start} con el titular de la cuenta " -"{contact_link_end} para solicitar el pago, o puedes " -"{unenroll_link_start}anular la matrícula {unenroll_link_end} de este curso" - #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Verification not yet complete." msgstr "Verificación no esta completa" @@ -18908,7 +19012,6 @@ msgid "Order History" msgstr "Historial de órdenes" #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon Code" msgstr "Añadir código de cupón" @@ -18917,8 +19020,6 @@ msgid "Enter information about the coupon code below." msgstr "Ingrese la información del código de cupón a continuación." #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html msgid "Coupon Code" msgstr "Código de cupón" @@ -19007,7 +19108,6 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/certificates.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/data_download.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Pending Tasks" @@ -19016,7 +19116,6 @@ msgstr "Tareas pendientes" #: lms/templates/instructor/instructor_dashboard_2/certificates.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/data_download.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "The status for any active tasks appears in a table below." msgstr "" @@ -19204,7 +19303,6 @@ msgstr "" "estudiantes. Archivo separado por comas" #: lms/templates/instructor/instructor_dashboard_2/data_download.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Reports" msgstr "Reportes" @@ -19394,292 +19492,6 @@ msgstr "" "guarde los archivos, en acuerdo con las políticas de seguridad de datos de " "su institución. {li_end}{ul_end}" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enrollment Codes" -msgstr "Códigos de inscripción" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Create one or more pre-paid course enrollment codes. Students can use these " -"codes to enroll in the course." -msgstr "" -"Cree uno o más códigos de inscripción prepago. Los estudiantes pueden usar " -"estos códigos para inscribirse al curso." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -msgid "Create Enrollment Codes" -msgstr "Crear Códigos de inscripción" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Cancel, restore, or mark an enrollment code as unused." -msgstr "" -"Cancelar, restablecer o marcar código de inscripción como no utilizado" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Change Enrollment Code Status" -msgstr "Cambiar el estado del código de inscripción" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download a .csv file of all enrollment codes for this course." -msgstr "" -"Descargar un archivo .csv con todos los códigos de inscripción para este " -"curso" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download All Enrollment Codes" -msgstr "Descargar los códigos de inscripción" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download a .csv file of all unused enrollment codes for this course." -msgstr "" -"Descargar un archivo .csv con los códigos de inscripción no utilizados para " -"este curso" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download Unused Enrollment Codes" -msgstr "Descargar códigos no utilizados" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download a .csv file of all used enrollment codes for this course." -msgstr "" -"Descargar un archivo .csv con los códigos de inscripción ya utilizados para " -"este curso." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download Used Enrollment Codes" -msgstr "Descargar Códigos usados" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html -msgid "Course Price" -msgstr "Precio del curso" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Course price per seat: " -msgstr "Precio del curso por asiento:" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Edit Price" -msgstr "Editar precio" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Course Seat Purchases" -msgstr "Compras de asientos para el curso" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Total Credit Card Purchases: " -msgstr "Compras totales con tarjeta de crédito:" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Download a .csv file for all credit card purchases or for all invoices, " -"regardless of status." -msgstr "" -"Descargar un archivo .csv con todas las transacciones hechas con tarjeta de " -"crédito, sin importar el estado." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download All Invoices" -msgstr "Descargar todas las facturas" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download All Credit Card Purchases" -msgstr "Descargar todas las compras con tarjeta" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "To cancel or resubmit an invoice, enter the invoice number below." -msgstr "" -"Para cancelar o enviar nuevamente una factura, ingrese el número de factura " -"a continuación." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Invoice Number" -msgstr "Número de factura" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Cancel Invoice" -msgstr "Cancelar factura" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Resubmit Invoice" -msgstr "Reenviar factura" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Create a .csv file that contains enrollment information for your course." -msgstr "" -"Crear un archivo .csv con toda la información de inscripciones para este " -"curso." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Create Enrollment Report" -msgstr "Crear reporte de inscripciones" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Create an HTML file that contains an executive summary for this course." -msgstr "Crear un archivo HTML con toda el resumen ejecutivo para este curso." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Create Executive Summary" -msgstr "Crear resumen ejecutivo" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Available Reports" -msgstr "Reportes disponibles" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"The following reports are available for download. Reports are not deleted. A" -" link to every report remains available on this page, identified by the date" -" and time (in UTC) that the report was generated." -msgstr "" -"Los reportes listados a continuación están disponibles para descargar. Los " -"reportes no son borrados. Un vínculo a cada reporte permanecerá disponible " -"en esta página, identificado por la fecha y hora (en UTC) de generación." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"{strong_start}Note{strong_end}: To help protect learner data, links to these" -" reports that you save outside of this page or that you send or receive in " -"email expire after five minutes." -msgstr "" -"{strong_start}Nota{strong_end}: Para ayudar a proteger los datos de " -"usuarios, los vínculos a los reportes que usted guarda por fuera de esta " -"página, o los que se reciben por correo electrónico expiran después de cinco" -" minutos." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Coupon Code List" -msgstr "Lista de códigos de cupón" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download a .csv file of all coupon codes for this course." -msgstr "" -"Descargar un archivo .csv con todos los códigos de cupón para este curso." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download Coupon Codes" -msgstr "Descargar códigos de cupón" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Coupon Codes" -msgstr "Códigos de cupón" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html -msgid "Expiration Date" -msgstr "Fecha de expiración" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Coupon (%)" -msgstr "Cupón (%)" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Number Redeemed" -msgstr "Numero ya redimido" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "{code}" -msgstr "{code}" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "{description}" -msgstr "{description}" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "{discount}" -msgstr "{discount}" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The Invoice Number field cannot be empty." -msgstr "El número de factura no puede estar vacío." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "No Expiration Date" -msgstr "No hay fecha de expiración" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the company name." -msgstr "Ingrese en nombre de la empresa" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The company name cannot be a number." -msgstr "El nombre de la empresa no puede ser un número." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the company contact name." -msgstr "Ingrese el nombre de contacto en la empresa." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The company contact name cannot be a number." -msgstr "El nombre de contacto en la empresa no puede ser un número." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the email address for the company contact." -msgstr "Ingrese el correo electrónico del contacto en la empresa." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter a valid email address." -msgstr "Por favor ingrese una dirección de correo electrónico válida." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the recipient name." -msgstr "Por favor ingrese el nombre del receptor." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The recipient name cannot be a number." -msgstr "El nombre del receptor no puede ser un número." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the recipient email address." -msgstr "Por favor ingrese el correo electrónico del receptor." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the billing address." -msgstr "Ingrese la dirección de facturación" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the price per course seat." -msgstr "Ingrese el precio del curso por asiento." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Enter a numeric value for the price per course seat. Do not include currency" -" symbols." -msgstr "" -"Ingrese un valor numérico para el precio por asiendo. No incluya ningún " -"símbolo de moneda." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the number of enrollment codes." -msgstr "Ingrese el número de códigos de inscripción." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter a numeric value for the number of enrollment codes." -msgstr "Ingrese un valor numérico para el número de códigos de inscripción." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Select a currency." -msgstr "Seleccione una moneda." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter a coupon code." -msgstr "Por favor ingrese un código de cupón" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The discount percentage must be less than or equal to 100." -msgstr "El porcentaje de descuento debe ser un valor menor o igual a 100." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Enter a numeric value for the discount amount. Do not include the percent " -"sign." -msgstr "" -"Ingrese un valor numérico para el valor de descuento. No incluya el símbolo " -"de porcentaje." - #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Edit Coupon Code" msgstr "Editar código de cupón" @@ -19700,98 +19512,14 @@ msgstr "ejemplo: A123DS" msgid "Percentage Discount" msgstr "Porcentaje de descuento" +#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html +msgid "Expiration Date" +msgstr "Fecha de expiración" + #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon Code" msgstr "Actualizarcódigo de cupón" -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Executive Summary for {display_name}" -msgstr "Resumen ejecutivo para el curso {display_name}" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Report Creation Date" -msgstr "Fecha de Creación del reporte" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of Seats" -msgstr "Número de asientos" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of Enrollments" -msgstr "Número de inscripciones" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Gross Revenue Collected" -msgstr "Ingresos brutos recaudados" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Gross Revenue Pending" -msgstr "Ingresos brutos pendientes" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of Enrollment Refunds" -msgstr "Número de reembolsos de inscripción" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Amount Refunded" -msgstr "Valor reembolsado" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Average Price per Seat" -msgstr "Precio promedio por asiento" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Frequently Used Coupon Codes" -msgstr "Códigos de cupón usados frecuentemente" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of seats purchased using coupon codes" -msgstr "Número de asientos adquiridos con códigos de cupón" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Rank" -msgstr "Rango" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Percent Discount" -msgstr "Porcentaje de descuento" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Times Used" -msgstr "Número de usos" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Bulk and Single Seat Purchases" -msgstr "Compras de asientos masivas e individuales para el curso" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of seats purchased individually" -msgstr "Número de asientos adquiridos individualmente" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of seats purchased in bulk" -msgstr "Número de asientos adquiridos de forma masiva" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of seats purchased with invoices" -msgstr "Número de asientos adquiridos con factura" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Unused bulk purchase seats (revenue at risk)" -msgstr "Asientos compradas masívamente y no usadas (ingresos en riesgo)" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Percentage of seats purchased individually" -msgstr "Porcentaje de asientos adquiridas individualmente" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Percentage of seats purchased in bulk" -msgstr "Porcentaje de asientos adquiridos de forma masiva" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Percentage of seats purchased with invoices" -msgstr "Porcentaje de asientos adquiridos con factura" - #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Individual due date extensions" msgstr "Extensiones individuales de fecha límite" @@ -19899,6 +19627,10 @@ msgstr "Reiniciar la fecha límite para un estudiante" msgid "Generate Registration Code Modal" msgstr "Generar código de Modal de Registro" +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "Create Enrollment Codes" +msgstr "Crear Códigos de inscripción" + #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "* Required Information" msgstr "* Información Requerida" @@ -20453,10 +20185,18 @@ msgid "Please enter Course Mode detail below" msgstr "" "Por favor ingrese los detalles de la modalidad del curso a continuación" +#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html +msgid "Course Price" +msgstr "Precio del curso" + #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Price" msgstr "Definir precio" +#: lms/templates/instructor/instructor_dashboard_2/special_exams.html +msgid "Proctortrack Escalation Email:" +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/special_exams.html msgid "Allowance Section" msgstr "Sección de concesiones" @@ -21452,14 +21192,10 @@ msgstr "" msgid "" "Our system indicates that you are trying to access this {platform_name} " "course from a country or region currently subject to U.S. economic and trade" -" sanctions.Unfortunately, because {platform_name} is required to comply with" -" export controls,we cannot allow you to access this course at this time." +" sanctions. Unfortunately, because {platform_name} is required to comply " +"with export controls, we cannot allow you to access this course at this " +"time." msgstr "" -"Nuestro sistema indica que usted está tratando de acceder a un curso de " -"{platform_name} desde un país o región actualmente sujeto a embargos " -"económicos o sanciones comerciales de los Estados Unidos. " -"Desafortunadamente, {platform_name} debe cumplir con los controles de " -"exportaciones y no puede permitirle acceder a este curso en este momento." #: lms/templates/static_templates/faq.html #: themes/red-theme/lms/templates/footer.html @@ -21850,10 +21586,6 @@ msgstr[1] "({number} Preguntas)" msgid "Prerequisite: " msgstr "Prerrequisito:" -#: openedx/features/course_experience/templates/course_experience/course-outline-fragment.html -msgid "{subsection_format} due {{date}}" -msgstr "{subsection_format} fecha límite {{date}}" - #: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html msgid "Learn About Verified Certificates" msgstr "Saber más sobre Certificados Verificados" @@ -22037,6 +21769,14 @@ msgstr "" msgid "edX Partner Portal" msgstr "Portal de Socios de edX" +#: themes/edx.org/lms/templates/dashboard.html +msgid "Want to make edX better for everyone?" +msgstr "" + +#: themes/edx.org/lms/templates/dashboard.html +msgid "Get started" +msgstr "" + #: themes/edx.org/lms/templates/dashboard.html msgid "" "Browse recently launched courses and see what's new in your favorite " @@ -24959,6 +24699,10 @@ msgstr "Hora de inicio del curso" msgid "(UTC)" msgstr "(UTC)" +#: cms/templates/settings.html +msgid "Course End Date" +msgstr "" + #: cms/templates/settings.html msgid "Last day your course is active" msgstr "Último día que el curso estará activo" @@ -25828,6 +25572,24 @@ msgstr "" msgid "Return to the {link_start}home page{link_end}." msgstr "Regresar a la {link_start}página de inicio{link_end}." +#: cms/templates/widgets/deprecated-course-key-warning.html +msgid "Support will be removed in an upcoming release." +msgstr "" + +#: cms/templates/widgets/deprecated-course-key-warning.html +msgid "Support will be removed on {expiration_date}." +msgstr "" + +#: cms/templates/widgets/deprecated-course-key-warning.html +msgid "This course uses a legacy storage format." +msgstr "" + +#: cms/templates/widgets/deprecated-course-key-warning.html +msgid "" +"Please reach out to your support team contact, if you have any additional " +"questions or concerns." +msgstr "" + #: cms/templates/widgets/footer.html msgid "Policies" msgstr "Poliíticas" diff --git a/conf/locale/es_419/LC_MESSAGES/djangojs.po b/conf/locale/es_419/LC_MESSAGES/djangojs.po index c613f92482..c3e386db1e 100644 --- a/conf/locale/es_419/LC_MESSAGES/djangojs.po +++ b/conf/locale/es_419/LC_MESSAGES/djangojs.po @@ -167,7 +167,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2020-06-21 20:42+0000\n" +"POT-Creation-Date: 2020-07-01 16:14+0000\n" "PO-Revision-Date: 2020-06-14 20:45+0000\n" "Last-Translator: edx_transifex_bot \n" "Language-Team: Spanish (Latin America) (http://www.transifex.com/open-edx/edx-platform/language/es_419/)\n" @@ -3126,6 +3126,11 @@ msgstr "" "encontrar un equipo para unirte, {create_span_start}crea un nuevo equipo en " "este tema{span_end}." +#: lms/djangoapps/teams/static/teams/js/views/topic_teams.js +msgid "" +"An error occurred while looking up team membership. Try refreshing the page." +msgstr "" + #: lms/djangoapps/teams/static/teams/js/views/topics.js msgid "All topics" msgstr "Todos los temas" diff --git a/conf/locale/eu_ES/LC_MESSAGES/django.mo b/conf/locale/eu_ES/LC_MESSAGES/django.mo index bd543c7ae2..b3bcd10786 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 0c72e86e98..f89c4727ae 100644 --- a/conf/locale/eu_ES/LC_MESSAGES/django.po +++ b/conf/locale/eu_ES/LC_MESSAGES/django.po @@ -64,7 +64,7 @@ msgid "" msgstr "" "Project-Id-Version: 0.1a\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2020-06-21 20:42+0000\n" +"POT-Creation-Date: 2020-07-01 16:15+0000\n" "PO-Revision-Date: 2019-01-20 20:43+0000\n" "Last-Translator: Abel Camacho , 2019\n" "Language-Team: Basque (Spain) (https://www.transifex.com/open-edx/teams/6205/eu_ES/)\n" @@ -3227,6 +3227,17 @@ msgid "" "from the following options: {available_providers}." msgstr "" +#: common/lib/xmodule/xmodule/course_module.py +msgid "Proctortrack Exam Escalation Contact" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Required if 'proctortrack' is selected as your proctoring provider. Enter an" +" email address to be contacted by the support team whenever there are " +"escalations (e.g. appeals, delayed reviews, etc.)." +msgstr "" + #: common/lib/xmodule/xmodule/course_module.py msgid "Allow Opting Out of Proctored Exams" msgstr "" @@ -4180,6 +4191,7 @@ msgid "External Discussion" msgstr "Kanpoko eztabaida" #: common/lib/xmodule/xmodule/tabs.py lms/djangoapps/courseware/tabs.py +#: openedx/features/enterprise_support/templates/enterprise_support/admin/enrollment_attributes_override.html msgid "Home" msgstr "" @@ -5944,6 +5956,23 @@ msgstr "" msgid "Annual Household Income" msgstr "" +#: lms/djangoapps/courseware/views/views.py +msgid "" +"Tell us about your current financial situation. Why do you need assistance?" +msgstr "" + +#: lms/djangoapps/courseware/views/views.py +msgid "" +"Tell us about your learning or professional goals. How will a Verified " +"Certificate in this course help you achieve these goals?" +msgstr "" + +#: lms/djangoapps/courseware/views/views.py +msgid "" +"Tell us about your plans for this course. What steps will you take to help " +"you complete the course work and receive a certificate?" +msgstr "" + #: lms/djangoapps/courseware/views/views.py msgid "Use between 1250 and 2500 characters or so in your response." msgstr "" @@ -6607,11 +6636,6 @@ msgstr "" msgid "detailed enrollment" msgstr "" -#: lms/djangoapps/instructor/views/api.py -#: lms/djangoapps/instructor_task/api_helper.py -msgid "executive summary" -msgstr "" - #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor_task/api_helper.py msgid "survey" @@ -7971,7 +7995,6 @@ msgstr "Moneta" #: lms/djangoapps/shoppingcart/reports.py #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: wiki/plugins/attachments/forms.py #: wiki/plugins/attachments/templates/wiki/plugins/attachments/history.html @@ -7990,8 +8013,7 @@ msgstr "Unibertsitatea" msgid "Course Announce Date" msgstr "Ikastaroa iragartzeko data" -#: lms/djangoapps/shoppingcart/reports.py cms/templates/settings.html -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +#: lms/djangoapps/shoppingcart/reports.py msgid "Course Start Date" msgstr "Ikastaroaren hasiera-data" @@ -8020,7 +8042,6 @@ msgid "Verified Enrollment" msgstr "Egiaztatutako matrikulazioa" #: lms/djangoapps/shoppingcart/reports.py -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html msgid "Gross Revenue" msgstr "" @@ -8838,17 +8859,64 @@ msgstr "" msgid "Error" msgstr "Errorea" -#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html -msgid "Expired ID Verification" +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html +msgid "ID Verification Approved" msgstr "" +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html #: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/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 "" +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.txt +#, python-format +msgid "Your %(platform_name)s ID verification photos have been approved." +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.txt +#, python-format +msgid "" +"Your approval status remains valid for one year, and it will expire " +"%(expiry_date)s." +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.txt +msgid "Enjoy your studies," +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.txt +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +#, python-format +msgid "The %(platform_name)s Team " +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.txt +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +#, python-format +msgid "Hello %(full_name)s, " +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationapproved/email/subject.txt +#, python-format +msgid "Your %(platform_name)s ID verification was approved!" +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 #: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt #, python-format @@ -8894,22 +8962,44 @@ msgstr "" msgid "Thank you," msgstr "Eskerrik asko." -#: 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 "" - -#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt -#, python-format -msgid "Hello %(full_name)s, " -msgstr "" - #: lms/templates/verify_student/edx_ace/verificationexpiry/email/subject.txt #, python-format msgid "Your %(platform_name)s Verification has Expired" msgstr "" +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +msgid "ID Verification Submitted" +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +#, python-format +msgid "" +"Thank you for submitting your photos for identity verification with " +"%(platform_name)s. " +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +msgid "" +"We have received your photos and they will be reviewed within 5-7 days." +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +#, python-format +msgid "You may check the status on your dashboard: %(dashboard_link)s " +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +msgid "Best regards," +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/subject.txt +msgid "Thank you for submitting your photos!" +msgstr "" + #: lms/templates/wiki/article.html msgid "Last modified:" msgstr "Azken aldaketa:" @@ -8987,7 +9077,6 @@ msgstr "Artikulu bat ezabatzekotan ari zara. Mesedez, konfirmatu." #: lms/templates/wiki/edit.html cms/templates/component.html #: cms/templates/container.html cms/templates/studio_xblock_wrapper.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/wiki/includes/article_menu.html wiki/templates/wiki/edit.html #: wiki/templates/wiki/includes/article_menu.html msgid "Edit" @@ -10533,7 +10622,6 @@ msgid "Success" msgstr "Ondo" #: openedx/core/djangoapps/user_api/admin.py -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/staff_problem_info.html msgid "Actions" msgstr "Ekintzak" @@ -11031,6 +11119,10 @@ msgstr "" msgid "Username created for VEM Integration, e.g. vem_service_user." msgstr "" +#: openedx/core/djangoapps/video_pipeline/models.py +msgid "Percentage of courses allowed to use VEM pipeline" +msgstr "" + #: openedx/core/djangoapps/waffle_utils/models.py msgid "Force On" msgstr "" @@ -11130,31 +11222,11 @@ msgstr "" msgid "Subscribe to calendar updates" msgstr "" -#: openedx/features/calendar_sync/views/management.py -#, python-brace-format -msgid "Updates for Your {course} Schedule" -msgstr "" - -#: openedx/features/calendar_sync/views/management.py -msgid "Update Your Calendar" -msgstr "" - -#: openedx/features/calendar_sync/views/management.py -#, python-brace-format -msgid "" -"Your assignment due dates for {course} were recently adjusted. Update your " -"calendarwith your new schedule to ensure that you stay on track!" -msgstr "" - -#: openedx/features/calendar_sync/views/management.py +#: openedx/features/calendar_sync/utils.py msgid "Stay on Track" msgstr "" -#: openedx/features/calendar_sync/views/management.py -msgid "Mark Your Calendar" -msgstr "" - -#: openedx/features/calendar_sync/views/management.py +#: openedx/features/calendar_sync/utils.py #, python-brace-format msgid "" "Sticking to a schedule is the best way to ensure that you successfully " @@ -11162,6 +11234,18 @@ msgid "" "{course} will help you stay on track!" msgstr "" +#: openedx/features/calendar_sync/utils.py +#, python-brace-format +msgid "Updates for Your {course} Schedule" +msgstr "" + +#: openedx/features/calendar_sync/utils.py +#, python-brace-format +msgid "" +"Your assignment due dates for {course} were recently adjusted. Update your " +"calendar with your new schedule to ensure that you stay on track!" +msgstr "" + #: openedx/features/content_type_gating/models.py #: openedx/features/course_duration_limits/models.py #: lms/templates/support/feature_based_enrollments.html @@ -11359,6 +11443,23 @@ msgid "" "checkout! {a_open}Upgrade Now{a_close}{div_close}" msgstr "" +#: openedx/features/enterprise_support/admin/forms.py +msgid "CSV File" +msgstr "" + +#: openedx/features/enterprise_support/admin/forms.py +msgid "" +"CSV file should have 3 columns having names lms_user_id, course_id, " +"opportunity_id" +msgstr "" + +#: openedx/features/enterprise_support/admin/views.py +#, python-brace-format +msgid "" +"Enrollment attributes were not updated for records at following line numbers" +" in csv because no enrollment found for these records: {error_line_numbers}" +msgstr "" + #: openedx/features/enterprise_support/api.py #, python-brace-format msgid "Enrollment in {course_title} was not complete." @@ -11371,6 +11472,18 @@ msgid "" "administrator at {enterprise_customer_name}." msgstr "" +#: openedx/features/enterprise_support/templates/enterprise_support/admin/enrollment_attributes_override.html +msgid "Enterprise Course Enrollments" +msgstr "" + +#: openedx/features/enterprise_support/templates/enterprise_support/admin/enrollment_attributes_override.html +msgid "Override Enrollment Attributes" +msgstr "" + +#: openedx/features/enterprise_support/templates/enterprise_support/admin/enrollment_attributes_override.html +msgid "Upload CSV to override enrollment attributes for learners" +msgstr "" + #: openedx/features/enterprise_support/utils.py #, python-brace-format msgid "" @@ -12185,6 +12298,7 @@ msgid "Course Outline" msgstr "Ikastaroaren egitura" #: cms/templates/course_outline.html +#: cms/templates/widgets/deprecated-course-key-warning.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "Warning" msgstr "Kontuz" @@ -12226,11 +12340,6 @@ msgstr "Ikastaroak" msgid "example: username@domain.com" msgstr "adibidea: erabiltzaile-izena@domeinua.com" -#: cms/templates/settings.html -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Course End Date" -msgstr "Ikastaroaren amaiera-data" - #: cms/templates/settings.html lms/templates/courseware/program_marketing.html msgid "Instructors" msgstr "Irakasleak" @@ -13131,6 +13240,7 @@ msgid "Sequence" msgstr "Sekuentzia" #: lms/templates/courseware/dates.html lms/templates/seq_module.html +#: lms/templates/vert_module.html #: openedx/features/course_experience/templates/course_experience/course-outline-fragment.html msgid "Completed" msgstr "Osatua" @@ -13514,6 +13624,11 @@ msgid "" " ctrl-minus at the same time." msgstr "" +#: lms/templates/vert_module.html +#: openedx/features/course_experience/templates/course_experience/course-outline-fragment.html +msgid "{subsection_format} due {{date}}" +msgstr "" + #: lms/templates/video.html msgid "Loading video player" msgstr "Bideo-erreproduzitzailea igotzen" @@ -15658,6 +15773,12 @@ msgstr "" msgid "Available Actions" msgstr "" +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"You are enrolled by your institution and you should reach out to your " +"institution to drop this course." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_entitlement_actions.html msgid "Email Settings" @@ -15667,21 +15788,6 @@ msgstr "E-postaren ezarpenak" msgid "Related Programs" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "" -"You can no longer access this course because payment has not yet been " -"received. You can contact the account holder to request payment, or you can " -"unenroll from this course" -msgstr "" - -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "" -"You can no longer access this course because payment has not yet been " -"received. You can {contact_link_start}contact the account " -"holder{contact_link_end} to request payment, or you can " -"{unenroll_link_start}unenroll{unenroll_link_end} from this course" -msgstr "" - #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Verification not yet complete." msgstr "" @@ -16643,7 +16749,6 @@ msgid "Order History" msgstr "Eskabideen historia" #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon Code" msgstr "Gehitu kupoiaren kodea" @@ -16652,8 +16757,6 @@ msgid "Enter information about the coupon code below." msgstr "Idatzi kupoiaren kodeari buruzko informazioa behean." #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html msgid "Coupon Code" msgstr "Kupoiaren kodea" @@ -16735,7 +16838,6 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/certificates.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/data_download.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Pending Tasks" @@ -16744,7 +16846,6 @@ msgstr "Zain dauden atazak" #: lms/templates/instructor/instructor_dashboard_2/certificates.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/data_download.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "The status for any active tasks appears in a table below." msgstr "" @@ -16909,7 +17010,6 @@ msgid "Get Student Anonymized IDs CSV" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Reports" msgstr "Txostenak" @@ -17057,273 +17157,6 @@ msgid "" "policies.{li_end}{ul_end}" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enrollment Codes" -msgstr "Matrikulazio-kodeak" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Create one or more pre-paid course enrollment codes. Students can use these " -"codes to enroll in the course." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -msgid "Create Enrollment Codes" -msgstr "Sortu matrikulazio-kodeak" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Cancel, restore, or mark an enrollment code as unused." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Change Enrollment Code Status" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download a .csv file of all enrollment codes for this course." -msgstr "" -"Jaitsi ikastaro honetarako matrikulazio-kode guztiak .csv fitxategian." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download All Enrollment Codes" -msgstr "Jaitsi matrikulazio-kode guztiak" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download a .csv file of all unused enrollment codes for this course." -msgstr "" -"Jaitsi ikastaro honetarako erabili gabeko matrikulazio-kode guztiak .csv " -"fitxategian." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download Unused Enrollment Codes" -msgstr "Jaitsi erabili gabeko matrikulazio-kodeak" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download a .csv file of all used enrollment codes for this course." -msgstr "" -"Jaitsi ikastaro honetarako erabilitako matrikulazio-kode guztiak .csv " -"fitxategian." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download Used Enrollment Codes" -msgstr "Jaitsi erabilitako matrikulazio-kodeak" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html -msgid "Course Price" -msgstr "Ikastaroaren prezioa" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Course price per seat: " -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Edit Price" -msgstr "Editatu prezioa" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Course Seat Purchases" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Total Credit Card Purchases: " -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Download a .csv file for all credit card purchases or for all invoices, " -"regardless of status." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download All Invoices" -msgstr "Jaitsi faktura guztiak" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download All Credit Card Purchases" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "To cancel or resubmit an invoice, enter the invoice number below." -msgstr "" -"Faktura bat bertan behera utzi edo berbidaltzeko, idatzi behean faktura-" -"zenbakia." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Invoice Number" -msgstr "Faktura-zenbakia" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Cancel Invoice" -msgstr "Bertan behera utzi faktura" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Resubmit Invoice" -msgstr "Berbidali faktura" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Create a .csv file that contains enrollment information for your course." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Create Enrollment Report" -msgstr "Sortu matrikulazio-txostena" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Create an HTML file that contains an executive summary for this course." -msgstr "Sortu ikastaro honen laburpena jasotzen duen HTML fitxategia " - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Create Executive Summary" -msgstr "Sortu laburpena" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Available Reports" -msgstr "Txosten eskuragarriak" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"The following reports are available for download. Reports are not deleted. A" -" link to every report remains available on this page, identified by the date" -" and time (in UTC) that the report was generated." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"{strong_start}Note{strong_end}: To help protect learner data, links to these" -" reports that you save outside of this page or that you send or receive in " -"email expire after five minutes." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Coupon Code List" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download a .csv file of all coupon codes for this course." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download Coupon Codes" -msgstr "Jaitsi kupoiaren kodeak" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Coupon Codes" -msgstr "Kupoiaren kodeak" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html -msgid "Expiration Date" -msgstr "Iraungitze-data" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Coupon (%)" -msgstr "Kupoia: (%)" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Number Redeemed" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "{code}" -msgstr "{code}" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "{description}" -msgstr "{description}" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "{discount}" -msgstr "{discount}" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The Invoice Number field cannot be empty." -msgstr "Faktura-zenbakiaren eremua ezin da hutsik egon." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "No Expiration Date" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the company name." -msgstr "Idatzi enpresaren izena." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The company name cannot be a number." -msgstr "Konpainiaren izena ezin da zenbakia izan." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the company contact name." -msgstr "Idatzi konpainiaren kontaktuaren izena." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The company contact name cannot be a number." -msgstr "Enpresaren kontaktuaren izena ezin da zenbakia izan." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the email address for the company contact." -msgstr "Idatzi enpresaren kontakturako e-posta helbidea." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter a valid email address." -msgstr "Idatzi e-posta helbide baliagarria." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the recipient name." -msgstr "Idatzi hartzailearen izena." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The recipient name cannot be a number." -msgstr "Hartzailearen izena ezin da zenbakia izan." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the recipient email address." -msgstr "Idatzi hartzailearen e-posta helbidea." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the billing address." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the price per course seat." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Enter a numeric value for the price per course seat. Do not include currency" -" symbols." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the number of enrollment codes." -msgstr "Idatzi matrikulazio-kodeen kopurua." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter a numeric value for the number of enrollment codes." -msgstr "Idatzi matrikulazio-kodeen zenbatekorako zenbakia." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Select a currency." -msgstr "Aukeratu moneta." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter a coupon code." -msgstr "Idatzi kupoiaren kodea." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The discount percentage must be less than or equal to 100." -msgstr "Deskontuaren ehunekoak 100 edo txikiagoa izan behar du." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Enter a numeric value for the discount amount. Do not include the percent " -"sign." -msgstr "" -"Idatzi deskontuaren zenbatekorako zenbakia. Ez idatzi ehunekoaren ikurra." - #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Edit Coupon Code" msgstr "Editatu kupoiaren kodea" @@ -17344,98 +17177,14 @@ msgstr "adibidea: A123DS" msgid "Percentage Discount" msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html +msgid "Expiration Date" +msgstr "Iraungitze-data" + #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon Code" msgstr "Eguneratu kupoiaren kodea" -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Executive Summary for {display_name}" -msgstr "Laburpena ondokoarentzat: {display_name}" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Report Creation Date" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of Seats" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of Enrollments" -msgstr "Matrikulazio-kopurua" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Gross Revenue Collected" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Gross Revenue Pending" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of Enrollment Refunds" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Amount Refunded" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Average Price per Seat" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Frequently Used Coupon Codes" -msgstr "Maiz erabilitako kupoiaren kodeak" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of seats purchased using coupon codes" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Rank" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Percent Discount" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Times Used" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Bulk and Single Seat Purchases" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of seats purchased individually" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of seats purchased in bulk" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of seats purchased with invoices" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Unused bulk purchase seats (revenue at risk)" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Percentage of seats purchased individually" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Percentage of seats purchased in bulk" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Percentage of seats purchased with invoices" -msgstr "" - #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Individual due date extensions" msgstr "" @@ -17530,6 +17279,10 @@ msgstr "Berrezarri entregatze-data ikasleari" msgid "Generate Registration Code Modal" msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "Create Enrollment Codes" +msgstr "Sortu matrikulazio-kodeak" + #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "* Required Information" msgstr "* Beharrezko informazioa" @@ -17999,10 +17752,18 @@ msgstr "" msgid "Please enter Course Mode detail below" msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html +msgid "Course Price" +msgstr "Ikastaroaren prezioa" + #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Price" msgstr "Zehaztu prezioa" +#: lms/templates/instructor/instructor_dashboard_2/special_exams.html +msgid "Proctortrack Escalation Email:" +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/special_exams.html msgid "Allowance Section" msgstr "" @@ -18916,8 +18677,9 @@ msgstr "" msgid "" "Our system indicates that you are trying to access this {platform_name} " "course from a country or region currently subject to U.S. economic and trade" -" sanctions.Unfortunately, because {platform_name} is required to comply with" -" export controls,we cannot allow you to access this course at this time." +" sanctions. Unfortunately, because {platform_name} is required to comply " +"with export controls, we cannot allow you to access this course at this " +"time." msgstr "" #: lms/templates/static_templates/faq.html @@ -19284,10 +19046,6 @@ msgstr[1] "" msgid "Prerequisite: " msgstr "" -#: openedx/features/course_experience/templates/course_experience/course-outline-fragment.html -msgid "{subsection_format} due {{date}}" -msgstr "" - #: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html msgid "Learn About Verified Certificates" msgstr "" @@ -19459,6 +19217,14 @@ msgstr "" msgid "edX Partner Portal" msgstr "" +#: themes/edx.org/lms/templates/dashboard.html +msgid "Want to make edX better for everyone?" +msgstr "" + +#: themes/edx.org/lms/templates/dashboard.html +msgid "Get started" +msgstr "" + #: themes/edx.org/lms/templates/dashboard.html msgid "" "Browse recently launched courses and see what's new in your favorite " @@ -21940,6 +21706,10 @@ msgstr "Ikastaroaren hasiera-ordua" msgid "(UTC)" msgstr "(UTC)" +#: cms/templates/settings.html +msgid "Course End Date" +msgstr "" + #: cms/templates/settings.html msgid "Last day your course is active" msgstr "" @@ -22687,6 +22457,24 @@ msgstr "" msgid "Return to the {link_start}home page{link_end}." msgstr "" +#: cms/templates/widgets/deprecated-course-key-warning.html +msgid "Support will be removed in an upcoming release." +msgstr "" + +#: cms/templates/widgets/deprecated-course-key-warning.html +msgid "Support will be removed on {expiration_date}." +msgstr "" + +#: cms/templates/widgets/deprecated-course-key-warning.html +msgid "This course uses a legacy storage format." +msgstr "" + +#: cms/templates/widgets/deprecated-course-key-warning.html +msgid "" +"Please reach out to your support team contact, if you have any additional " +"questions or concerns." +msgstr "" + #: cms/templates/widgets/footer.html msgid "Policies" msgstr "" diff --git a/conf/locale/eu_ES/LC_MESSAGES/djangojs.po b/conf/locale/eu_ES/LC_MESSAGES/djangojs.po index 9c1283132e..0ad98665ff 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: 2020-06-21 20:42+0000\n" +"POT-Creation-Date: 2020-07-01 16:14+0000\n" "PO-Revision-Date: 2020-06-14 20:45+0000\n" "Last-Translator: edx_transifex_bot \n" "Language-Team: Basque (Spain) (http://www.transifex.com/open-edx/edx-platform/language/eu_ES/)\n" @@ -2888,6 +2888,11 @@ msgid "" "topic{span_end}." msgstr "" +#: lms/djangoapps/teams/static/teams/js/views/topic_teams.js +msgid "" +"An error occurred while looking up team membership. Try refreshing the page." +msgstr "" + #: lms/djangoapps/teams/static/teams/js/views/topics.js msgid "All topics" msgstr "Gai guztiak" diff --git a/conf/locale/fr/LC_MESSAGES/djangojs.po b/conf/locale/fr/LC_MESSAGES/djangojs.po index 38c977b2a8..04e4382525 100644 --- a/conf/locale/fr/LC_MESSAGES/djangojs.po +++ b/conf/locale/fr/LC_MESSAGES/djangojs.po @@ -204,7 +204,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2020-06-21 20:42+0000\n" +"POT-Creation-Date: 2020-07-01 16:14+0000\n" "PO-Revision-Date: 2020-06-14 20:45+0000\n" "Last-Translator: edx_transifex_bot \n" "Language-Team: French (http://www.transifex.com/open-edx/edx-platform/language/fr/)\n" @@ -3107,6 +3107,11 @@ msgstr "" "ne parvenez pas à trouver une équipe, {create_span_start}créez une nouvelle " "équipe dans ce sujet {span_end}." +#: lms/djangoapps/teams/static/teams/js/views/topic_teams.js +msgid "" +"An error occurred while looking up team membership. Try refreshing the page." +msgstr "" + #: lms/djangoapps/teams/static/teams/js/views/topics.js msgid "All topics" msgstr "Tous les sujets" diff --git a/conf/locale/id/LC_MESSAGES/django.mo b/conf/locale/id/LC_MESSAGES/django.mo index 2c14120786..3fd745fc5e 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 37e999bc02..1801541578 100644 --- a/conf/locale/id/LC_MESSAGES/django.po +++ b/conf/locale/id/LC_MESSAGES/django.po @@ -101,7 +101,7 @@ msgid "" msgstr "" "Project-Id-Version: 0.1a\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2020-06-21 20:42+0000\n" +"POT-Creation-Date: 2020-07-01 16:15+0000\n" "PO-Revision-Date: 2019-01-20 20:43+0000\n" "Last-Translator: Aprisa Chrysantina , 2019\n" "Language-Team: Indonesian (https://www.transifex.com/open-edx/teams/6205/id/)\n" @@ -3465,6 +3465,17 @@ 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 "Proctortrack Exam Escalation Contact" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Required if 'proctortrack' is selected as your proctoring provider. Enter an" +" email address to be contacted by the support team whenever there are " +"escalations (e.g. appeals, delayed reviews, etc.)." +msgstr "" + #: common/lib/xmodule/xmodule/course_module.py msgid "Allow Opting Out of Proctored Exams" msgstr "Ijinkan Tidak Mengikuti Ujian Tersupervisi" @@ -4549,6 +4560,7 @@ msgid "External Discussion" msgstr "Diskusi Eksternal" #: common/lib/xmodule/xmodule/tabs.py lms/djangoapps/courseware/tabs.py +#: openedx/features/enterprise_support/templates/enterprise_support/admin/enrollment_attributes_override.html msgid "Home" msgstr "Beranda" @@ -6459,6 +6471,23 @@ msgstr "" msgid "Annual Household Income" 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 "" + +#: lms/djangoapps/courseware/views/views.py +msgid "" +"Tell us about your learning or professional goals. How will a Verified " +"Certificate in this course help you achieve these goals?" +msgstr "" + +#: lms/djangoapps/courseware/views/views.py +msgid "" +"Tell us about your plans for this course. What steps will you take to help " +"you complete the course work and receive a certificate?" +msgstr "" + #: lms/djangoapps/courseware/views/views.py msgid "Use between 1250 and 2500 characters or so in your response." msgstr "" @@ -7158,11 +7187,6 @@ msgstr "" msgid "detailed enrollment" msgstr "Pendaftaran terperinci" -#: lms/djangoapps/instructor/views/api.py -#: lms/djangoapps/instructor_task/api_helper.py -msgid "executive summary" -msgstr "Ringkasan Eksekutif" - #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor_task/api_helper.py msgid "survey" @@ -8549,7 +8573,6 @@ msgstr "Mata uang" #: lms/djangoapps/shoppingcart/reports.py #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: wiki/plugins/attachments/forms.py #: wiki/plugins/attachments/templates/wiki/plugins/attachments/history.html @@ -8568,8 +8591,7 @@ msgstr "Universitas" msgid "Course Announce Date" msgstr "Tanggal Pengumuman Kursus" -#: lms/djangoapps/shoppingcart/reports.py cms/templates/settings.html -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +#: lms/djangoapps/shoppingcart/reports.py msgid "Course Start Date" msgstr "Tanggal Kursus Dimulai" @@ -8598,7 +8620,6 @@ msgid "Verified Enrollment" msgstr "Pendaftaran terverifikasi" #: lms/djangoapps/shoppingcart/reports.py -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html msgid "Gross Revenue" msgstr "Pendapatan Kotor" @@ -9438,17 +9459,64 @@ msgstr "Perbolehkan" msgid "Error" msgstr "Kesalahan" -#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html -msgid "Expired ID Verification" -msgstr "Verifikasi ID Kadaluarsa" +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html +msgid "ID Verification Approved" +msgstr "" +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html #: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/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 "Halo %(full_name)s," +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.txt +#, python-format +msgid "Your %(platform_name)s ID verification photos have been approved." +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.txt +#, python-format +msgid "" +"Your approval status remains valid for one year, and it will expire " +"%(expiry_date)s." +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.txt +msgid "Enjoy your studies," +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.txt +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +#, python-format +msgid "The %(platform_name)s Team " +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.txt +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +#, python-format +msgid "Hello %(full_name)s, " +msgstr "Halo %(full_name)s," + +#: lms/templates/verify_student/edx_ace/verificationapproved/email/subject.txt +#, python-format +msgid "Your %(platform_name)s ID verification was approved!" +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html +msgid "Expired ID Verification" +msgstr "Verifikasi ID Kadaluarsa" + #: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html #: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt #, python-format @@ -9494,22 +9562,44 @@ msgstr "FAQ Verifikasi ID : %(help_center_link)s " msgid "Thank you," msgstr "Terimakasih," -#: 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 "" - -#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt -#, python-format -msgid "Hello %(full_name)s, " -msgstr "Halo %(full_name)s," - #: lms/templates/verify_student/edx_ace/verificationexpiry/email/subject.txt #, python-format msgid "Your %(platform_name)s Verification has Expired" msgstr "" +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +msgid "ID Verification Submitted" +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +#, python-format +msgid "" +"Thank you for submitting your photos for identity verification with " +"%(platform_name)s. " +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +msgid "" +"We have received your photos and they will be reviewed within 5-7 days." +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +#, python-format +msgid "You may check the status on your dashboard: %(dashboard_link)s " +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +msgid "Best regards," +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/subject.txt +msgid "Thank you for submitting your photos!" +msgstr "" + #: lms/templates/wiki/article.html msgid "Last modified:" msgstr "Modifikasi terakhir:" @@ -9589,7 +9679,6 @@ msgstr "Anda akan menghapus artikel. Mohon konfirmasi." #: lms/templates/wiki/edit.html cms/templates/component.html #: cms/templates/container.html cms/templates/studio_xblock_wrapper.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/wiki/includes/article_menu.html wiki/templates/wiki/edit.html #: wiki/templates/wiki/includes/article_menu.html msgid "Edit" @@ -11170,7 +11259,6 @@ msgid "Success" msgstr "Berhasil" #: openedx/core/djangoapps/user_api/admin.py -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/staff_problem_info.html msgid "Actions" msgstr "Tindakan" @@ -11703,6 +11791,10 @@ msgstr "" msgid "Username created for VEM Integration, e.g. vem_service_user." msgstr "" +#: openedx/core/djangoapps/video_pipeline/models.py +msgid "Percentage of courses allowed to use VEM pipeline" +msgstr "" + #: openedx/core/djangoapps/waffle_utils/models.py msgid "Force On" msgstr "" @@ -11802,31 +11894,11 @@ msgstr "" msgid "Subscribe to calendar updates" msgstr "" -#: openedx/features/calendar_sync/views/management.py -#, python-brace-format -msgid "Updates for Your {course} Schedule" -msgstr "" - -#: openedx/features/calendar_sync/views/management.py -msgid "Update Your Calendar" -msgstr "" - -#: openedx/features/calendar_sync/views/management.py -#, python-brace-format -msgid "" -"Your assignment due dates for {course} were recently adjusted. Update your " -"calendarwith your new schedule to ensure that you stay on track!" -msgstr "" - -#: openedx/features/calendar_sync/views/management.py +#: openedx/features/calendar_sync/utils.py msgid "Stay on Track" msgstr "" -#: openedx/features/calendar_sync/views/management.py -msgid "Mark Your Calendar" -msgstr "" - -#: openedx/features/calendar_sync/views/management.py +#: openedx/features/calendar_sync/utils.py #, python-brace-format msgid "" "Sticking to a schedule is the best way to ensure that you successfully " @@ -11834,6 +11906,18 @@ msgid "" "{course} will help you stay on track!" msgstr "" +#: openedx/features/calendar_sync/utils.py +#, python-brace-format +msgid "Updates for Your {course} Schedule" +msgstr "" + +#: openedx/features/calendar_sync/utils.py +#, python-brace-format +msgid "" +"Your assignment due dates for {course} were recently adjusted. Update your " +"calendar with your new schedule to ensure that you stay on track!" +msgstr "" + #: openedx/features/content_type_gating/models.py #: openedx/features/course_duration_limits/models.py #: lms/templates/support/feature_based_enrollments.html @@ -12038,6 +12122,23 @@ msgid "" "checkout! {a_open}Upgrade Now{a_close}{div_close}" msgstr "" +#: openedx/features/enterprise_support/admin/forms.py +msgid "CSV File" +msgstr "" + +#: openedx/features/enterprise_support/admin/forms.py +msgid "" +"CSV file should have 3 columns having names lms_user_id, course_id, " +"opportunity_id" +msgstr "" + +#: openedx/features/enterprise_support/admin/views.py +#, python-brace-format +msgid "" +"Enrollment attributes were not updated for records at following line numbers" +" in csv because no enrollment found for these records: {error_line_numbers}" +msgstr "" + #: openedx/features/enterprise_support/api.py #, python-brace-format msgid "Enrollment in {course_title} was not complete." @@ -12050,6 +12151,18 @@ msgid "" "administrator at {enterprise_customer_name}." msgstr "" +#: openedx/features/enterprise_support/templates/enterprise_support/admin/enrollment_attributes_override.html +msgid "Enterprise Course Enrollments" +msgstr "" + +#: openedx/features/enterprise_support/templates/enterprise_support/admin/enrollment_attributes_override.html +msgid "Override Enrollment Attributes" +msgstr "" + +#: openedx/features/enterprise_support/templates/enterprise_support/admin/enrollment_attributes_override.html +msgid "Upload CSV to override enrollment attributes for learners" +msgstr "" + #: openedx/features/enterprise_support/utils.py #, python-brace-format msgid "" @@ -12870,6 +12983,7 @@ msgid "Course Outline" msgstr "Garis Besar Kursus" #: cms/templates/course_outline.html +#: cms/templates/widgets/deprecated-course-key-warning.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "Warning" msgstr "" @@ -12911,11 +13025,6 @@ msgstr "Kursus" msgid "example: username@domain.com" msgstr "contoh: namapengguna@domain.com" -#: cms/templates/settings.html -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Course End Date" -msgstr "Tanggal Kursus Berakhir" - #: cms/templates/settings.html lms/templates/courseware/program_marketing.html msgid "Instructors" msgstr "instruktur" @@ -13843,6 +13952,7 @@ msgid "Sequence" msgstr "Urutan" #: lms/templates/courseware/dates.html lms/templates/seq_module.html +#: lms/templates/vert_module.html #: openedx/features/course_experience/templates/course_experience/course-outline-fragment.html msgid "Completed" msgstr "" @@ -14243,6 +14353,11 @@ msgstr "" "Chrome, hal ini dilakukan dengan menekan ctrl-plus atau ctrl-minus pada " "waktu yang bersamaan." +#: lms/templates/vert_module.html +#: openedx/features/course_experience/templates/course_experience/course-outline-fragment.html +msgid "{subsection_format} due {{date}}" +msgstr "{subsection_format} berakhir {{date}}" + #: lms/templates/video.html msgid "Loading video player" msgstr "Muat pemutar video" @@ -16813,6 +16928,12 @@ msgstr "Pilihan pelatihan untuk" msgid "Available Actions" msgstr "Perintah Tersedia" +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"You are enrolled by your institution and you should reach out to your " +"institution to drop this course." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_entitlement_actions.html msgid "Email Settings" @@ -16822,29 +16943,6 @@ msgstr "Setelan Email" msgid "Related Programs" msgstr "Program terkait" -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "" -"You can no longer access this course because payment has not yet been " -"received. You can contact the account holder to request payment, or you can " -"unenroll from this course" -msgstr "" -"Anda tidak bisa mengakses kursus ini lagi karena pembayaran belum diterima. " -"Anda dapat menghubungi pemegang rekening untuk meminta pembayaran, atau Anda" -" dapat membatalkan pendaftaran dari pelatihan ini" - -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "" -"You can no longer access this course because payment has not yet been " -"received. You can {contact_link_start}contact the account " -"holder{contact_link_end} to request payment, or you can " -"{unenroll_link_start}unenroll{unenroll_link_end} from this course" -msgstr "" -"Anda tidak dapat lagi mengakses kursus ini karena bukti pembayaran belum " -"diterima. Anda dapat mengontak {contact_link_start}Tim " -"IndonesiaX{contact_link_end} untuk memproses pembayaran, atau Anda dapat " -"{unenroll_link_start}membatalkan pendaftaran{unenroll_link_end} dari kursus " -"ini." - #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Verification not yet complete." msgstr "Verifikasi belum lengkap." @@ -17909,7 +18007,6 @@ msgid "Order History" msgstr "Runtutan Pesanan" #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon Code" msgstr "Tambahkan Kode Kupon" @@ -17918,8 +18015,6 @@ msgid "Enter information about the coupon code below." msgstr "Masuk Informasi tentang kode kupon di bawah." #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html msgid "Coupon Code" msgstr "kode Kupon" @@ -18008,7 +18103,6 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/certificates.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/data_download.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Pending Tasks" @@ -18017,7 +18111,6 @@ msgstr "Tugas Tertunda" #: lms/templates/instructor/instructor_dashboard_2/certificates.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/data_download.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "The status for any active tasks appears in a table below." msgstr "Status mengenai tugas aktif terlihat di tabel di bawah." @@ -18189,7 +18282,6 @@ msgid "Get Student Anonymized IDs CSV" msgstr "Dapatkan CSV ID Anonim Siswa" #: lms/templates/instructor/instructor_dashboard_2/data_download.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Reports" msgstr "Laporkan" @@ -18370,282 +18462,6 @@ msgstr "" " 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" -msgstr "Kode Pendaftaran " - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Create one or more pre-paid course enrollment codes. Students can use these " -"codes to enroll in the course." -msgstr "" -"Buat satu atau lebih kode pendaftaran kursus prabayar. Siswa dapat " -"menggunakan kode ini untuk mendaftar kursus." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -msgid "Create Enrollment Codes" -msgstr "Kode Pendaftaran Kursus" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Cancel, restore, or mark an enrollment code as unused." -msgstr "" -"Batalkan, kembalikan, atau tandai kode pendaftaran sebagai belum terpakai." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Change Enrollment Code Status" -msgstr "Ubah Status Kode Pendaftaran " - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download a .csv file of all enrollment codes for this course." -msgstr "Unduh file .csv untuk semua kode pendaftaran kursus ini." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download All Enrollment Codes" -msgstr "Unduh Seluruh Kode Pendaftaran" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download a .csv file of all unused enrollment codes for this course." -msgstr "" -"Unduh berkas .csv dari kode pendaftaran yang belum terpakai untuk kursus " -"ini." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download Unused Enrollment Codes" -msgstr "Unduh Kode Pendaftaran Belum Terpakai" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download a .csv file of all used enrollment codes for this course." -msgstr "" -"Unduh berkas .csv dari kode pendaftaran yang sudah terpakai untuk kursus " -"ini." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download Used Enrollment Codes" -msgstr "Unduh Kode Pendaftaran Telah Terpakai" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html -msgid "Course Price" -msgstr "Harga Kursus" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Course price per seat: " -msgstr "Harga kursus per kursi: " - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Edit Price" -msgstr "Ubah Harga" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Course Seat Purchases" -msgstr "Pembelian Kursi Kursus" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Total Credit Card Purchases: " -msgstr "Total Pembelian Kartu Kredit: " - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Download a .csv file for all credit card purchases or for all invoices, " -"regardless of status." -msgstr "" -"Unduh berkas .csv untuk semua pembelian kartu kredit terhadap tagihan, tanpa" -" memandang status." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download All Invoices" -msgstr "Unduh Seluruh Tagihan" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download All Credit Card Purchases" -msgstr "Unduh Seluruh Pembelian Kartu Kredit" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "To cancel or resubmit an invoice, enter the invoice number below." -msgstr "" -"Untuk membatalkan atau memasukkan kembali tagihan, masukkan nomor tagihan di" -" bawah." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Invoice Number" -msgstr "Nomor Tagihan" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Cancel Invoice" -msgstr "Batalkan Tagihan" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Resubmit Invoice" -msgstr "Masukkan Kembali Tagihan" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Create a .csv file that contains enrollment information for your course." -msgstr "Buat berkas .csv yang berisi informasi pendaftaran kursus Anda." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Create Enrollment Report" -msgstr "Buat Laporan Pendaftaran" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Create an HTML file that contains an executive summary for this course." -msgstr "Buat berkas HTML yang berisi ringkasan eksekutif untuk kursus ini." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Create Executive Summary" -msgstr "Buat Ringkasan Eksekutif" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Available Reports" -msgstr "Laporan Tersedia" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"The following reports are available for download. Reports are not deleted. A" -" link to every report remains available on this page, identified by the date" -" and time (in UTC) that the report was generated." -msgstr "" -"Laporan berikut dapat diunduh. Laporan tidak dihapus. Tautan ke setiap " -"laporan tetap tersedia di halaman ini, diidentifikasi oleh tanggal dan waktu" -" dimana laporan dibuat." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"{strong_start}Note{strong_end}: To help protect learner data, links to these" -" reports that you save outside of this page or that you send or receive in " -"email expire after five minutes." -msgstr "" -"{strong_start}Catatan{strong_end}: Untuk membantu melindungi data siswa, " -"tautan ke laporan ini yang telah Anda simpan di luar halaman ini atau yang " -"telah Anda kirimkan atau terima melalui email akan berakhir setelah 5 menit." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Coupon Code List" -msgstr "Daftar Kode Kupon" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download a .csv file of all coupon codes for this course." -msgstr "Unduh file .csv seluruh kode kupon kursus ini. " - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download Coupon Codes" -msgstr "Unduh Kode Kupon" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Coupon Codes" -msgstr "Kode Kupon" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html -msgid "Expiration Date" -msgstr "Tanggal Kadaluarsa" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Coupon (%)" -msgstr "Kupon (%)" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Number Redeemed" -msgstr "Nomor Diperoleh" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "{code}" -msgstr "{code}" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "{description}" -msgstr "{description}" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "{discount}" -msgstr "{discount}" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The Invoice Number field cannot be empty." -msgstr "Bagian Nomor Tagihan tidak dapat kosong." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "No Expiration Date" -msgstr "Tanggal Nomor Kadaluarsa" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the company name." -msgstr "Masukkan nama perusahaan" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The company name cannot be a number." -msgstr "Nama perusahaan tidak dapat berupa angka." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the company contact name." -msgstr "Masukkan nama kontak perusahaan." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The company contact name cannot be a number." -msgstr "Nama kontak perusahaan tidak dapat berupa angka." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the email address for the company contact." -msgstr "Masukkan alamat email kontak perusahaan." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter a valid email address." -msgstr "Masukkan alamat email." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the recipient name." -msgstr "Masukkan nama penerima." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The recipient name cannot be a number." -msgstr "Nama penerima tidak dapat berupa angka." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the recipient email address." -msgstr "Masukkan alamat email penerima." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the billing address." -msgstr "Masukkan alamat transaksi." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the price per course seat." -msgstr "Masukkan harga kursus per kursi." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Enter a numeric value for the price per course seat. Do not include currency" -" symbols." -msgstr "Masukkan nilai kursus per kursi. Jangan masukkan simbol mata uang." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the number of enrollment codes." -msgstr "Masukkan nomor kode pendaftaran." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter a numeric value for the number of enrollment codes." -msgstr "Masukkan nilai dari kode nomor pendaftaran." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Select a currency." -msgstr "Pilih mata uang." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter a coupon code." -msgstr "Masukkan kode kupon." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The discount percentage must be less than or equal to 100." -msgstr "Persentase diskon harus kurang dari atau sama dengan 100." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Enter a numeric value for the discount amount. Do not include the percent " -"sign." -msgstr "Masukkan nilai besaran diskon. Jangan masukkan tanda persentase." - #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Edit Coupon Code" msgstr "Ubah Kode Kupon" @@ -18666,98 +18482,14 @@ msgstr "contoh: A123DS" msgid "Percentage Discount" msgstr "Persentase Diskon" +#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html +msgid "Expiration Date" +msgstr "Tanggal Kadaluarsa" + #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon Code" msgstr "Perbaharui Kode Kupon" -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Executive Summary for {display_name}" -msgstr "Ringkasan Eksekutif untuk {display_name}" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Report Creation Date" -msgstr "Lapor Tanggal Dibuat" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of Seats" -msgstr "Jumlah Kursi" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of Enrollments" -msgstr "Jumlah Pendaftaran" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Gross Revenue Collected" -msgstr "Pendapatan Kotor yang Dikumpulkan" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Gross Revenue Pending" -msgstr "Pendapatan Kotor Tertunda" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of Enrollment Refunds" -msgstr "Jumlah Pengembalian Uang Pendaftaran" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Amount Refunded" -msgstr "Nilai Pengembalian Uang" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Average Price per Seat" -msgstr "Harga Rata-rata per Kursi" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Frequently Used Coupon Codes" -msgstr "Kode Kupon Sering Terpakai " - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of seats purchased using coupon codes" -msgstr "Jumlah pembelian kursi menggunakan kode kupon" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Rank" -msgstr "Urutan" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Percent Discount" -msgstr "Persentase Diskon" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Times Used" -msgstr "Dikalikan Jumlah Penggunaan " - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Bulk and Single Seat Purchases" -msgstr "Pembelian Massal dan Kursi Tunggal" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of seats purchased individually" -msgstr "Jumlah pembelian kursi individu" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of seats purchased in bulk" -msgstr "Jumlah pembelian kursi massal" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of seats purchased with invoices" -msgstr "Jumlah pembelian kursi dengan tagihan" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Unused bulk purchase seats (revenue at risk)" -msgstr "Pembelian massal kursi tidak terpakai (pendapatan berisiko) " - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Percentage of seats purchased individually" -msgstr "Persentase pembelian kursi individu" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Percentage of seats purchased in bulk" -msgstr "Persentase pembelian kursi massal" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Percentage of seats purchased with invoices" -msgstr "Persentase pembelian kursi dengan tagihan" - #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Individual due date extensions" msgstr "Perpanjangan tanggal jatuh tempo individu" @@ -18863,6 +18595,10 @@ msgstr "Atur ulang tenggat waktu siswa" msgid "Generate Registration Code Modal" msgstr "Buat Modal Kode Registrasi" +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "Create Enrollment Codes" +msgstr "Kode Pendaftaran Kursus" + #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "* Required Information" msgstr "* Informasi Dibutuhkan" @@ -19407,10 +19143,18 @@ msgstr "Atur harga cara pelatihan" msgid "Please enter Course Mode detail below" msgstr "Silahkan masukkan rincian jenis pelatihan berikut" +#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html +msgid "Course Price" +msgstr "Harga Kursus" + #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Price" msgstr "Atur Harga" +#: lms/templates/instructor/instructor_dashboard_2/special_exams.html +msgid "Proctortrack Escalation Email:" +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/special_exams.html msgid "Allowance Section" msgstr "Bagian Kelonggaran" @@ -20389,14 +20133,10 @@ msgstr "" msgid "" "Our system indicates that you are trying to access this {platform_name} " "course from a country or region currently subject to U.S. economic and trade" -" sanctions.Unfortunately, because {platform_name} is required to comply with" -" export controls,we cannot allow you to access this course at this time." +" sanctions. Unfortunately, because {platform_name} is required to comply " +"with export controls, we cannot allow you to access this course at this " +"time." msgstr "" -"Sistem kami menunjukkan bahwa Anda mencoba mengakses pelatihan " -"{platform_name} ini dari suatu negara atau wilayah yang saat ini terkena " -"sanksi ekonomi dan perdagangan AS. Sayangnya, karena {platform_name} " -"diwajibkan untuk mematuhi kontrol ekspor, kami tidak mengizinkan Anda untuk " -"mengakses pelatihan ini pada saat ini." #: lms/templates/static_templates/faq.html #: themes/red-theme/lms/templates/footer.html @@ -20779,10 +20519,6 @@ msgstr[0] "" msgid "Prerequisite: " msgstr "Prasyarat:" -#: openedx/features/course_experience/templates/course_experience/course-outline-fragment.html -msgid "{subsection_format} due {{date}}" -msgstr "{subsection_format} berakhir {{date}}" - #: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html msgid "Learn About Verified Certificates" msgstr "Pelajari tentang Sertifikat Terverifikasi" @@ -20965,6 +20701,14 @@ msgstr "" msgid "edX Partner Portal" msgstr "Portal Mitra edX" +#: themes/edx.org/lms/templates/dashboard.html +msgid "Want to make edX better for everyone?" +msgstr "" + +#: themes/edx.org/lms/templates/dashboard.html +msgid "Get started" +msgstr "" + #: themes/edx.org/lms/templates/dashboard.html msgid "" "Browse recently launched courses and see what's new in your favorite " @@ -23512,6 +23256,10 @@ msgstr "Waktu Mulai Kursus" msgid "(UTC)" msgstr "(GMT)" +#: cms/templates/settings.html +msgid "Course End Date" +msgstr "" + #: cms/templates/settings.html msgid "Last day your course is active" msgstr "Hari terakhir kursus anda aktif" @@ -24292,6 +24040,24 @@ msgstr "" msgid "Return to the {link_start}home page{link_end}." msgstr "" +#: cms/templates/widgets/deprecated-course-key-warning.html +msgid "Support will be removed in an upcoming release." +msgstr "" + +#: cms/templates/widgets/deprecated-course-key-warning.html +msgid "Support will be removed on {expiration_date}." +msgstr "" + +#: cms/templates/widgets/deprecated-course-key-warning.html +msgid "This course uses a legacy storage format." +msgstr "" + +#: cms/templates/widgets/deprecated-course-key-warning.html +msgid "" +"Please reach out to your support team contact, if you have any additional " +"questions or concerns." +msgstr "" + #: cms/templates/widgets/footer.html msgid "Policies" msgstr "" diff --git a/conf/locale/id/LC_MESSAGES/djangojs.po b/conf/locale/id/LC_MESSAGES/djangojs.po index 7991b75b91..a65def27f6 100644 --- a/conf/locale/id/LC_MESSAGES/djangojs.po +++ b/conf/locale/id/LC_MESSAGES/djangojs.po @@ -80,7 +80,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2020-06-21 20:42+0000\n" +"POT-Creation-Date: 2020-07-01 16:14+0000\n" "PO-Revision-Date: 2020-06-14 20:45+0000\n" "Last-Translator: edx_transifex_bot \n" "Language-Team: Indonesian (http://www.transifex.com/open-edx/edx-platform/language/id/)\n" @@ -2943,6 +2943,11 @@ msgstr "" "{search_span_start}cari tim{span_end} di topik ini. Jika belum menemukan tim" " yang tepat, {create_span_start}buat tim baru di topik ini{span_end}." +#: lms/djangoapps/teams/static/teams/js/views/topic_teams.js +msgid "" +"An error occurred while looking up team membership. Try refreshing the page." +msgstr "" + #: lms/djangoapps/teams/static/teams/js/views/topics.js msgid "All topics" msgstr "Semua topik" diff --git a/conf/locale/ja_JP/LC_MESSAGES/django.mo b/conf/locale/ja_JP/LC_MESSAGES/django.mo index a672dbd551..eec1524d5c 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 6f2dbb7217..13b8c2b19e 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: 2020-06-21 20:42+0000\n" +"POT-Creation-Date: 2020-07-01 16:15+0000\n" "PO-Revision-Date: 2019-01-20 20:43+0000\n" "Last-Translator: Waheed Ahmed , 2019\n" "Language-Team: Japanese (Japan) (https://www.transifex.com/open-edx/teams/6205/ja_JP/)\n" @@ -3223,6 +3223,17 @@ msgid "" "from the following options: {available_providers}." msgstr "" +#: common/lib/xmodule/xmodule/course_module.py +msgid "Proctortrack Exam Escalation Contact" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Required if 'proctortrack' is selected as your proctoring provider. Enter an" +" email address to be contacted by the support team whenever there are " +"escalations (e.g. appeals, delayed reviews, etc.)." +msgstr "" + #: common/lib/xmodule/xmodule/course_module.py msgid "Allow Opting Out of Proctored Exams" msgstr "監督付き試験をやめるのを許可する" @@ -4175,6 +4186,7 @@ msgid "External Discussion" msgstr "外部ディスカッション" #: common/lib/xmodule/xmodule/tabs.py lms/djangoapps/courseware/tabs.py +#: openedx/features/enterprise_support/templates/enterprise_support/admin/enrollment_attributes_override.html msgid "Home" msgstr "ホーム" @@ -5923,6 +5935,23 @@ msgstr "" msgid "Annual Household Income" msgstr "年間の世帯収入" +#: lms/djangoapps/courseware/views/views.py +msgid "" +"Tell us about your current financial situation. Why do you need assistance?" +msgstr "" + +#: lms/djangoapps/courseware/views/views.py +msgid "" +"Tell us about your learning or professional goals. How will a Verified " +"Certificate in this course help you achieve these goals?" +msgstr "" + +#: lms/djangoapps/courseware/views/views.py +msgid "" +"Tell us about your plans for this course. What steps will you take to help " +"you complete the course work and receive a certificate?" +msgstr "" + #: lms/djangoapps/courseware/views/views.py msgid "Use between 1250 and 2500 characters or so in your response." msgstr "" @@ -6579,11 +6608,6 @@ msgstr "ファイルには'ユーザー名'の列、'メール'の列または msgid "detailed enrollment" msgstr "受講登録詳細" -#: lms/djangoapps/instructor/views/api.py -#: lms/djangoapps/instructor_task/api_helper.py -msgid "executive summary" -msgstr "エグゼクティブ・サマリ" - #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor_task/api_helper.py msgid "survey" @@ -7993,7 +8017,6 @@ msgstr "通貨" #: lms/djangoapps/shoppingcart/reports.py #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: wiki/plugins/attachments/forms.py #: wiki/plugins/attachments/templates/wiki/plugins/attachments/history.html @@ -8012,8 +8035,7 @@ msgstr "大学" msgid "Course Announce Date" msgstr "講座告知日" -#: lms/djangoapps/shoppingcart/reports.py cms/templates/settings.html -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +#: lms/djangoapps/shoppingcart/reports.py msgid "Course Start Date" msgstr "講座開始日" @@ -8042,7 +8064,6 @@ msgid "Verified Enrollment" msgstr "認証付き受講登録" #: lms/djangoapps/shoppingcart/reports.py -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html msgid "Gross Revenue" msgstr "全収入" @@ -8844,17 +8865,64 @@ msgstr "許可" msgid "Error" msgstr "エラー" -#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html -msgid "Expired ID Verification" +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html +msgid "ID Verification Approved" msgstr "" +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html #: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/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 "" +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.txt +#, python-format +msgid "Your %(platform_name)s ID verification photos have been approved." +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.txt +#, python-format +msgid "" +"Your approval status remains valid for one year, and it will expire " +"%(expiry_date)s." +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.txt +msgid "Enjoy your studies," +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.txt +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +#, python-format +msgid "The %(platform_name)s Team " +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.txt +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +#, python-format +msgid "Hello %(full_name)s, " +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationapproved/email/subject.txt +#, python-format +msgid "Your %(platform_name)s ID verification was approved!" +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 #: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt #, python-format @@ -8898,22 +8966,44 @@ msgstr "" 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 "" - -#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt -#, python-format -msgid "Hello %(full_name)s, " -msgstr "" - #: lms/templates/verify_student/edx_ace/verificationexpiry/email/subject.txt #, python-format msgid "Your %(platform_name)s Verification has Expired" msgstr "" +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +msgid "ID Verification Submitted" +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +#, python-format +msgid "" +"Thank you for submitting your photos for identity verification with " +"%(platform_name)s. " +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +msgid "" +"We have received your photos and they will be reviewed within 5-7 days." +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +#, python-format +msgid "You may check the status on your dashboard: %(dashboard_link)s " +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +msgid "Best regards," +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/subject.txt +msgid "Thank you for submitting your photos!" +msgstr "" + #: lms/templates/wiki/article.html msgid "Last modified:" msgstr "最終更新: " @@ -8978,7 +9068,6 @@ msgstr "記事を削除しようとしています。よろしいですか?" #: lms/templates/wiki/edit.html cms/templates/component.html #: cms/templates/container.html cms/templates/studio_xblock_wrapper.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/wiki/includes/article_menu.html msgid "Edit" msgstr "編集" @@ -10485,7 +10574,6 @@ msgstr "" msgid "Success" msgstr "成功" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/staff_problem_info.html msgid "Actions" msgstr "アクション" @@ -10977,6 +11065,10 @@ msgstr "" msgid "Username created for VEM Integration, e.g. vem_service_user." msgstr "" +#: openedx/core/djangoapps/video_pipeline/models.py +msgid "Percentage of courses allowed to use VEM pipeline" +msgstr "" + #: openedx/core/djangoapps/waffle_utils/models.py msgid "Force On" msgstr "強制オン" @@ -11074,31 +11166,11 @@ msgstr "" msgid "Subscribe to calendar updates" msgstr "" -#: openedx/features/calendar_sync/views/management.py -#, python-brace-format -msgid "Updates for Your {course} Schedule" -msgstr "" - -#: openedx/features/calendar_sync/views/management.py -msgid "Update Your Calendar" -msgstr "" - -#: openedx/features/calendar_sync/views/management.py -#, python-brace-format -msgid "" -"Your assignment due dates for {course} were recently adjusted. Update your " -"calendarwith your new schedule to ensure that you stay on track!" -msgstr "" - -#: openedx/features/calendar_sync/views/management.py +#: openedx/features/calendar_sync/utils.py msgid "Stay on Track" msgstr "" -#: openedx/features/calendar_sync/views/management.py -msgid "Mark Your Calendar" -msgstr "" - -#: openedx/features/calendar_sync/views/management.py +#: openedx/features/calendar_sync/utils.py #, python-brace-format msgid "" "Sticking to a schedule is the best way to ensure that you successfully " @@ -11106,6 +11178,18 @@ msgid "" "{course} will help you stay on track!" msgstr "" +#: openedx/features/calendar_sync/utils.py +#, python-brace-format +msgid "Updates for Your {course} Schedule" +msgstr "" + +#: openedx/features/calendar_sync/utils.py +#, python-brace-format +msgid "" +"Your assignment due dates for {course} were recently adjusted. Update your " +"calendar with your new schedule to ensure that you stay on track!" +msgstr "" + #: openedx/features/content_type_gating/models.py #: openedx/features/course_duration_limits/models.py #: lms/templates/support/feature_based_enrollments.html @@ -11303,6 +11387,23 @@ msgid "" "checkout! {a_open}Upgrade Now{a_close}{div_close}" msgstr "" +#: openedx/features/enterprise_support/admin/forms.py +msgid "CSV File" +msgstr "" + +#: openedx/features/enterprise_support/admin/forms.py +msgid "" +"CSV file should have 3 columns having names lms_user_id, course_id, " +"opportunity_id" +msgstr "" + +#: openedx/features/enterprise_support/admin/views.py +#, python-brace-format +msgid "" +"Enrollment attributes were not updated for records at following line numbers" +" in csv because no enrollment found for these records: {error_line_numbers}" +msgstr "" + #: openedx/features/enterprise_support/api.py #, python-brace-format msgid "Enrollment in {course_title} was not complete." @@ -11315,6 +11416,18 @@ msgid "" "administrator at {enterprise_customer_name}." msgstr "データのシェアについて心配があるなら、{enterprise_customer_name}で管理者へお問い合わせください。" +#: openedx/features/enterprise_support/templates/enterprise_support/admin/enrollment_attributes_override.html +msgid "Enterprise Course Enrollments" +msgstr "" + +#: openedx/features/enterprise_support/templates/enterprise_support/admin/enrollment_attributes_override.html +msgid "Override Enrollment Attributes" +msgstr "" + +#: openedx/features/enterprise_support/templates/enterprise_support/admin/enrollment_attributes_override.html +msgid "Upload CSV to override enrollment attributes for learners" +msgstr "" + #: openedx/features/enterprise_support/utils.py #, python-brace-format msgid "" @@ -12133,6 +12246,7 @@ msgid "Course Outline" msgstr "講座アウトライン" #: cms/templates/course_outline.html +#: cms/templates/widgets/deprecated-course-key-warning.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "Warning" msgstr "" @@ -12174,11 +12288,6 @@ msgstr "講座" msgid "example: username@domain.com" msgstr "例: username@domain.com" -#: cms/templates/settings.html -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Course End Date" -msgstr "講座終了日" - #: cms/templates/settings.html lms/templates/courseware/program_marketing.html msgid "Instructors" msgstr "講師" @@ -13077,6 +13186,7 @@ msgid "Sequence" msgstr "順番" #: lms/templates/courseware/dates.html lms/templates/seq_module.html +#: lms/templates/vert_module.html #: openedx/features/course_experience/templates/course_experience/course-outline-fragment.html msgid "Completed" msgstr "" @@ -13462,6 +13572,11 @@ msgstr "" "フォントサイズを大きくしたり小さくしたりする必要がある場合には、ブラウザ設定でフォントサイズを調整してください。Google " "Chromeでは、コントロールキーと+または-を同時に押してください。" +#: lms/templates/vert_module.html +#: openedx/features/course_experience/templates/course_experience/course-outline-fragment.html +msgid "{subsection_format} due {{date}}" +msgstr "{subsection_format} 締切 {{date}}" + #: lms/templates/video.html msgid "Loading video player" msgstr "動画プレイヤーを読込中" @@ -15621,6 +15736,12 @@ msgstr "講座オプション" msgid "Available Actions" msgstr "可能な操作" +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"You are enrolled by your institution and you should reach out to your " +"institution to drop this course." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_entitlement_actions.html msgid "Email Settings" @@ -15630,22 +15751,6 @@ msgstr "メール設定" msgid "Related Programs" msgstr "関連プログラム" -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "" -"You can no longer access this course because payment has not yet been " -"received. You can contact the account holder to request payment, or you can " -"unenroll from this course" -msgstr "" - -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "" -"You can no longer access this course because payment has not yet been " -"received. You can {contact_link_start}contact the account " -"holder{contact_link_end} to request payment, or you can " -"{unenroll_link_start}unenroll{unenroll_link_end} from this course" -msgstr "" -"お支払いがなかったため、この講座へはアクセスができません。お支払いについての{contact_link_start}問い合わせ{contact_link_end}をするか、この講座を{unenroll_link_start}受講取消{unenroll_link_end}しましょう" - #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Verification not yet complete." msgstr "認証はまだ完了していません" @@ -16597,7 +16702,6 @@ msgid "Order History" msgstr "注文履歴" #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon Code" msgstr "クーポンコード追加" @@ -16606,8 +16710,6 @@ msgid "Enter information about the coupon code below." msgstr "クーポンコード情報を以下に入力してください。" #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html msgid "Coupon Code" msgstr "クーポンコード" @@ -16689,7 +16791,6 @@ msgstr "修了証生成の準備ができたら、修了証生成をクリック #: lms/templates/instructor/instructor_dashboard_2/certificates.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/data_download.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Pending Tasks" @@ -16698,7 +16799,6 @@ msgstr "保留中のタスク" #: lms/templates/instructor/instructor_dashboard_2/certificates.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/data_download.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "The status for any active tasks appears in a table below." msgstr "稼働中タスクの状況は下表に表示されます。" @@ -16860,7 +16960,6 @@ msgid "Get Student Anonymized IDs CSV" msgstr "匿名受講者IDのCSVを入手する" #: lms/templates/instructor/instructor_dashboard_2/data_download.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Reports" msgstr "レポート" @@ -17009,268 +17108,6 @@ msgid "" "policies.{li_end}{ul_end}" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enrollment Codes" -msgstr "受講登録コード" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Create one or more pre-paid course enrollment codes. Students can use these " -"codes to enroll in the course." -msgstr "前払いの受講登録コードを作成する。受講者はこのコードを使用して受講登録できます。" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -msgid "Create Enrollment Codes" -msgstr "受講登録コードを作成" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Cancel, restore, or mark an enrollment code as unused." -msgstr "受講登録コードをキャンセル、復元、または未使用としてマークする。" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Change Enrollment Code Status" -msgstr "受講登録コードのステータスを変更する" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download a .csv file of all enrollment codes for this course." -msgstr "本講座の全受講登録コードのCSVファイルをダウンロード" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download All Enrollment Codes" -msgstr "全ての受講登録コードをダウンロード" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download a .csv file of all unused enrollment codes for this course." -msgstr "本講座の未使用の受講登録コードのCSVファイルをダウンロード" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download Unused Enrollment Codes" -msgstr "未使用の受講登録コードをダウンロード" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download a .csv file of all used enrollment codes for this course." -msgstr "本講座の使用中の受講登録コードのCSVファイルをダウンロード" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download Used Enrollment Codes" -msgstr "使用中の受講登録コードをダウンロード" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html -msgid "Course Price" -msgstr "講座の価格" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Course price per seat: " -msgstr "1seat あたりの価格: " - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Edit Price" -msgstr "価格を編集" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Course Seat Purchases" -msgstr "Seat 購入" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Total Credit Card Purchases: " -msgstr "クレジットカード取引合計: " - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Download a .csv file for all credit card purchases or for all invoices, " -"regardless of status." -msgstr "ステータスに関わらず、すべてのクレジットカード取引または請求書のCSVファイルをダウンロード" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download All Invoices" -msgstr "全ての請求書をダウンロード" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download All Credit Card Purchases" -msgstr "全てのクレジットカード取引をダウンロード" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "To cancel or resubmit an invoice, enter the invoice number below." -msgstr "請求書をキャンセルまたは再発行するには、下に請求書番号を入力してください。" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Invoice Number" -msgstr "請求書番号" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Cancel Invoice" -msgstr "請求書をキャンセル" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Resubmit Invoice" -msgstr "請求書を再発行" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Create a .csv file that contains enrollment information for your course." -msgstr "受講登録情報を含むCSVファイルを作成" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Create Enrollment Report" -msgstr "受講登録レポートを作成" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Create an HTML file that contains an executive summary for this course." -msgstr "本講座のエグゼクティブ・サマリを含むHTMLファイルを作成してください。" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Create Executive Summary" -msgstr "エグゼクティブ・サマリを作成" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Available Reports" -msgstr "入手可能なレポート" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"The following reports are available for download. Reports are not deleted. A" -" link to every report remains available on this page, identified by the date" -" and time (in UTC) that the report was generated." -msgstr "" -"以下のレポートはダウンロード可能です。レポートは削除されません。各レポートへのリンクはこの画面で引き続き利用可能で、生成日時(UTC)で特定できます。" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"{strong_start}Note{strong_end}: To help protect learner data, links to these" -" reports that you save outside of this page or that you send or receive in " -"email expire after five minutes." -msgstr "" -"{strong_start}注{strong_end}: " -"受講者データを保護するために、このページ外で保存したりメールで送受信しているこれらのレポートへのリンクは5分で時間切れとなります。" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Coupon Code List" -msgstr "クーポンコードリスト" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download a .csv file of all coupon codes for this course." -msgstr "本講座の全クーポンコードのCSVファイルをダウンロード" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download Coupon Codes" -msgstr "クーポンコードをダウンロード" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Coupon Codes" -msgstr "クーポンコード" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html -msgid "Expiration Date" -msgstr "有効期限" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Coupon (%)" -msgstr "クーポン (%)" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Number Redeemed" -msgstr "取り消し数" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "{code}" -msgstr "{code}" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "{description}" -msgstr "{description}" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "{discount}" -msgstr "{discount}" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The Invoice Number field cannot be empty." -msgstr "請求書番号は必須項目です。" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "No Expiration Date" -msgstr "有効期限なし" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the company name." -msgstr "会社名を入力してください。" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The company name cannot be a number." -msgstr "会社名は数字ではいけません。" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the company contact name." -msgstr "会社の問合せ先を入力してください。" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The company contact name cannot be a number." -msgstr "会社の問合せ先は数字ではいけません。" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the email address for the company contact." -msgstr "会社の問合せ先メールアドレスを入力してください。" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter a valid email address." -msgstr "正しいメールアドレスを入力してください。" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the recipient name." -msgstr "受領者名を入力してください" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The recipient name cannot be a number." -msgstr "受領者名は数字ではいけません。" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the recipient email address." -msgstr "受領者のメールアドレスを入力してください。" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the billing address." -msgstr "請求先住所を入力してください。" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the price per course seat." -msgstr "1seatあたりの価格を入力してください。" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Enter a numeric value for the price per course seat. Do not include currency" -" symbols." -msgstr "1seatあたりの価格を入力してください。通貨記号は含めないでください。" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the number of enrollment codes." -msgstr "受講登録コード数を入力してください。" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter a numeric value for the number of enrollment codes." -msgstr "受講登録コード数の数値のみ入力してください。" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Select a currency." -msgstr "通貨を選択してください。" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter a coupon code." -msgstr "クーポンコードを入力してください。" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The discount percentage must be less than or equal to 100." -msgstr "割引率は100以下でなければいけません。" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Enter a numeric value for the discount amount. Do not include the percent " -"sign." -msgstr "割引率の数値のみ入力してください。パーセント記号を含めてはいけません。" - #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Edit Coupon Code" msgstr "クーポンコードを編集" @@ -17291,98 +17128,14 @@ msgstr "例:A123DS" msgid "Percentage Discount" msgstr "割引率" +#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html +msgid "Expiration Date" +msgstr "有効期限" + #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon Code" msgstr "クーポンコード更新" -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Executive Summary for {display_name}" -msgstr "{display_name}のエグゼクティブ・サマリ" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Report Creation Date" -msgstr "レポート作成日" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of Seats" -msgstr "Seat数" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of Enrollments" -msgstr "受講登録数" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Gross Revenue Collected" -msgstr "徴収済の収入" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Gross Revenue Pending" -msgstr "保留中の収入" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of Enrollment Refunds" -msgstr "受講登録返金数" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Amount Refunded" -msgstr "返金額" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Average Price per Seat" -msgstr "1seatあたりの平均価格" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Frequently Used Coupon Codes" -msgstr "よく使用されるクーポンコード" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of seats purchased using coupon codes" -msgstr "クーポンコードを使って購入されたseat数" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Rank" -msgstr "ランク" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Percent Discount" -msgstr "割引率" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Times Used" -msgstr "使用回数" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Bulk and Single Seat Purchases" -msgstr "まとめ及び個別のSeat購入" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of seats purchased individually" -msgstr "個人購入のseat数" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of seats purchased in bulk" -msgstr "まとめ購入のseat数" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of seats purchased with invoices" -msgstr "請求書付き購入のseat数" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Unused bulk purchase seats (revenue at risk)" -msgstr "未使用の大量購入seat (未払いの可能性あり)" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Percentage of seats purchased individually" -msgstr "個人購入のseatの割合" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Percentage of seats purchased in bulk" -msgstr "まとめ購入のseatの割合" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Percentage of seats purchased with invoices" -msgstr "請求書付き購入のseatの割合" - #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Individual due date extensions" msgstr "個別の期日延長" @@ -17475,6 +17228,10 @@ msgstr "締切をリセット" msgid "Generate Registration Code Modal" msgstr "受講登録コード用モーダルを生成する" +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "Create Enrollment Codes" +msgstr "受講登録コードを作成" + #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "* Required Information" msgstr "* 必須" @@ -17950,10 +17707,18 @@ msgstr "講座モード価格を設定" msgid "Please enter Course Mode detail below" msgstr "講座モードの詳細を以下に入力してください" +#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html +msgid "Course Price" +msgstr "講座の価格" + #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Price" msgstr "価格を設定" +#: lms/templates/instructor/instructor_dashboard_2/special_exams.html +msgid "Proctortrack Escalation Email:" +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/special_exams.html msgid "Allowance Section" msgstr "" @@ -18852,12 +18617,10 @@ msgstr "このページは空欄にしてあります。自由に記入してく msgid "" "Our system indicates that you are trying to access this {platform_name} " "course from a country or region currently subject to U.S. economic and trade" -" sanctions.Unfortunately, because {platform_name} is required to comply with" -" export controls,we cannot allow you to access this course at this time." +" sanctions. Unfortunately, because {platform_name} is required to comply " +"with export controls, we cannot allow you to access this course at this " +"time." msgstr "" -"本システムは、あなたが現在米国の経済的制裁、貿易制裁の対象国または地域から{platform_name} " -"講座へアクセスしようとしていることを検知しました。残念ながら、 {platform_name} " -"は輸出規制を厳守しなければならないため、今回の本講座へのアクセスを許可することができません。" #: lms/templates/static_templates/faq.html #: themes/red-theme/lms/templates/footer.html @@ -19221,10 +18984,6 @@ msgstr[0] "" msgid "Prerequisite: " msgstr "" -#: openedx/features/course_experience/templates/course_experience/course-outline-fragment.html -msgid "{subsection_format} due {{date}}" -msgstr "{subsection_format} 締切 {{date}}" - #: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html msgid "Learn About Verified Certificates" msgstr "" @@ -19395,6 +19154,14 @@ msgstr "Partner Portalで講座スタッフサポートにアクセスし、サ msgid "edX Partner Portal" msgstr "edX Partner Portal" +#: themes/edx.org/lms/templates/dashboard.html +msgid "Want to make edX better for everyone?" +msgstr "" + +#: themes/edx.org/lms/templates/dashboard.html +msgid "Get started" +msgstr "" + #: themes/edx.org/lms/templates/dashboard.html msgid "" "Browse recently launched courses and see what's new in your favorite " @@ -21958,6 +21725,10 @@ msgstr "講座開始時間" msgid "(UTC)" msgstr "(UTC)" +#: cms/templates/settings.html +msgid "Course End Date" +msgstr "" + #: cms/templates/settings.html msgid "Last day your course is active" msgstr "講座最終日" @@ -22729,6 +22500,24 @@ msgstr "" msgid "Return to the {link_start}home page{link_end}." msgstr "{link_start}ホームページ{link_end}へ戻ってください。" +#: cms/templates/widgets/deprecated-course-key-warning.html +msgid "Support will be removed in an upcoming release." +msgstr "" + +#: cms/templates/widgets/deprecated-course-key-warning.html +msgid "Support will be removed on {expiration_date}." +msgstr "" + +#: cms/templates/widgets/deprecated-course-key-warning.html +msgid "This course uses a legacy storage format." +msgstr "" + +#: cms/templates/widgets/deprecated-course-key-warning.html +msgid "" +"Please reach out to your support team contact, if you have any additional " +"questions or concerns." +msgstr "" + #: cms/templates/widgets/footer.html msgid "Policies" msgstr "" diff --git a/conf/locale/ja_JP/LC_MESSAGES/djangojs.po b/conf/locale/ja_JP/LC_MESSAGES/djangojs.po index a1f3be1c3d..82ec08f544 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: 2020-06-21 20:42+0000\n" +"POT-Creation-Date: 2020-07-01 16:14+0000\n" "PO-Revision-Date: 2020-06-14 20:45+0000\n" "Last-Translator: edx_transifex_bot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/open-edx/edx-platform/language/ja_JP/)\n" @@ -2819,6 +2819,11 @@ msgstr "" "{browse_span_start}他のトピックのチームを表示する{span_end} " "、または{search_span_start}このトピックのチームを検索する{span_end}。参加したいチームが見つからない場合は、{create_span_start}このトピックで新規チームを作りましょう{span_end}。" +#: lms/djangoapps/teams/static/teams/js/views/topic_teams.js +msgid "" +"An error occurred while looking up team membership. Try refreshing the page." +msgstr "" + #: lms/djangoapps/teams/static/teams/js/views/topics.js msgid "All topics" msgstr "全トピック" diff --git a/conf/locale/ka/LC_MESSAGES/django.mo b/conf/locale/ka/LC_MESSAGES/django.mo index 53292435ef..bfd8ad14dd 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 f99ceba624..92c984b54a 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: 2020-06-21 20:42+0000\n" +"POT-Creation-Date: 2020-07-01 16:15+0000\n" "PO-Revision-Date: 2019-01-20 20:43+0000\n" "Last-Translator: Waheed Ahmed , 2019\n" "Language-Team: Georgian (https://www.transifex.com/open-edx/teams/6205/ka/)\n" @@ -3384,6 +3384,17 @@ msgid "" "from the following options: {available_providers}." msgstr "" +#: common/lib/xmodule/xmodule/course_module.py +msgid "Proctortrack Exam Escalation Contact" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Required if 'proctortrack' is selected as your proctoring provider. Enter an" +" email address to be contacted by the support team whenever there are " +"escalations (e.g. appeals, delayed reviews, etc.)." +msgstr "" + #: common/lib/xmodule/xmodule/course_module.py msgid "Allow Opting Out of Proctored Exams" msgstr "დაკვირვების ქვეშ გამოცდებზე უარის დაშვება" @@ -4465,6 +4476,7 @@ msgid "External Discussion" msgstr "გარე დისკუსია" #: common/lib/xmodule/xmodule/tabs.py lms/djangoapps/courseware/tabs.py +#: openedx/features/enterprise_support/templates/enterprise_support/admin/enrollment_attributes_override.html msgid "Home" msgstr "მთავარი" @@ -6329,6 +6341,23 @@ msgstr "" msgid "Annual Household Income" msgstr "ოჯახის წლიური შემოსავალი" +#: lms/djangoapps/courseware/views/views.py +msgid "" +"Tell us about your current financial situation. Why do you need assistance?" +msgstr "" + +#: lms/djangoapps/courseware/views/views.py +msgid "" +"Tell us about your learning or professional goals. How will a Verified " +"Certificate in this course help you achieve these goals?" +msgstr "" + +#: lms/djangoapps/courseware/views/views.py +msgid "" +"Tell us about your plans for this course. What steps will you take to help " +"you complete the course work and receive a certificate?" +msgstr "" + #: lms/djangoapps/courseware/views/views.py msgid "Use between 1250 and 2500 characters or so in your response." msgstr "" @@ -7018,11 +7047,6 @@ msgstr "" msgid "detailed enrollment" msgstr "" -#: lms/djangoapps/instructor/views/api.py -#: lms/djangoapps/instructor_task/api_helper.py -msgid "executive summary" -msgstr "" - #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor_task/api_helper.py msgid "survey" @@ -8538,7 +8562,6 @@ msgstr "ვალუტა" #: lms/djangoapps/shoppingcart/reports.py #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: wiki/plugins/attachments/forms.py #: wiki/plugins/attachments/templates/wiki/plugins/attachments/history.html @@ -8557,8 +8580,7 @@ msgstr "უნივერსიტეტი" msgid "Course Announce Date" msgstr "კურსის გამოცხადების თარიღი" -#: lms/djangoapps/shoppingcart/reports.py cms/templates/settings.html -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +#: lms/djangoapps/shoppingcart/reports.py msgid "Course Start Date" msgstr "კურსის დაწყების თარიღი" @@ -8587,7 +8609,6 @@ msgid "Verified Enrollment" msgstr "დამოწმებული ჩარიცხვა" #: lms/djangoapps/shoppingcart/reports.py -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html msgid "Gross Revenue" msgstr "მთლიანი შემოსავალი" @@ -9400,17 +9421,64 @@ msgstr "დაშვება" msgid "Error" msgstr "შეცდომა" -#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html -msgid "Expired ID Verification" +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html +msgid "ID Verification Approved" msgstr "" +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html #: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/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 "" +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.txt +#, python-format +msgid "Your %(platform_name)s ID verification photos have been approved." +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.txt +#, python-format +msgid "" +"Your approval status remains valid for one year, and it will expire " +"%(expiry_date)s." +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.txt +msgid "Enjoy your studies," +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.txt +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +#, python-format +msgid "The %(platform_name)s Team " +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.txt +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +#, python-format +msgid "Hello %(full_name)s, " +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationapproved/email/subject.txt +#, python-format +msgid "Your %(platform_name)s ID verification was approved!" +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 #: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt #, python-format @@ -9454,22 +9522,44 @@ msgstr "" 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 "" - -#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt -#, python-format -msgid "Hello %(full_name)s, " -msgstr "" - #: lms/templates/verify_student/edx_ace/verificationexpiry/email/subject.txt #, python-format msgid "Your %(platform_name)s Verification has Expired" msgstr "" +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +msgid "ID Verification Submitted" +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +#, python-format +msgid "" +"Thank you for submitting your photos for identity verification with " +"%(platform_name)s. " +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +msgid "" +"We have received your photos and they will be reviewed within 5-7 days." +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +#, python-format +msgid "You may check the status on your dashboard: %(dashboard_link)s " +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +msgid "Best regards," +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/subject.txt +msgid "Thank you for submitting your photos!" +msgstr "" + #: lms/templates/wiki/article.html msgid "Last modified:" msgstr "ბოლოს შეცვლილია:" @@ -9539,7 +9629,6 @@ msgstr "თქვენ შლით სტატიას. გთხოვთ #: lms/templates/wiki/edit.html cms/templates/component.html #: cms/templates/container.html cms/templates/studio_xblock_wrapper.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/wiki/includes/article_menu.html msgid "Edit" msgstr "რედაქტირება" @@ -11098,7 +11187,6 @@ msgstr "" msgid "Success" msgstr "წარმატება" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/staff_problem_info.html msgid "Actions" msgstr "მოქმედებები" @@ -11600,6 +11688,10 @@ msgstr "" msgid "Username created for VEM Integration, e.g. vem_service_user." msgstr "" +#: openedx/core/djangoapps/video_pipeline/models.py +msgid "Percentage of courses allowed to use VEM pipeline" +msgstr "" + #: openedx/core/djangoapps/waffle_utils/models.py msgid "Force On" msgstr "" @@ -11703,31 +11795,11 @@ msgstr "" msgid "Subscribe to calendar updates" msgstr "" -#: openedx/features/calendar_sync/views/management.py -#, python-brace-format -msgid "Updates for Your {course} Schedule" -msgstr "" - -#: openedx/features/calendar_sync/views/management.py -msgid "Update Your Calendar" -msgstr "" - -#: openedx/features/calendar_sync/views/management.py -#, python-brace-format -msgid "" -"Your assignment due dates for {course} were recently adjusted. Update your " -"calendarwith your new schedule to ensure that you stay on track!" -msgstr "" - -#: openedx/features/calendar_sync/views/management.py +#: openedx/features/calendar_sync/utils.py msgid "Stay on Track" msgstr "" -#: openedx/features/calendar_sync/views/management.py -msgid "Mark Your Calendar" -msgstr "" - -#: openedx/features/calendar_sync/views/management.py +#: openedx/features/calendar_sync/utils.py #, python-brace-format msgid "" "Sticking to a schedule is the best way to ensure that you successfully " @@ -11735,6 +11807,18 @@ msgid "" "{course} will help you stay on track!" msgstr "" +#: openedx/features/calendar_sync/utils.py +#, python-brace-format +msgid "Updates for Your {course} Schedule" +msgstr "" + +#: openedx/features/calendar_sync/utils.py +#, python-brace-format +msgid "" +"Your assignment due dates for {course} were recently adjusted. Update your " +"calendar with your new schedule to ensure that you stay on track!" +msgstr "" + #: openedx/features/content_type_gating/models.py #: openedx/features/course_duration_limits/models.py #: lms/templates/support/feature_based_enrollments.html @@ -11928,6 +12012,23 @@ msgid "" "checkout! {a_open}Upgrade Now{a_close}{div_close}" msgstr "" +#: openedx/features/enterprise_support/admin/forms.py +msgid "CSV File" +msgstr "" + +#: openedx/features/enterprise_support/admin/forms.py +msgid "" +"CSV file should have 3 columns having names lms_user_id, course_id, " +"opportunity_id" +msgstr "" + +#: openedx/features/enterprise_support/admin/views.py +#, python-brace-format +msgid "" +"Enrollment attributes were not updated for records at following line numbers" +" in csv because no enrollment found for these records: {error_line_numbers}" +msgstr "" + #: openedx/features/enterprise_support/api.py #, python-brace-format msgid "Enrollment in {course_title} was not complete." @@ -11940,6 +12041,18 @@ msgid "" "administrator at {enterprise_customer_name}." msgstr "" +#: openedx/features/enterprise_support/templates/enterprise_support/admin/enrollment_attributes_override.html +msgid "Enterprise Course Enrollments" +msgstr "" + +#: openedx/features/enterprise_support/templates/enterprise_support/admin/enrollment_attributes_override.html +msgid "Override Enrollment Attributes" +msgstr "" + +#: openedx/features/enterprise_support/templates/enterprise_support/admin/enrollment_attributes_override.html +msgid "Upload CSV to override enrollment attributes for learners" +msgstr "" + #: openedx/features/enterprise_support/utils.py #, python-brace-format msgid "" @@ -12787,6 +12900,7 @@ msgid "Course Outline" msgstr "" #: cms/templates/course_outline.html +#: cms/templates/widgets/deprecated-course-key-warning.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "Warning" msgstr "" @@ -12828,11 +12942,6 @@ msgstr "კურსები" msgid "example: username@domain.com" msgstr "მაგალითი : username@domain.com" -#: cms/templates/settings.html -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Course End Date" -msgstr "კურსის დამთავრების თარიღი" - #: cms/templates/settings.html lms/templates/courseware/program_marketing.html msgid "Instructors" msgstr "" @@ -13752,6 +13861,7 @@ msgid "Sequence" msgstr "" #: lms/templates/courseware/dates.html lms/templates/seq_module.html +#: lms/templates/vert_module.html #: openedx/features/course_experience/templates/course_experience/course-outline-fragment.html msgid "Completed" msgstr "" @@ -14149,6 +14259,11 @@ msgstr "" "ბრაუზერის პარამეტრები გამოიყენეთ. Google Chrome-ის ფარგლებში, ეს ხდება ctrl " "და + ან ctrl და - ერთდროულად დაჭერით." +#: lms/templates/vert_module.html +#: openedx/features/course_experience/templates/course_experience/course-outline-fragment.html +msgid "{subsection_format} due {{date}}" +msgstr "" + #: lms/templates/video.html msgid "Loading video player" msgstr "ვიდეო დამკვრელის ჩატვირთვა" @@ -16480,6 +16595,12 @@ msgstr "კურსის პარამეტრები" msgid "Available Actions" msgstr "ხელმისაწვდომი მოქმედებები" +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"You are enrolled by your institution and you should reach out to your " +"institution to drop this course." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_entitlement_actions.html msgid "Email Settings" @@ -16489,25 +16610,6 @@ msgstr "ელფოსტის პარამეტრები" msgid "Related Programs" msgstr "დაკავშირებული პროგრამები" -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "" -"You can no longer access this course because payment has not yet been " -"received. You can contact the account holder to request payment, or you can " -"unenroll from this course" -msgstr "" - -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "" -"You can no longer access this course because payment has not yet been " -"received. You can {contact_link_start}contact the account " -"holder{contact_link_end} to request payment, or you can " -"{unenroll_link_start}unenroll{unenroll_link_end} from this course" -msgstr "" -"გადაუხდელობის გამო თქვენ ამ კურსზე წვდომა აღარ გაქვთ. შეგიძლიათ " -"{contact_link_start} დაუკავშირდეთ ანგარიშის მფლობელს{contact_link_end} რათა " -"მოითხოვოთ გადახდა, ან შეგიძლიათ " -"{unenroll_link_start}ამოირიცხოთ{unenroll_link_end} ამ კურსიდან" - #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Verification not yet complete." msgstr "დადასტურება ჯერ არ დასრულებულა." @@ -17538,7 +17640,6 @@ msgid "Order History" msgstr "შეკვეთების ისტორია" #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon Code" msgstr "კუპონის კოდის დამატება" @@ -17547,8 +17648,6 @@ msgid "Enter information about the coupon code below." msgstr "ქვემოთ შეიყვანეთ ინფორმაცია კუპონის კოდზე." #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html msgid "Coupon Code" msgstr "კუპონის კოდი" @@ -17637,7 +17736,6 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/certificates.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/data_download.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Pending Tasks" @@ -17646,7 +17744,6 @@ msgstr "დავალებები მოლოდინში" #: lms/templates/instructor/instructor_dashboard_2/certificates.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/data_download.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "The status for any active tasks appears in a table below." msgstr "ნებისმიერი აქტიური დავალების სტატუსი ქვედა ცხრილშია." @@ -17832,7 +17929,6 @@ msgid "Get Student Anonymized IDs CSV" msgstr "მიიღეთ სტუდენტების ანონიმური იდენტიფიკატორების CSV სია" #: lms/templates/instructor/instructor_dashboard_2/data_download.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Reports" msgstr "ანგარიშები" @@ -18002,287 +18098,6 @@ msgid "" "policies.{li_end}{ul_end}" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enrollment Codes" -msgstr "ჩარიცხვის კოდები" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Create one or more pre-paid course enrollment codes. Students can use these " -"codes to enroll in the course." -msgstr "" -"შექმენით კურსზე ჩარიცხვის ერთი, ან რამდენიმე წინასწარ გადახდის კოდი. " -"სტუდენტებს შეუძლიათ ამ კოდების კურსზე ჩასარიცხად გამოყენება." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -msgid "Create Enrollment Codes" -msgstr "ჩარიცხვის კოდების შექმნა" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Cancel, restore, or mark an enrollment code as unused." -msgstr "გააუქმე, აღადგინე, ან მონიშნე ჩარიცხვის კოდი გამოუყენებლად" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Change Enrollment Code Status" -msgstr "ჩარიცხვის კოდის სტატუსის შეცვლა" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download a .csv file of all enrollment codes for this course." -msgstr "ჩამოტვირთეთ ამ კურსზე ჩარიცხვის ყველა კოდის .csv ფაილი." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download All Enrollment Codes" -msgstr "ჩამოტვირთეთ ჩარიცხვის ყველა კოდი" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download a .csv file of all unused enrollment codes for this course." -msgstr "" -"ჩამოტვირთეთ ჩარიცხვის ყველა გამოუყენებელი კოდის .csv ფაილი მოცემული " -"კურსისთვის." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download Unused Enrollment Codes" -msgstr "ჩამოტვირთეთ ჩარიცხვის გამოუყენებლი კოდები" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download a .csv file of all used enrollment codes for this course." -msgstr "" -"ჩამოტვირთეთ ჩარიცხვის ყველა გამოყენებელი კოდის .csv ფაილი მოცემული " -"კურსისთვის." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download Used Enrollment Codes" -msgstr "ჩამოტვირთეთ ჩარიცხვის გამოყენებული კოდები" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html -msgid "Course Price" -msgstr "კურსის ღირებულება" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Course price per seat: " -msgstr "კურსის ღირებულება თითო ადგილზე:" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Edit Price" -msgstr "ფასის შეცვლა" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Course Seat Purchases" -msgstr "შეძენილი ადგილები კურსზე" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Total Credit Card Purchases: " -msgstr "სულ საკრედიტო ბარათით განხორციელებული შესყიდვები:" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Download a .csv file for all credit card purchases or for all invoices, " -"regardless of status." -msgstr "" -"ჩამოტვირთე .csv ფაილი საკრედიტო ბარათის ყველა შენაძენისთვის ან ყველა " -"ანგარიშფაქტურისთვის, სტატუსის მიუხედავად." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download All Invoices" -msgstr "ყველა ანგარიშფაქტურის ჩამოტვირთვა" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download All Credit Card Purchases" -msgstr "საკრედიტო ბარათით განხორციელებული ყველა შესყიდვის ჩამოტვირთვა" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "To cancel or resubmit an invoice, enter the invoice number below." -msgstr "" -"ანგარიშფატქურის გასაუქმებლად ან ხელახლა გასაგზავნად შეიყვანეთ " -"ანგარიშფაქტურის ნომერი ქვემოთ." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Invoice Number" -msgstr "ანგარიშფაქტურის ნომერი" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Cancel Invoice" -msgstr "ანგარიშფაქტურის გაუქმება" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Resubmit Invoice" -msgstr "ანგარიშფაქტურის ხელახლა გაგზავნა" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Create a .csv file that contains enrollment information for your course." -msgstr "" -"შექმენით .csv ფაილი, რომელიც შეიცავს თქვენს კურსზე ჩარიცხვასთან დაკავშირებულ" -" ინფორმაციას." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Create Enrollment Report" -msgstr "შექმენით ჩარიცხვის ანგარიში" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Create an HTML file that contains an executive summary for this course." -msgstr "შექმენით HTML ფაილი, რომელიც შეიცავს რეზიუმეს ამ კურსის შესახებ." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Create Executive Summary" -msgstr "რეზიუმეს მომზადება" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Available Reports" -msgstr "ხელმისაწვდომი ანგარიშები" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"The following reports are available for download. Reports are not deleted. A" -" link to every report remains available on this page, identified by the date" -" and time (in UTC) that the report was generated." -msgstr "" -"შემდეგი ანგარიშები ხელმისაწვდომია ჩამოსატვირთად. ანგარიშები არ იშლება. ყველა" -" ანგარიშის ბმული კვლავ ხელმისაწვდომია ამ გვერდზე, რომლის იდენტიფიცირება იმ " -"თარიღით და დროით ხდება (in UTC), როდესაც ანგარიშის გენერირება მოხდა. " - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"{strong_start}Note{strong_end}: To help protect learner data, links to these" -" reports that you save outside of this page or that you send or receive in " -"email expire after five minutes." -msgstr "" -"{strong_start}შენიშვნა{strong_end}: მსმენელების მონაცემთა დასაცავად, ამ " -"ანგარიშების ბმულების ვადა, რომელიც შეინახეთ ამ გვერდის გარეთ ან გააგზავნეთ " -"ან მიიღეთ ელფოსტით, 5 წუთში ამოიწურება." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Coupon Code List" -msgstr "კუპონის კოდის სია" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download a .csv file of all coupon codes for this course." -msgstr "ჩამოტვირთეთ ამ კურსის ყველა კუპონის კოდი .csv ფაილად." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download Coupon Codes" -msgstr "ჩამოტვირთეთ კუპონის კოდები" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Coupon Codes" -msgstr "კუპონის კოდები" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html -msgid "Expiration Date" -msgstr "ვადის ამოწურვის თარიღი" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Coupon (%)" -msgstr "კუპონი (%)" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Number Redeemed" -msgstr "გამოსყიდვათა რაოდენობა" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "{code}" -msgstr "{code}" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "{description}" -msgstr "{description}" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "{discount}" -msgstr "{discount}" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The Invoice Number field cannot be empty." -msgstr "ანგარიშფაქტურის ნომრის ველი არ შეიძლება იყოს ცარიელი." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "No Expiration Date" -msgstr "ვადის გასვლის თარიღი მითითებული არ არის" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the company name." -msgstr "შეიყვანეთ კომპანიის სახელწოდება." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The company name cannot be a number." -msgstr "კომპანიის სახელწოდება ნომერი ვერ იქნება." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the company contact name." -msgstr "შეიყვანეთ კომპანიის საკონტაქტო პირის სახელი." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The company contact name cannot be a number." -msgstr "კომპანიის საკონტაქტო პირის სახელი ნომერი ვერ იქნება." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the email address for the company contact." -msgstr "კომპანიასთან დასაკავშირებლად, შეიყვანეთ ელფოსტის მისამართი." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter a valid email address." -msgstr "შეიყვანეთ მოქმედი ელფოსტის მისამართი." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the recipient name." -msgstr "შეიყვანეთ მიმღების სახელი." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The recipient name cannot be a number." -msgstr "მიმღების სახელი ნომერი ვერ იქნება." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the recipient email address." -msgstr "შეიყვანეთ მიმღების ელფოსტის მისამართი." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the billing address." -msgstr "შეიყვანეთ გადახდის მისამართი." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the price per course seat." -msgstr "შეიყვანეთ კურსის თითოეული ადგილის ღირებულება." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Enter a numeric value for the price per course seat. Do not include currency" -" symbols." -msgstr "" -"შეიყვანეთ კურსის თითოეული ადგილის ღირებულების რიცხვითი მნიშვნელობა. არ " -"გამოიყენოთ ვალუტის სიმბოლოები." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the number of enrollment codes." -msgstr "მიუთითეთ ჩარიცხვის კოდების რაოდენობა." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter a numeric value for the number of enrollment codes." -msgstr "ჩარიცხვის კოდების რაოდენობისთვის მიუთითეთ რიცხვითი მნიშვნელობა." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Select a currency." -msgstr "აირჩიეთ ვალუტა." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter a coupon code." -msgstr "შეიყვანეთ კუპონის კოდი." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The discount percentage must be less than or equal to 100." -msgstr "ფასდაკლების პროცენტი უნდა იყოს 100-ის ტოლი, ან ნაკლები." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Enter a numeric value for the discount amount. Do not include the percent " -"sign." -msgstr "" -"ფასდაკლების თანხისთვის შეიყვანეთ რიცხვითი მნიშვნელობა. პროცენტის აღმნიშნელი " -"ნიშანი არ მიუთითოთ." - #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Edit Coupon Code" msgstr "შეცვალეთ კუპონის კოდი" @@ -18303,98 +18118,14 @@ msgstr "მაგალითი: A123DS" msgid "Percentage Discount" msgstr "პროცენტული ფასდაკლება" +#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html +msgid "Expiration Date" +msgstr "ვადის ამოწურვის თარიღი" + #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon Code" msgstr "კუპონის კოდის განახლება" -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Executive Summary for {display_name}" -msgstr "რეზიუმე {display_name}-სთვის " - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Report Creation Date" -msgstr "ანგარიშის შექმნის თარიღი" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of Seats" -msgstr "ადგილების რაოდენობა" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of Enrollments" -msgstr "ჩარიცხვების რაოდენობა" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Gross Revenue Collected" -msgstr "შეკრებილი მთლიანი შემოსავალი" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Gross Revenue Pending" -msgstr "მთლიანი შემოსავალი მოლოდინში" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of Enrollment Refunds" -msgstr "ჩარიცხვის ანაზღაურებების რაოდენობა" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Amount Refunded" -msgstr "უკან დაბრუნებული თანხა" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Average Price per Seat" -msgstr "საშუალო ფასი თითოეულ ადგილზე" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Frequently Used Coupon Codes" -msgstr "ხშირად გამოყენებული კუპონის კოდები" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of seats purchased using coupon codes" -msgstr "კუპონის კოდების გამოყენებით შეძენილი ადგილების რაოდენობა " - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Rank" -msgstr "წოდება" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Percent Discount" -msgstr "ფასდაკლების პროცენტი" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Times Used" -msgstr "გამოყენების სიხშირე" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Bulk and Single Seat Purchases" -msgstr "საცალოდ, ან ბითუმად შეძენილი ადგილები" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of seats purchased individually" -msgstr "ინდივიდუალურად შეძენილი ადგილების რაოდენობა" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of seats purchased in bulk" -msgstr "ერთიანად შეძენილი ადგილების რაოდენობა" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of seats purchased with invoices" -msgstr "ანგარიშფაქტურებით შეძენილი ადგილების რაოდენობა" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Unused bulk purchase seats (revenue at risk)" -msgstr "გამოუყენებელი ერთიანად შეძენილი ადგილები (შემოსავალი რისკის ფასად)" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Percentage of seats purchased individually" -msgstr "ინდივიდუალურად შეძენილი ადგილების პროცენტი" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Percentage of seats purchased in bulk" -msgstr "ერთიანად შეძენილი ადგილების პროცენტი" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Percentage of seats purchased with invoices" -msgstr "ანგარიშფაქტურებით შეძენილი ადგილების პროცენტი" - #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Individual due date extensions" msgstr "გადახდის ვადის ინდივიდუალური გაგრძელებები" @@ -18491,6 +18222,10 @@ msgstr "სტუდენტისთვის გადახდის ვა msgid "Generate Registration Code Modal" msgstr "რეგისტრაციის კოდის Modal-ის გენერირება" +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "Create Enrollment Codes" +msgstr "ჩარიცხვის კოდების შექმნა" + #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "* Required Information" msgstr "* სავალდებულო ინფორმაცია" @@ -19006,10 +18741,18 @@ msgstr "კურსის მეთოდის ფასის დაწეს msgid "Please enter Course Mode detail below" msgstr "გთხოვთ კურსის მეთოდის დეტალები შეიყვანოთ ქვემოთ" +#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html +msgid "Course Price" +msgstr "კურსის ღირებულება" + #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Price" msgstr "ფასის დაწესება" +#: lms/templates/instructor/instructor_dashboard_2/special_exams.html +msgid "Proctortrack Escalation Email:" +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/special_exams.html msgid "Allowance Section" msgstr "შეღავათის განყოფილება" @@ -19983,8 +19726,9 @@ msgstr "" msgid "" "Our system indicates that you are trying to access this {platform_name} " "course from a country or region currently subject to U.S. economic and trade" -" sanctions.Unfortunately, because {platform_name} is required to comply with" -" export controls,we cannot allow you to access this course at this time." +" sanctions. Unfortunately, because {platform_name} is required to comply " +"with export controls, we cannot allow you to access this course at this " +"time." msgstr "" #: lms/templates/static_templates/faq.html @@ -20362,10 +20106,6 @@ msgstr[1] "" msgid "Prerequisite: " msgstr "" -#: openedx/features/course_experience/templates/course_experience/course-outline-fragment.html -msgid "{subsection_format} due {{date}}" -msgstr "" - #: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html msgid "Learn About Verified Certificates" msgstr "" @@ -20538,6 +20278,14 @@ msgstr "" msgid "edX Partner Portal" msgstr "edX პარტნიორი პორტალი" +#: themes/edx.org/lms/templates/dashboard.html +msgid "Want to make edX better for everyone?" +msgstr "" + +#: themes/edx.org/lms/templates/dashboard.html +msgid "Get started" +msgstr "" + #: themes/edx.org/lms/templates/dashboard.html msgid "" "Browse recently launched courses and see what's new in your favorite " @@ -23358,6 +23106,10 @@ msgstr "კურსის დაწყების დრო" msgid "(UTC)" msgstr "(UTC)" +#: cms/templates/settings.html +msgid "Course End Date" +msgstr "" + #: cms/templates/settings.html msgid "Last day your course is active" msgstr "თქვენი კურსის აქტივობის ბოლო დღე" @@ -24176,6 +23928,24 @@ msgstr "" msgid "Return to the {link_start}home page{link_end}." msgstr "" +#: cms/templates/widgets/deprecated-course-key-warning.html +msgid "Support will be removed in an upcoming release." +msgstr "" + +#: cms/templates/widgets/deprecated-course-key-warning.html +msgid "Support will be removed on {expiration_date}." +msgstr "" + +#: cms/templates/widgets/deprecated-course-key-warning.html +msgid "This course uses a legacy storage format." +msgstr "" + +#: cms/templates/widgets/deprecated-course-key-warning.html +msgid "" +"Please reach out to your support team contact, if you have any additional " +"questions or concerns." +msgstr "" + #: cms/templates/widgets/footer.html msgid "Policies" msgstr "" diff --git a/conf/locale/ka/LC_MESSAGES/djangojs.po b/conf/locale/ka/LC_MESSAGES/djangojs.po index 0a71d6789a..b6fb9d2ce3 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: 2020-06-21 20:42+0000\n" +"POT-Creation-Date: 2020-07-01 16:14+0000\n" "PO-Revision-Date: 2020-06-14 20:45+0000\n" "Last-Translator: edx_transifex_bot \n" "Language-Team: Georgian (http://www.transifex.com/open-edx/edx-platform/language/ka/)\n" @@ -2836,6 +2836,11 @@ msgstr "" "გუნდი შესაერთებლად, {create_span_start}შექმენით ახალი გუნდი ამ " "თემაში{span_end}." +#: lms/djangoapps/teams/static/teams/js/views/topic_teams.js +msgid "" +"An error occurred while looking up team membership. Try refreshing the page." +msgstr "" + #: lms/djangoapps/teams/static/teams/js/views/topics.js msgid "All topics" msgstr "ყველა თემა" diff --git a/conf/locale/pl/LC_MESSAGES/django.mo b/conf/locale/pl/LC_MESSAGES/django.mo index ef9b384c38..7a69952cc5 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 ba49a2c5e9..39f6bc9930 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: 2020-06-21 20:42+0000\n" +"POT-Creation-Date: 2020-07-01 16:15+0000\n" "PO-Revision-Date: 2019-01-20 20:43+0000\n" "Last-Translator: Waheed Ahmed , 2019\n" "Language-Team: Polish (https://www.transifex.com/open-edx/teams/6205/pl/)\n" @@ -3564,6 +3564,17 @@ msgid "" "from the following options: {available_providers}." msgstr "" +#: common/lib/xmodule/xmodule/course_module.py +msgid "Proctortrack Exam Escalation Contact" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Required if 'proctortrack' is selected as your proctoring provider. Enter an" +" email address to be contacted by the support team whenever there are " +"escalations (e.g. appeals, delayed reviews, etc.)." +msgstr "" + #: common/lib/xmodule/xmodule/course_module.py msgid "Allow Opting Out of Proctored Exams" msgstr "Pozwól na podejście do egzaminu bez trybu nadzorowania" @@ -4656,6 +4667,7 @@ msgid "External Discussion" msgstr "Zewnętrzna dyskusja" #: common/lib/xmodule/xmodule/tabs.py lms/djangoapps/courseware/tabs.py +#: openedx/features/enterprise_support/templates/enterprise_support/admin/enrollment_attributes_override.html msgid "Home" msgstr "Strona główna" @@ -6552,6 +6564,23 @@ msgstr "" msgid "Annual Household Income" msgstr "Miesięczny przychód gospodarstwa domowego" +#: lms/djangoapps/courseware/views/views.py +msgid "" +"Tell us about your current financial situation. Why do you need assistance?" +msgstr "" + +#: lms/djangoapps/courseware/views/views.py +msgid "" +"Tell us about your learning or professional goals. How will a Verified " +"Certificate in this course help you achieve these goals?" +msgstr "" + +#: lms/djangoapps/courseware/views/views.py +msgid "" +"Tell us about your plans for this course. What steps will you take to help " +"you complete the course work and receive a certificate?" +msgstr "" + #: lms/djangoapps/courseware/views/views.py msgid "Use between 1250 and 2500 characters or so in your response." msgstr "" @@ -7247,11 +7276,6 @@ msgstr "Plik musi zawierać kolumnę 'użytkownik', kolumnę 'e-mail' lub obie." msgid "detailed enrollment" msgstr "szczegóły naboru" -#: lms/djangoapps/instructor/views/api.py -#: lms/djangoapps/instructor_task/api_helper.py -msgid "executive summary" -msgstr "podsumowanie wykonawcze" - #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor_task/api_helper.py msgid "survey" @@ -8691,7 +8715,6 @@ msgstr "Waluta" #: lms/djangoapps/shoppingcart/reports.py #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: wiki/plugins/attachments/forms.py #: wiki/plugins/attachments/templates/wiki/plugins/attachments/history.html @@ -8710,8 +8733,7 @@ msgstr "Uczelnia" msgid "Course Announce Date" msgstr "Data ogłoszenia kursu" -#: lms/djangoapps/shoppingcart/reports.py cms/templates/settings.html -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +#: lms/djangoapps/shoppingcart/reports.py msgid "Course Start Date" msgstr "Data rozpoczęcia kursu" @@ -8740,7 +8762,6 @@ msgid "Verified Enrollment" msgstr "Ścieżka potwierdzona" #: lms/djangoapps/shoppingcart/reports.py -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html msgid "Gross Revenue" msgstr "Przychód brutto" @@ -9552,17 +9573,64 @@ msgstr "Zezwól" msgid "Error" msgstr "Błąd" -#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html -msgid "Expired ID Verification" +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html +msgid "ID Verification Approved" msgstr "" +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html #: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/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 "" +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.txt +#, python-format +msgid "Your %(platform_name)s ID verification photos have been approved." +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.txt +#, python-format +msgid "" +"Your approval status remains valid for one year, and it will expire " +"%(expiry_date)s." +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.txt +msgid "Enjoy your studies," +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.txt +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +#, python-format +msgid "The %(platform_name)s Team " +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.txt +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +#, python-format +msgid "Hello %(full_name)s, " +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationapproved/email/subject.txt +#, python-format +msgid "Your %(platform_name)s ID verification was approved!" +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 #: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt #, python-format @@ -9606,22 +9674,44 @@ msgstr "" msgid "Thank you," msgstr "Dziękujemy," -#: 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 "" - -#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt -#, python-format -msgid "Hello %(full_name)s, " -msgstr "" - #: lms/templates/verify_student/edx_ace/verificationexpiry/email/subject.txt #, python-format msgid "Your %(platform_name)s Verification has Expired" msgstr "" +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +msgid "ID Verification Submitted" +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +#, python-format +msgid "" +"Thank you for submitting your photos for identity verification with " +"%(platform_name)s. " +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +msgid "" +"We have received your photos and they will be reviewed within 5-7 days." +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +#, python-format +msgid "You may check the status on your dashboard: %(dashboard_link)s " +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +msgid "Best regards," +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/subject.txt +msgid "Thank you for submitting your photos!" +msgstr "" + #: lms/templates/wiki/article.html msgid "Last modified:" msgstr "Ostatnia modyfikacja:" @@ -9703,7 +9793,6 @@ msgstr "Usuwasz artykuł. Proszę potwierdzić." #: lms/templates/wiki/edit.html cms/templates/component.html #: cms/templates/container.html cms/templates/studio_xblock_wrapper.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/wiki/includes/article_menu.html wiki/templates/wiki/edit.html #: wiki/templates/wiki/includes/article_menu.html msgid "Edit" @@ -11310,7 +11399,6 @@ msgstr "" msgid "Success" msgstr "Zrobione" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/staff_problem_info.html msgid "Actions" msgstr "Czynności" @@ -11826,6 +11914,10 @@ msgstr "" msgid "Username created for VEM Integration, e.g. vem_service_user." msgstr "" +#: openedx/core/djangoapps/video_pipeline/models.py +msgid "Percentage of courses allowed to use VEM pipeline" +msgstr "" + #: openedx/core/djangoapps/waffle_utils/models.py msgid "Force On" msgstr "Automat: włączony" @@ -11929,31 +12021,11 @@ msgstr "" msgid "Subscribe to calendar updates" msgstr "" -#: openedx/features/calendar_sync/views/management.py -#, python-brace-format -msgid "Updates for Your {course} Schedule" -msgstr "" - -#: openedx/features/calendar_sync/views/management.py -msgid "Update Your Calendar" -msgstr "" - -#: openedx/features/calendar_sync/views/management.py -#, python-brace-format -msgid "" -"Your assignment due dates for {course} were recently adjusted. Update your " -"calendarwith your new schedule to ensure that you stay on track!" -msgstr "" - -#: openedx/features/calendar_sync/views/management.py +#: openedx/features/calendar_sync/utils.py msgid "Stay on Track" msgstr "" -#: openedx/features/calendar_sync/views/management.py -msgid "Mark Your Calendar" -msgstr "" - -#: openedx/features/calendar_sync/views/management.py +#: openedx/features/calendar_sync/utils.py #, python-brace-format msgid "" "Sticking to a schedule is the best way to ensure that you successfully " @@ -11961,6 +12033,18 @@ msgid "" "{course} will help you stay on track!" msgstr "" +#: openedx/features/calendar_sync/utils.py +#, python-brace-format +msgid "Updates for Your {course} Schedule" +msgstr "" + +#: openedx/features/calendar_sync/utils.py +#, python-brace-format +msgid "" +"Your assignment due dates for {course} were recently adjusted. Update your " +"calendar with your new schedule to ensure that you stay on track!" +msgstr "" + #: openedx/features/content_type_gating/models.py #: openedx/features/course_duration_limits/models.py #: lms/templates/support/feature_based_enrollments.html @@ -12158,6 +12242,23 @@ msgid "" "checkout! {a_open}Upgrade Now{a_close}{div_close}" msgstr "" +#: openedx/features/enterprise_support/admin/forms.py +msgid "CSV File" +msgstr "" + +#: openedx/features/enterprise_support/admin/forms.py +msgid "" +"CSV file should have 3 columns having names lms_user_id, course_id, " +"opportunity_id" +msgstr "" + +#: openedx/features/enterprise_support/admin/views.py +#, python-brace-format +msgid "" +"Enrollment attributes were not updated for records at following line numbers" +" in csv because no enrollment found for these records: {error_line_numbers}" +msgstr "" + #: openedx/features/enterprise_support/api.py #, python-brace-format msgid "Enrollment in {course_title} was not complete." @@ -12172,6 +12273,18 @@ msgstr "" "Jeśli masz obawy przed udostępnianiem swoich danych, skontaktuj się ze swoim" " administratorem na {enterprise_customer_name}." +#: openedx/features/enterprise_support/templates/enterprise_support/admin/enrollment_attributes_override.html +msgid "Enterprise Course Enrollments" +msgstr "" + +#: openedx/features/enterprise_support/templates/enterprise_support/admin/enrollment_attributes_override.html +msgid "Override Enrollment Attributes" +msgstr "" + +#: openedx/features/enterprise_support/templates/enterprise_support/admin/enrollment_attributes_override.html +msgid "Upload CSV to override enrollment attributes for learners" +msgstr "" + #: openedx/features/enterprise_support/utils.py #, python-brace-format msgid "" @@ -13034,6 +13147,7 @@ msgid "Course Outline" msgstr "Program kursu" #: cms/templates/course_outline.html +#: cms/templates/widgets/deprecated-course-key-warning.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "Warning" msgstr "" @@ -13075,11 +13189,6 @@ msgstr "Kursy" msgid "example: username@domain.com" msgstr "przykład: uzytkownik@domena.com" -#: cms/templates/settings.html -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Course End Date" -msgstr "Data zakończenia kursu" - #: cms/templates/settings.html lms/templates/courseware/program_marketing.html msgid "Instructors" msgstr "Prowadzący" @@ -14021,6 +14130,7 @@ msgid "Sequence" msgstr "Sekwencja" #: lms/templates/courseware/dates.html lms/templates/seq_module.html +#: lms/templates/vert_module.html #: openedx/features/course_experience/templates/course_experience/course-outline-fragment.html msgid "Completed" msgstr "" @@ -14420,6 +14530,11 @@ msgstr "" "swojej przeglądarki, aby ją przeskalować. W Google Chrome można tego dokonać" " wciskając odpowiednio ctrl-plus lub ctrl-minus." +#: lms/templates/vert_module.html +#: openedx/features/course_experience/templates/course_experience/course-outline-fragment.html +msgid "{subsection_format} due {{date}}" +msgstr "{subsection_format} termin {{date}}" + #: lms/templates/video.html msgid "Loading video player" msgstr "Wczytywanie odtwarzacza filmów" @@ -16679,6 +16794,12 @@ msgstr "Opcje dla kursu" msgid "Available Actions" msgstr "Dostępne czynności" +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"You are enrolled by your institution and you should reach out to your " +"institution to drop this course." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_entitlement_actions.html msgid "Email Settings" @@ -16688,25 +16809,6 @@ msgstr "Ustawienia wiadomości e-mail" msgid "Related Programs" msgstr "Powiązane programy" -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "" -"You can no longer access this course because payment has not yet been " -"received. You can contact the account holder to request payment, or you can " -"unenroll from this course" -msgstr "" - -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "" -"You can no longer access this course because payment has not yet been " -"received. You can {contact_link_start}contact the account " -"holder{contact_link_end} to request payment, or you can " -"{unenroll_link_start}unenroll{unenroll_link_end} from this course" -msgstr "" -"Nie posiadasz już dostępu do kursu, ponieważ nie otrzymaliśmy opłaty za " -"kurs. Możesz skontaktować się z {contact_link_start}właścicielem " -"konta{contact_link_end}, aby poprosić o wpłatę lub " -"{unenroll_link_start}wypisać się{unenroll_link_end} z kursu." - #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Verification not yet complete." msgstr "Nie dokonano potwierdzenia tożsamości." @@ -17757,7 +17859,6 @@ msgid "Order History" msgstr "Historia zamówień" #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon Code" msgstr "Dodaj kod promocyjny" @@ -17766,8 +17867,6 @@ msgid "Enter information about the coupon code below." msgstr "Wprowadź informację na temat kodu promocyjnego." #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html msgid "Coupon Code" msgstr "Kod promocyjny" @@ -17858,7 +17957,6 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/certificates.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/data_download.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Pending Tasks" @@ -17867,7 +17965,6 @@ msgstr "Oczekujące czynności" #: lms/templates/instructor/instructor_dashboard_2/certificates.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/data_download.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "The status for any active tasks appears in a table below." msgstr "Stan każdej trwającej czynności jest widoczny w tabeli poniżej." @@ -18051,7 +18148,6 @@ msgid "Get Student Anonymized IDs CSV" msgstr "Pobierz CSV ze zanonimizowanymi tożsamościami studentów" #: lms/templates/instructor/instructor_dashboard_2/data_download.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Reports" msgstr "Raporty" @@ -18219,282 +18315,6 @@ msgid "" "policies.{li_end}{ul_end}" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enrollment Codes" -msgstr "Kody rejestracyjne" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Create one or more pre-paid course enrollment codes. Students can use these " -"codes to enroll in the course." -msgstr "" -"Utwórz jeden lub więcej kod rejestracyjny do kursów opłacanych z góry. " -"Studenci mogą korzystać z tych kodów do zapisywania się na kursy." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -msgid "Create Enrollment Codes" -msgstr "Utwórz kody rejestracyjne" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Cancel, restore, or mark an enrollment code as unused." -msgstr "Anuluj, przywróć lub oznacz kod rejestracyjny jako nieużyty" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Change Enrollment Code Status" -msgstr "Zmień stan kodu rejestracyjnego" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download a .csv file of all enrollment codes for this course." -msgstr "Pobierz plik .csv ze wszystkim kodami rejestracyjnymi dla tego kursu." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download All Enrollment Codes" -msgstr "Pobierz wszystkie kody rejestracyjne" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download a .csv file of all unused enrollment codes for this course." -msgstr "" -"Pobierz plik .csv ze wszystkim nieużytymi kodami rejestracyjnymi dla tego " -"kursu." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download Unused Enrollment Codes" -msgstr "Pobierz nieużyte kody rejestracyjne" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download a .csv file of all used enrollment codes for this course." -msgstr "" -"Pobierz plik .csv ze wszystkim użytymi kodami rejestracyjnymi dla tego " -"kursu." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download Used Enrollment Codes" -msgstr "Pobierz użyte kody rejestracyjne" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html -msgid "Course Price" -msgstr "Cena kursu" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Course price per seat: " -msgstr "Cena kursu za miejsce:" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Edit Price" -msgstr "Edytuj cenę" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Course Seat Purchases" -msgstr "Zakupy miejsc na kursie" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Total Credit Card Purchases: " -msgstr "Wszystkie zamówienia e-płatnościami:" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Download a .csv file for all credit card purchases or for all invoices, " -"regardless of status." -msgstr "" -"Pobierz plik .csv ze wszystkimi zamówieniami płatnościami elektronicznymi " -"lub dla wszystkich rachunków bez względu na ich status." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download All Invoices" -msgstr "Pobierz wszystkie rachunki" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download All Credit Card Purchases" -msgstr "Pobierz listę wszystkich transakcji e-płatnościami" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "To cancel or resubmit an invoice, enter the invoice number below." -msgstr "Aby usunąć lub ponowić rachunek, wpisz poniżej numer rachunku." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Invoice Number" -msgstr "Numer rachunku" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Cancel Invoice" -msgstr "Anuluj rachunek" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Resubmit Invoice" -msgstr "Ponów rachunek" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Create a .csv file that contains enrollment information for your course." -msgstr "" -"Utwórz plik .csv zawierający informacje na temat rejestracji do twojego " -"kursu." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Create Enrollment Report" -msgstr "Utwórz raport rejestracyjny" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Create an HTML file that contains an executive summary for this course." -msgstr "Utwórz plik HTML zawierający pełne podsumowanie tego kursu." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Create Executive Summary" -msgstr "Utwórz podsumowanie" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Available Reports" -msgstr "Dostępne raporty" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"The following reports are available for download. Reports are not deleted. A" -" link to every report remains available on this page, identified by the date" -" and time (in UTC) that the report was generated." -msgstr "" -"Poniższe 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 (UTC) " -"jego sporządzenia." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"{strong_start}Note{strong_end}: To help protect learner data, links to these" -" reports that you save outside of this page or that you send or receive in " -"email expire after five minutes." -msgstr "" -"{strong_start}Uwaga{strong_end}: Dla bezpieczeństwa danych studentów, " -"odnośniki do raportów, które zapisujesz poza tą stroną lub wysyłasz / " -"odbierasz przez pocztę e-mail, wygasają w ciągu pięciu minut." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Coupon Code List" -msgstr "Lista kodów promocyjnych" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download a .csv file of all coupon codes for this course." -msgstr "" -"Pobierz plik .csv z listą wszystkich kodów promocyjnych dla tego kursu." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download Coupon Codes" -msgstr "Pobierz kody promocyjne" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Coupon Codes" -msgstr "Kody promocyjne" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html -msgid "Expiration Date" -msgstr "Data wygaśnięcia" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Coupon (%)" -msgstr "Rabat (%)" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Number Redeemed" -msgstr "Liczba wykorzystań" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "{code}" -msgstr "{code}" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "{description}" -msgstr "{description}" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "{discount}" -msgstr "{discount}" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The Invoice Number field cannot be empty." -msgstr "Pole numeru rachunku nie może być puste." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "No Expiration Date" -msgstr "Bez daty wygaśnięcia" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the company name." -msgstr "Wprowadź nazwę firmy." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The company name cannot be a number." -msgstr "Nazwa firmy nie może być liczbą." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the company contact name." -msgstr "Wprowadź osobę do kontaktu z firmą." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The company contact name cannot be a number." -msgstr "Osoba do kontaktu z firmą nie może być liczbą." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the email address for the company contact." -msgstr "Wprowadź adres e-mail do kontaktu z firmą." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter a valid email address." -msgstr "Wprowadź poprawny adres e-mail." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the recipient name." -msgstr "Wprowadź nazwę odbiorcy." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The recipient name cannot be a number." -msgstr "Nazwa odbiorcy nie może być liczbą." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the recipient email address." -msgstr "Wprowadź adres e-mail odbiorcy." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the billing address." -msgstr "Wprowadź adres rozliczeniowy." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the price per course seat." -msgstr "Wprowadź cenę kursu za miejsce." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Enter a numeric value for the price per course seat. Do not include currency" -" symbols." -msgstr "Wpisz numeryczną wartość ceny za miejsce. Nie podawaj symbolu waluty." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the number of enrollment codes." -msgstr "Wprowadź liczbę kodów rejestracyjnych." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter a numeric value for the number of enrollment codes." -msgstr "Podaj numeryczną wartość liczby uczestników." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Select a currency." -msgstr "Wybierz walutę." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter a coupon code." -msgstr "Wprowadź kod promocyjny." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The discount percentage must be less than or equal to 100." -msgstr "Wartość rabatu musi być mniejsza lub równa 100." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Enter a numeric value for the discount amount. Do not include the percent " -"sign." -msgstr "Podaj numeryczną wartość rabatu. Nie wprowadzaj znaku procent." - #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Edit Coupon Code" msgstr "Edytuj kod promocyjny" @@ -18515,98 +18335,14 @@ msgstr "przykład: A123DS" msgid "Percentage Discount" msgstr "Rabat procentowy" +#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html +msgid "Expiration Date" +msgstr "Data wygaśnięcia" + #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon Code" msgstr "Zaktualizuj kod promocyjny" -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Executive Summary for {display_name}" -msgstr "Pełne podsumowanie kursu {display_name}" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Report Creation Date" -msgstr "Data utworzenia raportu" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of Seats" -msgstr "Liczba miejsc" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of Enrollments" -msgstr "Liczba zapisów" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Gross Revenue Collected" -msgstr "Pobrany przychód brutto" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Gross Revenue Pending" -msgstr "Oczekujący przychód brutto" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of Enrollment Refunds" -msgstr "Liczba zwrotów za zapisy" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Amount Refunded" -msgstr "Kwota zwrotów" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Average Price per Seat" -msgstr "Średnia cena za miejsce" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Frequently Used Coupon Codes" -msgstr "Najczęściej używane kody promocyjne" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of seats purchased using coupon codes" -msgstr "Liczba miejsc zakupionych z użyciem kodu promocyjnego" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Rank" -msgstr "Nr" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Percent Discount" -msgstr "Rabat procentowy" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Times Used" -msgstr "Liczba użyć" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Bulk and Single Seat Purchases" -msgstr "Zakupy miejsc pojedynczych i grupowych" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of seats purchased individually" -msgstr "Liczba miejsc zakupionych pojedynczo" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of seats purchased in bulk" -msgstr "Liczba miejsc zakupionych grupowo" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of seats purchased with invoices" -msgstr "Liczba miejsc zakupionych z rachunkiem" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Unused bulk purchase seats (revenue at risk)" -msgstr "Niewykorzystane miejsca zakupione grupowo (przychód niepewny)" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Percentage of seats purchased individually" -msgstr "Odsetek miejsc zakupionych pojedynczo" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Percentage of seats purchased in bulk" -msgstr "Odsetek miejsc zakupionych grupowo" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Percentage of seats purchased with invoices" -msgstr "Odsetek miejsc zakupionych z rachunkiem" - #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Individual due date extensions" msgstr "Indywidualne wydłużenia terminów końcowych" @@ -18701,6 +18437,10 @@ msgstr "Zresetuj wydłużenie terminu dla studenta" msgid "Generate Registration Code Modal" msgstr "Utwórz modalną kodów rejestracyjnych" +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "Create Enrollment Codes" +msgstr "Utwórz kody rejestracyjne" + #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "* Required Information" msgstr "* Pole wymagane" @@ -19236,10 +18976,18 @@ msgstr "Ustal cenę dla trybu kursu" msgid "Please enter Course Mode detail below" msgstr "Wprowadź szczegóły trybu kursu" +#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html +msgid "Course Price" +msgstr "Cena kursu" + #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Price" msgstr "Ustal cenę" +#: lms/templates/instructor/instructor_dashboard_2/special_exams.html +msgid "Proctortrack Escalation Email:" +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/special_exams.html msgid "Allowance Section" msgstr "Sekcja uprawnień" @@ -20214,13 +19962,10 @@ msgstr "" msgid "" "Our system indicates that you are trying to access this {platform_name} " "course from a country or region currently subject to U.S. economic and trade" -" sanctions.Unfortunately, because {platform_name} is required to comply with" -" export controls,we cannot allow you to access this course at this time." +" sanctions. Unfortunately, because {platform_name} is required to comply " +"with export controls, we cannot allow you to access this course at this " +"time." msgstr "" -"Nasz system wskazuje, że próbujesz dostać się na kurs {platform_name} z " -"kraju, który na chwilę obecną nie jest przez nas obsługiwany. Niestety " -"musimy stosować się do polityki ograniczeń terytorialnych {platform_name} i " -"nie możemy umożliwić ci dostępu do tego kursu." #: lms/templates/static_templates/faq.html #: themes/red-theme/lms/templates/footer.html @@ -20604,10 +20349,6 @@ msgstr[3] "" msgid "Prerequisite: " msgstr "Wymaganie wstępne:" -#: openedx/features/course_experience/templates/course_experience/course-outline-fragment.html -msgid "{subsection_format} due {{date}}" -msgstr "{subsection_format} termin {{date}}" - #: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html msgid "Learn About Verified Certificates" msgstr "" @@ -20782,6 +20523,14 @@ msgstr "" msgid "edX Partner Portal" msgstr "Portal partnera" +#: themes/edx.org/lms/templates/dashboard.html +msgid "Want to make edX better for everyone?" +msgstr "" + +#: themes/edx.org/lms/templates/dashboard.html +msgid "Get started" +msgstr "" + #: themes/edx.org/lms/templates/dashboard.html msgid "" "Browse recently launched courses and see what's new in your favorite " @@ -23659,6 +23408,10 @@ msgstr "Godzina rozpoczęcia kursu" msgid "(UTC)" msgstr "(UTC)" +#: cms/templates/settings.html +msgid "Course End Date" +msgstr "" + #: cms/templates/settings.html msgid "Last day your course is active" msgstr "Ostatni dzień trwania kursu" @@ -24513,6 +24266,24 @@ msgstr "" msgid "Return to the {link_start}home page{link_end}." msgstr "Wróć do {link_start}strony głównej{link_end}." +#: cms/templates/widgets/deprecated-course-key-warning.html +msgid "Support will be removed in an upcoming release." +msgstr "" + +#: cms/templates/widgets/deprecated-course-key-warning.html +msgid "Support will be removed on {expiration_date}." +msgstr "" + +#: cms/templates/widgets/deprecated-course-key-warning.html +msgid "This course uses a legacy storage format." +msgstr "" + +#: cms/templates/widgets/deprecated-course-key-warning.html +msgid "" +"Please reach out to your support team contact, if you have any additional " +"questions or concerns." +msgstr "" + #: cms/templates/widgets/footer.html msgid "Policies" msgstr "Polityka" diff --git a/conf/locale/pl/LC_MESSAGES/djangojs.po b/conf/locale/pl/LC_MESSAGES/djangojs.po index af57570dfe..00505d220d 100644 --- a/conf/locale/pl/LC_MESSAGES/djangojs.po +++ b/conf/locale/pl/LC_MESSAGES/djangojs.po @@ -95,7 +95,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2020-06-21 20:42+0000\n" +"POT-Creation-Date: 2020-07-01 16:14+0000\n" "PO-Revision-Date: 2020-06-14 20:45+0000\n" "Last-Translator: edx_transifex_bot \n" "Language-Team: Polish (http://www.transifex.com/open-edx/edx-platform/language/pl/)\n" @@ -2944,6 +2944,11 @@ msgstr "" "możesz znaleźć zespołu dla siebie, {create_span_start}utwórz nowy zespół w " "tym temacie{span_end}." +#: lms/djangoapps/teams/static/teams/js/views/topic_teams.js +msgid "" +"An error occurred while looking up team membership. Try refreshing the page." +msgstr "" + #: lms/djangoapps/teams/static/teams/js/views/topics.js msgid "All topics" msgstr "Wszystkie tematy" diff --git a/conf/locale/pt_BR/LC_MESSAGES/djangojs.po b/conf/locale/pt_BR/LC_MESSAGES/djangojs.po index abc171ee5f..60664cede6 100644 --- a/conf/locale/pt_BR/LC_MESSAGES/djangojs.po +++ b/conf/locale/pt_BR/LC_MESSAGES/djangojs.po @@ -242,7 +242,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2020-06-28 20:42+0000\n" +"POT-Creation-Date: 2020-07-05 20:42+0000\n" "PO-Revision-Date: 2020-06-14 20:45+0000\n" "Last-Translator: edx_transifex_bot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/open-edx/edx-platform/language/pt_BR/)\n" diff --git a/conf/locale/rtl/LC_MESSAGES/django.mo b/conf/locale/rtl/LC_MESSAGES/django.mo index d5fb9ae641..a4d9529341 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 b3d9603752..bfa54fb7ce 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: 2020-06-28 20:50+0000\n" -"PO-Revision-Date: 2020-06-28 20:50:23.707499\n" +"POT-Creation-Date: 2020-07-05 20:50+0000\n" +"PO-Revision-Date: 2020-07-05 20:50:24.140977\n" "Last-Translator: \n" "Language-Team: openedx-translation \n" "Language: rtl\n" @@ -7163,11 +7163,6 @@ msgstr "" msgid "detailed enrollment" msgstr "يثفشهمثي ثرقخمموثرف" -#: lms/djangoapps/instructor/views/api.py -#: lms/djangoapps/instructor_task/api_helper.py -msgid "executive summary" -msgstr "ثطثذعفهدث سعووشقغ" - #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor_task/api_helper.py msgid "survey" @@ -8691,7 +8686,6 @@ msgstr "ذعققثرذغ" #: lms/djangoapps/shoppingcart/reports.py #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: wiki/plugins/attachments/forms.py #: wiki/plugins/attachments/templates/wiki/plugins/attachments/history.html @@ -8711,7 +8705,6 @@ msgid "Course Announce Date" msgstr "ذخعقسث شررخعرذث يشفث" #: lms/djangoapps/shoppingcart/reports.py cms/templates/settings.html -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html msgid "Course Start Date" msgstr "ذخعقسث سفشقف يشفث" @@ -8740,7 +8733,6 @@ msgid "Verified Enrollment" msgstr "دثقهبهثي ثرقخمموثرف" #: lms/djangoapps/shoppingcart/reports.py -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html msgid "Gross Revenue" msgstr "لقخسس قثدثرعث" @@ -9614,17 +9606,66 @@ 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/verificationapproved/email/body.html +msgid "ID Verification Approved" +msgstr "هي دثقهبهذشفهخر شححقخدثي" +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html #: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/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/verificationapproved/email/body.html +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.txt +#, python-format +msgid "Your %(platform_name)s ID verification photos have been approved." +msgstr "غخعق %(platform_name)s هي دثقهبهذشفهخر حاخفخس اشدث زثثر شححقخدثي." + +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.txt +#, python-format +msgid "" +"Your approval status remains valid for one year, and it will expire " +"%(expiry_date)s." +msgstr "" +"غخعق شححقخدشم سفشفعس قثوشهرس دشمهي بخق خرث غثشق, شري هف صهمم ثطحهقث " +"%(expiry_date)s." + +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.txt +msgid "Enjoy your studies," +msgstr "ثرتخغ غخعق سفعيهثس," + +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.txt +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +#, python-format +msgid "The %(platform_name)s Team " +msgstr "فاث %(platform_name)s فثشو " + +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.txt +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +#, python-format +msgid "Hello %(full_name)s, " +msgstr "اثممخ %(full_name)s, " + +#: lms/templates/verify_student/edx_ace/verificationapproved/email/subject.txt +#, python-format +msgid "Your %(platform_name)s ID verification was approved!" +msgstr "غخعق %(platform_name)s هي دثقهبهذشفهخر صشس شححقخدثي!" + +#: 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 #: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt #, python-format @@ -9673,22 +9714,47 @@ msgstr "هي دثقهبهذشفهخر بشض : %(help_center_link)s " 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/verify_student/edx_ace/verificationsubmitted/email/body.html +msgid "ID Verification Submitted" +msgstr "هي دثقهبهذشفهخر سعزوهففثي" + +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +#, python-format +msgid "" +"Thank you for submitting your photos for identity verification with " +"%(platform_name)s. " +msgstr "" +"فاشرن غخع بخق سعزوهففهرل غخعق حاخفخس بخق هيثرفهفغ دثقهبهذشفهخر صهفا " +"%(platform_name)s. " + +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +msgid "" +"We have received your photos and they will be reviewed within 5-7 days." +msgstr "" +"صث اشدث قثذثهدثي غخعق حاخفخس شري فاثغ صهمم زث قثدهثصثي صهفاهر 5-7 يشغس." + +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +#, python-format +msgid "You may check the status on your dashboard: %(dashboard_link)s " +msgstr "غخع وشغ ذاثذن فاث سفشفعس خر غخعق يشسازخشقي: %(dashboard_link)s " + +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +msgid "Best regards," +msgstr "زثسف قثلشقيس," + +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/subject.txt +msgid "Thank you for submitting your photos!" +msgstr "فاشرن غخع بخق سعزوهففهرل غخعق حاخفخس!" + #: lms/templates/wiki/article.html msgid "Last modified:" msgstr "مشسف وخيهبهثي:" @@ -9768,7 +9834,6 @@ msgstr "غخع شقث يثمثفهرل شر شقفهذمث. حمثشسث ذخر #: lms/templates/wiki/edit.html cms/templates/component.html #: cms/templates/container.html cms/templates/studio_xblock_wrapper.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/wiki/includes/article_menu.html wiki/templates/wiki/edit.html #: wiki/templates/wiki/includes/article_menu.html msgid "Edit" @@ -11466,7 +11531,6 @@ msgid "Success" msgstr "سعذذثسس" #: openedx/core/djangoapps/user_api/admin.py -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/staff_problem_info.html msgid "Actions" msgstr "شذفهخرس" @@ -13313,6 +13377,7 @@ msgid "Course Outline" msgstr "ذخعقسث خعفمهرث" #: cms/templates/course_outline.html +#: cms/templates/widgets/deprecated-course-key-warning.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "Warning" msgstr "صشقرهرل" @@ -13354,11 +13419,6 @@ msgstr "ذخعقسثس" msgid "example: username@domain.com" msgstr "ثطشوحمث: عسثقرشوث@يخوشهر.ذخو" -#: cms/templates/settings.html -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Course End Date" -msgstr "ذخعقسث ثري يشفث" - #: cms/templates/settings.html lms/templates/courseware/program_marketing.html msgid "Instructors" msgstr "هرسفقعذفخقس" @@ -17256,6 +17316,14 @@ msgstr "ذخعقسث خحفهخرس بخق" msgid "Available Actions" msgstr "شدشهمشزمث شذفهخرس" +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"You are enrolled by your institution and you should reach out to your " +"institution to drop this course." +msgstr "" +"غخع شقث ثرقخممثي زغ غخعق هرسفهفعفهخر شري غخع ساخعمي قثشذا خعف فخ غخعق " +"هرسفهفعفهخر فخ يقخح فاهس ذخعقسث." + #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_entitlement_actions.html msgid "Email Settings" @@ -18319,7 +18387,6 @@ msgid "Order History" msgstr "خقيثق اهسفخقغ" #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon Code" msgstr "شيي ذخعحخر ذخيث" @@ -18328,8 +18395,6 @@ msgid "Enter information about the coupon code below." msgstr "ثرفثق هربخقوشفهخر شزخعف فاث ذخعحخر ذخيث زثمخص." #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html msgid "Coupon Code" msgstr "ذخعحخر ذخيث" @@ -18418,7 +18483,6 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/certificates.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/data_download.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Pending Tasks" @@ -18427,7 +18491,6 @@ msgstr "حثريهرل فشسنس" #: lms/templates/instructor/instructor_dashboard_2/certificates.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/data_download.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "The status for any active tasks appears in a table below." msgstr "فاث سفشفعس بخق شرغ شذفهدث فشسنس شححثشقس هر ش فشزمث زثمخص." @@ -18600,7 +18663,6 @@ msgid "Get Student Anonymized IDs CSV" msgstr "لثف سفعيثرف شرخرغوهظثي هيس ذسد" #: lms/templates/instructor/instructor_dashboard_2/data_download.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Reports" msgstr "قثحخقفس" @@ -18780,281 +18842,6 @@ msgstr "" "سفخقث فاث بهمثس, هر شذذخقيشرذث صهفا غخعق هرسفهفعفهخر'س يشفش سثذعقهفغ " "حخمهذهثس.{li_end}{ul_end}" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enrollment Codes" -msgstr "ثرقخمموثرف ذخيثس" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Create one or more pre-paid course enrollment codes. Students can use these " -"codes to enroll in the course." -msgstr "" -"ذقثشفث خرث خق وخقث حقث-حشهي ذخعقسث ثرقخمموثرف ذخيثس. سفعيثرفس ذشر عسث فاثسث " -"ذخيثس فخ ثرقخمم هر فاث ذخعقسث." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -msgid "Create Enrollment Codes" -msgstr "ذقثشفث ثرقخمموثرف ذخيثس" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Cancel, restore, or mark an enrollment code as unused." -msgstr "ذشرذثم, قثسفخقث, خق وشقن شر ثرقخمموثرف ذخيث شس عرعسثي." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Change Enrollment Code Status" -msgstr "ذاشرلث ثرقخمموثرف ذخيث سفشفعس" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download a .csv file of all enrollment codes for this course." -msgstr "يخصرمخشي ش .ذسد بهمث خب شمم ثرقخمموثرف ذخيثس بخق فاهس ذخعقسث." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download All Enrollment Codes" -msgstr "يخصرمخشي شمم ثرقخمموثرف ذخيثس" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download a .csv file of all unused enrollment codes for this course." -msgstr "يخصرمخشي ش .ذسد بهمث خب شمم عرعسثي ثرقخمموثرف ذخيثس بخق فاهس ذخعقسث." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download Unused Enrollment Codes" -msgstr "يخصرمخشي عرعسثي ثرقخمموثرف ذخيثس" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download a .csv file of all used enrollment codes for this course." -msgstr "يخصرمخشي ش .ذسد بهمث خب شمم عسثي ثرقخمموثرف ذخيثس بخق فاهس ذخعقسث." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download Used Enrollment Codes" -msgstr "يخصرمخشي عسثي ثرقخمموثرف ذخيثس" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html -msgid "Course Price" -msgstr "ذخعقسث حقهذث" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Course price per seat: " -msgstr "ذخعقسث حقهذث حثق سثشف: " - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Edit Price" -msgstr "ثيهف حقهذث" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Course Seat Purchases" -msgstr "ذخعقسث سثشف حعقذاشسثس" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Total Credit Card Purchases: " -msgstr "فخفشم ذقثيهف ذشقي حعقذاشسثس: " - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Download a .csv file for all credit card purchases or for all invoices, " -"regardless of status." -msgstr "" -"يخصرمخشي ش .ذسد بهمث بخق شمم ذقثيهف ذشقي حعقذاشسثس خق بخق شمم هردخهذثس, " -"قثلشقيمثسس خب سفشفعس." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download All Invoices" -msgstr "يخصرمخشي شمم هردخهذثس" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download All Credit Card Purchases" -msgstr "يخصرمخشي شمم ذقثيهف ذشقي حعقذاشسثس" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "To cancel or resubmit an invoice, enter the invoice number below." -msgstr "فخ ذشرذثم خق قثسعزوهف شر هردخهذث, ثرفثق فاث هردخهذث رعوزثق زثمخص." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Invoice Number" -msgstr "هردخهذث رعوزثق" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Cancel Invoice" -msgstr "ذشرذثم هردخهذث" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Resubmit Invoice" -msgstr "قثسعزوهف هردخهذث" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Create a .csv file that contains enrollment information for your course." -msgstr "" -"ذقثشفث ش .ذسد بهمث فاشف ذخرفشهرس ثرقخمموثرف هربخقوشفهخر بخق غخعق ذخعقسث." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Create Enrollment Report" -msgstr "ذقثشفث ثرقخمموثرف قثحخقف" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Create an HTML file that contains an executive summary for this course." -msgstr "" -"ذقثشفث شر افوم بهمث فاشف ذخرفشهرس شر ثطثذعفهدث سعووشقغ بخق فاهس ذخعقسث." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Create Executive Summary" -msgstr "ذقثشفث ثطثذعفهدث سعووشقغ" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Available Reports" -msgstr "شدشهمشزمث قثحخقفس" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"The following reports are available for download. Reports are not deleted. A" -" link to every report remains available on this page, identified by the date" -" and time (in UTC) that the report was generated." -msgstr "" -"فاث بخممخصهرل قثحخقفس شقث شدشهمشزمث بخق يخصرمخشي. قثحخقفس شقث رخف يثمثفثي. ش" -" مهرن فخ ثدثقغ قثحخقف قثوشهرس شدشهمشزمث خر فاهس حشلث, هيثرفهبهثي زغ فاث يشفث" -" شري فهوث (هر عفذ) فاشف فاث قثحخقف صشس لثرثقشفثي." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"{strong_start}Note{strong_end}: To help protect learner data, links to these" -" reports that you save outside of this page or that you send or receive in " -"email expire after five minutes." -msgstr "" -"{strong_start}رخفث{strong_end}: فخ اثمح حقخفثذف مثشقرثق يشفش, مهرنس فخ فاثسث" -" قثحخقفس فاشف غخع سشدث خعفسهيث خب فاهس حشلث خق فاشف غخع سثري خق قثذثهدث هر " -"ثوشهم ثطحهقث شبفثق بهدث وهرعفثس." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Coupon Code List" -msgstr "ذخعحخر ذخيث مهسف" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download a .csv file of all coupon codes for this course." -msgstr "يخصرمخشي ش .ذسد بهمث خب شمم ذخعحخر ذخيثس بخق فاهس ذخعقسث." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download Coupon Codes" -msgstr "يخصرمخشي ذخعحخر ذخيثس" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Coupon Codes" -msgstr "ذخعحخر ذخيثس" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html -msgid "Expiration Date" -msgstr "ثطحهقشفهخر يشفث" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Coupon (%)" -msgstr "ذخعحخر (%)" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Number Redeemed" -msgstr "رعوزثق قثيثثوثي" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "{code}" -msgstr "{code}" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "{description}" -msgstr "{description}" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "{discount}" -msgstr "{discount}" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The Invoice Number field cannot be empty." -msgstr "فاث هردخهذث رعوزثق بهثمي ذشررخف زث ثوحفغ." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "No Expiration Date" -msgstr "رخ ثطحهقشفهخر يشفث" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the company name." -msgstr "ثرفثق فاث ذخوحشرغ رشوث." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The company name cannot be a number." -msgstr "فاث ذخوحشرغ رشوث ذشررخف زث ش رعوزثق." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the company contact name." -msgstr "ثرفثق فاث ذخوحشرغ ذخرفشذف رشوث." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The company contact name cannot be a number." -msgstr "فاث ذخوحشرغ ذخرفشذف رشوث ذشررخف زث ش رعوزثق." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the email address for the company contact." -msgstr "ثرفثق فاث ثوشهم شييقثسس بخق فاث ذخوحشرغ ذخرفشذف." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter a valid email address." -msgstr "ثرفثق ش دشمهي ثوشهم شييقثسس." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the recipient name." -msgstr "ثرفثق فاث قثذهحهثرف رشوث." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The recipient name cannot be a number." -msgstr "فاث قثذهحهثرف رشوث ذشررخف زث ش رعوزثق." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the recipient email address." -msgstr "ثرفثق فاث قثذهحهثرف ثوشهم شييقثسس." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the billing address." -msgstr "ثرفثق فاث زهممهرل شييقثسس." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the price per course seat." -msgstr "ثرفثق فاث حقهذث حثق ذخعقسث سثشف." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Enter a numeric value for the price per course seat. Do not include currency" -" symbols." -msgstr "" -"ثرفثق ش رعوثقهذ دشمعث بخق فاث حقهذث حثق ذخعقسث سثشف. يخ رخف هرذمعيث ذعققثرذغ" -" سغوزخمس." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the number of enrollment codes." -msgstr "ثرفثق فاث رعوزثق خب ثرقخمموثرف ذخيثس." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter a numeric value for the number of enrollment codes." -msgstr "ثرفثق ش رعوثقهذ دشمعث بخق فاث رعوزثق خب ثرقخمموثرف ذخيثس." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Select a currency." -msgstr "سثمثذف ش ذعققثرذغ." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter a coupon code." -msgstr "ثرفثق ش ذخعحخر ذخيث." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The discount percentage must be less than or equal to 100." -msgstr "فاث يهسذخعرف حثقذثرفشلث وعسف زث مثسس فاشر خق ثضعشم فخ 100." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Enter a numeric value for the discount amount. Do not include the percent " -"sign." -msgstr "" -"ثرفثق ش رعوثقهذ دشمعث بخق فاث يهسذخعرف شوخعرف. يخ رخف هرذمعيث فاث حثقذثرف " -"سهلر." - #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Edit Coupon Code" msgstr "ثيهف ذخعحخر ذخيث" @@ -19075,98 +18862,14 @@ msgstr "ثطشوحمث: ش123يس" msgid "Percentage Discount" msgstr "حثقذثرفشلث يهسذخعرف" +#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html +msgid "Expiration Date" +msgstr "ثطحهقشفهخر يشفث" + #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon Code" msgstr "عحيشفث ذخعحخر ذخيث" -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Executive Summary for {display_name}" -msgstr "ثطثذعفهدث سعووشقغ بخق {display_name}" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Report Creation Date" -msgstr "قثحخقف ذقثشفهخر يشفث" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of Seats" -msgstr "رعوزثق خب سثشفس" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of Enrollments" -msgstr "رعوزثق خب ثرقخمموثرفس" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Gross Revenue Collected" -msgstr "لقخسس قثدثرعث ذخممثذفثي" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Gross Revenue Pending" -msgstr "لقخسس قثدثرعث حثريهرل" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of Enrollment Refunds" -msgstr "رعوزثق خب ثرقخمموثرف قثبعريس" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Amount Refunded" -msgstr "شوخعرف قثبعريثي" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Average Price per Seat" -msgstr "شدثقشلث حقهذث حثق سثشف" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Frequently Used Coupon Codes" -msgstr "بقثضعثرفمغ عسثي ذخعحخر ذخيثس" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of seats purchased using coupon codes" -msgstr "رعوزثق خب سثشفس حعقذاشسثي عسهرل ذخعحخر ذخيثس" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Rank" -msgstr "قشرن" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Percent Discount" -msgstr "حثقذثرف يهسذخعرف" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Times Used" -msgstr "فهوثس عسثي" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Bulk and Single Seat Purchases" -msgstr "زعمن شري سهرلمث سثشف حعقذاشسثس" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of seats purchased individually" -msgstr "رعوزثق خب سثشفس حعقذاشسثي هريهدهيعشممغ" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of seats purchased in bulk" -msgstr "رعوزثق خب سثشفس حعقذاشسثي هر زعمن" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of seats purchased with invoices" -msgstr "رعوزثق خب سثشفس حعقذاشسثي صهفا هردخهذثس" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Unused bulk purchase seats (revenue at risk)" -msgstr "عرعسثي زعمن حعقذاشسث سثشفس (قثدثرعث شف قهسن)" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Percentage of seats purchased individually" -msgstr "حثقذثرفشلث خب سثشفس حعقذاشسثي هريهدهيعشممغ" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Percentage of seats purchased in bulk" -msgstr "حثقذثرفشلث خب سثشفس حعقذاشسثي هر زعمن" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Percentage of seats purchased with invoices" -msgstr "حثقذثرفشلث خب سثشفس حعقذاشسثي صهفا هردخهذثس" - #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Individual due date extensions" msgstr "هريهدهيعشم يعث يشفث ثطفثرسهخرس" @@ -19273,6 +18976,10 @@ msgstr "قثسثف يعث يشفث بخق سفعيثرف" msgid "Generate Registration Code Modal" msgstr "لثرثقشفث قثلهسفقشفهخر ذخيث وخيشم" +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "Create Enrollment Codes" +msgstr "ذقثشفث ثرقخمموثرف ذخيثس" + #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "* Required Information" msgstr "* قثضعهقثي هربخقوشفهخر" @@ -19803,10 +19510,18 @@ msgstr "سثف ذخعقسث وخيث حقهذث" msgid "Please enter Course Mode detail below" msgstr "حمثشسث ثرفثق ذخعقسث وخيث يثفشهم زثمخص" +#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html +msgid "Course Price" +msgstr "ذخعقسث حقهذث" + #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Price" msgstr "سثف حقهذث" +#: lms/templates/instructor/instructor_dashboard_2/special_exams.html +msgid "Proctortrack Escalation Email:" +msgstr "حقخذفخقفقشذن ثسذشمشفهخر ثوشهم:" + #: lms/templates/instructor/instructor_dashboard_2/special_exams.html msgid "Allowance Section" msgstr "شممخصشرذث سثذفهخر" @@ -24224,6 +23939,10 @@ msgstr "ذخعقسث سفشقف فهوث" msgid "(UTC)" msgstr "(عفذ)" +#: cms/templates/settings.html +msgid "Course End Date" +msgstr "ذخعقسث ثري يشفث" + #: cms/templates/settings.html msgid "Last day your course is active" msgstr "مشسف يشغ غخعق ذخعقسث هس شذفهدث" @@ -25063,6 +24782,26 @@ msgstr "" msgid "Return to the {link_start}home page{link_end}." msgstr "قثفعقر فخ فاث {link_start}اخوث حشلث{link_end}." +#: cms/templates/widgets/deprecated-course-key-warning.html +msgid "Support will be removed in an upcoming release." +msgstr "سعححخقف صهمم زث قثوخدثي هر شر عحذخوهرل قثمثشسث." + +#: cms/templates/widgets/deprecated-course-key-warning.html +msgid "Support will be removed on {expiration_date}." +msgstr "سعححخقف صهمم زث قثوخدثي خر {expiration_date}." + +#: cms/templates/widgets/deprecated-course-key-warning.html +msgid "This course uses a legacy storage format." +msgstr "فاهس ذخعقسث عسثس ش مثلشذغ سفخقشلث بخقوشف." + +#: cms/templates/widgets/deprecated-course-key-warning.html +msgid "" +"Please reach out to your support team contact, if you have any additional " +"questions or concerns." +msgstr "" +"حمثشسث قثشذا خعف فخ غخعق سعححخقف فثشو ذخرفشذف, هب غخع اشدث شرغ شييهفهخرشم " +"ضعثسفهخرس خق ذخرذثقرس." + #: cms/templates/widgets/footer.html msgid "Policies" msgstr "حخمهذهثس" diff --git a/conf/locale/rtl/LC_MESSAGES/djangojs.mo b/conf/locale/rtl/LC_MESSAGES/djangojs.mo index 6a4575887a..1ec6278411 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 f6be76c642..75e45ae938 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: 2020-06-28 20:50+0000\n" -"PO-Revision-Date: 2020-06-28 20:50:23.689858\n" +"POT-Creation-Date: 2020-07-05 20:50+0000\n" +"PO-Revision-Date: 2020-07-05 20:50:23.560748\n" "Last-Translator: \n" "Language-Team: openedx-translation \n" "Language: rtl\n" diff --git a/conf/locale/ru/LC_MESSAGES/djangojs.po b/conf/locale/ru/LC_MESSAGES/djangojs.po index 9652fa0222..4a186c6b4a 100644 --- a/conf/locale/ru/LC_MESSAGES/djangojs.po +++ b/conf/locale/ru/LC_MESSAGES/djangojs.po @@ -179,7 +179,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2020-06-28 20:42+0000\n" +"POT-Creation-Date: 2020-07-05 20:42+0000\n" "PO-Revision-Date: 2020-06-14 20:45+0000\n" "Last-Translator: edx_transifex_bot \n" "Language-Team: Russian (http://www.transifex.com/open-edx/edx-platform/language/ru/)\n" diff --git a/conf/locale/sw_KE/LC_MESSAGES/django.mo b/conf/locale/sw_KE/LC_MESSAGES/django.mo index 7704ee3c09..75227ca9f9 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 395b595e50..897acf2ec5 100644 --- a/conf/locale/sw_KE/LC_MESSAGES/django.po +++ b/conf/locale/sw_KE/LC_MESSAGES/django.po @@ -85,7 +85,7 @@ msgid "" msgstr "" "Project-Id-Version: 0.1a\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2020-06-28 20:42+0000\n" +"POT-Creation-Date: 2020-07-05 20:42+0000\n" "PO-Revision-Date: 2019-01-20 20:43+0000\n" "Last-Translator: Waheed Ahmed , 2019\n" "Language-Team: Swahili (Kenya) (https://www.transifex.com/open-edx/teams/6205/sw_KE/)\n" @@ -6649,11 +6649,6 @@ msgstr "" msgid "detailed enrollment" msgstr "" -#: lms/djangoapps/instructor/views/api.py -#: lms/djangoapps/instructor_task/api_helper.py -msgid "executive summary" -msgstr "" - #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor_task/api_helper.py msgid "survey" @@ -8014,7 +8009,6 @@ msgid "Currency" msgstr "Sarafu" #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: wiki/plugins/attachments/forms.py #: wiki/plugins/attachments/templates/wiki/plugins/attachments/history.html @@ -8033,8 +8027,7 @@ msgstr "Chuo kikuu" msgid "Course Announce Date" msgstr "Tarehe ya Kutangaza Kozi" -#: lms/djangoapps/shoppingcart/reports.py cms/templates/settings.html -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +#: lms/djangoapps/shoppingcart/reports.py msgid "Course Start Date" msgstr "Tarehe ya Kuanza Kozi" @@ -8063,7 +8056,6 @@ msgid "Verified Enrollment" msgstr "'Hakiki' Usajili " #: lms/djangoapps/shoppingcart/reports.py -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html msgid "Gross Revenue" msgstr "Mapato Kamili" @@ -8876,17 +8868,64 @@ msgstr "Ruhusu" msgid "Error" msgstr "Hitilafu" -#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html -msgid "Expired ID Verification" +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html +msgid "ID Verification Approved" msgstr "" +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html #: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/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 "" +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.txt +#, python-format +msgid "Your %(platform_name)s ID verification photos have been approved." +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.txt +#, python-format +msgid "" +"Your approval status remains valid for one year, and it will expire " +"%(expiry_date)s." +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.txt +msgid "Enjoy your studies," +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.txt +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +#, python-format +msgid "The %(platform_name)s Team " +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.txt +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +#, python-format +msgid "Hello %(full_name)s, " +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationapproved/email/subject.txt +#, python-format +msgid "Your %(platform_name)s ID verification was approved!" +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 #: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt #, python-format @@ -8930,22 +8969,44 @@ msgstr "" msgid "Thank you," msgstr "Asante," -#: 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 "" - -#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt -#, python-format -msgid "Hello %(full_name)s, " -msgstr "" - #: lms/templates/verify_student/edx_ace/verificationexpiry/email/subject.txt #, python-format msgid "Your %(platform_name)s Verification has Expired" msgstr "" +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +msgid "ID Verification Submitted" +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +#, python-format +msgid "" +"Thank you for submitting your photos for identity verification with " +"%(platform_name)s. " +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +msgid "" +"We have received your photos and they will be reviewed within 5-7 days." +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +#, python-format +msgid "You may check the status on your dashboard: %(dashboard_link)s " +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +msgid "Best regards," +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/subject.txt +msgid "Thank you for submitting your photos!" +msgstr "" + #: lms/templates/wiki/article.html msgid "Last modified:" msgstr "Mwisho Kuboreshwa:" @@ -9010,7 +9071,6 @@ msgstr "Unafuta makala. Tafadhali thibitisha." #: lms/templates/wiki/edit.html cms/templates/component.html #: cms/templates/container.html cms/templates/studio_xblock_wrapper.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/wiki/includes/article_menu.html msgid "Edit" msgstr "'Hariri'" @@ -10545,7 +10605,6 @@ msgstr "" msgid "Success" msgstr "Mafanikio" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/staff_problem_info.html msgid "Actions" msgstr "Matendo" @@ -12262,6 +12321,7 @@ msgid "Course Outline" msgstr "Muhtasari wa Kozi" #: cms/templates/course_outline.html +#: cms/templates/widgets/deprecated-course-key-warning.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "Warning" msgstr "" @@ -12303,11 +12363,6 @@ msgstr "Kozi" msgid "example: username@domain.com" msgstr "mfano: jina la mtumiaji@miliki.com" -#: cms/templates/settings.html -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Course End Date" -msgstr "Tarehe ya Kumaliza Kozi" - #: cms/templates/settings.html lms/templates/courseware/program_marketing.html msgid "Instructors" msgstr "Wakufunzi" @@ -15943,6 +15998,12 @@ msgstr "Hiari za kozi kwa ajili ya" msgid "Available Actions" msgstr "Mambo Yaliyopo" +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"You are enrolled by your institution and you should reach out to your " +"institution to drop this course." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_entitlement_actions.html msgid "Email Settings" @@ -16977,7 +17038,6 @@ msgid "Order History" msgstr "kumbukumbu za malipo" #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon Code" msgstr "Ongeza Namba ya Kuponi" @@ -16986,8 +17046,6 @@ msgid "Enter information about the coupon code below." msgstr "Ingiza taarifa kuhusu namba ya kuponi hapo chini." #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html msgid "Coupon Code" msgstr "Namba ya Kuponi" @@ -17075,7 +17133,6 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/certificates.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/data_download.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Pending Tasks" @@ -17084,7 +17141,6 @@ msgstr "Majukumu Yanayo subiri Maamuzi" #: lms/templates/instructor/instructor_dashboard_2/certificates.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/data_download.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "The status for any active tasks appears in a table below." msgstr "" @@ -17258,7 +17314,6 @@ msgid "Get Student Anonymized IDs CSV" msgstr "Pata CSV ya Vitambulisho vya Wanafunzi Wasiojulikana " #: lms/templates/instructor/instructor_dashboard_2/data_download.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Reports" msgstr "Taarifa / Habari" @@ -17422,281 +17477,6 @@ msgid "" "policies.{li_end}{ul_end}" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enrollment Codes" -msgstr "Namba za Usajili" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Create one or more pre-paid course enrollment codes. Students can use these " -"codes to enroll in the course." -msgstr "" -"Tengeneza moja au zaidi ya vificho vya malipo kabla kwa usajili wa kozi. " -"Wanafunzi wanaweza kutumia vificho hivi kujisajili katika kozi." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -msgid "Create Enrollment Codes" -msgstr "Buni Vificho vya Usajili" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Cancel, restore, or mark an enrollment code as unused." -msgstr "Futa, rudisha upya, au weka alama namba za usajili kama hazijatumika." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Change Enrollment Code Status" -msgstr "Badilisha Hali ya Namba za Usajili" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download a .csv file of all enrollment codes for this course." -msgstr "Pakua faili la .csv ya vificho vyote vya usajili vya kozi hii." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download All Enrollment Codes" -msgstr "Pakua Namba Zote za Usajili" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download a .csv file of all unused enrollment codes for this course." -msgstr "Pakua faili la .csv la vificho vyote havijatumika vya kozi hii." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download Unused Enrollment Codes" -msgstr "Pakua Namba za Usajili Zisizotumika" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download a .csv file of all used enrollment codes for this course." -msgstr "" -"Pakua faili la .csv na vificho vyote vya usajili vilivyotumika katika kozi " -"hii." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download Used Enrollment Codes" -msgstr "Pakua Namba za Usajili Zilizotumika" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html -msgid "Course Price" -msgstr "Bei ya Kozi" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Course price per seat: " -msgstr "Bei ya kozi kwa kila kikao:" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Edit Price" -msgstr "Hariri Bei" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Course Seat Purchases" -msgstr "Ununuzi wa Kikao cha Kozi" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Total Credit Card Purchases: " -msgstr "Jumla ya Ununuzi kupitia Kadi za Malipo: " - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Download a .csv file for all credit card purchases or for all invoices, " -"regardless of status." -msgstr "" -"Pakua faili ya .csv kwa ununuzi kupitia kadi zote za malipo au kwa ankara " -"zote, licha ya hali halisi ilivyo." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download All Invoices" -msgstr "Pakua bili zote" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download All Credit Card Purchases" -msgstr "Pakua ununuzi wote wa kupitia kadi za kukopea" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "To cancel or resubmit an invoice, enter the invoice number below." -msgstr "" -"Kubatilisha au kuwasilisha tena bili, ingiza namba ya bili hapo chini." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Invoice Number" -msgstr "Nambari ya Ankara" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Cancel Invoice" -msgstr "Futa Ankara" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Resubmit Invoice" -msgstr "Fikisha upya Ankara" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Create a .csv file that contains enrollment information for your course." -msgstr "Tengeneza faili la .csv lenye taarifa za usajili kwa ajili kozi yako." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Create Enrollment Report" -msgstr "Tengeneza Ripoti za Usajili" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Create an HTML file that contains an executive summary for this course." -msgstr "Tengeneza faili la HTML lenye muhtasari mkuu kwa ajili ya kozi hii." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Create Executive Summary" -msgstr "Tengeneza Muhtasari kwa Mkuu" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Available Reports" -msgstr "Habari ziliopo" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"The following reports are available for download. Reports are not deleted. A" -" link to every report remains available on this page, identified by the date" -" and time (in UTC) that the report was generated." -msgstr "" -"Taarifa ifuatayo ipo tayari kwa ajili ya kupakuliwa. Taarifa/Ripoti " -"hazifutwi. Muunganiko wa kila ripoti unapatikana kwenye huu ukurasa, " -"inayotambuliwa na tarehe na muda (wa UTC) ambazo ripoti ilizalishiwa." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"{strong_start}Note{strong_end}: To help protect learner data, links to these" -" reports that you save outside of this page or that you send or receive in " -"email expire after five minutes." -msgstr "" -"{strong_start}Zingatia{strong_end}: Ili kulinda taarifa za mwanafunzi, " -"viunganishi vya kwenye ripoti hizi unazohifadhi nje ya ukurasa au unaotuma " -"au unaopokea kwenye barua pepe hupotea baada ya dakika tano." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Coupon Code List" -msgstr "Orodha ya Namba za Kuponi" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download a .csv file of all coupon codes for this course." -msgstr "Pakua faili ya .csv ya vificho vya kuponi zote katika kozi hii." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download Coupon Codes" -msgstr "Pakua Namba za Kuponi" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Coupon Codes" -msgstr "Tambulizi ya Koponi" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html -msgid "Expiration Date" -msgstr "Tarehe ya Kumalizika/Kutofaa" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Coupon (%)" -msgstr "Kuponi (%)" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Number Redeemed" -msgstr "Namba iliyokombolewa" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "{code}" -msgstr "{code}" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "{description}" -msgstr "{description}" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "{discount}" -msgstr "{discount}" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The Invoice Number field cannot be empty." -msgstr "Sehemu ya namba ya bili haiwezi kuwa wazi." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "No Expiration Date" -msgstr "Hakuna Tarehe ya Mwisho " - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the company name." -msgstr "Ingiza / Weka jina la kampuni." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The company name cannot be a number." -msgstr "Jina la kampuni haliwezi kuwa na namba." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the company contact name." -msgstr "Ingiza / Weka jina la mawasiliano ya kampuni." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The company contact name cannot be a number." -msgstr "Jina la mawasiliano kwa kampuni haliwezi kuwa na namba." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the email address for the company contact." -msgstr "Weka/Ingiza anwani ya barua pepe ya mawasiliano ya kampuni." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter a valid email address." -msgstr "Weka anwani ya barua pepe itumikayo. " - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the recipient name." -msgstr "Ingiza / Weka jina la mpokeaji." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The recipient name cannot be a number." -msgstr "Jina la mpokeaji haliwezi kuwa na namba." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the recipient email address." -msgstr "Ingiza / Weka anwani ya barua pepe ya mpokeaji." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the billing address." -msgstr "Ingiza / Weka anwani ya mlipaji." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the price per course seat." -msgstr "Ingiza bei kwa kila kikao cha kozi." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Enter a numeric value for the price per course seat. Do not include currency" -" symbols." -msgstr "" -"Ingiza tathmini ya namba kwa bei ya kila kikao cha kozi. Usiingize alama za " -"sarafu." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the number of enrollment codes." -msgstr "Ingiza idadi ya namba ya waliosajiliwa." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter a numeric value for the number of enrollment codes." -msgstr "Ingiza thamani ya namba kwa ajili ya idadi ya msimbo wa usajili." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Select a currency." -msgstr "Chagua sarafu." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter a coupon code." -msgstr "Ingiza namba ya kuponi." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The discount percentage must be less than or equal to 100." -msgstr "Punguzo linatakiwa liwe chini ya asilimia au sawa 100." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Enter a numeric value for the discount amount. Do not include the percent " -"sign." -msgstr "" -"Ingiza thamani ya namba ya kiasi cha punguzo. Usiweke alama ya asilimia." - #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Edit Coupon Code" msgstr "Hariri Namba ya Kuponi" @@ -17717,100 +17497,14 @@ msgstr "mfano: A123DS" msgid "Percentage Discount" msgstr "Punguzo la Asilimia" +#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html +msgid "Expiration Date" +msgstr "Tarehe ya Kumalizika/Kutofaa" + #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon Code" msgstr "Sasisha Namba ya Kuponi" -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Executive Summary for {display_name}" -msgstr "Muhtasari Mkuu kwa ajili ya {display_name}" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Report Creation Date" -msgstr "Toa Taarifa kuhusu Tarehe ya Utengenezaji" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of Seats" -msgstr "Idadi ya Vikao" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of Enrollments" -msgstr "Idadi ya Usajili" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Gross Revenue Collected" -msgstr "Jumla Kuu ya Mapato Yaliyokusanywa" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Gross Revenue Pending" -msgstr "Jumla Kuu ya Mapato Yanayohitaji Kushughulikiwa" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of Enrollment Refunds" -msgstr "Idadi ya Marejesho ya Fedha kwa Waliosajiliwa" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Amount Refunded" -msgstr "Kiasi cha Fedha Zilizorudishwa" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Average Price per Seat" -msgstr "Bei Wastani kwa kila Kikao" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Frequently Used Coupon Codes" -msgstr "Namba za Kuponi Zilizotumika mara kwa mara" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of seats purchased using coupon codes" -msgstr "Idadi ya vikao vilivyo nunuliwa kutumia namba za kuponi" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Rank" -msgstr "Cheo" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Percent Discount" -msgstr "Asilimia ya Upunguzaji bei kwa Maridhiano" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Times Used" -msgstr "Mara zilizo Tumika" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Bulk and Single Seat Purchases" -msgstr "Ununuzi wa kikao Kimoja na kwa Wingi" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of seats purchased individually" -msgstr "Idadi ya vikao vilivyo nunuliwa kibinafsi" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of seats purchased in bulk" -msgstr "Idadi ya vikao vilivyo nunuliwa kwa wingi" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of seats purchased with invoices" -msgstr "Idadi ya vikao vilivyo nunuliwa kwa ankara" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Unused bulk purchase seats (revenue at risk)" -msgstr "" -"Vikao vilivyo nunuliwa kwa wingi ambavyo havijatumika (mapato yaliyo " -"hatarini)" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Percentage of seats purchased individually" -msgstr "Asilimia ya vikao vilivyo nunuliwa kibinafsi" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Percentage of seats purchased in bulk" -msgstr "Asilimia ya vikao vilivyo nunuliwa kwa wingi" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Percentage of seats purchased with invoices" -msgstr "Asilimia ya jozi zilizonunuliwa kwa ankara" - #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Individual due date extensions" msgstr "Tarehe za mwisho zilizoongezwa kwa kila mmoja" @@ -17906,6 +17600,10 @@ msgstr "Rekebisha tarehe husika kwa wanafunzi" msgid "Generate Registration Code Modal" msgstr "Elezea hali ya namba ya kujisajili" +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "Create Enrollment Codes" +msgstr "Buni Vificho vya Usajili" + #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "* Required Information" msgstr "Taarifa Inayohitajika" @@ -18419,10 +18117,18 @@ msgstr "Weka Bei ya Mtindo wa Kozi" msgid "Please enter Course Mode detail below" msgstr "Tafadhali ingiza utondoti wa Mtindo wa Kozi hapo chini" +#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html +msgid "Course Price" +msgstr "Bei ya Kozi" + #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Price" msgstr "Weka Bei" +#: lms/templates/instructor/instructor_dashboard_2/special_exams.html +msgid "Proctortrack Escalation Email:" +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/special_exams.html msgid "Allowance Section" msgstr "Kifungu cha Kukubali" @@ -22543,6 +22249,10 @@ msgstr "Muda wa Kuanza Kozi" msgid "(UTC)" msgstr "(UTC)" +#: cms/templates/settings.html +msgid "Course End Date" +msgstr "" + #: cms/templates/settings.html msgid "Last day your course is active" msgstr "Siku ya mwisho ambayo kozi yako iliwezeshwa" @@ -23327,6 +23037,24 @@ msgstr "" msgid "Return to the {link_start}home page{link_end}." msgstr "Rudi kwenye {link_start}ukurusa wa nyumbani{link_end}." +#: cms/templates/widgets/deprecated-course-key-warning.html +msgid "Support will be removed in an upcoming release." +msgstr "" + +#: cms/templates/widgets/deprecated-course-key-warning.html +msgid "Support will be removed on {expiration_date}." +msgstr "" + +#: cms/templates/widgets/deprecated-course-key-warning.html +msgid "This course uses a legacy storage format." +msgstr "" + +#: cms/templates/widgets/deprecated-course-key-warning.html +msgid "" +"Please reach out to your support team contact, if you have any additional " +"questions or concerns." +msgstr "" + #: cms/templates/widgets/footer.html msgid "Policies" msgstr "" diff --git a/conf/locale/sw_KE/LC_MESSAGES/djangojs.po b/conf/locale/sw_KE/LC_MESSAGES/djangojs.po index a006da3c00..ea353a8f61 100644 --- a/conf/locale/sw_KE/LC_MESSAGES/djangojs.po +++ b/conf/locale/sw_KE/LC_MESSAGES/djangojs.po @@ -71,7 +71,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2020-06-28 20:42+0000\n" +"POT-Creation-Date: 2020-07-05 20:42+0000\n" "PO-Revision-Date: 2020-06-14 20:45+0000\n" "Last-Translator: edx_transifex_bot \n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/open-edx/edx-platform/language/sw_KE/)\n" diff --git a/conf/locale/tr_TR/LC_MESSAGES/django.mo b/conf/locale/tr_TR/LC_MESSAGES/django.mo index 3c0c059139..c85e6cae99 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 cdd1cb69e9..c5c3188b1d 100644 --- a/conf/locale/tr_TR/LC_MESSAGES/django.po +++ b/conf/locale/tr_TR/LC_MESSAGES/django.po @@ -129,7 +129,7 @@ msgid "" msgstr "" "Project-Id-Version: 0.1a\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2020-06-28 20:42+0000\n" +"POT-Creation-Date: 2020-07-05 20:42+0000\n" "PO-Revision-Date: 2019-01-20 20:43+0000\n" "Last-Translator: Ali Işıngör , 2019\n" "Language-Team: Turkish (Turkey) (https://www.transifex.com/open-edx/teams/6205/tr_TR/)\n" @@ -7172,11 +7172,6 @@ msgstr "" msgid "detailed enrollment" msgstr "ayrıntılı kayıtlanma" -#: lms/djangoapps/instructor/views/api.py -#: lms/djangoapps/instructor_task/api_helper.py -msgid "executive summary" -msgstr "yönetici özeti" - #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor_task/api_helper.py msgid "survey" @@ -8698,7 +8693,6 @@ msgstr "Para" #: lms/djangoapps/shoppingcart/reports.py #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: wiki/plugins/attachments/forms.py #: wiki/plugins/attachments/templates/wiki/plugins/attachments/history.html @@ -8717,8 +8711,7 @@ msgstr "Üniversite" msgid "Course Announce Date" msgstr "Ders Duyuru Tarihi" -#: lms/djangoapps/shoppingcart/reports.py cms/templates/settings.html -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +#: lms/djangoapps/shoppingcart/reports.py msgid "Course Start Date" msgstr "Ders Başlama Tarihi" @@ -8747,7 +8740,6 @@ msgid "Verified Enrollment" msgstr "Geçerli Kayıt" #: lms/djangoapps/shoppingcart/reports.py -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html msgid "Gross Revenue" msgstr "Brüt Hasılat" @@ -9623,17 +9615,64 @@ msgstr "İzin ver" msgid "Error" msgstr "Hata" -#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html -msgid "Expired ID Verification" -msgstr "Süresi Geçmiş Kimlik Doğrulama" +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html +msgid "ID Verification Approved" +msgstr "" +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html #: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/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 "Merhaba %(full_name)s," +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.txt +#, python-format +msgid "Your %(platform_name)s ID verification photos have been approved." +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.txt +#, python-format +msgid "" +"Your approval status remains valid for one year, and it will expire " +"%(expiry_date)s." +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.txt +msgid "Enjoy your studies," +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.txt +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +#, python-format +msgid "The %(platform_name)s Team " +msgstr "%(platform_name)s Ekibi" + +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.txt +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +#, python-format +msgid "Hello %(full_name)s, " +msgstr "Merhaba %(full_name)s, " + +#: lms/templates/verify_student/edx_ace/verificationapproved/email/subject.txt +#, python-format +msgid "Your %(platform_name)s ID verification was approved!" +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html +msgid "Expired ID Verification" +msgstr "Süresi Geçmiş Kimlik Doğrulama" + #: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html #: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt #, python-format @@ -9679,22 +9718,44 @@ msgstr "Kimlik Doğrulama SSS: %(help_center_link)s " msgid "Thank you," msgstr "Teşekkürler," -#: 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 Ekibi" - -#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt -#, python-format -msgid "Hello %(full_name)s, " -msgstr "Merhaba %(full_name)s, " - #: lms/templates/verify_student/edx_ace/verificationexpiry/email/subject.txt #, python-format msgid "Your %(platform_name)s Verification has Expired" msgstr "" +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +msgid "ID Verification Submitted" +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +#, python-format +msgid "" +"Thank you for submitting your photos for identity verification with " +"%(platform_name)s. " +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +msgid "" +"We have received your photos and they will be reviewed within 5-7 days." +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +#, python-format +msgid "You may check the status on your dashboard: %(dashboard_link)s " +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +msgid "Best regards," +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/subject.txt +msgid "Thank you for submitting your photos!" +msgstr "" + #: lms/templates/wiki/article.html msgid "Last modified:" msgstr "Son güncelleme:" @@ -9775,7 +9836,6 @@ msgstr "Bir yazıyı silmek üzeresiniz. Lütfen onaylayın." #: lms/templates/wiki/edit.html cms/templates/component.html #: cms/templates/container.html cms/templates/studio_xblock_wrapper.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/wiki/includes/article_menu.html wiki/templates/wiki/edit.html #: wiki/templates/wiki/includes/article_menu.html msgid "Edit" @@ -11398,7 +11458,6 @@ msgid "Success" msgstr "Başarı" #: openedx/core/djangoapps/user_api/admin.py -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/staff_problem_info.html msgid "Actions" msgstr "Eylemler" @@ -13183,6 +13242,7 @@ msgid "Course Outline" msgstr "Ders Taslağı" #: cms/templates/course_outline.html +#: cms/templates/widgets/deprecated-course-key-warning.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "Warning" msgstr "Uyarı" @@ -13224,11 +13284,6 @@ msgstr "Dersler" msgid "example: username@domain.com" msgstr "örnek: mehmet@siteadi.com" -#: cms/templates/settings.html -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Course End Date" -msgstr "Ders Bitiş Tarihi" - #: cms/templates/settings.html lms/templates/courseware/program_marketing.html msgid "Instructors" msgstr "Eğitmenler" @@ -16824,6 +16879,12 @@ msgstr "" msgid "Available Actions" msgstr "Kullanılabilir Faaliyetler" +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"You are enrolled by your institution and you should reach out to your " +"institution to drop this course." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_entitlement_actions.html msgid "Email Settings" @@ -17875,7 +17936,6 @@ msgid "Order History" msgstr "Sipariş Geçmişi" #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon Code" msgstr "Kupon Kodu Ekle" @@ -17884,8 +17944,6 @@ msgid "Enter information about the coupon code below." msgstr "Aşağıdaki kupon kodu bilgilerini girin." #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html msgid "Coupon Code" msgstr "Kupon Kodu" @@ -17974,7 +18032,6 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/certificates.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/data_download.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Pending Tasks" @@ -17983,7 +18040,6 @@ msgstr "Bekleyen Görevler" #: lms/templates/instructor/instructor_dashboard_2/certificates.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/data_download.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "The status for any active tasks appears in a table below." msgstr "Aşağıdaki tabloda aktif olan görevlerin durumu görülmektedir." @@ -18158,7 +18214,6 @@ msgid "Get Student Anonymized IDs CSV" msgstr "Anonim Öğrenci Numaralarını CSV Olarak Getir" #: lms/templates/instructor/instructor_dashboard_2/data_download.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Reports" msgstr "Raporlar" @@ -18324,279 +18379,6 @@ msgid "" "policies.{li_end}{ul_end}" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enrollment Codes" -msgstr "Kayıtlanma Kodları" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Create one or more pre-paid course enrollment codes. Students can use these " -"codes to enroll in the course." -msgstr "" -"Bir veya daha fazla ön ödemeli ders kayıt kodları oluşturun. Öğrenciler bu " -"kodları derse kaydolmak için kullanabilirler." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -msgid "Create Enrollment Codes" -msgstr "Kayıtlanma Kodları Oluştur" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Cancel, restore, or mark an enrollment code as unused." -msgstr "" -"Kayıtlanma kodunu kullanılmayan olarak iptal et, yenile ya da işaretle " - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Change Enrollment Code Status" -msgstr "Kayıt Kodu Durumunu değiştirin" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download a .csv file of all enrollment codes for this course." -msgstr "Bu dersin tüm kayıt kodlarının bir .csv dosyasını indirin." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download All Enrollment Codes" -msgstr "Tüm Kayıtlanma Kodlarını İndir" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download a .csv file of all unused enrollment codes for this course." -msgstr "" -"Bu dersin tüm kullanılmayan kayıt kodlarının bir .csv dosyasını indirin." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download Unused Enrollment Codes" -msgstr "Kullanılmamış Kayıtlanma Kodlarını İndir" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download a .csv file of all used enrollment codes for this course." -msgstr "Bu dersin tüm kullanılan kayıt kodlarının bir .csv dosyasını indirin." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download Used Enrollment Codes" -msgstr "Kullanılmış Kayıtlanma Kodlarını İndir" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html -msgid "Course Price" -msgstr "Ders Ücreti" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Course price per seat: " -msgstr "Koltuk başı ders fiyatı:" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Edit Price" -msgstr "Ücreti Düzenle" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Course Seat Purchases" -msgstr "Ders Koltuk Satın Almaları" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Total Credit Card Purchases: " -msgstr "Toplam Kredi Kartı Satın Almaları:" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Download a .csv file for all credit card purchases or for all invoices, " -"regardless of status." -msgstr "" -"Tüm kredi kartı alımları veya tüm faturalar için, duruma bakmaksızın bir " -".csv dosyası indirin." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download All Invoices" -msgstr "Tüm Faturaları İndir" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download All Credit Card Purchases" -msgstr "Tüm kredi kartı alımlarını indirin" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "To cancel or resubmit an invoice, enter the invoice number below." -msgstr "" -"Faturanızı iptal etmek veya yeniden yollamak için, aşağıdaki fatura " -"numarasını girin." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Invoice Number" -msgstr "Fatura Numarası" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Cancel Invoice" -msgstr "Faturayı İptal Et" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Resubmit Invoice" -msgstr "Faturayı Yeniden Yükle" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Create a .csv file that contains enrollment information for your course." -msgstr "Dersiniz için kayıt bilgilerini içeren bir .csv dosyası oluşturun." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Create Enrollment Report" -msgstr "Kayıtlanma Raporu Oluştur" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Create an HTML file that contains an executive summary for this course." -msgstr "Bu ders için bir yönetici özeti içeren bir HTML dosyası oluşturun." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Create Executive Summary" -msgstr "Yönetici Özeti Oluştur" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Available Reports" -msgstr "Mevcut Raporlar" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"The following reports are available for download. Reports are not deleted. A" -" link to every report remains available on this page, identified by the date" -" and time (in UTC) that the report was generated." -msgstr "" -"Aşağıdaki raporlar yüklenmek için uygundur. Raporlar silinmez. Her rapora " -"bir bağlantı bu sayfada uygun kalır, raporun oluşturulduğu tarih ve saat " -"tarafından (UTC içinde) belirlenir." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"{strong_start}Note{strong_end}: To help protect learner data, links to these" -" reports that you save outside of this page or that you send or receive in " -"email expire after five minutes." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Coupon Code List" -msgstr "Kupon Kodu Listesi" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download a .csv file of all coupon codes for this course." -msgstr "Bu dersin tüm kupon kodlarının bir .csv dosyasını indirin." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download Coupon Codes" -msgstr "Kupon Kodu İndir" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Coupon Codes" -msgstr "Kupon Kodu" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html -msgid "Expiration Date" -msgstr "Bitiş Tarihi" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Coupon (%)" -msgstr "Kupon (%)" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Number Redeemed" -msgstr "Sayı intifa" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "{code}" -msgstr "{code}" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "{description}" -msgstr "{description}" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "{discount}" -msgstr "{discount}" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The Invoice Number field cannot be empty." -msgstr "Fatura Numarası alanı boş olamaz." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "No Expiration Date" -msgstr "Bitiş Tarihi Yok" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the company name." -msgstr "Şirket ismini girin." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The company name cannot be a number." -msgstr "Şirket ismi sayı olamaz." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the company contact name." -msgstr "Şirket yetkilisinin ismini girin." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The company contact name cannot be a number." -msgstr "Şirket yetkilisinin ismi sayı olamaz." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the email address for the company contact." -msgstr "Şirket yetkilisinin eposta adresini girin." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter a valid email address." -msgstr "Geçerli bir eposta adresi girin." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the recipient name." -msgstr "Alıcı adını girin." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The recipient name cannot be a number." -msgstr "Alıcının adı bir sayı olamaz." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the recipient email address." -msgstr "Alıcının E-posta adresini giriniz." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the billing address." -msgstr "Fatura adreslerini giriniz." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the price per course seat." -msgstr "Koltuk başına ders fiyatını girin." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Enter a numeric value for the price per course seat. Do not include currency" -" symbols." -msgstr "" -"Koltuk başına ders fiyatının nümerik değerini girin. Para sembollerini dâhil" -" etmeyin." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the number of enrollment codes." -msgstr "Kayıt kodlarının numarasını girin." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter a numeric value for the number of enrollment codes." -msgstr "Kayıt kodları numaralarının nümerik değerini girin." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Select a currency." -msgstr "Para birimi seçin." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter a coupon code." -msgstr "Kupon kodu giriniz." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The discount percentage must be less than or equal to 100." -msgstr "İndirim yüzdeleri 100 den küçük veya 100 e eşit olmalıdır." - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Enter a numeric value for the discount amount. Do not include the percent " -"sign." -msgstr "" -"İndirim miktarlarının nümerik değerini girin. Yüzde işaretini dahil etmeyin." - #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Edit Coupon Code" msgstr "Kupon Kodunu Düzenle" @@ -18617,98 +18399,14 @@ msgstr "örnek: A123DS" msgid "Percentage Discount" msgstr "İndirim Yüzdesi" +#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html +msgid "Expiration Date" +msgstr "Bitiş Tarihi" + #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon Code" msgstr "Kupon Kodunu Güncelle" -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Executive Summary for {display_name}" -msgstr " {display_name} için Yönetici Özeti " - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Report Creation Date" -msgstr "Raporun Oluşturulma Tarihi" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of Seats" -msgstr "Yer Sayısı" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of Enrollments" -msgstr "Kayıtlanma Sayısı" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Gross Revenue Collected" -msgstr "Toplanan Brüt Hasılat" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Gross Revenue Pending" -msgstr "Beklenen Brüt Hasılat" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of Enrollment Refunds" -msgstr "Kayıtlanma İade Sayısı" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Amount Refunded" -msgstr "İade Edilmiş Miktar" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Average Price per Seat" -msgstr "Yer Başına Düşen Ortalama Ücret" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Frequently Used Coupon Codes" -msgstr "Sıklıkla Kullanılan Kupon Kodları" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of seats purchased using coupon codes" -msgstr "Kupon kodu kullanılarak alınan yer sayısı" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Rank" -msgstr "Sıra" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Percent Discount" -msgstr "İndirim Yüzdesi" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Times Used" -msgstr "Kullanılmış zamanlar" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Bulk and Single Seat Purchases" -msgstr "Toplu ve Tek Yer Alımları" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of seats purchased individually" -msgstr "Bireysel olarak alınan yer sayısı" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of seats purchased in bulk" -msgstr "Toplu olarak alınan yer sayısı" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of seats purchased with invoices" -msgstr "Fatura ile alınan yer sayısı" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Unused bulk purchase seats (revenue at risk)" -msgstr "Kullanılmayan toplu alım yerleri (risk altındaki hasılat)" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Percentage of seats purchased individually" -msgstr "Bireysel olarak alınan yerlerin yüzdesi" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Percentage of seats purchased in bulk" -msgstr "Toplu olarak alınan yerlerin yüzdesi" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Percentage of seats purchased with invoices" -msgstr "Fatura ile alınan yerlerin yüzdesi" - #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Individual due date extensions" msgstr "bireysel teslim süresi uzatımları" @@ -18805,6 +18503,10 @@ msgstr "Teslim tarihini sıfırla" msgid "Generate Registration Code Modal" msgstr "Kayıt Kod Kipi Oluştur" +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "Create Enrollment Codes" +msgstr "Kayıtlanma Kodları Oluştur" + #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "* Required Information" msgstr "* Gerekli Bilgi" @@ -19335,10 +19037,18 @@ msgstr "Ders Modu Fiyatı Ayarlama" msgid "Please enter Course Mode detail below" msgstr "Lütfen aşağıya Ders Modu detaylarını girin" +#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html +msgid "Course Price" +msgstr "Ders Ücreti" + #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Price" msgstr "Ücret Belirle" +#: lms/templates/instructor/instructor_dashboard_2/special_exams.html +msgid "Proctortrack Escalation Email:" +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/special_exams.html msgid "Allowance Section" msgstr "Ödenek Bölümü" @@ -23721,6 +23431,10 @@ msgstr "Ders Başlangıç Saati" msgid "(UTC)" msgstr "(UTC)" +#: cms/templates/settings.html +msgid "Course End Date" +msgstr "" + #: cms/templates/settings.html msgid "Last day your course is active" msgstr "Dersinizin aktif olduğu son gün." @@ -24565,6 +24279,24 @@ msgstr "" msgid "Return to the {link_start}home page{link_end}." msgstr "{link_start}Ana sayfaya{link_end} geri dön." +#: cms/templates/widgets/deprecated-course-key-warning.html +msgid "Support will be removed in an upcoming release." +msgstr "" + +#: cms/templates/widgets/deprecated-course-key-warning.html +msgid "Support will be removed on {expiration_date}." +msgstr "" + +#: cms/templates/widgets/deprecated-course-key-warning.html +msgid "This course uses a legacy storage format." +msgstr "" + +#: cms/templates/widgets/deprecated-course-key-warning.html +msgid "" +"Please reach out to your support team contact, if you have any additional " +"questions or concerns." +msgstr "" + #: cms/templates/widgets/footer.html msgid "Policies" msgstr "Politikalar" diff --git a/conf/locale/tr_TR/LC_MESSAGES/djangojs.po b/conf/locale/tr_TR/LC_MESSAGES/djangojs.po index c62cced328..c1711e7833 100644 --- a/conf/locale/tr_TR/LC_MESSAGES/djangojs.po +++ b/conf/locale/tr_TR/LC_MESSAGES/djangojs.po @@ -107,7 +107,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2020-06-28 20:42+0000\n" +"POT-Creation-Date: 2020-07-05 20:42+0000\n" "PO-Revision-Date: 2020-06-14 20:45+0000\n" "Last-Translator: edx_transifex_bot \n" "Language-Team: Turkish (Turkey) (http://www.transifex.com/open-edx/edx-platform/language/tr_TR/)\n" diff --git a/conf/locale/uk/LC_MESSAGES/django.mo b/conf/locale/uk/LC_MESSAGES/django.mo index 84f55e30be..a740b26a36 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 1adaa13c83..cb7a3cdbad 100644 --- a/conf/locale/uk/LC_MESSAGES/django.po +++ b/conf/locale/uk/LC_MESSAGES/django.po @@ -122,7 +122,7 @@ msgid "" msgstr "" "Project-Id-Version: 0.1a\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2020-06-28 20:42+0000\n" +"POT-Creation-Date: 2020-07-05 20:42+0000\n" "PO-Revision-Date: 2019-01-20 20:43+0000\n" "Last-Translator: Waheed Ahmed , 2019\n" "Language-Team: Ukrainian (https://www.transifex.com/open-edx/teams/6205/uk/)\n" @@ -7268,11 +7268,6 @@ msgstr "" msgid "detailed enrollment" msgstr "деталі запису" -#: lms/djangoapps/instructor/views/api.py -#: lms/djangoapps/instructor_task/api_helper.py -msgid "executive summary" -msgstr "зведений звіт" - #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor_task/api_helper.py msgid "survey" @@ -8791,8 +8786,7 @@ msgstr "Університет" msgid "Course Announce Date" msgstr "Дата анонсу курсу" -#: lms/djangoapps/shoppingcart/reports.py cms/templates/settings.html -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +#: lms/djangoapps/shoppingcart/reports.py msgid "Course Start Date" msgstr "Дата початку курсу" @@ -9678,17 +9672,64 @@ msgstr "Дозволити" msgid "Error" msgstr "Помилка" -#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html -msgid "Expired ID Verification" +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html +msgid "ID Verification Approved" msgstr "" +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html #: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/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/verificationapproved/email/body.html +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.txt +#, python-format +msgid "Your %(platform_name)s ID verification photos have been approved." +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.txt +#, python-format +msgid "" +"Your approval status remains valid for one year, and it will expire " +"%(expiry_date)s." +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.txt +msgid "Enjoy your studies," +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.txt +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +#, python-format +msgid "The %(platform_name)s Team " +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.txt +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +#, python-format +msgid "Hello %(full_name)s, " +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationapproved/email/subject.txt +#, python-format +msgid "Your %(platform_name)s ID verification was approved!" +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 #: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt #, python-format @@ -9734,22 +9775,44 @@ msgstr "" 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 "" - -#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt -#, python-format -msgid "Hello %(full_name)s, " -msgstr "" - #: lms/templates/verify_student/edx_ace/verificationexpiry/email/subject.txt #, python-format msgid "Your %(platform_name)s Verification has Expired" msgstr "" +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +msgid "ID Verification Submitted" +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +#, python-format +msgid "" +"Thank you for submitting your photos for identity verification with " +"%(platform_name)s. " +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +msgid "" +"We have received your photos and they will be reviewed within 5-7 days." +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +#, python-format +msgid "You may check the status on your dashboard: %(dashboard_link)s " +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +msgid "Best regards," +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/subject.txt +msgid "Thank you for submitting your photos!" +msgstr "" + #: lms/templates/wiki/article.html msgid "Last modified:" msgstr "Востаннє було змінено:" @@ -9830,7 +9893,6 @@ msgstr "Ви видаляєте статтю. Будь ласка, підтве #: lms/templates/wiki/edit.html cms/templates/component.html #: cms/templates/container.html cms/templates/studio_xblock_wrapper.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/wiki/includes/article_menu.html wiki/templates/wiki/edit.html #: wiki/templates/wiki/includes/article_menu.html msgid "Edit" @@ -13237,6 +13299,7 @@ msgid "Course Outline" msgstr "Структура курсу" #: cms/templates/course_outline.html +#: cms/templates/widgets/deprecated-course-key-warning.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "Warning" msgstr "" @@ -13278,11 +13341,6 @@ msgstr "Курси" msgid "example: username@domain.com" msgstr "приклад: username@domain.com" -#: cms/templates/settings.html -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Course End Date" -msgstr "Дата завершення курсу" - #: cms/templates/settings.html lms/templates/courseware/program_marketing.html msgid "Instructors" msgstr "Викладачі" @@ -16713,6 +16771,12 @@ msgstr "" msgid "Available Actions" msgstr "" +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"You are enrolled by your institution and you should reach out to your " +"institution to drop this course." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_entitlement_actions.html msgid "Email Settings" @@ -17656,7 +17720,6 @@ msgid "Order History" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon Code" msgstr "" @@ -17665,8 +17728,6 @@ msgid "Enter information about the coupon code below." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html msgid "Coupon Code" msgstr "" @@ -17748,7 +17809,6 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/certificates.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/data_download.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Pending Tasks" @@ -17757,7 +17817,6 @@ msgstr "Запущені задачі" #: lms/templates/instructor/instructor_dashboard_2/certificates.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/data_download.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "The status for any active tasks appears in a table below." msgstr "" @@ -17933,7 +17992,6 @@ msgid "Get Student Anonymized IDs CSV" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Reports" msgstr "Звіти" @@ -18089,265 +18147,6 @@ msgid "" "policies.{li_end}{ul_end}" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enrollment Codes" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Create one or more pre-paid course enrollment codes. Students can use these " -"codes to enroll in the course." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -msgid "Create Enrollment Codes" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Cancel, restore, or mark an enrollment code as unused." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Change Enrollment Code Status" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download a .csv file of all enrollment codes for this course." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download All Enrollment Codes" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download a .csv file of all unused enrollment codes for this course." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download Unused Enrollment Codes" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download a .csv file of all used enrollment codes for this course." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download Used Enrollment Codes" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html -msgid "Course Price" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Course price per seat: " -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Edit Price" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Course Seat Purchases" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Total Credit Card Purchases: " -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Download a .csv file for all credit card purchases or for all invoices, " -"regardless of status." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download All Invoices" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download All Credit Card Purchases" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "To cancel or resubmit an invoice, enter the invoice number below." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Invoice Number" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Cancel Invoice" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Resubmit Invoice" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Create a .csv file that contains enrollment information for your course." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Create Enrollment Report" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Create an HTML file that contains an executive summary for this course." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Create Executive Summary" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Available Reports" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"The following reports are available for download. Reports are not deleted. A" -" link to every report remains available on this page, identified by the date" -" and time (in UTC) that the report was generated." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"{strong_start}Note{strong_end}: To help protect learner data, links to these" -" reports that you save outside of this page or that you send or receive in " -"email expire after five minutes." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Coupon Code List" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download a .csv file of all coupon codes for this course." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download Coupon Codes" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Coupon Codes" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html -msgid "Expiration Date" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Coupon (%)" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Number Redeemed" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "{code}" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "{description}" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "{discount}" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The Invoice Number field cannot be empty." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "No Expiration Date" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the company name." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The company name cannot be a number." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the company contact name." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The company contact name cannot be a number." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the email address for the company contact." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter a valid email address." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the recipient name." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The recipient name cannot be a number." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the recipient email address." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the billing address." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the price per course seat." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Enter a numeric value for the price per course seat. Do not include currency" -" symbols." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the number of enrollment codes." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter a numeric value for the number of enrollment codes." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Select a currency." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter a coupon code." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The discount percentage must be less than or equal to 100." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Enter a numeric value for the discount amount. Do not include the percent " -"sign." -msgstr "" - #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Edit Coupon Code" msgstr "" @@ -18368,98 +18167,14 @@ msgstr "" msgid "Percentage Discount" msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html +msgid "Expiration Date" +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon Code" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Executive Summary for {display_name}" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Report Creation Date" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of Seats" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of Enrollments" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Gross Revenue Collected" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Gross Revenue Pending" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of Enrollment Refunds" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Amount Refunded" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Average Price per Seat" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Frequently Used Coupon Codes" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of seats purchased using coupon codes" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Rank" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Percent Discount" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Times Used" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Bulk and Single Seat Purchases" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of seats purchased individually" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of seats purchased in bulk" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of seats purchased with invoices" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Unused bulk purchase seats (revenue at risk)" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Percentage of seats purchased individually" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Percentage of seats purchased in bulk" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Percentage of seats purchased with invoices" -msgstr "" - #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Individual due date extensions" msgstr "" @@ -18552,6 +18267,10 @@ msgstr "" msgid "Generate Registration Code Modal" msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "Create Enrollment Codes" +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "* Required Information" msgstr "" @@ -19039,10 +18758,18 @@ msgstr "" msgid "Please enter Course Mode detail below" msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html +msgid "Course Price" +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Price" msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/special_exams.html +msgid "Proctortrack Escalation Email:" +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/special_exams.html msgid "Allowance Section" msgstr "" @@ -23072,6 +22799,10 @@ msgstr "Час початку курсу" msgid "(UTC)" msgstr "" +#: cms/templates/settings.html +msgid "Course End Date" +msgstr "" + #: cms/templates/settings.html msgid "Last day your course is active" msgstr "Останній день, коли курс є активним" @@ -23851,6 +23582,24 @@ msgstr "" msgid "Return to the {link_start}home page{link_end}." msgstr "" +#: cms/templates/widgets/deprecated-course-key-warning.html +msgid "Support will be removed in an upcoming release." +msgstr "" + +#: cms/templates/widgets/deprecated-course-key-warning.html +msgid "Support will be removed on {expiration_date}." +msgstr "" + +#: cms/templates/widgets/deprecated-course-key-warning.html +msgid "This course uses a legacy storage format." +msgstr "" + +#: cms/templates/widgets/deprecated-course-key-warning.html +msgid "" +"Please reach out to your support team contact, if you have any additional " +"questions or concerns." +msgstr "" + #: cms/templates/widgets/footer.html msgid "Policies" msgstr "" diff --git a/conf/locale/uk/LC_MESSAGES/djangojs.po b/conf/locale/uk/LC_MESSAGES/djangojs.po index 1337a6de49..bf4a83934b 100644 --- a/conf/locale/uk/LC_MESSAGES/djangojs.po +++ b/conf/locale/uk/LC_MESSAGES/djangojs.po @@ -98,7 +98,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2020-06-28 20:42+0000\n" +"POT-Creation-Date: 2020-07-05 20:42+0000\n" "PO-Revision-Date: 2020-06-14 20:45+0000\n" "Last-Translator: edx_transifex_bot \n" "Language-Team: Ukrainian (http://www.transifex.com/open-edx/edx-platform/language/uk/)\n" diff --git a/conf/locale/vi/LC_MESSAGES/djangojs.po b/conf/locale/vi/LC_MESSAGES/djangojs.po index bea24f5c40..4fc917268a 100644 --- a/conf/locale/vi/LC_MESSAGES/djangojs.po +++ b/conf/locale/vi/LC_MESSAGES/djangojs.po @@ -106,7 +106,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2020-06-28 20:42+0000\n" +"POT-Creation-Date: 2020-07-05 20:42+0000\n" "PO-Revision-Date: 2020-06-14 20:45+0000\n" "Last-Translator: edx_transifex_bot \n" "Language-Team: Vietnamese (http://www.transifex.com/open-edx/edx-platform/language/vi/)\n" diff --git a/conf/locale/zh_CN/LC_MESSAGES/django.mo b/conf/locale/zh_CN/LC_MESSAGES/django.mo index 6e4b653aa2..fa233ccde3 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 c34cba4784..48ca097d8a 100644 --- a/conf/locale/zh_CN/LC_MESSAGES/django.po +++ b/conf/locale/zh_CN/LC_MESSAGES/django.po @@ -397,7 +397,7 @@ msgid "" msgstr "" "Project-Id-Version: 0.1a\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2020-06-28 20:42+0000\n" +"POT-Creation-Date: 2020-07-05 20:42+0000\n" "PO-Revision-Date: 2019-01-20 20:43+0000\n" "Last-Translator: ifLab , 2019\n" "Language-Team: Chinese (China) (https://www.transifex.com/open-edx/teams/6205/zh_CN/)\n" @@ -6879,11 +6879,6 @@ msgstr "该文件必须包含一个“username”列,或一个“email”列 msgid "detailed enrollment" msgstr "报名详情" -#: lms/djangoapps/instructor/views/api.py -#: lms/djangoapps/instructor_task/api_helper.py -msgid "executive summary" -msgstr "摘要信息" - #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor_task/api_helper.py msgid "survey" @@ -8283,7 +8278,6 @@ msgstr "货币" #: lms/djangoapps/shoppingcart/reports.py #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: wiki/plugins/attachments/forms.py #: wiki/plugins/attachments/templates/wiki/plugins/attachments/history.html @@ -8302,8 +8296,7 @@ msgstr "大学" msgid "Course Announce Date" msgstr "课程发布日期" -#: lms/djangoapps/shoppingcart/reports.py cms/templates/settings.html -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +#: lms/djangoapps/shoppingcart/reports.py msgid "Course Start Date" msgstr "课程开始日期" @@ -8332,7 +8325,6 @@ msgid "Verified Enrollment" msgstr "已认证的选课人数" #: lms/djangoapps/shoppingcart/reports.py -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html msgid "Gross Revenue" msgstr "总收入" @@ -9144,17 +9136,64 @@ 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/verificationapproved/email/body.html +msgid "ID Verification Approved" +msgstr "" +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html #: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/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/verificationapproved/email/body.html +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.txt +#, python-format +msgid "Your %(platform_name)s ID verification photos have been approved." +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.txt +#, python-format +msgid "" +"Your approval status remains valid for one year, and it will expire " +"%(expiry_date)s." +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.txt +msgid "Enjoy your studies," +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.txt +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +#, python-format +msgid "The %(platform_name)s Team " +msgstr "%(platform_name)s团队" + +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.txt +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +#, python-format +msgid "Hello %(full_name)s, " +msgstr "您好,%(full_name)s" + +#: lms/templates/verify_student/edx_ace/verificationapproved/email/subject.txt +#, python-format +msgid "Your %(platform_name)s ID verification was approved!" +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 #: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt #, python-format @@ -9200,22 +9239,44 @@ msgstr "ID验证常见问题:%(help_center_link)s" 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/verify_student/edx_ace/verificationsubmitted/email/body.html +msgid "ID Verification Submitted" +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +#, python-format +msgid "" +"Thank you for submitting your photos for identity verification with " +"%(platform_name)s. " +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +msgid "" +"We have received your photos and they will be reviewed within 5-7 days." +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +#, python-format +msgid "You may check the status on your dashboard: %(dashboard_link)s " +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +msgid "Best regards," +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/subject.txt +msgid "Thank you for submitting your photos!" +msgstr "" + #: lms/templates/wiki/article.html msgid "Last modified:" msgstr "最后修改:" @@ -9291,7 +9352,6 @@ msgstr "您正试图删除文章。请确认!" #: lms/templates/wiki/edit.html cms/templates/component.html #: cms/templates/container.html cms/templates/studio_xblock_wrapper.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/wiki/includes/article_menu.html wiki/templates/wiki/edit.html #: wiki/templates/wiki/includes/article_menu.html msgid "Edit" @@ -10831,7 +10891,6 @@ msgid "Success" msgstr "成功" #: openedx/core/djangoapps/user_api/admin.py -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/staff_problem_info.html msgid "Actions" msgstr "操作" @@ -12521,6 +12580,7 @@ msgid "Course Outline" msgstr "课程大纲" #: cms/templates/course_outline.html +#: cms/templates/widgets/deprecated-course-key-warning.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "Warning" msgstr "" @@ -12562,11 +12622,6 @@ msgstr "课程" msgid "example: username@domain.com" msgstr "例:username@domain.com" -#: cms/templates/settings.html -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Course End Date" -msgstr "课程结束日期" - #: cms/templates/settings.html lms/templates/courseware/program_marketing.html msgid "Instructors" msgstr "主讲教师" @@ -16052,6 +16107,12 @@ msgstr "课程选项,关于" msgid "Available Actions" msgstr "可用的操作" +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"You are enrolled by your institution and you should reach out to your " +"institution to drop this course." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_entitlement_actions.html msgid "Email Settings" @@ -17006,7 +17067,6 @@ msgid "Order History" msgstr "订单记录" #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon Code" msgstr "添加优惠券代码" @@ -17015,8 +17075,6 @@ msgid "Enter information about the coupon code below." msgstr "在下面输入优惠券代码" #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html msgid "Coupon Code" msgstr "优惠券代码" @@ -17098,7 +17156,6 @@ msgstr "当您准备好为您的课程生成证书时,请单击“生成证书 #: lms/templates/instructor/instructor_dashboard_2/certificates.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/data_download.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Pending Tasks" @@ -17107,7 +17164,6 @@ msgstr "待处理的任务" #: lms/templates/instructor/instructor_dashboard_2/certificates.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/data_download.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "The status for any active tasks appears in a table below." msgstr "下表显示所有活动任务的状态。" @@ -17269,7 +17325,6 @@ msgid "Get Student Anonymized IDs CSV" msgstr "获取学生匿名ID CSV文件" #: lms/templates/instructor/instructor_dashboard_2/data_download.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Reports" msgstr "报告" @@ -17417,266 +17472,6 @@ msgid "" "policies.{li_end}{ul_end}" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enrollment Codes" -msgstr "选课码" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Create one or more pre-paid course enrollment codes. Students can use these " -"codes to enroll in the course." -msgstr "创建一个或者多个课程的预付费选课码。学生可以使用这些选课码选修该课程。" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -msgid "Create Enrollment Codes" -msgstr "生成选课码" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Cancel, restore, or mark an enrollment code as unused." -msgstr "取消、恢复或将一个选课码标记为未使用。" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Change Enrollment Code Status" -msgstr "改变选课码状态" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download a .csv file of all enrollment codes for this course." -msgstr "下载一个包含本课所有选课码的.csv文件" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download All Enrollment Codes" -msgstr "下载所有选课码" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download a .csv file of all unused enrollment codes for this course." -msgstr "下载一个包含本课中所有未使用选课码的.csv文件。" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download Unused Enrollment Codes" -msgstr "下载未使用的选课码" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download a .csv file of all used enrollment codes for this course." -msgstr "下载一个包含本课中所有使用过的选课码的.csv文件。" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download Used Enrollment Codes" -msgstr "下载使用过的选课码" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html -msgid "Course Price" -msgstr "课程价格" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Course price per seat: " -msgstr "每位学生需付的课程价格:" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Edit Price" -msgstr "编辑价格" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Course Seat Purchases" -msgstr "购买课程" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Total Credit Card Purchases: " -msgstr "所有的信用卡订单:" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Download a .csv file for all credit card purchases or for all invoices, " -"regardless of status." -msgstr "下载一个包含所有信用卡消费记录或所有收据的.csv文件。" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download All Invoices" -msgstr "下载所有收据" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download All Credit Card Purchases" -msgstr "下载所有信用卡消费记录" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "To cancel or resubmit an invoice, enter the invoice number below." -msgstr "要取消或者重新提交一张收据,请在下面输入收据号码。" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Invoice Number" -msgstr "收据单号" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Cancel Invoice" -msgstr "取消收据" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Resubmit Invoice" -msgstr "重新提交收据" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Create a .csv file that contains enrollment information for your course." -msgstr "创建一个包含您的课程的选修信息的.csv文件。" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Create Enrollment Report" -msgstr "生成选课报告" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Create an HTML file that contains an executive summary for this course." -msgstr "创建一个包含这门课程执行摘要的HTML文件" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Create Executive Summary" -msgstr "创建执行摘要" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Available Reports" -msgstr "可用报告" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"The following reports are available for download. Reports are not deleted. A" -" link to every report remains available on this page, identified by the date" -" and time (in UTC) that the report was generated." -msgstr "您可以下载以下列出的报告。每一份报告由生成的日期和时间(UTC)来标识,它们的链接将保留在本页面。" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"{strong_start}Note{strong_end}: To help protect learner data, links to these" -" reports that you save outside of this page or that you send or receive in " -"email expire after five minutes." -msgstr "" -"{strong_start}注{strong_end}:为了确保学生数据的安全性,您在本页外保存的报告链接或者您通过电子邮件发送或收到的报告链接将在5分钟后失效。" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Coupon Code List" -msgstr "优惠券代码列表" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download a .csv file of all coupon codes for this course." -msgstr "下载一个包含所有这门课的优惠券代码的.csv文件。" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download Coupon Codes" -msgstr "下载优惠券代码" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Coupon Codes" -msgstr "优惠券代码" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html -msgid "Expiration Date" -msgstr "过期日期" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Coupon (%)" -msgstr "优惠券(%)" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Number Redeemed" -msgstr "兑换数量" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "{code}" -msgstr "{code}" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "{description}" -msgstr "{description}" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "{discount}" -msgstr "{discount}" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The Invoice Number field cannot be empty." -msgstr "发票号码字段不能为空。" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "No Expiration Date" -msgstr "无截止日期" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the company name." -msgstr "输入公司名字" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The company name cannot be a number." -msgstr "公司名不能为数字" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the company contact name." -msgstr "输入公司联系人名字" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The company contact name cannot be a number." -msgstr "公司联系人名字不能为数字" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the email address for the company contact." -msgstr "输入公司联系人的邮箱。" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter a valid email address." -msgstr "输入一个有效的邮箱。" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the recipient name." -msgstr "输入收件人名字" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The recipient name cannot be a number." -msgstr "收件人名字不能为数字" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the recipient email address." -msgstr "输入收件人邮箱" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the billing address." -msgstr "输入账单地址" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the price per course seat." -msgstr "输入每个学位的价格" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Enter a numeric value for the price per course seat. Do not include currency" -" symbols." -msgstr "为每一个课程座席价格输入一个数值。请不要输入货币符号。" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the number of enrollment codes." -msgstr "输入选课码的数量" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter a numeric value for the number of enrollment codes." -msgstr "输入选课码的数量值。" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Select a currency." -msgstr "选择一种货币。" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter a coupon code." -msgstr "输入一个优惠券代码" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The discount percentage must be less than or equal to 100." -msgstr "折扣百分比必须小于或等于100。" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Enter a numeric value for the discount amount. Do not include the percent " -"sign." -msgstr "输入一个折扣的数量值。请不要输入百分符号。" - #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Edit Coupon Code" msgstr "编辑优惠券代码" @@ -17697,98 +17492,14 @@ msgstr "例如: A123DS" msgid "Percentage Discount" msgstr "折扣率" +#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html +msgid "Expiration Date" +msgstr "过期日期" + #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon Code" msgstr "更新优惠券代码" -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Executive Summary for {display_name}" -msgstr " {display_name} 执行摘要" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Report Creation Date" -msgstr "报告创建日期" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of Seats" -msgstr "座席数量" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of Enrollments" -msgstr "选课人数" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Gross Revenue Collected" -msgstr "进账总收入" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Gross Revenue Pending" -msgstr "待处理总收入" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of Enrollment Refunds" -msgstr "课程退款数" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Amount Refunded" -msgstr "退还金额" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Average Price per Seat" -msgstr "每个座席的平均价格" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Frequently Used Coupon Codes" -msgstr "经常使用的优惠券代码" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of seats purchased using coupon codes" -msgstr "使用优惠券代码购买的座席数" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Rank" -msgstr "排名" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Percent Discount" -msgstr "折扣率" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Times Used" -msgstr "已用时间" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Bulk and Single Seat Purchases" -msgstr "批量和单个坐席采购" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of seats purchased individually" -msgstr "单独购买的坐席数" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of seats purchased in bulk" -msgstr "批量购买的坐席数" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of seats purchased with invoices" -msgstr "带发票的购买坐席数" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Unused bulk purchase seats (revenue at risk)" -msgstr "未使用批量购买席位(收入有风险)" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Percentage of seats purchased individually" -msgstr "单个坐席购买数量所占比例" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Percentage of seats purchased in bulk" -msgstr "批量购买坐席数目所占比例" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Percentage of seats purchased with invoices" -msgstr "带发票购买坐席数目所占比例" - #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Individual due date extensions" msgstr "延长个别截止日期" @@ -17881,6 +17592,10 @@ msgstr "重置学生的截止日期" msgid "Generate Registration Code Modal" msgstr "生成形态上的注册码" +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "Create Enrollment Codes" +msgstr "生成选课码" + #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "* Required Information" msgstr "* 必填信息" @@ -18355,10 +18070,18 @@ msgstr "设置课程模式价格" msgid "Please enter Course Mode detail below" msgstr "请在下面输入课程模式详情" +#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html +msgid "Course Price" +msgstr "课程价格" + #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Price" msgstr "设置价格" +#: lms/templates/instructor/instructor_dashboard_2/special_exams.html +msgid "Proctortrack Escalation Email:" +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/special_exams.html msgid "Allowance Section" msgstr "默认章节" @@ -22310,6 +22033,10 @@ msgstr "课程开始时间" msgid "(UTC)" msgstr "(UTC)" +#: cms/templates/settings.html +msgid "Course End Date" +msgstr "" + #: cms/templates/settings.html msgid "Last day your course is active" msgstr "课程活跃的最后一天" @@ -23062,6 +22789,24 @@ msgstr "" msgid "Return to the {link_start}home page{link_end}." msgstr "返回到{link_start}主页{link_end}。" +#: cms/templates/widgets/deprecated-course-key-warning.html +msgid "Support will be removed in an upcoming release." +msgstr "" + +#: cms/templates/widgets/deprecated-course-key-warning.html +msgid "Support will be removed on {expiration_date}." +msgstr "" + +#: cms/templates/widgets/deprecated-course-key-warning.html +msgid "This course uses a legacy storage format." +msgstr "" + +#: cms/templates/widgets/deprecated-course-key-warning.html +msgid "" +"Please reach out to your support team contact, if you have any additional " +"questions or concerns." +msgstr "" + #: cms/templates/widgets/footer.html msgid "Policies" msgstr "政策" diff --git a/conf/locale/zh_CN/LC_MESSAGES/djangojs.po b/conf/locale/zh_CN/LC_MESSAGES/djangojs.po index 6c280526cc..e6ce474bcd 100644 --- a/conf/locale/zh_CN/LC_MESSAGES/djangojs.po +++ b/conf/locale/zh_CN/LC_MESSAGES/djangojs.po @@ -226,7 +226,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2020-06-28 20:42+0000\n" +"POT-Creation-Date: 2020-07-05 20:42+0000\n" "PO-Revision-Date: 2020-06-14 20:45+0000\n" "Last-Translator: edx_transifex_bot \n" "Language-Team: Chinese (China) (http://www.transifex.com/open-edx/edx-platform/language/zh_CN/)\n" diff --git a/conf/locale/zh_HANS/LC_MESSAGES/django.mo b/conf/locale/zh_HANS/LC_MESSAGES/django.mo index 6e4b653aa2..fa233ccde3 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 c34cba4784..48ca097d8a 100644 --- a/conf/locale/zh_HANS/LC_MESSAGES/django.po +++ b/conf/locale/zh_HANS/LC_MESSAGES/django.po @@ -397,7 +397,7 @@ msgid "" msgstr "" "Project-Id-Version: 0.1a\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2020-06-28 20:42+0000\n" +"POT-Creation-Date: 2020-07-05 20:42+0000\n" "PO-Revision-Date: 2019-01-20 20:43+0000\n" "Last-Translator: ifLab , 2019\n" "Language-Team: Chinese (China) (https://www.transifex.com/open-edx/teams/6205/zh_CN/)\n" @@ -6879,11 +6879,6 @@ msgstr "该文件必须包含一个“username”列,或一个“email”列 msgid "detailed enrollment" msgstr "报名详情" -#: lms/djangoapps/instructor/views/api.py -#: lms/djangoapps/instructor_task/api_helper.py -msgid "executive summary" -msgstr "摘要信息" - #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor_task/api_helper.py msgid "survey" @@ -8283,7 +8278,6 @@ msgstr "货币" #: lms/djangoapps/shoppingcart/reports.py #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: wiki/plugins/attachments/forms.py #: wiki/plugins/attachments/templates/wiki/plugins/attachments/history.html @@ -8302,8 +8296,7 @@ msgstr "大学" msgid "Course Announce Date" msgstr "课程发布日期" -#: lms/djangoapps/shoppingcart/reports.py cms/templates/settings.html -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +#: lms/djangoapps/shoppingcart/reports.py msgid "Course Start Date" msgstr "课程开始日期" @@ -8332,7 +8325,6 @@ msgid "Verified Enrollment" msgstr "已认证的选课人数" #: lms/djangoapps/shoppingcart/reports.py -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html msgid "Gross Revenue" msgstr "总收入" @@ -9144,17 +9136,64 @@ 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/verificationapproved/email/body.html +msgid "ID Verification Approved" +msgstr "" +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html #: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/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/verificationapproved/email/body.html +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.txt +#, python-format +msgid "Your %(platform_name)s ID verification photos have been approved." +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.txt +#, python-format +msgid "" +"Your approval status remains valid for one year, and it will expire " +"%(expiry_date)s." +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.txt +msgid "Enjoy your studies," +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.txt +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +#, python-format +msgid "The %(platform_name)s Team " +msgstr "%(platform_name)s团队" + +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.txt +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +#, python-format +msgid "Hello %(full_name)s, " +msgstr "您好,%(full_name)s" + +#: lms/templates/verify_student/edx_ace/verificationapproved/email/subject.txt +#, python-format +msgid "Your %(platform_name)s ID verification was approved!" +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 #: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt #, python-format @@ -9200,22 +9239,44 @@ msgstr "ID验证常见问题:%(help_center_link)s" 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/verify_student/edx_ace/verificationsubmitted/email/body.html +msgid "ID Verification Submitted" +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +#, python-format +msgid "" +"Thank you for submitting your photos for identity verification with " +"%(platform_name)s. " +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +msgid "" +"We have received your photos and they will be reviewed within 5-7 days." +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +#, python-format +msgid "You may check the status on your dashboard: %(dashboard_link)s " +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +msgid "Best regards," +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/subject.txt +msgid "Thank you for submitting your photos!" +msgstr "" + #: lms/templates/wiki/article.html msgid "Last modified:" msgstr "最后修改:" @@ -9291,7 +9352,6 @@ msgstr "您正试图删除文章。请确认!" #: lms/templates/wiki/edit.html cms/templates/component.html #: cms/templates/container.html cms/templates/studio_xblock_wrapper.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/wiki/includes/article_menu.html wiki/templates/wiki/edit.html #: wiki/templates/wiki/includes/article_menu.html msgid "Edit" @@ -10831,7 +10891,6 @@ msgid "Success" msgstr "成功" #: openedx/core/djangoapps/user_api/admin.py -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/staff_problem_info.html msgid "Actions" msgstr "操作" @@ -12521,6 +12580,7 @@ msgid "Course Outline" msgstr "课程大纲" #: cms/templates/course_outline.html +#: cms/templates/widgets/deprecated-course-key-warning.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "Warning" msgstr "" @@ -12562,11 +12622,6 @@ msgstr "课程" msgid "example: username@domain.com" msgstr "例:username@domain.com" -#: cms/templates/settings.html -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Course End Date" -msgstr "课程结束日期" - #: cms/templates/settings.html lms/templates/courseware/program_marketing.html msgid "Instructors" msgstr "主讲教师" @@ -16052,6 +16107,12 @@ msgstr "课程选项,关于" msgid "Available Actions" msgstr "可用的操作" +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"You are enrolled by your institution and you should reach out to your " +"institution to drop this course." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_entitlement_actions.html msgid "Email Settings" @@ -17006,7 +17067,6 @@ msgid "Order History" msgstr "订单记录" #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon Code" msgstr "添加优惠券代码" @@ -17015,8 +17075,6 @@ msgid "Enter information about the coupon code below." msgstr "在下面输入优惠券代码" #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html msgid "Coupon Code" msgstr "优惠券代码" @@ -17098,7 +17156,6 @@ msgstr "当您准备好为您的课程生成证书时,请单击“生成证书 #: lms/templates/instructor/instructor_dashboard_2/certificates.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/data_download.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Pending Tasks" @@ -17107,7 +17164,6 @@ msgstr "待处理的任务" #: lms/templates/instructor/instructor_dashboard_2/certificates.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/data_download.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "The status for any active tasks appears in a table below." msgstr "下表显示所有活动任务的状态。" @@ -17269,7 +17325,6 @@ msgid "Get Student Anonymized IDs CSV" msgstr "获取学生匿名ID CSV文件" #: lms/templates/instructor/instructor_dashboard_2/data_download.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Reports" msgstr "报告" @@ -17417,266 +17472,6 @@ msgid "" "policies.{li_end}{ul_end}" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enrollment Codes" -msgstr "选课码" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Create one or more pre-paid course enrollment codes. Students can use these " -"codes to enroll in the course." -msgstr "创建一个或者多个课程的预付费选课码。学生可以使用这些选课码选修该课程。" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -msgid "Create Enrollment Codes" -msgstr "生成选课码" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Cancel, restore, or mark an enrollment code as unused." -msgstr "取消、恢复或将一个选课码标记为未使用。" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Change Enrollment Code Status" -msgstr "改变选课码状态" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download a .csv file of all enrollment codes for this course." -msgstr "下载一个包含本课所有选课码的.csv文件" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download All Enrollment Codes" -msgstr "下载所有选课码" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download a .csv file of all unused enrollment codes for this course." -msgstr "下载一个包含本课中所有未使用选课码的.csv文件。" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download Unused Enrollment Codes" -msgstr "下载未使用的选课码" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download a .csv file of all used enrollment codes for this course." -msgstr "下载一个包含本课中所有使用过的选课码的.csv文件。" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download Used Enrollment Codes" -msgstr "下载使用过的选课码" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html -msgid "Course Price" -msgstr "课程价格" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Course price per seat: " -msgstr "每位学生需付的课程价格:" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Edit Price" -msgstr "编辑价格" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Course Seat Purchases" -msgstr "购买课程" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Total Credit Card Purchases: " -msgstr "所有的信用卡订单:" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Download a .csv file for all credit card purchases or for all invoices, " -"regardless of status." -msgstr "下载一个包含所有信用卡消费记录或所有收据的.csv文件。" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download All Invoices" -msgstr "下载所有收据" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download All Credit Card Purchases" -msgstr "下载所有信用卡消费记录" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "To cancel or resubmit an invoice, enter the invoice number below." -msgstr "要取消或者重新提交一张收据,请在下面输入收据号码。" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Invoice Number" -msgstr "收据单号" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Cancel Invoice" -msgstr "取消收据" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Resubmit Invoice" -msgstr "重新提交收据" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Create a .csv file that contains enrollment information for your course." -msgstr "创建一个包含您的课程的选修信息的.csv文件。" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Create Enrollment Report" -msgstr "生成选课报告" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Create an HTML file that contains an executive summary for this course." -msgstr "创建一个包含这门课程执行摘要的HTML文件" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Create Executive Summary" -msgstr "创建执行摘要" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Available Reports" -msgstr "可用报告" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"The following reports are available for download. Reports are not deleted. A" -" link to every report remains available on this page, identified by the date" -" and time (in UTC) that the report was generated." -msgstr "您可以下载以下列出的报告。每一份报告由生成的日期和时间(UTC)来标识,它们的链接将保留在本页面。" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"{strong_start}Note{strong_end}: To help protect learner data, links to these" -" reports that you save outside of this page or that you send or receive in " -"email expire after five minutes." -msgstr "" -"{strong_start}注{strong_end}:为了确保学生数据的安全性,您在本页外保存的报告链接或者您通过电子邮件发送或收到的报告链接将在5分钟后失效。" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Coupon Code List" -msgstr "优惠券代码列表" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download a .csv file of all coupon codes for this course." -msgstr "下载一个包含所有这门课的优惠券代码的.csv文件。" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download Coupon Codes" -msgstr "下载优惠券代码" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Coupon Codes" -msgstr "优惠券代码" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html -msgid "Expiration Date" -msgstr "过期日期" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Coupon (%)" -msgstr "优惠券(%)" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Number Redeemed" -msgstr "兑换数量" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "{code}" -msgstr "{code}" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "{description}" -msgstr "{description}" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "{discount}" -msgstr "{discount}" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The Invoice Number field cannot be empty." -msgstr "发票号码字段不能为空。" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "No Expiration Date" -msgstr "无截止日期" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the company name." -msgstr "输入公司名字" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The company name cannot be a number." -msgstr "公司名不能为数字" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the company contact name." -msgstr "输入公司联系人名字" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The company contact name cannot be a number." -msgstr "公司联系人名字不能为数字" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the email address for the company contact." -msgstr "输入公司联系人的邮箱。" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter a valid email address." -msgstr "输入一个有效的邮箱。" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the recipient name." -msgstr "输入收件人名字" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The recipient name cannot be a number." -msgstr "收件人名字不能为数字" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the recipient email address." -msgstr "输入收件人邮箱" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the billing address." -msgstr "输入账单地址" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the price per course seat." -msgstr "输入每个学位的价格" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Enter a numeric value for the price per course seat. Do not include currency" -" symbols." -msgstr "为每一个课程座席价格输入一个数值。请不要输入货币符号。" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the number of enrollment codes." -msgstr "输入选课码的数量" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter a numeric value for the number of enrollment codes." -msgstr "输入选课码的数量值。" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Select a currency." -msgstr "选择一种货币。" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter a coupon code." -msgstr "输入一个优惠券代码" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The discount percentage must be less than or equal to 100." -msgstr "折扣百分比必须小于或等于100。" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Enter a numeric value for the discount amount. Do not include the percent " -"sign." -msgstr "输入一个折扣的数量值。请不要输入百分符号。" - #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Edit Coupon Code" msgstr "编辑优惠券代码" @@ -17697,98 +17492,14 @@ msgstr "例如: A123DS" msgid "Percentage Discount" msgstr "折扣率" +#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html +msgid "Expiration Date" +msgstr "过期日期" + #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon Code" msgstr "更新优惠券代码" -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Executive Summary for {display_name}" -msgstr " {display_name} 执行摘要" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Report Creation Date" -msgstr "报告创建日期" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of Seats" -msgstr "座席数量" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of Enrollments" -msgstr "选课人数" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Gross Revenue Collected" -msgstr "进账总收入" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Gross Revenue Pending" -msgstr "待处理总收入" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of Enrollment Refunds" -msgstr "课程退款数" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Amount Refunded" -msgstr "退还金额" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Average Price per Seat" -msgstr "每个座席的平均价格" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Frequently Used Coupon Codes" -msgstr "经常使用的优惠券代码" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of seats purchased using coupon codes" -msgstr "使用优惠券代码购买的座席数" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Rank" -msgstr "排名" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Percent Discount" -msgstr "折扣率" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Times Used" -msgstr "已用时间" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Bulk and Single Seat Purchases" -msgstr "批量和单个坐席采购" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of seats purchased individually" -msgstr "单独购买的坐席数" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of seats purchased in bulk" -msgstr "批量购买的坐席数" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of seats purchased with invoices" -msgstr "带发票的购买坐席数" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Unused bulk purchase seats (revenue at risk)" -msgstr "未使用批量购买席位(收入有风险)" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Percentage of seats purchased individually" -msgstr "单个坐席购买数量所占比例" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Percentage of seats purchased in bulk" -msgstr "批量购买坐席数目所占比例" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Percentage of seats purchased with invoices" -msgstr "带发票购买坐席数目所占比例" - #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Individual due date extensions" msgstr "延长个别截止日期" @@ -17881,6 +17592,10 @@ msgstr "重置学生的截止日期" msgid "Generate Registration Code Modal" msgstr "生成形态上的注册码" +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "Create Enrollment Codes" +msgstr "生成选课码" + #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "* Required Information" msgstr "* 必填信息" @@ -18355,10 +18070,18 @@ msgstr "设置课程模式价格" msgid "Please enter Course Mode detail below" msgstr "请在下面输入课程模式详情" +#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html +msgid "Course Price" +msgstr "课程价格" + #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Price" msgstr "设置价格" +#: lms/templates/instructor/instructor_dashboard_2/special_exams.html +msgid "Proctortrack Escalation Email:" +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/special_exams.html msgid "Allowance Section" msgstr "默认章节" @@ -22310,6 +22033,10 @@ msgstr "课程开始时间" msgid "(UTC)" msgstr "(UTC)" +#: cms/templates/settings.html +msgid "Course End Date" +msgstr "" + #: cms/templates/settings.html msgid "Last day your course is active" msgstr "课程活跃的最后一天" @@ -23062,6 +22789,24 @@ msgstr "" msgid "Return to the {link_start}home page{link_end}." msgstr "返回到{link_start}主页{link_end}。" +#: cms/templates/widgets/deprecated-course-key-warning.html +msgid "Support will be removed in an upcoming release." +msgstr "" + +#: cms/templates/widgets/deprecated-course-key-warning.html +msgid "Support will be removed on {expiration_date}." +msgstr "" + +#: cms/templates/widgets/deprecated-course-key-warning.html +msgid "This course uses a legacy storage format." +msgstr "" + +#: cms/templates/widgets/deprecated-course-key-warning.html +msgid "" +"Please reach out to your support team contact, if you have any additional " +"questions or concerns." +msgstr "" + #: cms/templates/widgets/footer.html msgid "Policies" msgstr "政策" diff --git a/conf/locale/zh_HANS/LC_MESSAGES/djangojs.po b/conf/locale/zh_HANS/LC_MESSAGES/djangojs.po index 6c280526cc..e6ce474bcd 100644 --- a/conf/locale/zh_HANS/LC_MESSAGES/djangojs.po +++ b/conf/locale/zh_HANS/LC_MESSAGES/djangojs.po @@ -226,7 +226,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2020-06-28 20:42+0000\n" +"POT-Creation-Date: 2020-07-05 20:42+0000\n" "PO-Revision-Date: 2020-06-14 20:45+0000\n" "Last-Translator: edx_transifex_bot \n" "Language-Team: Chinese (China) (http://www.transifex.com/open-edx/edx-platform/language/zh_CN/)\n" diff --git a/conf/locale/zh_TW/LC_MESSAGES/django.mo b/conf/locale/zh_TW/LC_MESSAGES/django.mo index fcc64242e1..041d5dc364 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 8aa09fb8da..c4863af500 100644 --- a/conf/locale/zh_TW/LC_MESSAGES/django.po +++ b/conf/locale/zh_TW/LC_MESSAGES/django.po @@ -177,7 +177,7 @@ msgid "" msgstr "" "Project-Id-Version: 0.1a\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2020-06-28 20:42+0000\n" +"POT-Creation-Date: 2020-07-05 20:42+0000\n" "PO-Revision-Date: 2019-01-20 20:43+0000\n" "Last-Translator: Waheed Ahmed , 2019\n" "Language-Team: Chinese (Taiwan) (https://www.transifex.com/open-edx/teams/6205/zh_TW/)\n" @@ -6602,11 +6602,6 @@ msgstr "此檔案必須'cohort'的行,'email' 的行,或者兩者。" msgid "detailed enrollment" msgstr "" -#: lms/djangoapps/instructor/views/api.py -#: lms/djangoapps/instructor_task/api_helper.py -msgid "executive summary" -msgstr "" - #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor_task/api_helper.py msgid "survey" @@ -7994,7 +7989,6 @@ msgstr "貨幣" #: lms/djangoapps/shoppingcart/reports.py #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: wiki/plugins/attachments/forms.py #: wiki/plugins/attachments/templates/wiki/plugins/attachments/history.html @@ -8013,8 +8007,7 @@ msgstr "大學" msgid "Course Announce Date" msgstr "課程公佈日期" -#: lms/djangoapps/shoppingcart/reports.py cms/templates/settings.html -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +#: lms/djangoapps/shoppingcart/reports.py msgid "Course Start Date" msgstr "開課日期" @@ -8846,17 +8839,64 @@ msgstr "" msgid "Error" msgstr "錯誤" -#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html -msgid "Expired ID Verification" +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html +msgid "ID Verification Approved" msgstr "" +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html #: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/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 "" +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.txt +#, python-format +msgid "Your %(platform_name)s ID verification photos have been approved." +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.txt +#, python-format +msgid "" +"Your approval status remains valid for one year, and it will expire " +"%(expiry_date)s." +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.txt +msgid "Enjoy your studies," +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.html +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.txt +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.html +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +#, python-format +msgid "The %(platform_name)s Team " +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationapproved/email/body.txt +#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +#, python-format +msgid "Hello %(full_name)s, " +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationapproved/email/subject.txt +#, python-format +msgid "Your %(platform_name)s ID verification was approved!" +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 #: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt #, python-format @@ -8900,22 +8940,44 @@ msgstr "" 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 "" - -#: lms/templates/verify_student/edx_ace/verificationexpiry/email/body.txt -#, python-format -msgid "Hello %(full_name)s, " -msgstr "" - #: lms/templates/verify_student/edx_ace/verificationexpiry/email/subject.txt #, python-format msgid "Your %(platform_name)s Verification has Expired" msgstr "" +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +msgid "ID Verification Submitted" +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +#, python-format +msgid "" +"Thank you for submitting your photos for identity verification with " +"%(platform_name)s. " +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +msgid "" +"We have received your photos and they will be reviewed within 5-7 days." +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +#, python-format +msgid "You may check the status on your dashboard: %(dashboard_link)s " +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.html +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/body.txt +msgid "Best regards," +msgstr "" + +#: lms/templates/verify_student/edx_ace/verificationsubmitted/email/subject.txt +msgid "Thank you for submitting your photos!" +msgstr "" + #: lms/templates/wiki/article.html msgid "Last modified:" msgstr "最後修改日期:" @@ -8980,7 +9042,6 @@ msgstr "您確定要刪除這篇文章嗎?" #: lms/templates/wiki/edit.html cms/templates/component.html #: cms/templates/container.html cms/templates/studio_xblock_wrapper.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/wiki/includes/article_menu.html msgid "Edit" msgstr "編輯" @@ -10471,7 +10532,6 @@ msgstr "" msgid "Success" msgstr "成功" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/staff_problem_info.html msgid "Actions" msgstr "動作" @@ -12137,6 +12197,7 @@ msgid "Course Outline" msgstr "" #: cms/templates/course_outline.html +#: cms/templates/widgets/deprecated-course-key-warning.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "Warning" msgstr "" @@ -12178,11 +12239,6 @@ msgstr "課程" msgid "example: username@domain.com" msgstr "例:username@domain.com" -#: cms/templates/settings.html -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Course End Date" -msgstr "課程結束日期" - #: cms/templates/settings.html lms/templates/courseware/program_marketing.html msgid "Instructors" msgstr "" @@ -15590,6 +15646,12 @@ msgstr "" msgid "Available Actions" msgstr "可執行功能" +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"You are enrolled by your institution and you should reach out to your " +"institution to drop this course." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_entitlement_actions.html msgid "Email Settings" @@ -16533,7 +16595,6 @@ msgid "Order History" msgstr "訂單紀錄" #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon Code" msgstr "加入優惠卷代碼" @@ -16542,8 +16603,6 @@ msgid "Enter information about the coupon code below." msgstr "輸入有關於優惠代碼的訊息" #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html msgid "Coupon Code" msgstr "優惠券代碼" @@ -16625,7 +16684,6 @@ msgstr "當您準備好為課程產生證書時,請點擊產生鍵。如果您 #: lms/templates/instructor/instructor_dashboard_2/certificates.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/data_download.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Pending Tasks" @@ -16634,7 +16692,6 @@ msgstr "待處理事務" #: lms/templates/instructor/instructor_dashboard_2/certificates.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/data_download.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "The status for any active tasks appears in a table below." msgstr "所有進行中的工作狀態如下表所示。" @@ -16794,7 +16851,6 @@ msgid "Get Student Anonymized IDs CSV" msgstr "取得學生的匿名 IDs CSV" #: lms/templates/instructor/instructor_dashboard_2/data_download.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Reports" msgstr "" @@ -16940,266 +16996,6 @@ msgid "" "policies.{li_end}{ul_end}" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enrollment Codes" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Create one or more pre-paid course enrollment codes. Students can use these " -"codes to enroll in the course." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -msgid "Create Enrollment Codes" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Cancel, restore, or mark an enrollment code as unused." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Change Enrollment Code Status" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download a .csv file of all enrollment codes for this course." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download All Enrollment Codes" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download a .csv file of all unused enrollment codes for this course." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download Unused Enrollment Codes" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download a .csv file of all used enrollment codes for this course." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download Used Enrollment Codes" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html -msgid "Course Price" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Course price per seat: " -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Edit Price" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Course Seat Purchases" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Total Credit Card Purchases: " -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Download a .csv file for all credit card purchases or for all invoices, " -"regardless of status." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download All Invoices" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download All Credit Card Purchases" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "To cancel or resubmit an invoice, enter the invoice number below." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Invoice Number" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Cancel Invoice" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Resubmit Invoice" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Create a .csv file that contains enrollment information for your course." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Create Enrollment Report" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Create an HTML file that contains an executive summary for this course." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Create Executive Summary" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Available Reports" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"The following reports are available for download. Reports are not deleted. A" -" link to every report remains available on this page, identified by the date" -" and time (in UTC) that the report was generated." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"{strong_start}Note{strong_end}: To help protect learner data, links to these" -" reports that you save outside of this page or that you send or receive in " -"email expire after five minutes." -msgstr "" -"{strong_start}注意{strong_end}:為了保護學習者個資安全,您將本頁面連結存於外部,或您發送、接收之電子郵件將於5分鐘後失效。" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Coupon Code List" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download a .csv file of all coupon codes for this course." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download Coupon Codes" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Coupon Codes" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html -msgid "Expiration Date" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Coupon (%)" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Number Redeemed" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "{code}" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "{description}" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "{discount}" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The Invoice Number field cannot be empty." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "No Expiration Date" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the company name." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The company name cannot be a number." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the company contact name." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The company contact name cannot be a number." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the email address for the company contact." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter a valid email address." -msgstr "請輸入有效的電子郵件地址。" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the recipient name." -msgstr "請輸入收件人名稱。" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The recipient name cannot be a number." -msgstr "收件人姓名不可以是數字。" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the recipient email address." -msgstr "請輸入收件人電子郵件。" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the billing address." -msgstr "請輸入帳單地址。" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the price per course seat." -msgstr "請輸入單門課程之價格。" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Enter a numeric value for the price per course seat. Do not include currency" -" symbols." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the number of enrollment codes." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter a numeric value for the number of enrollment codes." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Select a currency." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter a coupon code." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The discount percentage must be less than or equal to 100." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Enter a numeric value for the discount amount. Do not include the percent " -"sign." -msgstr "" - #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Edit Coupon Code" msgstr "" @@ -17220,98 +17016,14 @@ msgstr "" msgid "Percentage Discount" msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html +msgid "Expiration Date" +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon Code" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Executive Summary for {display_name}" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Report Creation Date" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of Seats" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of Enrollments" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Gross Revenue Collected" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Gross Revenue Pending" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of Enrollment Refunds" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Amount Refunded" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Average Price per Seat" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Frequently Used Coupon Codes" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of seats purchased using coupon codes" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Rank" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Percent Discount" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Times Used" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Bulk and Single Seat Purchases" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of seats purchased individually" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of seats purchased in bulk" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of seats purchased with invoices" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Unused bulk purchase seats (revenue at risk)" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Percentage of seats purchased individually" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Percentage of seats purchased in bulk" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Percentage of seats purchased with invoices" -msgstr "" - #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Individual due date extensions" msgstr "" @@ -17404,6 +17116,10 @@ msgstr "重置學生的結束時間" msgid "Generate Registration Code Modal" msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "Create Enrollment Codes" +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "* Required Information" msgstr "* 必要資訊" @@ -17870,10 +17586,18 @@ msgstr "設定課程模式價格" msgid "Please enter Course Mode detail below" msgstr "請在下面輸入課程模式細節" +#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html +msgid "Course Price" +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Price" msgstr "設定價格" +#: lms/templates/instructor/instructor_dashboard_2/special_exams.html +msgid "Proctortrack Escalation Email:" +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/special_exams.html msgid "Allowance Section" msgstr "" @@ -21770,6 +21494,10 @@ msgstr "開課時間" msgid "(UTC)" msgstr "" +#: cms/templates/settings.html +msgid "Course End Date" +msgstr "" + #: cms/templates/settings.html msgid "Last day your course is active" msgstr "您課程可被訪問的最後一天" @@ -22516,6 +22244,24 @@ msgstr "" msgid "Return to the {link_start}home page{link_end}." msgstr "" +#: cms/templates/widgets/deprecated-course-key-warning.html +msgid "Support will be removed in an upcoming release." +msgstr "" + +#: cms/templates/widgets/deprecated-course-key-warning.html +msgid "Support will be removed on {expiration_date}." +msgstr "" + +#: cms/templates/widgets/deprecated-course-key-warning.html +msgid "This course uses a legacy storage format." +msgstr "" + +#: cms/templates/widgets/deprecated-course-key-warning.html +msgid "" +"Please reach out to your support team contact, if you have any additional " +"questions or concerns." +msgstr "" + #: cms/templates/widgets/footer.html msgid "Policies" msgstr "" diff --git a/lms/djangoapps/course_api/blocks/transformers/block_completion.py b/lms/djangoapps/course_api/blocks/transformers/block_completion.py index 57cf23c070..dad229953e 100644 --- a/lms/djangoapps/course_api/blocks/transformers/block_completion.py +++ b/lms/djangoapps/course_api/blocks/transformers/block_completion.py @@ -64,9 +64,10 @@ class BlockCompletionTransformer(BlockStructureTransformer): children = block_structure.get_children(block_key) non_discussion_children = (child_key for child_key in children if block_structure.get_xblock_field(child_key, 'category') != 'discussion') - child_complete = (block_structure.get_xblock_field(child_key, self.COMPLETE) - for child_key in non_discussion_children) - if children and all(child_complete): + all_children_complete = all(block_structure.get_xblock_field(child_key, self.COMPLETE) + for child_key in non_discussion_children) + + if children and all_children_complete: block_structure.override_xblock_field(block_key, self.COMPLETE, True) if any(block_structure.get_xblock_field(child_key, self.RESUME_BLOCK) for child_key in children): diff --git a/lms/djangoapps/instructor/toggles.py b/lms/djangoapps/instructor/toggles.py new file mode 100644 index 0000000000..3242b12fb9 --- /dev/null +++ b/lms/djangoapps/instructor/toggles.py @@ -0,0 +1,30 @@ +""" +Toggles for instructor app +""" + +from openedx.core.djangoapps.waffle_utils import WaffleFlagNamespace, WaffleFlag + +# Namespace for instructor waffle flags. +WAFFLE_FLAG_NAMESPACE = WaffleFlagNamespace(name='instructor') + +# Waffle flag to use optimised is_small_course. +# .. toggle_name: verify_student.optimised_is_small_course +# .. toggle_implementation: WaffleFlag +# .. toggle_default: False +# .. toggle_description: Supports staged rollout to improved is_small_course method. +# .. toggle_category: instructor +# .. toggle_use_cases: incremental_release, open_edx +# .. toggle_creation_date: 2020-07-02 +# .. toggle_expiration_date: n/a +# .. toggle_warnings: n/a +# .. toggle_tickets: PROD-1740 +# .. toggle_status: supported +OPTIMISED_IS_SMALL_COURSE = WaffleFlag( + waffle_namespace=WAFFLE_FLAG_NAMESPACE, + flag_name='optimised_is_small_course', + flag_undefined_default=False +) + + +def use_optimised_is_small_course(): + return OPTIMISED_IS_SMALL_COURSE.is_enabled() diff --git a/lms/djangoapps/instructor/views/instructor_dashboard.py b/lms/djangoapps/instructor/views/instructor_dashboard.py index c0b63a9b09..5daff61c52 100644 --- a/lms/djangoapps/instructor/views/instructor_dashboard.py +++ b/lms/djangoapps/instructor/views/instructor_dashboard.py @@ -7,6 +7,7 @@ import datetime import logging import uuid from functools import reduce +import time import pytz import six @@ -32,6 +33,7 @@ from xblock.fields import ScopeIds from bulk_email.api import is_bulk_email_feature_enabled from course_modes.models import CourseMode, CourseModesArchive from edxmako.shortcuts import render_to_response +from instructor.toggles import use_optimised_is_small_course from lms.djangoapps.certificates import api as certs_api from lms.djangoapps.certificates.models import ( CertificateGenerationConfiguration, @@ -132,6 +134,7 @@ def instructor_dashboard_2(request, course_id): reports_enabled = configuration_helpers.get_value('SHOW_ECOMMERCE_REPORTS', False) sections = [] + start_time = time.time() # starts time before _section_student_admin (further calls is_small_course) if access['staff']: sections.extend([ _section_course_info(course, access), @@ -140,6 +143,8 @@ def instructor_dashboard_2(request, course_id): _section_discussions_management(course, access), _section_student_admin(course, access), ]) + if course_id == 'course-v1:HarvardX+CS50+X': + log.info('Investigating log at %s : after _section_student_admin', time.time() - start_time) if access['data_researcher']: sections.append(_section_data_download(course, access)) @@ -195,7 +200,8 @@ def instructor_dashboard_2(request, course_id): if can_see_special_exams: sections.append(_section_special_exams(course, access)) - + if course_id == 'course-v1:HarvardX+CS50+X': + log.info('Investigating log at %s : section certificate', time.time() - start_time) # Certificates panel # This is used to generate example certificates # and enable self-generated certificates for a course. @@ -214,7 +220,14 @@ def instructor_dashboard_2(request, course_id): if len(openassessment_blocks) > 0 and access['staff']: sections.append(_section_open_response_assessment(request, course, openassessment_blocks, access)) - disable_buttons = not _is_small_course(course_key) + if course_id == 'course-v1:HarvardX+CS50+X': + log.info('Investigating log at %s : before Disable Button (calling is_small_course)', time.time() - start_time) + if use_optimised_is_small_course(): + disable_buttons = not CourseEnrollment.objects.is_small_course(course_key) + else: + disable_buttons = not _is_small_course(course_key) + if course_id == 'course-v1:HarvardX+CS50+X': + log.info('Investigating log at %s : after Disable Button (calling is_small_course)', time.time() - start_time) certificate_white_list = CertificateWhitelist.get_certificate_white_list(course_key) generate_certificate_exceptions_url = reverse( @@ -235,6 +248,8 @@ def instructor_dashboard_2(request, course_id): kwargs={'course_id': six.text_type(course_key)} ) + if course_id == 'course-v1:HarvardX+CS50+X': + log.info('Investigating log at %s : Before Context', time.time() - start_time) certificate_invalidations = CertificateInvalidation.get_certificate_invalidations(course_key) context = { @@ -617,7 +632,10 @@ def _is_small_course(course_key): def _section_student_admin(course, access): """ Provide data for the corresponding dashboard section """ course_key = course.id - is_small_course = _is_small_course(course_key) + if use_optimised_is_small_course(): + is_small_course = CourseEnrollment.objects.is_small_course(course_key) + else: + is_small_course = _is_small_course(course_key) section_data = { 'section_key': 'student_admin', diff --git a/lms/djangoapps/teams/static/teams/js/spec/views/my_teams_spec.js b/lms/djangoapps/teams/static/teams/js/spec/views/my_teams_spec.js index 5331dbfdb6..cd416ea1ae 100644 --- a/lms/djangoapps/teams/static/teams/js/spec/views/my_teams_spec.js +++ b/lms/djangoapps/teams/static/teams/js/spec/views/my_teams_spec.js @@ -13,7 +13,10 @@ define([ }); mockGetTopic = function(topicId) { - return $.Deferred().resolve(TeamSpecHelpers.createMockTopic({id: topicId})); + return $.Deferred().resolve(TeamSpecHelpers.createMockTopic({ + id: topicId, + name: 'teamset-name-' + topicId, + })); }; createMyTeamsView = function(myTeams) { @@ -78,5 +81,11 @@ define([ ); AjaxHelpers.respondWithJson(requests, {}); }); + + it('sets showTeamsetOnTeamCards on child Teams view', function() { + var teams = TeamSpecHelpers.createMockTeams({results: []}), + myTeamsView = createMyTeamsView(teams); + TeamSpecHelpers.verifyCards(myTeamsView, [], true); + }); }); }); diff --git a/lms/djangoapps/teams/static/teams/js/spec/views/team_card_spec.js b/lms/djangoapps/teams/static/teams/js/spec/views/team_card_spec.js index b70e6f7751..db80f6c30e 100644 --- a/lms/djangoapps/teams/static/teams/js/spec/views/team_card_spec.js +++ b/lms/djangoapps/teams/static/teams/js/spec/views/team_card_spec.js @@ -1,41 +1,54 @@ define(['jquery', 'underscore', 'moment', + 'teams/js/spec_helpers/team_spec_helpers', 'teams/js/views/team_card', 'teams/js/models/team', 'teams/js/models/topic'], - function($, _, moment, TeamCardView, Team, Topic) { + function($, _, moment, TeamSpecHelpers, TeamCardView, Team, Topic) { 'use strict'; describe('TeamCardView', function() { var createTeamCardView, view; + var teamName = 'Test Team', + teamID = 'test-team', + courseID = TeamSpecHelpers.testCourseID, + teamsetID = TeamSpecHelpers.testTopicID, + teamsetName = 'Team Set', + description = 'A team for testing'; + createTeamCardView = function(topicOptions) { var model = new Team({ - id: 'test-team', - name: 'Test Team', + id: teamID, + name: teamName, + course_id: courseID, + topic_id: teamsetID, + description: description, is_active: true, - course_id: 'test/course/id', - topic_id: 'test-topic', - description: 'A team for testing', last_activity_at: '2015-08-21T18:53:01.145Z', country: 'us', language: 'en', membership: [] }), - topic = new Topic(_.extend({id: 'test-topic'}, topicOptions)), + topic = new Topic(_.extend({ + id: teamsetID, + name: teamsetName, + }, topicOptions)), TeamCardClass = TeamCardView.extend({ courseMaxTeamSize: '100', srInfo: { id: 'test-sr-id', text: 'Screenreader text' }, + showTeamset: true, countries: {us: 'United States of America'}, languages: {en: 'English'}, // eslint-disable-next-line no-unused-vars getTopic: function(topicId) { return $.Deferred().resolve(topic); } }); return new TeamCardClass({ - model: model + model: model, + showTopic: true, }); }; @@ -47,8 +60,9 @@ define(['jquery', it('can render itself', function() { expect(view.$el).toHaveClass('list-card'); - expect(view.$el.find('.card-title').text()).toContain('Test Team'); - expect(view.$el.find('.card-description').text()).toContain('A team for testing'); + expect(view.$el.find('.card-title').text()).toContain(teamName); + expect(view.$el.find('.card-description').text()).toContain(description); + expect(view.$el.find('.card-type').text()).toContain(teamsetName); expect(view.$el.find('.team-activity abbr').attr('title')).toContain('August 21st 2015'); expect(view.$el.find('.team-activity').text()).toContain('Last activity'); expect(view.$el.find('.card-meta').text()).toContain('0 / 100 Members'); @@ -56,8 +70,14 @@ define(['jquery', expect(view.$el.find('.team-language').text()).toContain('English'); }); + it('does not show teamset name is showTeamset is false', function() { + view.showTeamset = false; + view.render(); + expect(view.$el.find('.card-type').length).toEqual(0); + }); + it('navigates to the associated team page when its action button is clicked', function() { - expect(view.$('.action').attr('href')).toEqual('#teams/test-topic/test-team'); + expect(view.$('.action').attr('href')).toEqual('#teams/' + teamsetID + '/' + teamID); }); describe('Profile Image Thumbnails', function() { diff --git a/lms/djangoapps/teams/static/teams/js/spec/views/teams_spec.js b/lms/djangoapps/teams/static/teams/js/spec/views/teams_spec.js index a36cee98c7..1106a4ee13 100644 --- a/lms/djangoapps/teams/static/teams/js/spec/views/teams_spec.js +++ b/lms/djangoapps/teams/static/teams/js/spec/views/teams_spec.js @@ -16,13 +16,17 @@ define([ var MockTeamsView = TeamsView.extend({ // eslint-disable-next-line no-unused-vars getTopic: function(topicId) { - return $.Deferred().resolve(TeamSpecHelpers.createMockTopic({})); - } + return $.Deferred().resolve(TeamSpecHelpers.createMockTopic({ + id: topicId, + name: 'teamset-name-' + topicId, + })); + }, }); return new MockTeamsView({ el: '.teams-container', collection: options.teams || TeamSpecHelpers.createMockTeams(), showActions: true, + showTeamset: options.showTeamset, context: TeamSpecHelpers.testContext }).render(); }; @@ -40,7 +44,18 @@ define([ expect(footerEl.text()).toMatch('1\\s+out of\\s+\/\\s+2'); // eslint-disable-line no-useless-escape expect(footerEl).not.toHaveClass('hidden'); - TeamSpecHelpers.verifyCards(teamsView, testTeamData); + TeamSpecHelpers.verifyCards(teamsView, testTeamData, false); + }); + + it('forwards the showTeamset option to loaded team cards)', function() { + var testTeamData = TeamSpecHelpers.createMockTeamData(1, 5), + teamsView = createTeamsView({ + teams: TeamSpecHelpers.createMockTeams({ + results: testTeamData + }), + showTeamset: true, + }); + TeamSpecHelpers.verifyCards(teamsView, testTeamData, true); }); }); }); diff --git a/lms/djangoapps/teams/static/teams/js/spec_helpers/team_spec_helpers.js b/lms/djangoapps/teams/static/teams/js/spec_helpers/team_spec_helpers.js index 65914993f9..efe97c24dc 100644 --- a/lms/djangoapps/teams/static/teams/js/spec_helpers/team_spec_helpers.js +++ b/lms/djangoapps/teams/static/teams/js/spec_helpers/team_spec_helpers.js @@ -113,13 +113,31 @@ define([ ); }; - var verifyCards = function(view, teams) { + + /** + * Verify that the given view shows cards for each of the teams included. + * If showTeamset is included (true or false), the test will also verify that the teamset + * label/penannt is or is not included in the card accordingly. + * + * @param {JQ Element} view - jquery DOM element for the card container + * @param {TeamModel[]} teams - list of teams to verify. + * @param {[bool]} showTeamset - should show teamset string? (if not included, do not check + * the teamset string at all) + */ + var verifyCards = function(view, teams, showTeamset) { var teamCards = view.$('.team-card'); _.each(teams, function(team, index) { var currentCard = teamCards.eq(index); + var teamsetString = 'teamset-name-' + team.topic_id; expect(currentCard.text()).toMatch(team.name); expect(currentCard.text()).toMatch(_.object(testLanguages)[team.language]); expect(currentCard.text()).toMatch(_.object(testCountries)[team.country]); + if (showTeamset === false) { + expect(currentCard.text()).not.toMatch(teamsetString); + } + if (showTeamset === true) { + expect(currentCard.text()).toMatch(teamsetString); + } }); }; diff --git a/lms/djangoapps/teams/static/teams/js/views/my_teams.js b/lms/djangoapps/teams/static/teams/js/views/my_teams.js index 3a7931a2fb..e73bfae6da 100644 --- a/lms/djangoapps/teams/static/teams/js/views/my_teams.js +++ b/lms/djangoapps/teams/static/teams/js/views/my_teams.js @@ -7,7 +7,13 @@ initialize: function(options) { this.getTopic = options.getTopic; - TeamsView.prototype.initialize.call(this, options); + TeamsView.prototype.initialize.call( + this, + _.extend( + { showTeamset: true }, + options + ) + ); }, render: function() { diff --git a/lms/djangoapps/teams/static/teams/js/views/team_card.js b/lms/djangoapps/teams/static/teams/js/views/team_card.js index f6978f3f75..91dedde1d8 100644 --- a/lms/djangoapps/teams/static/teams/js/views/team_card.js +++ b/lms/djangoapps/teams/static/teams/js/views/team_card.js @@ -138,11 +138,17 @@ this.model.on('change:membership', function() { this.detailViews[0].memberships = this.model.get('membership'); }, this); + + this.teamsetName = null; + this.getTopic(this.model.get('topic_id')).done(_.bind(function(teamset) { + this.teamsetName = teamset.get('name'); + }, this)); }, configuration: 'list_card', cardClass: 'team-card', title: function() { return this.model.get('name'); }, + pennant: function() { return this.showTeamset ? this.teamsetName : undefined; }, description: function() { return this.model.get('description'); }, details: function() { return this.detailViews; }, actionClass: 'action-view', diff --git a/lms/djangoapps/teams/static/teams/js/views/teams.js b/lms/djangoapps/teams/static/teams/js/views/teams.js index 71ac15dd07..3f6732db4b 100644 --- a/lms/djangoapps/teams/static/teams/js/views/teams.js +++ b/lms/djangoapps/teams/static/teams/js/views/teams.js @@ -24,6 +24,7 @@ router: options.router, courseMaxTeamSize: this.context.courseMaxTeamSize, srInfo: this.srInfo, + showTeamset: options.showTeamset, countries: TeamUtils.selectorOptionsArrayToHashWithBlank(this.context.countries), languages: TeamUtils.selectorOptionsArrayToHashWithBlank(this.context.languages), getTopic: function(topicId) { return view.getTopic(topicId); } diff --git a/lms/djangoapps/verify_student/views.py b/lms/djangoapps/verify_student/views.py index b0626e8ed5..67104416d2 100644 --- a/lms/djangoapps/verify_student/views.py +++ b/lms/djangoapps/verify_student/views.py @@ -1155,7 +1155,7 @@ def results_callback(request): ) if use_new_templates_for_id_verification_emails(): - context = {'user_id': user, 'expiry_date': expiry_date.strftime("%m/%d/%Y")} + context = {'user': user, 'expiry_date': expiry_date.strftime("%m/%d/%Y")} send_verification_approved_email(context=context) else: verification_status_email_vars['expiry_date'] = expiry_date.strftime("%m/%d/%Y") diff --git a/lms/envs/devstack.py b/lms/envs/devstack.py index 87ae3e3792..4bafcbea24 100644 --- a/lms/envs/devstack.py +++ b/lms/envs/devstack.py @@ -362,15 +362,14 @@ CREDENTIALS_SERVICE_USERNAME = 'credentials_worker' COURSE_CATALOG_URL_ROOT = 'http://edx.devstack.discovery:18381' COURSE_CATALOG_API_URL = '{}/api/v1'.format(COURSE_CATALOG_URL_ROOT) -# Uncomment the lines below if you'd like to see SQL statements in your devstack LMS log. -# LOGGING['handlers']['console']['level'] = 'DEBUG' -# LOGGING['loggers']['django.db.backends'] = {'handlers': ['console'], 'level': 'DEBUG', 'propagate': False} - +# Enable enterprise integration so that we can include enterprise System-wide +# role logic without having to manipulate private settings. +FEATURES['ENABLE_ENTERPRISE_INTEGRATION'] = True SYSTEM_WIDE_ROLE_CLASSES = os.environ.get("SYSTEM_WIDE_ROLE_CLASSES", SYSTEM_WIDE_ROLE_CLASSES) -SYSTEM_WIDE_ROLE_CLASSES.extend(['system_wide_roles.SystemWideRoleAssignment']) - -if FEATURES['ENABLE_ENTERPRISE_INTEGRATION']: - SYSTEM_WIDE_ROLE_CLASSES.extend(['enterprise.SystemWideEnterpriseUserRoleAssignment']) +SYSTEM_WIDE_ROLE_CLASSES.extend([ + 'system_wide_roles.SystemWideRoleAssignment', + 'enterprise.SystemWideEnterpriseUserRoleAssignment', +]) # List of enterprise customer uuids to exclude from transition to use of enterprise-catalog ENTERPRISE_CUSTOMERS_EXCLUDED_FROM_CATALOG = () @@ -398,3 +397,7 @@ if os.path.isfile(join(dirname(abspath(__file__)), 'private.py')): # ] # TEMPLATES[1]["DIRS"] = _make_mako_template_dirs # derive_settings(__name__) + +# Uncomment the lines below if you'd like to see SQL statements in your devstack LMS log. +# LOGGING['handlers']['console']['level'] = 'DEBUG' +# LOGGING['loggers']['django.db.backends'] = {'handlers': ['console'], 'level': 'DEBUG', 'propagate': False} diff --git a/openedx/core/djangoapps/waffle_utils/__init__.py b/openedx/core/djangoapps/waffle_utils/__init__.py index 0bb3872f8f..2b97a3de92 100644 --- a/openedx/core/djangoapps/waffle_utils/__init__.py +++ b/openedx/core/djangoapps/waffle_utils/__init__.py @@ -8,25 +8,25 @@ Usage: For Waffle Flags, first set up the namespace, and then create flags using the namespace. For example:: - WAFFLE_FLAG_NAMESPACE = WaffleFlagNamespace(name='course_experience') + WAFFLE_FLAG_NAMESPACE = WaffleFlagNamespace(name='my_namespace') # Use CourseWaffleFlag when you are in the context of a course. - UNIFIED_COURSE_TAB_FLAG = CourseWaffleFlag(WAFFLE_FLAG_NAMESPACE, 'unified_course_tab') + SOME_COURSE_FLAG = CourseWaffleFlag(WAFFLE_FLAG_NAMESPACE, 'some_course_feature') # Use WaffleFlag when outside the context of a course. - HIDE_SEARCH_FLAG = WaffleFlag(WAFFLE_FLAG_NAMESPACE, 'hide_search') + SOME_FLAG = WaffleFlag(WAFFLE_FLAG_NAMESPACE, 'some_feature') You can check these flags in code using the following:: - HIDE_SEARCH_FLAG.is_enabled() - UNIFIED_COURSE_TAB_FLAG.is_enabled(course_key) + SOME_FLAG.is_enabled() + SOME_COURSE_FLAG.is_enabled(course_key) To test these WaffleFlags, see testutils.py. In the above examples, you will use Django Admin "waffle" section to configure -for a flag named: course_experience.unified_course_tab +for a flag named: my_namespace.some_course_feature You could also use the Django Admin "waffle_utils" section to configure a course -override for this same flag (e.g. course_experience.unified_course_tab). +override for this same flag (e.g. my_namespace.some_course_feature). For Waffle Switches, first set up the namespace, and then create the flag name. For example:: diff --git a/openedx/core/djangoapps/waffle_utils/testutils.py b/openedx/core/djangoapps/waffle_utils/testutils.py index 0f52fd6992..af7b6a614b 100644 --- a/openedx/core/djangoapps/waffle_utils/testutils.py +++ b/openedx/core/djangoapps/waffle_utils/testutils.py @@ -19,7 +19,7 @@ class override_waffle_flag(override_flag): It accepts two parameters, the flag itself and its intended state. Example usage:: - with override_waffle_flag(UNIFIED_COURSE_TAB_FLAG, active=True): + with override_waffle_flag(SOME_COURSE_FLAG, active=True): ... If the flag already exists, its value will be changed inside the context @@ -29,7 +29,7 @@ class override_waffle_flag(override_flag): It can also act as a decorator:: - @override_waffle_flag(UNIFIED_COURSE_TAB_FLAG, active=True) + @override_waffle_flag(SOME_COURSE_FLAG, active=True) def test_happy_mode_enabled(): ... """ diff --git a/openedx/features/course_experience/__init__.py b/openedx/features/course_experience/__init__.py index a038208310..5bbe6004e8 100644 --- a/openedx/features/course_experience/__init__.py +++ b/openedx/features/course_experience/__init__.py @@ -1,9 +1,11 @@ """ Unified course experience settings and helper methods. """ - - +import crum +from django.conf import settings from django.utils.translation import ugettext as _ +from edx_django_utils.monitoring import set_custom_metric +from waffle import flag_is_active from lms.djangoapps.experiments.flags import ExperimentWaffleFlag from openedx.core.djangoapps.util.user_messages import UserMessageCollection @@ -12,11 +14,95 @@ from openedx.core.djangoapps.waffle_utils import CourseWaffleFlag, WaffleFlag, W # Namespace for course experience waffle flags. WAFFLE_FLAG_NAMESPACE = WaffleFlagNamespace(name='course_experience') +# .. toggle_name: USE_DEFAULT_TRUE_NAMESPACE +# .. toggle_implementation: DjangoSetting +# .. toggle_default: False +# .. toggle_description: When True, uses the new default_true namespace to help deprecate flag_undefined_default. +# .. toggle_category: course_experience +# .. toggle_use_cases: monitored_rollout +# .. toggle_creation_date: 2020-06-30 +# .. toggle_expiration_date: 2020-07 +# .. toggle_warnings: n/a +# .. toggle_tickets: n/a +# .. toggle_status: supported +_USE_DEFAULT_TRUE_NAMESPACE = 'USE_DEFAULT_TRUE_NAMESPACE' + + +class DefaultTrueWaffleFlagNamespace(WaffleFlagNamespace): + """ + This is a temporary class to help deprecate/remove ``flag_undefined_default``. + + TODO: TNL-7061: Perform the actual clean-up required to remove these flags + and refactor/fix any tests that shouldn't be removed. + + """ + def _is_flag_active(self, flag_name): + """ + Returns and caches whether the provided flag is active. + + If the flag value is already cached in the request, it is returned. + If the flag doesn't exist, always returns default of True. + + Note: This is a similified version of the method it overrides, that + hard codes the default to True, and skips the call back used for + course overrides: + https://github.com/edx/edx-platform/blob/df9be8c678f8266e2e5710513c74deca14c4527c/openedx/core/djangoapps/waffle_utils/__init__.py#L229-L305 + + """ + # Import is placed here to avoid model import at project startup. + from waffle.models import Flag + + # validate arguments + namespaced_flag_name = self._namespaced_name(flag_name) + value = self._cached_flags.get(namespaced_flag_name) + if value is None: + + # determine if the flag is undefined in waffle + try: + Flag.objects.get(name=namespaced_flag_name) + except Flag.DoesNotExist: + # default to True if not defined + value = True + + if value is None: + request = crum.get_current_request() + if request: + value = flag_is_active(request, namespaced_flag_name) + else: + set_custom_metric('warn_flag_no_request', True) + # Return the default value if not in a request context. + # Same as the original implementation + self._set_waffle_flag_metric(namespaced_flag_name, value) + return True + + self._cached_flags[namespaced_flag_name] = value + + self._set_waffle_flag_metric(namespaced_flag_name, value) + return value + + def is_flag_active(self, flag_name, check_before_waffle_callback=None, flag_undefined_default=None): + """ + Overrides is_flag_active if setting USE_DEFAULT_TRUE_NAMESPACE is True. + """ + use_default_true_namespace = getattr(settings, _USE_DEFAULT_TRUE_NAMESPACE, False) + set_custom_metric('temp_use_default_true_namespace', use_default_true_namespace) + if use_default_true_namespace: + return self._is_flag_active(flag_name) + else: + return super().is_flag_active(flag_name, check_before_waffle_callback, flag_undefined_default=True) + + +DEFAULT_TRUE_WAFFLE_FLAG_NAMESPACE = DefaultTrueWaffleFlagNamespace(name='course_experience') + # Waffle flag to enable the separate course outline page and full width content. -COURSE_OUTLINE_PAGE_FLAG = CourseWaffleFlag(WAFFLE_FLAG_NAMESPACE, 'course_outline_page', flag_undefined_default=True) +# NOTE: The special namespace makes the default True and skips checking course overrides. +# TODO: TNL-7061: Perform the actual clean-up required to remove this flag. +COURSE_OUTLINE_PAGE_FLAG = CourseWaffleFlag(DEFAULT_TRUE_WAFFLE_FLAG_NAMESPACE, 'course_outline_page') # Waffle flag to enable a single unified "Course" tab. -UNIFIED_COURSE_TAB_FLAG = CourseWaffleFlag(WAFFLE_FLAG_NAMESPACE, 'unified_course_tab', flag_undefined_default=True) +# NOTE: The special namespace makes the default True and skips checking course overrides. +# TODO: TNL-7061: Perform the actual clean-up required to remove this flag. +UNIFIED_COURSE_TAB_FLAG = CourseWaffleFlag(DEFAULT_TRUE_WAFFLE_FLAG_NAMESPACE, 'unified_course_tab') # Waffle flag to enable the sock on the footer of the home and courseware pages. DISPLAY_COURSE_SOCK_FLAG = CourseWaffleFlag(WAFFLE_FLAG_NAMESPACE, 'display_course_sock') diff --git a/openedx/tests/completion_integration/test_services.py b/openedx/tests/completion_integration/test_services.py index 60b97fc6e3..8e15f64f27 100644 --- a/openedx/tests/completion_integration/test_services.py +++ b/openedx/tests/completion_integration/test_services.py @@ -12,8 +12,10 @@ from six.moves import range from openedx.core.djangolib.testing.utils import skip_unless_lms from student.tests.factories import UserFactory -from xmodule.modulestore.tests.django_utils import SharedModuleStoreTestCase -from xmodule.modulestore.tests.factories import CourseFactory, ItemFactory +from xmodule.library_tools import LibraryToolsService +from xmodule.modulestore.tests.django_utils import SharedModuleStoreTestCase, TEST_DATA_SPLIT_MODULESTORE +from xmodule.modulestore.tests.factories import CourseFactory, ItemFactory, LibraryFactory +from xmodule.tests import get_test_system @ddt.ddt @@ -22,6 +24,8 @@ class CompletionServiceTestCase(CompletionWaffleTestMixin, SharedModuleStoreTest """ Test the data returned by the CompletionService. """ + MODULESTORE = TEST_DATA_SPLIT_MODULESTORE + @classmethod def setUpClass(cls): super(CompletionServiceTestCase, cls).setUpClass() @@ -30,38 +34,47 @@ class CompletionServiceTestCase(CompletionWaffleTestMixin, SharedModuleStoreTest cls.chapter = ItemFactory.create( parent=cls.course, category="chapter", + publish_item=False, ) cls.sequence = ItemFactory.create( parent=cls.chapter, category='sequential', + publish_item=False, ) cls.vertical = ItemFactory.create( parent=cls.sequence, category='vertical', + publish_item=False, ) cls.html = ItemFactory.create( parent=cls.vertical, category='html', + publish_item=False, ) cls.problem = ItemFactory.create( parent=cls.vertical, category="problem", + publish_item=False, ) cls.problem2 = ItemFactory.create( parent=cls.vertical, category="problem", + publish_item=False, ) cls.problem3 = ItemFactory.create( parent=cls.vertical, category="problem", + publish_item=False, ) cls.problem4 = ItemFactory.create( parent=cls.vertical, category="problem", + publish_item=False, ) cls.problem5 = ItemFactory.create( parent=cls.vertical, category="problem", + publish_item=False, ) cls.store.update_item(cls.course, UserFactory().id) cls.problems = [cls.problem, cls.problem2, cls.problem3, cls.problem4, cls.problem5] @@ -105,6 +118,25 @@ class CompletionServiceTestCase(CompletionWaffleTestMixin, SharedModuleStoreTest completion=0.75, ) + def _bind_course_module(self, module): + """ + Bind a module (part of self.course) so we can access student-specific data. + """ + module_system = get_test_system(course_id=module.location.course_key) + module_system.descriptor_runtime = module.runtime._descriptor_system # pylint: disable=protected-access + module_system._services['library_tools'] = LibraryToolsService(self.store) # pylint: disable=protected-access + + def get_module(descriptor): + """Mocks module_system get_module function""" + sub_module_system = get_test_system(course_id=module.location.course_key) + sub_module_system.get_module = get_module + sub_module_system.descriptor_runtime = descriptor._runtime # pylint: disable=protected-access + descriptor.bind_for_student(sub_module_system, self.user.id) + return descriptor + + module_system.get_module = get_module + module.xmodule_runtime = module_system + def test_completion_service(self): # Only the completions for the user and course specified for the CompletionService # are returned. Values are returned for all keys provided. @@ -165,3 +197,78 @@ class CompletionServiceTestCase(CompletionWaffleTestMixin, SharedModuleStoreTest self.assertEqual(self.completion_service.can_mark_block_complete_on_view(self.vertical), False) self.assertEqual(self.completion_service.can_mark_block_complete_on_view(self.html), True) self.assertEqual(self.completion_service.can_mark_block_complete_on_view(self.problem), False) + + def test_vertical_completion_with_library_content(self): + library = LibraryFactory.create(modulestore=self.store) + ItemFactory.create(parent=library, category='problem', publish_item=False, user_id=self.user.id) + ItemFactory.create(parent=library, category='problem', publish_item=False, user_id=self.user.id) + ItemFactory.create(parent=library, category='problem', publish_item=False, user_id=self.user.id) + lib_vertical = ItemFactory.create(parent=self.sequence, category='vertical', publish_item=False) + library_content_block = ItemFactory.create( + parent=lib_vertical, + category='library_content', + max_count=1, + source_library_id=str(library.location.library_key), + user_id=self.user.id, + ) + library_content_block.refresh_children() + lib_vertical = self.store.get_item(lib_vertical.location) + self._bind_course_module(lib_vertical) + # We need to refetch the library_content_block to retrieve the + # fresh version from the call to get_item for lib_vertical + library_content_block = [child for child in lib_vertical.get_children() + if child.scope_ids.block_type == 'library_content'][0] + + ## Ensure the library_content_block is properly set up + # This is needed so we can call get_child_descriptors + self._bind_course_module(library_content_block) + # Make sure the runtime knows that the block's children vary per-user: + self.assertTrue(library_content_block.has_dynamic_children()) + self.assertEqual(len(library_content_block.children), 3) + # Check how many children each user will see: + self.assertEqual(len(library_content_block.get_child_descriptors()), 1) + + # No problems are complete yet + self.assertFalse(self.completion_service.vertical_is_complete(lib_vertical)) + + for block_key in self.block_keys: + BlockCompletion.objects.submit_completion( + user=self.user, + block_key=block_key, + completion=1.0 + ) + # Library content problems aren't complete yet + self.assertFalse(self.completion_service.vertical_is_complete(lib_vertical)) + + for child in library_content_block.get_child_descriptors(): + BlockCompletion.objects.submit_completion( + user=self.user, + block_key=child.scope_ids.usage_id, + completion=1.0 + ) + self.assertTrue(self.completion_service.vertical_is_complete(lib_vertical)) + + def test_vertical_completion_with_nested_children(self): + parent_vertical = ItemFactory(parent=self.sequence, category='vertical') + extra_vertical = ItemFactory(parent=parent_vertical, category='vertical') + problem = ItemFactory(parent=extra_vertical, category='problem') + parent_vertical = self.store.get_item(parent_vertical.location) + + # Nothing is complete + self.assertFalse(self.completion_service.vertical_is_complete(parent_vertical)) + + for block_key in self.block_keys: + BlockCompletion.objects.submit_completion( + user=self.user, + block_key=block_key, + completion=1.0 + ) + # The nested child isn't complete yet + self.assertFalse(self.completion_service.vertical_is_complete(parent_vertical)) + + BlockCompletion.objects.submit_completion( + user=self.user, + block_key=problem.location, + completion=1.0 + ) + self.assertTrue(self.completion_service.vertical_is_complete(parent_vertical)) diff --git a/requirements/constraints.txt b/requirements/constraints.txt index 055f7867c1..bfc99cf2fa 100644 --- a/requirements/constraints.txt +++ b/requirements/constraints.txt @@ -22,6 +22,9 @@ django-cors-headers<3.0.0 # It seems like django-countries > 5.5 may cause performance issues for us. django-countries==5.5 +# Removes deprecated get_ip function, which we still use (ARCHBOM-1329 for unpinning) +django-ipware<3.0.0 + # 2.0.0 dropped support for Python 3.5 django-pipeline<2.0.0 @@ -37,12 +40,6 @@ drf-yasg<1.17.1 # drf-jwt 1.15.0 contains a migration that breaks on MySQL: https://github.com/Styria-Digital/django-rest-framework-jwt/issues/40 drf-jwt==1.14.0 -# Tests are failing with 3.2.2: https://build.testeng.edx.org/job/edx-platform-python-pipeline-pr/19138/ -edx-completion==3.2.1 - -# 3.3.15 is failing with `AttributeError: 'Settings' object has no attribute 'COURSE_CATALOG_URL_ROOT'` -edx-enterprise==3.3.13 - # Upgrading to 2.12.0 breaks several test classes due to API changes, need to update our code accordingly factory-boy==2.8.1 diff --git a/requirements/edx/base.in b/requirements/edx/base.in index 11fd17f815..321756cef3 100644 --- a/requirements/edx/base.in +++ b/requirements/edx/base.in @@ -125,7 +125,8 @@ pycryptodomex pygments # Used to support colors in paver command output pyjwkest # TODO Replace PyJWT usage with pyjwkest -PyJWT==1.5.2 +# PyJWT 1.6.3 contains PyJWTError, which is required by Apple auth in social-auth-core +PyJWT>=1.6.3 pymongo # MongoDB driver pynliner # Inlines CSS styles into HTML for email notifications python-dateutil diff --git a/requirements/edx/base.txt b/requirements/edx/base.txt index 45016127b7..67050546f3 100644 --- a/requirements/edx/base.txt +++ b/requirements/edx/base.txt @@ -59,7 +59,7 @@ django-countries==5.5 # via -c requirements/edx/../constraints.txt, -r requi django-crum==0.7.6 # via -r requirements/edx/base.in, edx-enterprise, edx-proctoring, edx-rbac, super-csv django-fernet-fields==0.6 # via -r requirements/edx/base.in, edx-enterprise, edxval django-filter==2.3.0 # via -r requirements/edx/base.in, edx-enterprise -django-ipware==2.1.0 # via -r requirements/edx/base.in, edx-enterprise, edx-proctoring +django-ipware==2.1.0 # via -c requirements/edx/../constraints.txt, -r requirements/edx/base.in, edx-enterprise, edx-proctoring django-js-asset==1.2.2 # via django-mptt django-method-override==1.0.4 # via -r requirements/edx/base.in django-model-utils==4.0.0 # via -r requirements/edx/base.in, django-user-tasks, edx-bulk-grades, edx-celeryutils, edx-completion, edx-enterprise, edx-milestones, edx-organizations, edx-proctoring, edx-rbac, edx-submissions, edx-when, edxval, ora2, super-csv @@ -81,7 +81,7 @@ django-storages==1.8 # via -c requirements/edx/../constraints.txt, -r requi django-user-tasks==1.1.0 # via -r requirements/edx/base.in django-waffle==1.0.0 # via -r requirements/edx/base.in, edx-django-utils, edx-drf-extensions, edx-enterprise, edx-proctoring django-webpack-loader==0.7.0 # via -r requirements/edx/base.in, edx-proctoring -django==2.2.13 # via -c requirements/edx/../constraints.txt, -r requirements/edx/base.in, code-annotations, django-appconf, django-celery, django-classy-tags, django-config-models, django-cors-headers, django-crum, django-fernet-fields, django-filter, django-method-override, django-model-utils, django-mptt, django-multi-email-field, django-mysql, django-oauth-toolkit, django-pyfs, django-ratelimit-backend, django-sekizai, django-splash, django-statici18n, django-storages, django-user-tasks, django-wiki, drf-jwt, drf-yasg, edx-ace, edx-api-doc-tools, edx-bulk-grades, edx-celeryutils, edx-completion, edx-django-release-util, edx-django-sites-extensions, edx-django-utils, edx-drf-extensions, edx-enterprise, edx-i18n-tools, edx-milestones, edx-opaque-keys, edx-organizations, edx-proctoring, edx-rbac, edx-search, edx-submissions, edx-when, edxval, enmerkar, enmerkar-underscore, event-tracking, help-tokens, jsonfield2, lti-consumer-xblock, ora2, rest-condition, super-csv, xss-utils +django==2.2.14 # via -c requirements/edx/../constraints.txt, -r requirements/edx/base.in, code-annotations, django-appconf, django-celery, django-classy-tags, django-config-models, django-cors-headers, django-crum, django-fernet-fields, django-filter, django-method-override, django-model-utils, django-mptt, django-multi-email-field, django-mysql, django-oauth-toolkit, django-pyfs, django-ratelimit-backend, django-sekizai, django-splash, django-statici18n, django-storages, django-user-tasks, django-wiki, drf-jwt, drf-yasg, edx-ace, edx-api-doc-tools, edx-bulk-grades, edx-celeryutils, edx-completion, edx-django-release-util, edx-django-sites-extensions, edx-django-utils, edx-drf-extensions, edx-enterprise, edx-i18n-tools, edx-milestones, edx-opaque-keys, edx-organizations, edx-proctoring, edx-rbac, edx-search, edx-submissions, edx-when, edxval, enmerkar, enmerkar-underscore, event-tracking, help-tokens, jsonfield2, lti-consumer-xblock, ora2, rest-condition, super-csv, xss-utils djangorestframework-xml==2.0.0 # via edx-enterprise djangorestframework==3.9.4 # via -r requirements/edx/base.in, django-config-models, django-user-tasks, drf-jwt, drf-yasg, edx-api-doc-tools, edx-completion, edx-drf-extensions, edx-enterprise, edx-organizations, edx-proctoring, edx-submissions, ora2, rest-condition, super-csv docopt==0.6.2 # via xmodule @@ -94,12 +94,12 @@ edx-api-doc-tools==1.3.1 # via -r requirements/edx/base.in edx-bulk-grades==0.7.0 # via -r requirements/edx/base.in, staff-graded-xblock edx-ccx-keys==1.1.0 # via -r requirements/edx/base.in edx-celeryutils==0.5.1 # via -r requirements/edx/base.in, super-csv -edx-completion==3.2.1 # via -c requirements/edx/../constraints.txt, -r requirements/edx/base.in +edx-completion==3.2.3 # via -r requirements/edx/base.in edx-django-release-util==0.4.4 # via -r requirements/edx/base.in edx-django-sites-extensions==2.5.1 # via -r requirements/edx/base.in edx-django-utils==3.2.3 # via -r requirements/edx/base.in, django-config-models, edx-drf-extensions, edx-enterprise, edx-rest-api-client, edx-when edx-drf-extensions==6.1.0 # via -r requirements/edx/base.in, edx-completion, edx-enterprise, edx-organizations, edx-proctoring, edx-rbac, edx-when, edxval -edx-enterprise==3.3.13 # via -c requirements/edx/../constraints.txt, -r requirements/edx/base.in +edx-enterprise==3.3.15 # via -r requirements/edx/base.in edx-i18n-tools==0.5.3 # via ora2 edx-milestones==0.3.0 # via -r requirements/edx/base.in edx-opaque-keys[django]==2.1.0 # via -r requirements/edx/paver.txt, edx-bulk-grades, edx-ccx-keys, edx-completion, edx-drf-extensions, edx-enterprise, edx-milestones, edx-organizations, edx-proctoring, edx-user-state-client, edx-when, xmodule @@ -158,7 +158,7 @@ git+https://github.com/edx/MongoDBProxy.git@d92bafe9888d2940f647a7b2b2383b29c752 mongoengine==0.20.0 # via -r requirements/edx/base.in more-itertools==8.4.0 # via -r requirements/edx/paver.txt, zipp mpmath==1.1.0 # via sympy -mysqlclient==1.4.6 # via -r requirements/edx/base.in +mysqlclient==2.0.0 # via -r requirements/edx/base.in newrelic==5.14.1.144 # via -r requirements/edx/base.in, edx-django-utils nltk==3.5 # via -r requirements/edx/../edx-sandbox/shared.txt, chem nodeenv==1.4.0 # via -r requirements/edx/base.in @@ -185,7 +185,7 @@ pycryptodome==3.9.8 # via lti-consumer-xblock, pdfminer.six pycryptodomex==3.9.8 # via -r requirements/edx/base.in, edx-proctoring, pyjwkest pygments==2.6.1 # via -r requirements/edx/base.in pyjwkest==1.4.2 # via -r requirements/edx/base.in, edx-drf-extensions, lti-consumer-xblock -pyjwt==1.5.2 # via -r requirements/edx/base.in, drf-jwt, edx-rest-api-client, social-auth-core +pyjwt==1.7.1 # via -r requirements/edx/base.in, drf-jwt, edx-rest-api-client, social-auth-core pymongo==3.10.1 # via -r requirements/edx/base.in, -r requirements/edx/paver.txt, edx-opaque-keys, event-tracking, mongodbproxy, mongoengine pynliner==0.8.0 # via -r requirements/edx/base.in pyparsing==2.4.7 # via chem, openedx-calc, packaging, pycontracts diff --git a/requirements/edx/development.txt b/requirements/edx/development.txt index c6a7c11984..fab5c57778 100644 --- a/requirements/edx/development.txt +++ b/requirements/edx/development.txt @@ -71,7 +71,7 @@ django-crum==0.7.6 # via -r requirements/edx/testing.txt, edx-enterprise, django-debug-toolbar==2.2 # via -r requirements/edx/development.in django-fernet-fields==0.6 # via -r requirements/edx/testing.txt, edx-enterprise, edxval django-filter==2.3.0 # via -r requirements/edx/testing.txt, edx-enterprise -django-ipware==2.1.0 # via -r requirements/edx/testing.txt, edx-enterprise, edx-proctoring +django-ipware==2.1.0 # via -c requirements/edx/../constraints.txt, -r requirements/edx/testing.txt, edx-enterprise, edx-proctoring django-js-asset==1.2.2 # via -r requirements/edx/testing.txt, django-mptt django-method-override==1.0.4 # via -r requirements/edx/testing.txt django-model-utils==4.0.0 # via -r requirements/edx/testing.txt, django-user-tasks, edx-bulk-grades, edx-celeryutils, edx-completion, edx-enterprise, edx-milestones, edx-organizations, edx-proctoring, edx-rbac, edx-submissions, edx-when, edxval, ora2, super-csv @@ -93,7 +93,7 @@ django-storages==1.8 # via -c requirements/edx/../constraints.txt, -r requi django-user-tasks==1.1.0 # via -r requirements/edx/testing.txt django-waffle==1.0.0 # via -r requirements/edx/testing.txt, edx-django-utils, edx-drf-extensions, edx-enterprise, edx-proctoring django-webpack-loader==0.7.0 # via -r requirements/edx/testing.txt, edx-proctoring -django==2.2.13 # via -c requirements/edx/../constraints.txt, -r requirements/edx/testing.txt, code-annotations, django-appconf, django-celery, django-classy-tags, django-config-models, django-cors-headers, django-crum, django-debug-toolbar, django-fernet-fields, django-filter, django-method-override, django-model-utils, django-mptt, django-multi-email-field, django-mysql, django-oauth-toolkit, django-pyfs, django-ratelimit-backend, django-sekizai, django-splash, django-statici18n, django-storages, django-user-tasks, django-wiki, drf-jwt, drf-yasg, edx-ace, edx-api-doc-tools, edx-bulk-grades, edx-celeryutils, edx-completion, edx-django-release-util, edx-django-sites-extensions, edx-django-utils, edx-drf-extensions, edx-enterprise, edx-i18n-tools, edx-milestones, edx-opaque-keys, edx-organizations, edx-proctoring, edx-rbac, edx-search, edx-submissions, edx-when, edxval, enmerkar, enmerkar-underscore, event-tracking, help-tokens, jsonfield2, lti-consumer-xblock, ora2, rest-condition, super-csv, xss-utils +django==2.2.14 # via -c requirements/edx/../constraints.txt, -r requirements/edx/testing.txt, code-annotations, django-appconf, django-celery, django-classy-tags, django-config-models, django-cors-headers, django-crum, django-debug-toolbar, django-fernet-fields, django-filter, django-method-override, django-model-utils, django-mptt, django-multi-email-field, django-mysql, django-oauth-toolkit, django-pyfs, django-ratelimit-backend, django-sekizai, django-splash, django-statici18n, django-storages, django-user-tasks, django-wiki, drf-jwt, drf-yasg, edx-ace, edx-api-doc-tools, edx-bulk-grades, edx-celeryutils, edx-completion, edx-django-release-util, edx-django-sites-extensions, edx-django-utils, edx-drf-extensions, edx-enterprise, edx-i18n-tools, edx-milestones, edx-opaque-keys, edx-organizations, edx-proctoring, edx-rbac, edx-search, edx-submissions, edx-when, edxval, enmerkar, enmerkar-underscore, event-tracking, help-tokens, jsonfield2, lti-consumer-xblock, ora2, rest-condition, super-csv, xss-utils djangorestframework-xml==2.0.0 # via -r requirements/edx/testing.txt, edx-enterprise djangorestframework==3.9.4 # via -r requirements/edx/testing.txt, django-config-models, django-user-tasks, drf-jwt, drf-yasg, edx-api-doc-tools, edx-completion, edx-drf-extensions, edx-enterprise, edx-organizations, edx-proctoring, edx-submissions, ora2, rest-condition, super-csv docopt==0.6.2 # via -r requirements/edx/testing.txt, xmodule @@ -106,12 +106,12 @@ edx-api-doc-tools==1.3.1 # via -r requirements/edx/testing.txt edx-bulk-grades==0.7.0 # via -r requirements/edx/testing.txt, staff-graded-xblock edx-ccx-keys==1.1.0 # via -r requirements/edx/testing.txt edx-celeryutils==0.5.1 # via -r requirements/edx/testing.txt, super-csv -edx-completion==3.2.1 # via -c requirements/edx/../constraints.txt, -r requirements/edx/testing.txt +edx-completion==3.2.3 # via -r requirements/edx/testing.txt edx-django-release-util==0.4.4 # via -r requirements/edx/testing.txt edx-django-sites-extensions==2.5.1 # via -r requirements/edx/testing.txt edx-django-utils==3.2.3 # via -r requirements/edx/testing.txt, django-config-models, edx-drf-extensions, edx-enterprise, edx-rest-api-client, edx-when edx-drf-extensions==6.1.0 # via -r requirements/edx/testing.txt, edx-completion, edx-enterprise, edx-organizations, edx-proctoring, edx-rbac, edx-when, edxval -edx-enterprise==3.3.13 # via -c requirements/edx/../constraints.txt, -r requirements/edx/testing.txt +edx-enterprise==3.3.15 # via -r requirements/edx/testing.txt edx-i18n-tools==0.5.3 # via -r requirements/edx/testing.txt, ora2 edx-lint==1.5.0 # via -r requirements/edx/testing.txt edx-milestones==0.3.0 # via -r requirements/edx/testing.txt @@ -154,8 +154,8 @@ httpretty==0.9.7 # via -c requirements/edx/../constraints.txt, -r requi icalendar==4.0.6 # via -r requirements/edx/testing.txt idna==2.10 # via -r requirements/edx/testing.txt, requests imagesize==1.2.0 # via sphinx -importlib-metadata==1.7.0 # via -r requirements/edx/testing.txt, flake8, importlib-resources, inflect, jsonschema, path, pluggy, pytest, pytest-randomly, tox, virtualenv -importlib-resources==2.0.1 # via -r requirements/edx/testing.txt, virtualenv +importlib-metadata==1.7.0 # via -r requirements/edx/testing.txt, flake8, inflect, jsonschema, path, pluggy, pytest, pytest-randomly, tox, virtualenv +importlib-resources==3.0.0 # via -r requirements/edx/testing.txt, virtualenv inflect==3.0.2 # via -c requirements/edx/../constraints.txt, -r requirements/edx/testing.txt, jinja2-pluralize inflection==0.5.0 # via -r requirements/edx/testing.txt, drf-yasg ipaddress==1.0.23 # via -r requirements/edx/testing.txt @@ -193,7 +193,7 @@ git+https://github.com/edx/MongoDBProxy.git@d92bafe9888d2940f647a7b2b2383b29c752 mongoengine==0.20.0 # via -r requirements/edx/testing.txt more-itertools==8.4.0 # via -r requirements/edx/testing.txt, pytest, zipp mpmath==1.1.0 # via -r requirements/edx/testing.txt, sympy -mysqlclient==1.4.6 # via -r requirements/edx/testing.txt +mysqlclient==2.0.0 # via -r requirements/edx/testing.txt newrelic==5.14.1.144 # via -r requirements/edx/testing.txt, edx-django-utils nltk==3.5 # via -r requirements/edx/testing.txt, chem nodeenv==1.4.0 # via -r requirements/edx/testing.txt @@ -226,7 +226,7 @@ pycryptodomex==3.9.8 # via -r requirements/edx/testing.txt, edx-proctoring, pyflakes==2.2.0 # via -r requirements/edx/testing.txt, flake8 pygments==2.6.1 # via -r requirements/edx/testing.txt, diff-cover, sphinx pyjwkest==1.4.2 # via -r requirements/edx/testing.txt, edx-drf-extensions, lti-consumer-xblock -pyjwt==1.5.2 # via -r requirements/edx/testing.txt, drf-jwt, edx-rest-api-client, social-auth-core +pyjwt==1.7.1 # via -r requirements/edx/testing.txt, drf-jwt, edx-rest-api-client, social-auth-core pylint-celery==0.3 # via -r requirements/edx/testing.txt, edx-lint pylint-django==2.0.11 # via -r requirements/edx/testing.txt, edx-lint pylint-plugin-utils==0.6 # via -r requirements/edx/testing.txt, pylint-celery, pylint-django diff --git a/requirements/edx/django.txt b/requirements/edx/django.txt index bc97368c7b..653bf25dda 100644 --- a/requirements/edx/django.txt +++ b/requirements/edx/django.txt @@ -1 +1 @@ -django==2.2.13 # via -c requirements/edx/../constraints.txt, -r requirements/edx/base.in, code-annotations, django-appconf, django-celery, django-classy-tags, django-config-models, django-cors-headers, django-crum, django-fernet-fields, django-filter, django-method-override, django-model-utils, django-mptt, django-multi-email-field, django-mysql, django-oauth-toolkit, django-pyfs, django-ratelimit-backend, django-sekizai, django-splash, django-statici18n, django-storages, django-user-tasks, django-wiki, drf-jwt, drf-yasg, edx-ace, edx-api-doc-tools, edx-bulk-grades, edx-celeryutils, edx-completion, edx-django-release-util, edx-django-sites-extensions, edx-django-utils, edx-drf-extensions, edx-enterprise, edx-i18n-tools, edx-milestones, edx-opaque-keys, edx-organizations, edx-proctoring, edx-rbac, edx-search, edx-submissions, edx-when, edxval, enmerkar, enmerkar-underscore, event-tracking, help-tokens, jsonfield2, lti-consumer-xblock, ora2, rest-condition, super-csv, xss-utils +django==2.2.14 # via -c requirements/edx/../constraints.txt, -r requirements/edx/base.in, code-annotations, django-appconf, django-celery, django-classy-tags, django-config-models, django-cors-headers, django-crum, django-fernet-fields, django-filter, django-method-override, django-model-utils, django-mptt, django-multi-email-field, django-mysql, django-oauth-toolkit, django-pyfs, django-ratelimit-backend, django-sekizai, django-splash, django-statici18n, django-storages, django-user-tasks, django-wiki, drf-jwt, drf-yasg, edx-ace, edx-api-doc-tools, edx-bulk-grades, edx-celeryutils, edx-completion, edx-django-release-util, edx-django-sites-extensions, edx-django-utils, edx-drf-extensions, edx-enterprise, edx-i18n-tools, edx-milestones, edx-opaque-keys, edx-organizations, edx-proctoring, edx-rbac, edx-search, edx-submissions, edx-when, edxval, enmerkar, enmerkar-underscore, event-tracking, help-tokens, jsonfield2, lti-consumer-xblock, ora2, rest-condition, super-csv, xss-utils diff --git a/requirements/edx/testing.txt b/requirements/edx/testing.txt index 3445218e45..c4e0d7ebe9 100644 --- a/requirements/edx/testing.txt +++ b/requirements/edx/testing.txt @@ -69,7 +69,7 @@ django-countries==5.5 # via -c requirements/edx/../constraints.txt, -r requi django-crum==0.7.6 # via -r requirements/edx/base.txt, edx-enterprise, edx-proctoring, edx-rbac, super-csv django-fernet-fields==0.6 # via -r requirements/edx/base.txt, edx-enterprise, edxval django-filter==2.3.0 # via -r requirements/edx/base.txt, edx-enterprise -django-ipware==2.1.0 # via -r requirements/edx/base.txt, edx-enterprise, edx-proctoring +django-ipware==2.1.0 # via -c requirements/edx/../constraints.txt, -r requirements/edx/base.txt, edx-enterprise, edx-proctoring django-js-asset==1.2.2 # via -r requirements/edx/base.txt, django-mptt django-method-override==1.0.4 # via -r requirements/edx/base.txt django-model-utils==4.0.0 # via -r requirements/edx/base.txt, django-user-tasks, edx-bulk-grades, edx-celeryutils, edx-completion, edx-enterprise, edx-milestones, edx-organizations, edx-proctoring, edx-rbac, edx-submissions, edx-when, edxval, ora2, super-csv @@ -103,12 +103,12 @@ edx-api-doc-tools==1.3.1 # via -r requirements/edx/base.txt edx-bulk-grades==0.7.0 # via -r requirements/edx/base.txt, staff-graded-xblock edx-ccx-keys==1.1.0 # via -r requirements/edx/base.txt edx-celeryutils==0.5.1 # via -r requirements/edx/base.txt, super-csv -edx-completion==3.2.1 # via -c requirements/edx/../constraints.txt, -r requirements/edx/base.txt +edx-completion==3.2.3 # via -r requirements/edx/base.txt edx-django-release-util==0.4.4 # via -r requirements/edx/base.txt edx-django-sites-extensions==2.5.1 # via -r requirements/edx/base.txt edx-django-utils==3.2.3 # via -r requirements/edx/base.txt, django-config-models, edx-drf-extensions, edx-enterprise, edx-rest-api-client, edx-when edx-drf-extensions==6.1.0 # via -r requirements/edx/base.txt, edx-completion, edx-enterprise, edx-organizations, edx-proctoring, edx-rbac, edx-when, edxval -edx-enterprise==3.3.13 # via -c requirements/edx/../constraints.txt, -r requirements/edx/base.txt +edx-enterprise==3.3.15 # via -r requirements/edx/base.txt edx-i18n-tools==0.5.3 # via -r requirements/edx/base.txt, -r requirements/edx/testing.in, ora2 edx-lint==1.5.0 # via -r requirements/edx/testing.in edx-milestones==0.3.0 # via -r requirements/edx/base.txt @@ -149,8 +149,8 @@ html5lib==1.1 # via -r requirements/edx/base.txt, ora2 httpretty==0.9.7 # via -c requirements/edx/../constraints.txt, -r requirements/edx/testing.in icalendar==4.0.6 # via -r requirements/edx/base.txt idna==2.10 # via -r requirements/edx/base.txt, requests -importlib-metadata==1.7.0 # via -r requirements/edx/base.txt, -r requirements/edx/coverage.txt, flake8, importlib-resources, inflect, path, pluggy, pytest, pytest-randomly, tox, virtualenv -importlib-resources==2.0.1 # via virtualenv +importlib-metadata==1.7.0 # via -r requirements/edx/base.txt, -r requirements/edx/coverage.txt, flake8, inflect, path, pluggy, pytest, pytest-randomly, tox, virtualenv +importlib-resources==3.0.0 # via virtualenv inflect==3.0.2 # via -c requirements/edx/../constraints.txt, -r requirements/edx/coverage.txt, jinja2-pluralize inflection==0.5.0 # via -r requirements/edx/base.txt, drf-yasg ipaddress==1.0.23 # via -r requirements/edx/base.txt @@ -185,7 +185,7 @@ git+https://github.com/edx/MongoDBProxy.git@d92bafe9888d2940f647a7b2b2383b29c752 mongoengine==0.20.0 # via -r requirements/edx/base.txt more-itertools==8.4.0 # via -r requirements/edx/base.txt, -r requirements/edx/coverage.txt, pytest, zipp mpmath==1.1.0 # via -r requirements/edx/base.txt, sympy -mysqlclient==1.4.6 # via -r requirements/edx/base.txt +mysqlclient==2.0.0 # via -r requirements/edx/base.txt newrelic==5.14.1.144 # via -r requirements/edx/base.txt, edx-django-utils nltk==3.5 # via -r requirements/edx/base.txt, chem nodeenv==1.4.0 # via -r requirements/edx/base.txt @@ -217,7 +217,7 @@ pycryptodomex==3.9.8 # via -r requirements/edx/base.txt, edx-proctoring, py pyflakes==2.2.0 # via flake8 pygments==2.6.1 # via -r requirements/edx/base.txt, -r requirements/edx/coverage.txt, diff-cover pyjwkest==1.4.2 # via -r requirements/edx/base.txt, edx-drf-extensions, lti-consumer-xblock -pyjwt==1.5.2 # via -r requirements/edx/base.txt, drf-jwt, edx-rest-api-client, social-auth-core +pyjwt==1.7.1 # via -r requirements/edx/base.txt, drf-jwt, edx-rest-api-client, social-auth-core pylint-celery==0.3 # via edx-lint pylint-django==2.0.11 # via edx-lint pylint-plugin-utils==0.6 # via pylint-celery, pylint-django