From 440d9ddb894fe990889640548f96942fd4d0d252 Mon Sep 17 00:00:00 2001 From: Will Daly Date: Thu, 13 Mar 2014 08:49:13 -0400 Subject: [PATCH 1/2] Install edx-ora2 Support for displaying submissions API scores in Progress page. --- .../contentstore/tests/test_contentstore.py | 2 +- .../contentstore/views/component.py | 1 + cms/envs/common.py | 7 ++++ lms/djangoapps/courseware/grades.py | 41 ++++++++++++++++--- .../tests/test_submitting_problems.py | 40 +++++++++++++++++- lms/envs/common.py | 7 ++++ requirements/edx/github.txt | 1 + 7 files changed, 92 insertions(+), 7 deletions(-) diff --git a/cms/djangoapps/contentstore/tests/test_contentstore.py b/cms/djangoapps/contentstore/tests/test_contentstore.py index 26e23f49ca..eb530cba89 100644 --- a/cms/djangoapps/contentstore/tests/test_contentstore.py +++ b/cms/djangoapps/contentstore/tests/test_contentstore.py @@ -143,7 +143,7 @@ class ContentStoreToyCourseTest(ModuleStoreTestCase): self.check_components_on_page( ADVANCED_COMPONENT_TYPES, ['Word cloud', 'Annotation', 'Text Annotation', 'Video Annotation', - 'Open Response Assessment', 'Peer Grading Interface'], + 'Open Response Assessment', 'Peer Grading Interface', 'openassessment'], ) def test_advanced_components_require_two_clicks(self): diff --git a/cms/djangoapps/contentstore/views/component.py b/cms/djangoapps/contentstore/views/component.py index 75c66cb99a..c372c991f9 100644 --- a/cms/djangoapps/contentstore/views/component.py +++ b/cms/djangoapps/contentstore/views/component.py @@ -60,6 +60,7 @@ else: 'word_cloud', 'graphical_slider_tool', 'lti', + 'openassessment', # edx-ora2 ] + OPEN_ENDED_COMPONENT_TYPES + NOTE_COMPONENT_TYPES ADVANCED_COMPONENT_CATEGORY = 'advanced' diff --git a/cms/envs/common.py b/cms/envs/common.py index 3b6adcb9e2..d3281c21d3 100644 --- a/cms/envs/common.py +++ b/cms/envs/common.py @@ -547,6 +547,13 @@ MAX_FAILED_LOGIN_ATTEMPTS_LOCKOUT_PERIOD_SECS = 15 * 60 OPTIONAL_APPS = ( 'edx_jsdraw', 'mentoring', + + # edx-ora2 + 'submissions', + 'openassessment', + 'openassessment.assessment', + 'openassessment.workflow', + 'openassessment.xblock' ) for app_name in OPTIONAL_APPS: diff --git a/lms/djangoapps/courseware/grades.py b/lms/djangoapps/courseware/grades.py index 7cba7894a9..2617b789db 100644 --- a/lms/djangoapps/courseware/grades.py +++ b/lms/djangoapps/courseware/grades.py @@ -14,6 +14,8 @@ from dogapi import dog_stats_api from courseware import courses from courseware.model_data import FieldDataCache +from student.models import anonymous_id_for_user +from submissions import api as sub_api from xmodule import graders from xmodule.graders import Score from xmodule.modulestore.django import modulestore @@ -178,6 +180,11 @@ def _grade(student, request, course, keep_raw_scores): grading_context = course.grading_context raw_scores = [] + # Dict of item_ids -> (earned, possible) point tuples. This *only* grabs + # scores that were registered with the submissions API, which for the moment + # means only openassessment (edx-ora2) + submissions_scores = sub_api.get_scores(course.id, anonymous_id_for_user(student, course.id)) + totaled_scores = {} # This next complicated loop is just to collect the totaled_scores, which is # passed to the grader @@ -194,7 +201,15 @@ def _grade(student, request, course, keep_raw_scores): descriptor.always_recalculate_grades for descriptor in section['xmoduledescriptors'] ) - # If we haven't seen a single problem in the section, we don't have to grade it at all! We can assume 0% + # If there are no problems that always have to be regraded, check to + # see if any of our locations are in the scores from the submissions + # API. If scores exist, we have to calculate grades for this section. + if not should_grade_section: + should_grade_section = any( + descriptor.location.url() in submissions_scores + for descriptor in section['xmoduledescriptors'] + ) + if not should_grade_section: with manual_transaction(): should_grade_section = StudentModule.objects.filter( @@ -204,6 +219,8 @@ def _grade(student, request, course, keep_raw_scores): ] ).exists() + # If we haven't seen a single problem in the section, we don't have + # to grade it at all! We can assume 0% if should_grade_section: scores = [] @@ -217,7 +234,9 @@ def _grade(student, request, course, keep_raw_scores): for module_descriptor in yield_dynamic_descriptor_descendents(section_descriptor, create_module): - (correct, total) = get_score(course.id, student, module_descriptor, create_module) + (correct, total) = get_score( + course.id, student, module_descriptor, create_module, scores_cache=submissions_scores + ) if correct is None and total is None: continue @@ -331,6 +350,8 @@ def _progress_summary(student, request, course): # This student must not have access to the course. return None + submissions_scores = sub_api.get_scores(course.id, anonymous_id_for_user(student, course.id)) + chapters = [] # Don't include chapters that aren't displayable (e.g. due to error) for chapter_module in course_module.get_display_items(): @@ -353,7 +374,9 @@ def _progress_summary(student, request, course): for module_descriptor in yield_dynamic_descriptor_descendents(section_module, module_creator): course_id = course.id - (correct, total) = get_score(course_id, student, module_descriptor, module_creator) + (correct, total) = get_score( + course_id, student, module_descriptor, module_creator, scores_cache=submissions_scores + ) if correct is None and total is None: continue @@ -383,7 +406,8 @@ def _progress_summary(student, request, course): return chapters -def get_score(course_id, user, problem_descriptor, module_creator): + +def get_score(course_id, user, problem_descriptor, module_creator, scores_cache=None): """ Return the score for a user on a problem, as a tuple (correct, total). e.g. (5,7) if you got 5 out of 7 points. @@ -395,11 +419,18 @@ def get_score(course_id, user, problem_descriptor, module_creator): problem_descriptor: an XModuleDescriptor module_creator: a function that takes a descriptor, and returns the corresponding XModule for this user. Can return None if user doesn't have access, or if something else went wrong. - cache: A FieldDataCache + scores_cache: A dict of location names to (earned, possible) point tuples. + If an entry is found in this cache, it takes precedence. """ + scores_cache = scores_cache or {} + if not user.is_authenticated(): return (None, None) + location_url = problem_descriptor.location.url() + if location_url in scores_cache: + return scores_cache[location_url] + # some problems have state that is updated independently of interaction # with the LMS, so they need to always be scored. (E.g. foldit.) if problem_descriptor.always_recalculate_grades: diff --git a/lms/djangoapps/courseware/tests/test_submitting_problems.py b/lms/djangoapps/courseware/tests/test_submitting_problems.py index 45daed6d77..871da3a263 100644 --- a/lms/djangoapps/courseware/tests/test_submitting_problems.py +++ b/lms/djangoapps/courseware/tests/test_submitting_problems.py @@ -467,7 +467,7 @@ class TestCourseGrader(TestSubmittingProblems): self.check_grade_percent(1.0) self.assertEqual(self.get_grade_summary()['grade'], 'A') - def test_wrong_asnwers(self): + def test_wrong_answers(self): """ Check that answering incorrectly is graded properly. """ @@ -478,6 +478,44 @@ class TestCourseGrader(TestSubmittingProblems): self.check_grade_percent(0.67) self.assertEqual(self.get_grade_summary()['grade'], 'B') + def test_submissions_api_overrides_scores(self): + """ + Check that answering incorrectly is graded properly. + """ + self.basic_setup() + self.submit_question_answer('p1', {'2_1': 'Correct'}) + self.submit_question_answer('p2', {'2_1': 'Correct'}) + self.submit_question_answer('p3', {'2_1': 'Incorrect'}) + self.check_grade_percent(0.67) + self.assertEqual(self.get_grade_summary()['grade'], 'B') + + # But now we mock out a get_scores call, and watch as it overrides the + # score read from StudentModule and our student gets an A instead. + with patch('submissions.api.get_scores') as mock_get_scores: + mock_get_scores.return_value = { + self.problem_location('p3'): (1, 1) + } + self.check_grade_percent(1.0) + self.assertEqual(self.get_grade_summary()['grade'], 'A') + + def test_submissions_api_anonymous_student_id(self): + """ + Check that the submissions API is sent an anonymous student ID. + """ + self.basic_setup() + self.submit_question_answer('p1', {'2_1': 'Correct'}) + self.submit_question_answer('p2', {'2_1': 'Correct'}) + self.submit_question_answer('p3', {'2_1': 'Incorrect'}) + + with patch('submissions.api.get_scores') as mock_get_scores: + mock_get_scores.return_value = { + self.problem_location('p3'): (1, 1) + } + self.get_grade_summary() + + # Verify that the submissions API was sent an anonymized student ID + mock_get_scores.assert_called_with(self.course.id, '99ac6730dc5f900d69fd735975243b31') + def test_weighted_homework(self): """ Test that the homework section has proper weight. diff --git a/lms/envs/common.py b/lms/envs/common.py index 2472e49942..33463d8b82 100644 --- a/lms/envs/common.py +++ b/lms/envs/common.py @@ -1473,6 +1473,13 @@ ALL_LANGUAGES = ( OPTIONAL_APPS = ( 'edx_jsdraw', 'mentoring', + + # edx-ora2 + 'submissions', + 'openassessment', + 'openassessment.assessment', + 'openassessment.workflow', + 'openassessment.xblock' ) for app_name in OPTIONAL_APPS: diff --git a/requirements/edx/github.txt b/requirements/edx/github.txt index 6ac60c7d71..b6e58024a5 100644 --- a/requirements/edx/github.txt +++ b/requirements/edx/github.txt @@ -26,3 +26,4 @@ -e git+https://github.com/edx/bok-choy.git@25a47b3bf87c503fc4996e52addac83b42ec6f38#egg=bok_choy -e git+https://github.com/edx-solutions/django-splash.git@9965a53c269666a30bb4e2b3f6037c138aef2a55#egg=django-splash -e git+https://github.com/edx/acid-block.git@459aff7b63db8f2c5decd1755706c1a64fb4ebb1#egg=acid-xblock +-e git+https://github.com/edx/edx-ora2.git@87fd72f9927cd37e553d7f68cfaf80d6c574eb55#egg=edx-ora2 From 9c2a476dcb981a15dcf9249d11e3611ecde73b5b Mon Sep 17 00:00:00 2001 From: Sarina Canelake Date: Tue, 25 Mar 2014 10:46:53 -0400 Subject: [PATCH 2/2] Update translations (autogenerated message) --- conf/locale/ach/LC_MESSAGES/django.mo | Bin 525 -> 525 bytes conf/locale/ach/LC_MESSAGES/django.po | 63 ++++------ conf/locale/ach/LC_MESSAGES/djangojs.mo | Bin 504 -> 504 bytes conf/locale/ach/LC_MESSAGES/djangojs.po | 19 ++- conf/locale/ar/LC_MESSAGES/django.mo | Bin 1283 -> 1283 bytes conf/locale/ar/LC_MESSAGES/django.po | 64 +++++----- conf/locale/ar/LC_MESSAGES/djangojs.mo | Bin 1033 -> 1033 bytes conf/locale/ar/LC_MESSAGES/djangojs.po | 19 ++- conf/locale/bg_BG/LC_MESSAGES/django.mo | Bin 545 -> 545 bytes conf/locale/bg_BG/LC_MESSAGES/django.po | 63 ++++------ conf/locale/bg_BG/LC_MESSAGES/djangojs.mo | Bin 524 -> 524 bytes conf/locale/bg_BG/LC_MESSAGES/djangojs.po | 19 ++- conf/locale/bn/LC_MESSAGES/django.mo | Bin 526 -> 526 bytes conf/locale/bn/LC_MESSAGES/django.po | 63 ++++------ conf/locale/bn/LC_MESSAGES/djangojs.mo | Bin 505 -> 505 bytes conf/locale/bn/LC_MESSAGES/djangojs.po | 19 ++- conf/locale/bn_BD/LC_MESSAGES/django.mo | Bin 545 -> 545 bytes conf/locale/bn_BD/LC_MESSAGES/django.po | 63 ++++------ conf/locale/bn_BD/LC_MESSAGES/djangojs.mo | Bin 524 -> 524 bytes conf/locale/bn_BD/LC_MESSAGES/djangojs.po | 19 ++- conf/locale/ca/LC_MESSAGES/django.mo | Bin 539 -> 539 bytes conf/locale/ca/LC_MESSAGES/django.po | 64 +++++----- conf/locale/ca/LC_MESSAGES/djangojs.mo | Bin 515 -> 515 bytes conf/locale/ca/LC_MESSAGES/djangojs.po | 19 ++- conf/locale/ca@valencia/LC_MESSAGES/django.mo | Bin 559 -> 559 bytes conf/locale/ca@valencia/LC_MESSAGES/django.po | 63 ++++------ .../ca@valencia/LC_MESSAGES/djangojs.mo | Bin 535 -> 535 bytes .../ca@valencia/LC_MESSAGES/djangojs.po | 19 ++- conf/locale/cs/LC_MESSAGES/django.mo | Bin 1381 -> 1381 bytes conf/locale/cs/LC_MESSAGES/django.po | 63 ++++------ conf/locale/cs/LC_MESSAGES/djangojs.mo | Bin 1097 -> 1097 bytes conf/locale/cs/LC_MESSAGES/djangojs.po | 19 ++- conf/locale/cy/LC_MESSAGES/django.mo | Bin 569 -> 569 bytes conf/locale/cy/LC_MESSAGES/django.po | 63 ++++------ conf/locale/cy/LC_MESSAGES/djangojs.mo | Bin 548 -> 548 bytes conf/locale/cy/LC_MESSAGES/djangojs.po | 19 ++- conf/locale/de_DE/LC_MESSAGES/django.mo | Bin 28377 -> 28358 bytes conf/locale/de_DE/LC_MESSAGES/django.po | 88 ++++++------- conf/locale/de_DE/LC_MESSAGES/djangojs.mo | Bin 26451 -> 26386 bytes conf/locale/de_DE/LC_MESSAGES/djangojs.po | 29 +++-- conf/locale/el/LC_MESSAGES/django.mo | Bin 527 -> 527 bytes conf/locale/el/LC_MESSAGES/django.po | 63 ++++------ conf/locale/el/LC_MESSAGES/djangojs.mo | Bin 503 -> 503 bytes conf/locale/el/LC_MESSAGES/djangojs.po | 19 ++- conf/locale/en@lolcat/LC_MESSAGES/django.mo | Bin 1568 -> 1568 bytes conf/locale/en@lolcat/LC_MESSAGES/django.po | 63 ++++------ conf/locale/en@lolcat/LC_MESSAGES/djangojs.mo | Bin 526 -> 526 bytes conf/locale/en@lolcat/LC_MESSAGES/djangojs.po | 19 ++- conf/locale/en@pirate/LC_MESSAGES/django.mo | Bin 701 -> 701 bytes conf/locale/en@pirate/LC_MESSAGES/django.po | 63 ++++------ conf/locale/en@pirate/LC_MESSAGES/djangojs.mo | Bin 526 -> 526 bytes conf/locale/en@pirate/LC_MESSAGES/djangojs.po | 19 ++- conf/locale/eo/LC_MESSAGES/django.mo | Bin 392974 -> 393319 bytes conf/locale/eo/LC_MESSAGES/django.po | 117 ++++++++---------- conf/locale/eo/LC_MESSAGES/djangojs.mo | Bin 47034 -> 47887 bytes conf/locale/eo/LC_MESSAGES/djangojs.po | 30 ++++- conf/locale/es_419/LC_MESSAGES/django.mo | Bin 290547 -> 289205 bytes conf/locale/es_419/LC_MESSAGES/django.po | 77 +++++------- conf/locale/es_419/LC_MESSAGES/djangojs.mo | Bin 32436 -> 32333 bytes conf/locale/es_419/LC_MESSAGES/djangojs.po | 21 +++- conf/locale/es_AR/LC_MESSAGES/django.mo | Bin 547 -> 547 bytes conf/locale/es_AR/LC_MESSAGES/django.po | 63 ++++------ conf/locale/es_AR/LC_MESSAGES/djangojs.mo | Bin 523 -> 523 bytes conf/locale/es_AR/LC_MESSAGES/djangojs.po | 20 ++- conf/locale/es_EC/LC_MESSAGES/django.mo | Bin 542 -> 542 bytes conf/locale/es_EC/LC_MESSAGES/django.po | 63 ++++------ conf/locale/es_EC/LC_MESSAGES/djangojs.mo | Bin 521 -> 521 bytes conf/locale/es_EC/LC_MESSAGES/djangojs.po | 19 ++- conf/locale/es_ES/LC_MESSAGES/django.mo | Bin 551 -> 551 bytes conf/locale/es_ES/LC_MESSAGES/django.po | 63 ++++------ conf/locale/es_ES/LC_MESSAGES/djangojs.mo | Bin 527 -> 527 bytes conf/locale/es_ES/LC_MESSAGES/djangojs.po | 19 ++- conf/locale/es_MX/LC_MESSAGES/django.mo | Bin 549 -> 549 bytes conf/locale/es_MX/LC_MESSAGES/django.po | 69 +++++------ conf/locale/es_MX/LC_MESSAGES/djangojs.mo | Bin 525 -> 525 bytes conf/locale/es_MX/LC_MESSAGES/djangojs.po | 22 +++- conf/locale/es_PE/LC_MESSAGES/django.mo | Bin 542 -> 542 bytes conf/locale/es_PE/LC_MESSAGES/django.po | 63 ++++------ conf/locale/es_PE/LC_MESSAGES/djangojs.mo | Bin 518 -> 518 bytes conf/locale/es_PE/LC_MESSAGES/djangojs.po | 19 ++- conf/locale/es_US/LC_MESSAGES/django.mo | Bin 548 -> 548 bytes conf/locale/es_US/LC_MESSAGES/django.po | 63 ++++------ conf/locale/es_US/LC_MESSAGES/djangojs.mo | Bin 527 -> 527 bytes conf/locale/es_US/LC_MESSAGES/djangojs.po | 19 ++- conf/locale/et_EE/LC_MESSAGES/django.mo | Bin 543 -> 543 bytes conf/locale/et_EE/LC_MESSAGES/django.po | 63 ++++------ conf/locale/et_EE/LC_MESSAGES/djangojs.mo | Bin 522 -> 522 bytes conf/locale/et_EE/LC_MESSAGES/djangojs.po | 19 ++- conf/locale/fa/LC_MESSAGES/django.mo | Bin 519 -> 519 bytes conf/locale/fa/LC_MESSAGES/django.po | 63 ++++------ conf/locale/fa/LC_MESSAGES/djangojs.mo | Bin 498 -> 498 bytes conf/locale/fa/LC_MESSAGES/djangojs.po | 19 ++- conf/locale/fa_IR/LC_MESSAGES/django.mo | Bin 532 -> 532 bytes conf/locale/fa_IR/LC_MESSAGES/django.po | 63 ++++------ conf/locale/fa_IR/LC_MESSAGES/djangojs.mo | Bin 511 -> 511 bytes conf/locale/fa_IR/LC_MESSAGES/djangojs.po | 19 ++- conf/locale/fi_FI/LC_MESSAGES/django.mo | Bin 545 -> 545 bytes conf/locale/fi_FI/LC_MESSAGES/django.po | 63 ++++------ conf/locale/fi_FI/LC_MESSAGES/djangojs.mo | Bin 521 -> 521 bytes conf/locale/fi_FI/LC_MESSAGES/djangojs.po | 19 ++- conf/locale/fr/LC_MESSAGES/django.mo | Bin 276413 -> 275154 bytes conf/locale/fr/LC_MESSAGES/django.po | 75 +++++------ conf/locale/fr/LC_MESSAGES/djangojs.mo | Bin 32479 -> 32378 bytes conf/locale/fr/LC_MESSAGES/djangojs.po | 21 +++- conf/locale/gl/LC_MESSAGES/django.mo | Bin 534 -> 534 bytes conf/locale/gl/LC_MESSAGES/django.po | 63 ++++------ conf/locale/gl/LC_MESSAGES/djangojs.mo | Bin 1979 -> 1979 bytes conf/locale/gl/LC_MESSAGES/djangojs.po | 19 ++- conf/locale/he/LC_MESSAGES/django.mo | Bin 598 -> 598 bytes conf/locale/he/LC_MESSAGES/django.po | 63 ++++------ conf/locale/he/LC_MESSAGES/djangojs.mo | Bin 504 -> 504 bytes conf/locale/he/LC_MESSAGES/djangojs.po | 19 ++- conf/locale/hi/LC_MESSAGES/django.mo | Bin 350119 -> 344852 bytes conf/locale/hi/LC_MESSAGES/django.po | 91 +++++--------- conf/locale/hi/LC_MESSAGES/djangojs.mo | Bin 53663 -> 53544 bytes conf/locale/hi/LC_MESSAGES/djangojs.po | 21 +++- conf/locale/hu/LC_MESSAGES/django.mo | Bin 528 -> 528 bytes conf/locale/hu/LC_MESSAGES/django.po | 63 ++++------ conf/locale/hu/LC_MESSAGES/djangojs.mo | Bin 507 -> 507 bytes conf/locale/hu/LC_MESSAGES/djangojs.po | 19 ++- conf/locale/hy_AM/LC_MESSAGES/django.mo | Bin 64885 -> 64885 bytes conf/locale/hy_AM/LC_MESSAGES/django.po | 63 ++++------ conf/locale/hy_AM/LC_MESSAGES/djangojs.mo | Bin 522 -> 522 bytes conf/locale/hy_AM/LC_MESSAGES/djangojs.po | 21 +++- conf/locale/id/LC_MESSAGES/django.mo | Bin 512 -> 512 bytes conf/locale/id/LC_MESSAGES/django.po | 63 ++++------ conf/locale/id/LC_MESSAGES/djangojs.mo | Bin 9669 -> 9669 bytes conf/locale/id/LC_MESSAGES/djangojs.po | 19 ++- conf/locale/it_IT/LC_MESSAGES/django.mo | Bin 5871 -> 5871 bytes conf/locale/it_IT/LC_MESSAGES/django.po | 63 ++++------ conf/locale/it_IT/LC_MESSAGES/djangojs.mo | Bin 6151 -> 6151 bytes conf/locale/it_IT/LC_MESSAGES/djangojs.po | 19 ++- conf/locale/ja_JP/LC_MESSAGES/django.mo | Bin 1058 -> 1058 bytes conf/locale/ja_JP/LC_MESSAGES/django.po | 64 +++++----- conf/locale/ja_JP/LC_MESSAGES/djangojs.mo | Bin 557 -> 557 bytes conf/locale/ja_JP/LC_MESSAGES/djangojs.po | 19 ++- conf/locale/km_KH/LC_MESSAGES/django.mo | Bin 534 -> 534 bytes conf/locale/km_KH/LC_MESSAGES/django.po | 63 ++++------ conf/locale/km_KH/LC_MESSAGES/djangojs.mo | Bin 513 -> 513 bytes conf/locale/km_KH/LC_MESSAGES/djangojs.po | 19 ++- conf/locale/ko_KR/LC_MESSAGES/django.mo | Bin 83995 -> 83578 bytes conf/locale/ko_KR/LC_MESSAGES/django.po | 69 +++++------ conf/locale/ko_KR/LC_MESSAGES/djangojs.mo | Bin 511 -> 511 bytes conf/locale/ko_KR/LC_MESSAGES/djangojs.po | 19 ++- conf/locale/lt_LT/LC_MESSAGES/django.mo | Bin 29227 -> 29227 bytes conf/locale/lt_LT/LC_MESSAGES/django.po | 63 ++++------ conf/locale/lt_LT/LC_MESSAGES/djangojs.mo | Bin 3996 -> 3996 bytes conf/locale/lt_LT/LC_MESSAGES/djangojs.po | 19 ++- conf/locale/ml/LC_MESSAGES/django.mo | Bin 528 -> 528 bytes conf/locale/ml/LC_MESSAGES/django.po | 63 ++++------ conf/locale/ml/LC_MESSAGES/djangojs.mo | Bin 507 -> 507 bytes conf/locale/ml/LC_MESSAGES/djangojs.po | 19 ++- conf/locale/mn/LC_MESSAGES/django.mo | Bin 528 -> 528 bytes conf/locale/mn/LC_MESSAGES/django.po | 63 ++++------ conf/locale/mn/LC_MESSAGES/djangojs.mo | Bin 507 -> 507 bytes conf/locale/mn/LC_MESSAGES/djangojs.po | 19 ++- conf/locale/ms/LC_MESSAGES/django.mo | Bin 520 -> 520 bytes conf/locale/ms/LC_MESSAGES/django.po | 63 ++++------ conf/locale/ms/LC_MESSAGES/djangojs.mo | Bin 496 -> 496 bytes conf/locale/ms/LC_MESSAGES/djangojs.po | 19 ++- conf/locale/nb/LC_MESSAGES/django.mo | Bin 542 -> 542 bytes conf/locale/nb/LC_MESSAGES/django.po | 63 ++++------ conf/locale/nb/LC_MESSAGES/djangojs.mo | Bin 523 -> 523 bytes conf/locale/nb/LC_MESSAGES/djangojs.po | 19 ++- conf/locale/ne/LC_MESSAGES/django.mo | Bin 528 -> 528 bytes conf/locale/ne/LC_MESSAGES/django.po | 63 ++++------ conf/locale/ne/LC_MESSAGES/djangojs.mo | Bin 504 -> 504 bytes conf/locale/ne/LC_MESSAGES/djangojs.po | 19 ++- conf/locale/nl_NL/LC_MESSAGES/django.mo | Bin 6864 -> 6565 bytes conf/locale/nl_NL/LC_MESSAGES/django.po | 66 ++++------ conf/locale/nl_NL/LC_MESSAGES/djangojs.mo | Bin 1065 -> 1065 bytes conf/locale/nl_NL/LC_MESSAGES/djangojs.po | 19 ++- conf/locale/pl/LC_MESSAGES/django.mo | Bin 7410 -> 7410 bytes conf/locale/pl/LC_MESSAGES/django.po | 63 ++++------ conf/locale/pl/LC_MESSAGES/djangojs.mo | Bin 1299 -> 1299 bytes conf/locale/pl/LC_MESSAGES/djangojs.po | 19 ++- conf/locale/pt_BR/LC_MESSAGES/django.mo | Bin 182778 -> 181680 bytes conf/locale/pt_BR/LC_MESSAGES/django.po | 75 +++++------ conf/locale/pt_BR/LC_MESSAGES/djangojs.mo | Bin 9381 -> 9381 bytes conf/locale/pt_BR/LC_MESSAGES/djangojs.po | 19 ++- conf/locale/pt_PT/LC_MESSAGES/django.mo | Bin 546 -> 546 bytes conf/locale/pt_PT/LC_MESSAGES/django.po | 63 ++++------ conf/locale/pt_PT/LC_MESSAGES/djangojs.mo | Bin 525 -> 525 bytes conf/locale/pt_PT/LC_MESSAGES/djangojs.po | 19 ++- conf/locale/ru/LC_MESSAGES/django.mo | Bin 615 -> 615 bytes conf/locale/ru/LC_MESSAGES/django.po | 63 ++++------ conf/locale/ru/LC_MESSAGES/djangojs.mo | Bin 579 -> 579 bytes conf/locale/ru/LC_MESSAGES/djangojs.po | 19 ++- conf/locale/si/LC_MESSAGES/django.mo | Bin 526 -> 526 bytes conf/locale/si/LC_MESSAGES/django.po | 63 ++++------ conf/locale/si/LC_MESSAGES/djangojs.mo | Bin 505 -> 505 bytes conf/locale/si/LC_MESSAGES/djangojs.po | 19 ++- conf/locale/sk/LC_MESSAGES/django.mo | Bin 552 -> 991 bytes conf/locale/sk/LC_MESSAGES/django.po | 88 ++++++------- conf/locale/sk/LC_MESSAGES/djangojs.mo | Bin 531 -> 724 bytes conf/locale/sk/LC_MESSAGES/djangojs.po | 34 +++-- conf/locale/sl/LC_MESSAGES/django.mo | Bin 580 -> 580 bytes conf/locale/sl/LC_MESSAGES/django.po | 63 ++++------ conf/locale/sl/LC_MESSAGES/djangojs.mo | Bin 7211 -> 7211 bytes conf/locale/sl/LC_MESSAGES/djangojs.po | 19 ++- conf/locale/th/LC_MESSAGES/django.mo | Bin 1222 -> 1222 bytes conf/locale/th/LC_MESSAGES/django.po | 63 ++++------ conf/locale/th/LC_MESSAGES/djangojs.mo | Bin 495 -> 495 bytes conf/locale/th/LC_MESSAGES/djangojs.po | 19 ++- conf/locale/tr_TR/LC_MESSAGES/django.mo | Bin 287764 -> 284528 bytes conf/locale/tr_TR/LC_MESSAGES/django.po | 89 +++++-------- conf/locale/tr_TR/LC_MESSAGES/djangojs.mo | Bin 32292 -> 32220 bytes conf/locale/tr_TR/LC_MESSAGES/djangojs.po | 21 +++- conf/locale/uk/LC_MESSAGES/django.mo | Bin 602 -> 602 bytes conf/locale/uk/LC_MESSAGES/django.po | 63 ++++------ conf/locale/uk/LC_MESSAGES/djangojs.mo | Bin 581 -> 581 bytes conf/locale/uk/LC_MESSAGES/djangojs.po | 19 ++- conf/locale/vi/LC_MESSAGES/django.mo | Bin 64665 -> 64358 bytes conf/locale/vi/LC_MESSAGES/django.po | 65 ++++------ conf/locale/vi/LC_MESSAGES/djangojs.mo | Bin 9910 -> 9910 bytes conf/locale/vi/LC_MESSAGES/djangojs.po | 19 ++- .../locale/zh_CN.GB2312/LC_MESSAGES/django.mo | Bin 556 -> 556 bytes .../locale/zh_CN.GB2312/LC_MESSAGES/django.po | 63 ++++------ .../zh_CN.GB2312/LC_MESSAGES/djangojs.mo | Bin 535 -> 535 bytes .../zh_CN.GB2312/LC_MESSAGES/djangojs.po | 19 ++- conf/locale/zh_CN/LC_MESSAGES/django.mo | Bin 548 -> 548 bytes conf/locale/zh_CN/LC_MESSAGES/django.po | 63 ++++------ conf/locale/zh_CN/LC_MESSAGES/djangojs.mo | Bin 512 -> 512 bytes conf/locale/zh_CN/LC_MESSAGES/djangojs.po | 19 ++- conf/locale/zh_TW/LC_MESSAGES/django.mo | Bin 96618 -> 96233 bytes conf/locale/zh_TW/LC_MESSAGES/django.po | 69 +++++------ conf/locale/zh_TW/LC_MESSAGES/djangojs.mo | Bin 3523 -> 3523 bytes conf/locale/zh_TW/LC_MESSAGES/djangojs.po | 19 ++- i18n/transifex.py | 2 +- 229 files changed, 2616 insertions(+), 2332 deletions(-) diff --git a/conf/locale/ach/LC_MESSAGES/django.mo b/conf/locale/ach/LC_MESSAGES/django.mo index 8d7ccee5d8247c5f8987fc0d5006f453fae3c09a..4f711fd0bad9d0bb864fe0c2ca83347ac9ad344c 100644 GIT binary patch delta 18 ZcmeBW>1CO)k=<0m(7?*bV&jfbMgTOf1%v1CO)k=;bW(7?*TY~zklMgTO81%Chl diff --git a/conf/locale/ach/LC_MESSAGES/django.po b/conf/locale/ach/LC_MESSAGES/django.po index b675c56bac..64f2c7e470 100644 --- a/conf/locale/ach/LC_MESSAGES/django.po +++ b/conf/locale/ach/LC_MESSAGES/django.po @@ -38,7 +38,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" +"POT-Creation-Date: 2014-03-25 10:28-0400\n" "PO-Revision-Date: 2014-02-06 03:04+0000\n" "Last-Translator: nedbat \n" "Language-Team: Acoli (http://www.transifex.com/projects/p/edx-platform/language/ach/)\n" @@ -1238,7 +1238,7 @@ msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py msgid "" "Can't receive transcripts from Youtube for {youtube_id}. Status code: " -"{statuc_code}." +"{status_code}." msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py @@ -3763,14 +3763,6 @@ msgstr "" msgid "Help" msgstr "" -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "Visual" -msgstr "" - -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "HTML" -msgstr "" - #: common/templates/course_modes/choose.html msgid "Upgrade Your Registration for {} | Choose Your Track" msgstr "" @@ -6194,7 +6186,7 @@ msgid "Students" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -msgid "Answer distribution for problems" +msgid "Score distribution for problems" msgstr "" #: lms/templates/courseware/instructor_dashboard.html @@ -7090,7 +7082,7 @@ msgid "Skip" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html -msgid "Grade Distribution" +msgid "Score Distribution" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html @@ -7167,8 +7159,8 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button generates a CSV file of all students enrolled in this " -"course, along with profile information such as email address and username." +"Click to generate a CSV file of all students enrolled in this course, along " +"with profile information such as email address and username:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7177,7 +7169,7 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"For smaller courses, profile information for enrolled students can be listed" +"For smaller courses, click to list profile information for enrolled students" " directly on this page:" msgstr "" @@ -7187,10 +7179,10 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button displays the grading configuration for the course. The " -"grading configuration is the breakdown of graded subsections of the course " -"(such as exams and problem sets), and can be changed on the 'Grading' page " -"(under 'Settings') in Studio." +"Click to display the grading configuration for the course. The grading " +"configuration is the breakdown of graded subsections of the course (such as " +"exams and problem sets), and can be changed on the 'Grading' page (under " +"'Settings') in Studio." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7198,7 +7190,7 @@ msgid "Grading Configuration" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "Download a CSV of anonymized student IDs by clicking this button." +msgid "Click to download a CSV of anonymized student IDs:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7211,9 +7203,9 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button will generate a CSV grade report for all currently " -"enrolled students. Generated reports appear in a table below and can be " -"downloaded." +"Click to generate a CSV grade report for all currently enrolled students. " +"Links to generated reports appear in a table below when report generation is" +" complete." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7239,24 +7231,19 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Grade reports listed below are generated each time the Generate Grade " -"Report button is clicked. A link to each grade report remains available " -"on this page, identified by the UTC date and time of generation. Grade " +"The grade reports listed below are generated each time the Generate Grade" +" Report button is clicked. A link to each grade report remains available" +" on this page, identified by the UTC date and time of generation. Grade " "reports are not deleted, so you will always be able to access previously " "generated reports from this page." msgstr "" -#. Translators: "these rules" in this sentence references a detailed -#. description of the grading reports that will appear in a table that -#. contains -#. a mix of different types of reports. This sentence intends to indicate -#. that -#. the description of the grading report does not apply to the other reports -#. that may appear in the table. #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Other reports may appear in the table for which these rules will not " -"necessarily apply." +"The answer distribution report listed below is generated periodically by an " +"automated background process. The report is cumulative, so answers submitted" +" after the process starts are included in a subsequent report. The report is" +" generated several times per day." msgstr "" #. Translators: a table of URL links to report files appears after this @@ -8275,7 +8262,7 @@ msgstr "" #: lms/templates/static_templates/server-error.html msgid "" "Please wait a few seconds and then reload the page. If the problem persists," -" please email us at {email}." +" please email us at {email}." msgstr "" #: lms/templates/static_templates/server-overloaded.html @@ -9303,6 +9290,10 @@ msgstr "" msgid "Page Actions" msgstr "" +#: cms/templates/asset_index.html +msgid "Loading…" +msgstr "" + #: cms/templates/asset_index.html msgid "What files are listed here?" msgstr "" diff --git a/conf/locale/ach/LC_MESSAGES/djangojs.mo b/conf/locale/ach/LC_MESSAGES/djangojs.mo index 3b4bdf13c852d9096e0f04b59fa4e1d11e31a619..5a992feae386db0f17fa11acc92e384bb3a04747 100644 GIT binary patch delta 18 Zcmeyt{DXPIMs`yLLjx-#^Nl+k7y&|+20{P; delta 18 Zcmeyt{DXPIMs^bgLjx-VvyD3(7y&|g20j1) diff --git a/conf/locale/ach/LC_MESSAGES/djangojs.po b/conf/locale/ach/LC_MESSAGES/djangojs.po index f3e896f4bc..f6fae9f3f0 100644 --- a/conf/locale/ach/LC_MESSAGES/djangojs.po +++ b/conf/locale/ach/LC_MESSAGES/djangojs.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" +"POT-Creation-Date: 2014-03-25 10:27-0400\n" "PO-Revision-Date: 2014-03-19 20:22+0000\n" "Last-Translator: sarina \n" "Language-Team: Acoli (http://www.transifex.com/projects/p/edx-platform/language/ach/)\n" @@ -789,7 +789,7 @@ msgid "Error generating grades. Please try again." msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js -msgid "File Name (Newest First)" +msgid "File Name" msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js @@ -829,6 +829,21 @@ msgstr "" msgid "Error changing user's permissions." msgstr "" +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Could not find a user with username or email address '<%= identifier %>'." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Error: User '<%= username %>' has not yet activated their account. Users " +"must create and activate their accounts before they can be assigned a role." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Error: You cannot remove yourself from the Instructor group!" +msgstr "" + #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error adding/removing users as beta testers." msgstr "" diff --git a/conf/locale/ar/LC_MESSAGES/django.mo b/conf/locale/ar/LC_MESSAGES/django.mo index 68ee1e3e848c47f887db113638ab08bf6f2e14bc..80eff14e7912a296f4f8c8f07026b54946353b8c 100644 GIT binary patch delta 20 bcmZqXYUbLY$HZ=`U}#`vWU<+l=^PUPH39_| delta 20 bcmZqXYUbLY$HZ=;U}#`vV7A$m=^PUPG~5Ld diff --git a/conf/locale/ar/LC_MESSAGES/django.po b/conf/locale/ar/LC_MESSAGES/django.po index 645aead715..80f2a4f165 100644 --- a/conf/locale/ar/LC_MESSAGES/django.po +++ b/conf/locale/ar/LC_MESSAGES/django.po @@ -15,6 +15,7 @@ # khateeb , 2013 # may , 2013 # may , 2013-2014 +# hajmoh, 2014 # najwan , 2013 # najwan , 2013 # SiddigSami , 2014 @@ -79,7 +80,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" +"POT-Creation-Date: 2014-03-25 10:28-0400\n" "PO-Revision-Date: 2014-03-11 14:11+0000\n" "Last-Translator: Almaazon \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/edx-platform/language/ar/)\n" @@ -1279,7 +1280,7 @@ msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py msgid "" "Can't receive transcripts from Youtube for {youtube_id}. Status code: " -"{statuc_code}." +"{status_code}." msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py @@ -3795,14 +3796,6 @@ msgstr "" msgid "Help" msgstr "" -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "Visual" -msgstr "" - -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "HTML" -msgstr "" - #: common/templates/course_modes/choose.html msgid "Upgrade Your Registration for {} | Choose Your Track" msgstr "" @@ -6234,7 +6227,7 @@ msgid "Students" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -msgid "Answer distribution for problems" +msgid "Score distribution for problems" msgstr "" #: lms/templates/courseware/instructor_dashboard.html @@ -7138,7 +7131,7 @@ msgid "Skip" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html -msgid "Grade Distribution" +msgid "Score Distribution" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html @@ -7215,8 +7208,8 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button generates a CSV file of all students enrolled in this " -"course, along with profile information such as email address and username." +"Click to generate a CSV file of all students enrolled in this course, along " +"with profile information such as email address and username:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7225,7 +7218,7 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"For smaller courses, profile information for enrolled students can be listed" +"For smaller courses, click to list profile information for enrolled students" " directly on this page:" msgstr "" @@ -7235,10 +7228,10 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button displays the grading configuration for the course. The " -"grading configuration is the breakdown of graded subsections of the course " -"(such as exams and problem sets), and can be changed on the 'Grading' page " -"(under 'Settings') in Studio." +"Click to display the grading configuration for the course. The grading " +"configuration is the breakdown of graded subsections of the course (such as " +"exams and problem sets), and can be changed on the 'Grading' page (under " +"'Settings') in Studio." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7246,7 +7239,7 @@ msgid "Grading Configuration" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "Download a CSV of anonymized student IDs by clicking this button." +msgid "Click to download a CSV of anonymized student IDs:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7259,9 +7252,9 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button will generate a CSV grade report for all currently " -"enrolled students. Generated reports appear in a table below and can be " -"downloaded." +"Click to generate a CSV grade report for all currently enrolled students. " +"Links to generated reports appear in a table below when report generation is" +" complete." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7287,24 +7280,19 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Grade reports listed below are generated each time the Generate Grade " -"Report button is clicked. A link to each grade report remains available " -"on this page, identified by the UTC date and time of generation. Grade " +"The grade reports listed below are generated each time the Generate Grade" +" Report button is clicked. A link to each grade report remains available" +" on this page, identified by the UTC date and time of generation. Grade " "reports are not deleted, so you will always be able to access previously " "generated reports from this page." msgstr "" -#. Translators: "these rules" in this sentence references a detailed -#. description of the grading reports that will appear in a table that -#. contains -#. a mix of different types of reports. This sentence intends to indicate -#. that -#. the description of the grading report does not apply to the other reports -#. that may appear in the table. #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Other reports may appear in the table for which these rules will not " -"necessarily apply." +"The answer distribution report listed below is generated periodically by an " +"automated background process. The report is cumulative, so answers submitted" +" after the process starts are included in a subsequent report. The report is" +" generated several times per day." msgstr "" #. Translators: a table of URL links to report files appears after this @@ -8323,7 +8311,7 @@ msgstr "" #: lms/templates/static_templates/server-error.html msgid "" "Please wait a few seconds and then reload the page. If the problem persists," -" please email us at {email}." +" please email us at {email}." msgstr "" #: lms/templates/static_templates/server-overloaded.html @@ -9351,6 +9339,10 @@ msgstr "" msgid "Page Actions" msgstr "" +#: cms/templates/asset_index.html +msgid "Loading…" +msgstr "" + #: cms/templates/asset_index.html msgid "What files are listed here?" msgstr "" diff --git a/conf/locale/ar/LC_MESSAGES/djangojs.mo b/conf/locale/ar/LC_MESSAGES/djangojs.mo index a7283fd55341a7abeae69c25a60fd70534662567..8424afed5304a6d0f5197331bf724e47c1e47634 100644 GIT binary patch delta 20 bcmeC==;YY&f|1=+!O+0U$b9pAMkyu$LG1\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/edx-platform/language/ar/)\n" @@ -873,7 +873,7 @@ msgid "Error generating grades. Please try again." msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js -msgid "File Name (Newest First)" +msgid "File Name" msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js @@ -913,6 +913,21 @@ msgstr "" msgid "Error changing user's permissions." msgstr "" +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Could not find a user with username or email address '<%= identifier %>'." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Error: User '<%= username %>' has not yet activated their account. Users " +"must create and activate their accounts before they can be assigned a role." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Error: You cannot remove yourself from the Instructor group!" +msgstr "" + #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error adding/removing users as beta testers." msgstr "" diff --git a/conf/locale/bg_BG/LC_MESSAGES/django.mo b/conf/locale/bg_BG/LC_MESSAGES/django.mo index 7c6176d6f7ba3d03667439b4d4855b35f18a273a..948b4e9382a8d4884121aefbbae2092bea92e348 100644 GIT binary patch delta 18 ZcmZ3;vXEuMMs`yLLjx-#i;X)n838wb1;79R delta 18 ZcmZ3;vXEuMMs^bgLjx-VvyD44838w41-k$M diff --git a/conf/locale/bg_BG/LC_MESSAGES/django.po b/conf/locale/bg_BG/LC_MESSAGES/django.po index 41b75b8a8f..bc9237d00f 100644 --- a/conf/locale/bg_BG/LC_MESSAGES/django.po +++ b/conf/locale/bg_BG/LC_MESSAGES/django.po @@ -38,7 +38,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" +"POT-Creation-Date: 2014-03-25 10:28-0400\n" "PO-Revision-Date: 2014-02-06 03:04+0000\n" "Last-Translator: nedbat \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/edx-platform/language/bg_BG/)\n" @@ -1238,7 +1238,7 @@ msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py msgid "" "Can't receive transcripts from Youtube for {youtube_id}. Status code: " -"{statuc_code}." +"{status_code}." msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py @@ -3763,14 +3763,6 @@ msgstr "" msgid "Help" msgstr "" -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "Visual" -msgstr "" - -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "HTML" -msgstr "" - #: common/templates/course_modes/choose.html msgid "Upgrade Your Registration for {} | Choose Your Track" msgstr "" @@ -6194,7 +6186,7 @@ msgid "Students" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -msgid "Answer distribution for problems" +msgid "Score distribution for problems" msgstr "" #: lms/templates/courseware/instructor_dashboard.html @@ -7090,7 +7082,7 @@ msgid "Skip" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html -msgid "Grade Distribution" +msgid "Score Distribution" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html @@ -7167,8 +7159,8 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button generates a CSV file of all students enrolled in this " -"course, along with profile information such as email address and username." +"Click to generate a CSV file of all students enrolled in this course, along " +"with profile information such as email address and username:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7177,7 +7169,7 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"For smaller courses, profile information for enrolled students can be listed" +"For smaller courses, click to list profile information for enrolled students" " directly on this page:" msgstr "" @@ -7187,10 +7179,10 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button displays the grading configuration for the course. The " -"grading configuration is the breakdown of graded subsections of the course " -"(such as exams and problem sets), and can be changed on the 'Grading' page " -"(under 'Settings') in Studio." +"Click to display the grading configuration for the course. The grading " +"configuration is the breakdown of graded subsections of the course (such as " +"exams and problem sets), and can be changed on the 'Grading' page (under " +"'Settings') in Studio." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7198,7 +7190,7 @@ msgid "Grading Configuration" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "Download a CSV of anonymized student IDs by clicking this button." +msgid "Click to download a CSV of anonymized student IDs:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7211,9 +7203,9 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button will generate a CSV grade report for all currently " -"enrolled students. Generated reports appear in a table below and can be " -"downloaded." +"Click to generate a CSV grade report for all currently enrolled students. " +"Links to generated reports appear in a table below when report generation is" +" complete." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7239,24 +7231,19 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Grade reports listed below are generated each time the Generate Grade " -"Report button is clicked. A link to each grade report remains available " -"on this page, identified by the UTC date and time of generation. Grade " +"The grade reports listed below are generated each time the Generate Grade" +" Report button is clicked. A link to each grade report remains available" +" on this page, identified by the UTC date and time of generation. Grade " "reports are not deleted, so you will always be able to access previously " "generated reports from this page." msgstr "" -#. Translators: "these rules" in this sentence references a detailed -#. description of the grading reports that will appear in a table that -#. contains -#. a mix of different types of reports. This sentence intends to indicate -#. that -#. the description of the grading report does not apply to the other reports -#. that may appear in the table. #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Other reports may appear in the table for which these rules will not " -"necessarily apply." +"The answer distribution report listed below is generated periodically by an " +"automated background process. The report is cumulative, so answers submitted" +" after the process starts are included in a subsequent report. The report is" +" generated several times per day." msgstr "" #. Translators: a table of URL links to report files appears after this @@ -8275,7 +8262,7 @@ msgstr "" #: lms/templates/static_templates/server-error.html msgid "" "Please wait a few seconds and then reload the page. If the problem persists," -" please email us at {email}." +" please email us at {email}." msgstr "" #: lms/templates/static_templates/server-overloaded.html @@ -9303,6 +9290,10 @@ msgstr "" msgid "Page Actions" msgstr "" +#: cms/templates/asset_index.html +msgid "Loading…" +msgstr "" + #: cms/templates/asset_index.html msgid "What files are listed here?" msgstr "" diff --git a/conf/locale/bg_BG/LC_MESSAGES/djangojs.mo b/conf/locale/bg_BG/LC_MESSAGES/djangojs.mo index a2c2b9b24fd639d23cd0627145ffffab2bf954e7..6fcdee7413fe5b6aa95b178cefda34c667d5e10e 100644 GIT binary patch delta 18 ZcmeBS>0z0$k=<0m(7?*beB+J~MgTO01%Lnm delta 18 ZcmeBS>0z0$k=;bW(7?*TY~zj)MgTNv1$+Pi diff --git a/conf/locale/bg_BG/LC_MESSAGES/djangojs.po b/conf/locale/bg_BG/LC_MESSAGES/djangojs.po index 885d546068..365e8ff7d5 100644 --- a/conf/locale/bg_BG/LC_MESSAGES/djangojs.po +++ b/conf/locale/bg_BG/LC_MESSAGES/djangojs.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" +"POT-Creation-Date: 2014-03-25 10:27-0400\n" "PO-Revision-Date: 2014-03-19 20:22+0000\n" "Last-Translator: sarina \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/edx-platform/language/bg_BG/)\n" @@ -789,7 +789,7 @@ msgid "Error generating grades. Please try again." msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js -msgid "File Name (Newest First)" +msgid "File Name" msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js @@ -829,6 +829,21 @@ msgstr "" msgid "Error changing user's permissions." msgstr "" +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Could not find a user with username or email address '<%= identifier %>'." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Error: User '<%= username %>' has not yet activated their account. Users " +"must create and activate their accounts before they can be assigned a role." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Error: You cannot remove yourself from the Instructor group!" +msgstr "" + #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error adding/removing users as beta testers." msgstr "" diff --git a/conf/locale/bn/LC_MESSAGES/django.mo b/conf/locale/bn/LC_MESSAGES/django.mo index 5f4b9c7974be10a01673459c79875077454faf81..748e8d720301304281a2001f686f6ca6d25356d9 100644 GIT binary patch delta 18 ZcmeBU>0_C&k=<0m(7?*bV&jf5MgTO@1&06t delta 18 ZcmeBU>0_C&k=;bW(7?*TY~zkFMgTOi1%dzo diff --git a/conf/locale/bn/LC_MESSAGES/django.po b/conf/locale/bn/LC_MESSAGES/django.po index 8a18ab6cad..9bb67eef6b 100644 --- a/conf/locale/bn/LC_MESSAGES/django.po +++ b/conf/locale/bn/LC_MESSAGES/django.po @@ -39,7 +39,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" +"POT-Creation-Date: 2014-03-25 10:28-0400\n" "PO-Revision-Date: 2014-02-06 03:04+0000\n" "Last-Translator: nedbat \n" "Language-Team: Bengali (http://www.transifex.com/projects/p/edx-platform/language/bn/)\n" @@ -1239,7 +1239,7 @@ msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py msgid "" "Can't receive transcripts from Youtube for {youtube_id}. Status code: " -"{statuc_code}." +"{status_code}." msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py @@ -3764,14 +3764,6 @@ msgstr "" msgid "Help" msgstr "" -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "Visual" -msgstr "" - -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "HTML" -msgstr "" - #: common/templates/course_modes/choose.html msgid "Upgrade Your Registration for {} | Choose Your Track" msgstr "" @@ -6195,7 +6187,7 @@ msgid "Students" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -msgid "Answer distribution for problems" +msgid "Score distribution for problems" msgstr "" #: lms/templates/courseware/instructor_dashboard.html @@ -7091,7 +7083,7 @@ msgid "Skip" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html -msgid "Grade Distribution" +msgid "Score Distribution" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html @@ -7168,8 +7160,8 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button generates a CSV file of all students enrolled in this " -"course, along with profile information such as email address and username." +"Click to generate a CSV file of all students enrolled in this course, along " +"with profile information such as email address and username:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7178,7 +7170,7 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"For smaller courses, profile information for enrolled students can be listed" +"For smaller courses, click to list profile information for enrolled students" " directly on this page:" msgstr "" @@ -7188,10 +7180,10 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button displays the grading configuration for the course. The " -"grading configuration is the breakdown of graded subsections of the course " -"(such as exams and problem sets), and can be changed on the 'Grading' page " -"(under 'Settings') in Studio." +"Click to display the grading configuration for the course. The grading " +"configuration is the breakdown of graded subsections of the course (such as " +"exams and problem sets), and can be changed on the 'Grading' page (under " +"'Settings') in Studio." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7199,7 +7191,7 @@ msgid "Grading Configuration" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "Download a CSV of anonymized student IDs by clicking this button." +msgid "Click to download a CSV of anonymized student IDs:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7212,9 +7204,9 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button will generate a CSV grade report for all currently " -"enrolled students. Generated reports appear in a table below and can be " -"downloaded." +"Click to generate a CSV grade report for all currently enrolled students. " +"Links to generated reports appear in a table below when report generation is" +" complete." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7240,24 +7232,19 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Grade reports listed below are generated each time the Generate Grade " -"Report button is clicked. A link to each grade report remains available " -"on this page, identified by the UTC date and time of generation. Grade " +"The grade reports listed below are generated each time the Generate Grade" +" Report button is clicked. A link to each grade report remains available" +" on this page, identified by the UTC date and time of generation. Grade " "reports are not deleted, so you will always be able to access previously " "generated reports from this page." msgstr "" -#. Translators: "these rules" in this sentence references a detailed -#. description of the grading reports that will appear in a table that -#. contains -#. a mix of different types of reports. This sentence intends to indicate -#. that -#. the description of the grading report does not apply to the other reports -#. that may appear in the table. #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Other reports may appear in the table for which these rules will not " -"necessarily apply." +"The answer distribution report listed below is generated periodically by an " +"automated background process. The report is cumulative, so answers submitted" +" after the process starts are included in a subsequent report. The report is" +" generated several times per day." msgstr "" #. Translators: a table of URL links to report files appears after this @@ -8276,7 +8263,7 @@ msgstr "" #: lms/templates/static_templates/server-error.html msgid "" "Please wait a few seconds and then reload the page. If the problem persists," -" please email us at {email}." +" please email us at {email}." msgstr "" #: lms/templates/static_templates/server-overloaded.html @@ -9304,6 +9291,10 @@ msgstr "" msgid "Page Actions" msgstr "" +#: cms/templates/asset_index.html +msgid "Loading…" +msgstr "" + #: cms/templates/asset_index.html msgid "What files are listed here?" msgstr "" diff --git a/conf/locale/bn/LC_MESSAGES/djangojs.mo b/conf/locale/bn/LC_MESSAGES/djangojs.mo index f322085a7ace612b63cd3cb5848f17e2903f7db2..91441cd012230ddc030045168277c681d8b54736 100644 GIT binary patch delta 18 Zcmey#{F8aYMs`yLLjx-#^Nl+k8397M21Nh> delta 18 Zcmey#{F8aYMs^bgLjx-VvyD3(8396_20;J- diff --git a/conf/locale/bn/LC_MESSAGES/djangojs.po b/conf/locale/bn/LC_MESSAGES/djangojs.po index 47b70b0434..560b3544d8 100644 --- a/conf/locale/bn/LC_MESSAGES/djangojs.po +++ b/conf/locale/bn/LC_MESSAGES/djangojs.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" +"POT-Creation-Date: 2014-03-25 10:27-0400\n" "PO-Revision-Date: 2014-03-19 20:22+0000\n" "Last-Translator: sarina \n" "Language-Team: Bengali (http://www.transifex.com/projects/p/edx-platform/language/bn/)\n" @@ -790,7 +790,7 @@ msgid "Error generating grades. Please try again." msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js -msgid "File Name (Newest First)" +msgid "File Name" msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js @@ -830,6 +830,21 @@ msgstr "" msgid "Error changing user's permissions." msgstr "" +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Could not find a user with username or email address '<%= identifier %>'." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Error: User '<%= username %>' has not yet activated their account. Users " +"must create and activate their accounts before they can be assigned a role." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Error: You cannot remove yourself from the Instructor group!" +msgstr "" + #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error adding/removing users as beta testers." msgstr "" diff --git a/conf/locale/bn_BD/LC_MESSAGES/django.mo b/conf/locale/bn_BD/LC_MESSAGES/django.mo index 4721cd4ca5b8269d16b271f71c2b06fcad30f78d..d9c57992141610b5cdb76d957e99ae8031790aa5 100644 GIT binary patch delta 18 ZcmZ3;vXEuMMs`yLLjx-#i;X)n838wb1;79R delta 18 ZcmZ3;vXEuMMs^bgLjx-VvyD44838w41-k$M diff --git a/conf/locale/bn_BD/LC_MESSAGES/django.po b/conf/locale/bn_BD/LC_MESSAGES/django.po index a3cb3e4a90..ca8c663307 100644 --- a/conf/locale/bn_BD/LC_MESSAGES/django.po +++ b/conf/locale/bn_BD/LC_MESSAGES/django.po @@ -41,7 +41,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" +"POT-Creation-Date: 2014-03-25 10:28-0400\n" "PO-Revision-Date: 2014-02-06 03:20+0000\n" "Last-Translator: nedbat \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/edx-platform/language/bn_BD/)\n" @@ -1241,7 +1241,7 @@ msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py msgid "" "Can't receive transcripts from Youtube for {youtube_id}. Status code: " -"{statuc_code}." +"{status_code}." msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py @@ -3766,14 +3766,6 @@ msgstr "" msgid "Help" msgstr "" -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "Visual" -msgstr "" - -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "HTML" -msgstr "" - #: common/templates/course_modes/choose.html msgid "Upgrade Your Registration for {} | Choose Your Track" msgstr "" @@ -6197,7 +6189,7 @@ msgid "Students" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -msgid "Answer distribution for problems" +msgid "Score distribution for problems" msgstr "" #: lms/templates/courseware/instructor_dashboard.html @@ -7093,7 +7085,7 @@ msgid "Skip" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html -msgid "Grade Distribution" +msgid "Score Distribution" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html @@ -7170,8 +7162,8 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button generates a CSV file of all students enrolled in this " -"course, along with profile information such as email address and username." +"Click to generate a CSV file of all students enrolled in this course, along " +"with profile information such as email address and username:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7180,7 +7172,7 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"For smaller courses, profile information for enrolled students can be listed" +"For smaller courses, click to list profile information for enrolled students" " directly on this page:" msgstr "" @@ -7190,10 +7182,10 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button displays the grading configuration for the course. The " -"grading configuration is the breakdown of graded subsections of the course " -"(such as exams and problem sets), and can be changed on the 'Grading' page " -"(under 'Settings') in Studio." +"Click to display the grading configuration for the course. The grading " +"configuration is the breakdown of graded subsections of the course (such as " +"exams and problem sets), and can be changed on the 'Grading' page (under " +"'Settings') in Studio." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7201,7 +7193,7 @@ msgid "Grading Configuration" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "Download a CSV of anonymized student IDs by clicking this button." +msgid "Click to download a CSV of anonymized student IDs:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7214,9 +7206,9 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button will generate a CSV grade report for all currently " -"enrolled students. Generated reports appear in a table below and can be " -"downloaded." +"Click to generate a CSV grade report for all currently enrolled students. " +"Links to generated reports appear in a table below when report generation is" +" complete." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7242,24 +7234,19 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Grade reports listed below are generated each time the Generate Grade " -"Report button is clicked. A link to each grade report remains available " -"on this page, identified by the UTC date and time of generation. Grade " +"The grade reports listed below are generated each time the Generate Grade" +" Report button is clicked. A link to each grade report remains available" +" on this page, identified by the UTC date and time of generation. Grade " "reports are not deleted, so you will always be able to access previously " "generated reports from this page." msgstr "" -#. Translators: "these rules" in this sentence references a detailed -#. description of the grading reports that will appear in a table that -#. contains -#. a mix of different types of reports. This sentence intends to indicate -#. that -#. the description of the grading report does not apply to the other reports -#. that may appear in the table. #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Other reports may appear in the table for which these rules will not " -"necessarily apply." +"The answer distribution report listed below is generated periodically by an " +"automated background process. The report is cumulative, so answers submitted" +" after the process starts are included in a subsequent report. The report is" +" generated several times per day." msgstr "" #. Translators: a table of URL links to report files appears after this @@ -8278,7 +8265,7 @@ msgstr "" #: lms/templates/static_templates/server-error.html msgid "" "Please wait a few seconds and then reload the page. If the problem persists," -" please email us at {email}." +" please email us at {email}." msgstr "" #: lms/templates/static_templates/server-overloaded.html @@ -9306,6 +9293,10 @@ msgstr "" msgid "Page Actions" msgstr "" +#: cms/templates/asset_index.html +msgid "Loading…" +msgstr "" + #: cms/templates/asset_index.html msgid "What files are listed here?" msgstr "" diff --git a/conf/locale/bn_BD/LC_MESSAGES/djangojs.mo b/conf/locale/bn_BD/LC_MESSAGES/djangojs.mo index 3965eed182e4eecd5906eef49ed162edc7386bb7..f728a739ed67edc703a3e70347d01b4d0bd7b42e 100644 GIT binary patch delta 18 ZcmeBS>0z0$k=<0m(7?*beB+J~MgTO01%Lnm delta 18 ZcmeBS>0z0$k=;bW(7?*TY~zj)MgTNv1$+Pi diff --git a/conf/locale/bn_BD/LC_MESSAGES/djangojs.po b/conf/locale/bn_BD/LC_MESSAGES/djangojs.po index 082008d7f9..9558bf1149 100644 --- a/conf/locale/bn_BD/LC_MESSAGES/djangojs.po +++ b/conf/locale/bn_BD/LC_MESSAGES/djangojs.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" +"POT-Creation-Date: 2014-03-25 10:27-0400\n" "PO-Revision-Date: 2014-03-19 20:22+0000\n" "Last-Translator: sarina \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/edx-platform/language/bn_BD/)\n" @@ -790,7 +790,7 @@ msgid "Error generating grades. Please try again." msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js -msgid "File Name (Newest First)" +msgid "File Name" msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js @@ -830,6 +830,21 @@ msgstr "" msgid "Error changing user's permissions." msgstr "" +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Could not find a user with username or email address '<%= identifier %>'." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Error: User '<%= username %>' has not yet activated their account. Users " +"must create and activate their accounts before they can be assigned a role." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Error: You cannot remove yourself from the Instructor group!" +msgstr "" + #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error adding/removing users as beta testers." msgstr "" diff --git a/conf/locale/ca/LC_MESSAGES/django.mo b/conf/locale/ca/LC_MESSAGES/django.mo index 5f9f47f43b051074d5bf0f49f5c7f465be329028..284fcbefafd1763d0df759eb919223dba2949924 100644 GIT binary patch delta 18 ZcmbQuGMi<>Ms`yLLjx-#i;X*y838t?1+D-9 delta 18 ZcmbQuGMi<>Ms^bgLjx-VvyD5F838th1*rf4 diff --git a/conf/locale/ca/LC_MESSAGES/django.po b/conf/locale/ca/LC_MESSAGES/django.po index df7f196e85..b6ef90e8a0 100644 --- a/conf/locale/ca/LC_MESSAGES/django.po +++ b/conf/locale/ca/LC_MESSAGES/django.po @@ -4,6 +4,7 @@ # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. # # Translators: +# claudi , 2014 # #-#-#-#-# django-studio.po (edx-platform) #-#-#-#-# # edX translation file. # Copyright (C) 2014 EdX @@ -42,7 +43,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" +"POT-Creation-Date: 2014-03-25 10:28-0400\n" "PO-Revision-Date: 2014-03-23 19:30+0000\n" "Last-Translator: claudi \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/edx-platform/language/ca/)\n" @@ -1242,7 +1243,7 @@ msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py msgid "" "Can't receive transcripts from Youtube for {youtube_id}. Status code: " -"{statuc_code}." +"{status_code}." msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py @@ -3767,14 +3768,6 @@ msgstr "" msgid "Help" msgstr "" -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "Visual" -msgstr "" - -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "HTML" -msgstr "" - #: common/templates/course_modes/choose.html msgid "Upgrade Your Registration for {} | Choose Your Track" msgstr "" @@ -6198,7 +6191,7 @@ msgid "Students" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -msgid "Answer distribution for problems" +msgid "Score distribution for problems" msgstr "" #: lms/templates/courseware/instructor_dashboard.html @@ -7094,7 +7087,7 @@ msgid "Skip" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html -msgid "Grade Distribution" +msgid "Score Distribution" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html @@ -7171,8 +7164,8 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button generates a CSV file of all students enrolled in this " -"course, along with profile information such as email address and username." +"Click to generate a CSV file of all students enrolled in this course, along " +"with profile information such as email address and username:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7181,7 +7174,7 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"For smaller courses, profile information for enrolled students can be listed" +"For smaller courses, click to list profile information for enrolled students" " directly on this page:" msgstr "" @@ -7191,10 +7184,10 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button displays the grading configuration for the course. The " -"grading configuration is the breakdown of graded subsections of the course " -"(such as exams and problem sets), and can be changed on the 'Grading' page " -"(under 'Settings') in Studio." +"Click to display the grading configuration for the course. The grading " +"configuration is the breakdown of graded subsections of the course (such as " +"exams and problem sets), and can be changed on the 'Grading' page (under " +"'Settings') in Studio." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7202,7 +7195,7 @@ msgid "Grading Configuration" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "Download a CSV of anonymized student IDs by clicking this button." +msgid "Click to download a CSV of anonymized student IDs:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7215,9 +7208,9 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button will generate a CSV grade report for all currently " -"enrolled students. Generated reports appear in a table below and can be " -"downloaded." +"Click to generate a CSV grade report for all currently enrolled students. " +"Links to generated reports appear in a table below when report generation is" +" complete." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7243,24 +7236,19 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Grade reports listed below are generated each time the Generate Grade " -"Report button is clicked. A link to each grade report remains available " -"on this page, identified by the UTC date and time of generation. Grade " +"The grade reports listed below are generated each time the Generate Grade" +" Report button is clicked. A link to each grade report remains available" +" on this page, identified by the UTC date and time of generation. Grade " "reports are not deleted, so you will always be able to access previously " "generated reports from this page." msgstr "" -#. Translators: "these rules" in this sentence references a detailed -#. description of the grading reports that will appear in a table that -#. contains -#. a mix of different types of reports. This sentence intends to indicate -#. that -#. the description of the grading report does not apply to the other reports -#. that may appear in the table. #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Other reports may appear in the table for which these rules will not " -"necessarily apply." +"The answer distribution report listed below is generated periodically by an " +"automated background process. The report is cumulative, so answers submitted" +" after the process starts are included in a subsequent report. The report is" +" generated several times per day." msgstr "" #. Translators: a table of URL links to report files appears after this @@ -8279,7 +8267,7 @@ msgstr "" #: lms/templates/static_templates/server-error.html msgid "" "Please wait a few seconds and then reload the page. If the problem persists," -" please email us at {email}." +" please email us at {email}." msgstr "" #: lms/templates/static_templates/server-overloaded.html @@ -9307,6 +9295,10 @@ msgstr "" msgid "Page Actions" msgstr "" +#: cms/templates/asset_index.html +msgid "Loading…" +msgstr "" + #: cms/templates/asset_index.html msgid "What files are listed here?" msgstr "" diff --git a/conf/locale/ca/LC_MESSAGES/djangojs.mo b/conf/locale/ca/LC_MESSAGES/djangojs.mo index 23786db070c020b50cb55fbbfc04a231039f762f..fc5b422ac56e09e029e816672e289ad4b7fbf2b0 100644 GIT binary patch delta 18 ZcmZo>X=a(Qk=<0m(7?*beB%ypMgTKG1!VvL delta 18 ZcmZo>X=a(Qk=;bW(7?*TY~v1ZMgTJ<1z`XH diff --git a/conf/locale/ca/LC_MESSAGES/djangojs.po b/conf/locale/ca/LC_MESSAGES/djangojs.po index fdf3f3d3a9..5c3564d78c 100644 --- a/conf/locale/ca/LC_MESSAGES/djangojs.po +++ b/conf/locale/ca/LC_MESSAGES/djangojs.po @@ -17,7 +17,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" +"POT-Creation-Date: 2014-03-25 10:27-0400\n" "PO-Revision-Date: 2014-03-24 14:25+0000\n" "Last-Translator: claudi \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/edx-platform/language/ca/)\n" @@ -792,7 +792,7 @@ msgid "Error generating grades. Please try again." msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js -msgid "File Name (Newest First)" +msgid "File Name" msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js @@ -832,6 +832,21 @@ msgstr "" msgid "Error changing user's permissions." msgstr "" +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Could not find a user with username or email address '<%= identifier %>'." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Error: User '<%= username %>' has not yet activated their account. Users " +"must create and activate their accounts before they can be assigned a role." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Error: You cannot remove yourself from the Instructor group!" +msgstr "" + #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error adding/removing users as beta testers." msgstr "" diff --git a/conf/locale/ca@valencia/LC_MESSAGES/django.mo b/conf/locale/ca@valencia/LC_MESSAGES/django.mo index 949b6d1e88405a2f0a948fb2195f9b1c33a8c374..25446b999354907f7293fe4ab202d72ceecbee17 100644 GIT binary patch delta 18 ZcmZ3_vYutaMs`yLLjx-#i;X+V838$V1?m6* delta 18 ZcmZ3_vYutaMs^bgLjx-VvyD5-838#}1?2z$ diff --git a/conf/locale/ca@valencia/LC_MESSAGES/django.po b/conf/locale/ca@valencia/LC_MESSAGES/django.po index e7f0d43d34..bab95199af 100644 --- a/conf/locale/ca@valencia/LC_MESSAGES/django.po +++ b/conf/locale/ca@valencia/LC_MESSAGES/django.po @@ -38,7 +38,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" +"POT-Creation-Date: 2014-03-25 10:28-0400\n" "PO-Revision-Date: 2014-02-12 14:59+0000\n" "Last-Translator: sarina \n" "Language-Team: Catalan (Valencian) (http://www.transifex.com/projects/p/edx-platform/language/ca@valencia/)\n" @@ -1238,7 +1238,7 @@ msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py msgid "" "Can't receive transcripts from Youtube for {youtube_id}. Status code: " -"{statuc_code}." +"{status_code}." msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py @@ -3763,14 +3763,6 @@ msgstr "" msgid "Help" msgstr "" -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "Visual" -msgstr "" - -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "HTML" -msgstr "" - #: common/templates/course_modes/choose.html msgid "Upgrade Your Registration for {} | Choose Your Track" msgstr "" @@ -6194,7 +6186,7 @@ msgid "Students" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -msgid "Answer distribution for problems" +msgid "Score distribution for problems" msgstr "" #: lms/templates/courseware/instructor_dashboard.html @@ -7090,7 +7082,7 @@ msgid "Skip" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html -msgid "Grade Distribution" +msgid "Score Distribution" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html @@ -7167,8 +7159,8 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button generates a CSV file of all students enrolled in this " -"course, along with profile information such as email address and username." +"Click to generate a CSV file of all students enrolled in this course, along " +"with profile information such as email address and username:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7177,7 +7169,7 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"For smaller courses, profile information for enrolled students can be listed" +"For smaller courses, click to list profile information for enrolled students" " directly on this page:" msgstr "" @@ -7187,10 +7179,10 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button displays the grading configuration for the course. The " -"grading configuration is the breakdown of graded subsections of the course " -"(such as exams and problem sets), and can be changed on the 'Grading' page " -"(under 'Settings') in Studio." +"Click to display the grading configuration for the course. The grading " +"configuration is the breakdown of graded subsections of the course (such as " +"exams and problem sets), and can be changed on the 'Grading' page (under " +"'Settings') in Studio." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7198,7 +7190,7 @@ msgid "Grading Configuration" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "Download a CSV of anonymized student IDs by clicking this button." +msgid "Click to download a CSV of anonymized student IDs:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7211,9 +7203,9 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button will generate a CSV grade report for all currently " -"enrolled students. Generated reports appear in a table below and can be " -"downloaded." +"Click to generate a CSV grade report for all currently enrolled students. " +"Links to generated reports appear in a table below when report generation is" +" complete." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7239,24 +7231,19 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Grade reports listed below are generated each time the Generate Grade " -"Report button is clicked. A link to each grade report remains available " -"on this page, identified by the UTC date and time of generation. Grade " +"The grade reports listed below are generated each time the Generate Grade" +" Report button is clicked. A link to each grade report remains available" +" on this page, identified by the UTC date and time of generation. Grade " "reports are not deleted, so you will always be able to access previously " "generated reports from this page." msgstr "" -#. Translators: "these rules" in this sentence references a detailed -#. description of the grading reports that will appear in a table that -#. contains -#. a mix of different types of reports. This sentence intends to indicate -#. that -#. the description of the grading report does not apply to the other reports -#. that may appear in the table. #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Other reports may appear in the table for which these rules will not " -"necessarily apply." +"The answer distribution report listed below is generated periodically by an " +"automated background process. The report is cumulative, so answers submitted" +" after the process starts are included in a subsequent report. The report is" +" generated several times per day." msgstr "" #. Translators: a table of URL links to report files appears after this @@ -8275,7 +8262,7 @@ msgstr "" #: lms/templates/static_templates/server-error.html msgid "" "Please wait a few seconds and then reload the page. If the problem persists," -" please email us at {email}." +" please email us at {email}." msgstr "" #: lms/templates/static_templates/server-overloaded.html @@ -9303,6 +9290,10 @@ msgstr "" msgid "Page Actions" msgstr "" +#: cms/templates/asset_index.html +msgid "Loading…" +msgstr "" + #: cms/templates/asset_index.html msgid "What files are listed here?" msgstr "" diff --git a/conf/locale/ca@valencia/LC_MESSAGES/djangojs.mo b/conf/locale/ca@valencia/LC_MESSAGES/djangojs.mo index 0408bed76fd9475a5d76250e8fbd7f82d2f5683b..c8e89c505742ed880fb963d17f138718a5180992 100644 GIT binary patch delta 18 ZcmbQvGM#0@Ms`yLLjx-#^Nl;=838sC1)%@{ delta 18 ZcmbQvGM#0@Ms^bgLjx-VvyD6A838r*1)Tr@ diff --git a/conf/locale/ca@valencia/LC_MESSAGES/djangojs.po b/conf/locale/ca@valencia/LC_MESSAGES/djangojs.po index 9c783d9e3e..e07a6126df 100644 --- a/conf/locale/ca@valencia/LC_MESSAGES/djangojs.po +++ b/conf/locale/ca@valencia/LC_MESSAGES/djangojs.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" +"POT-Creation-Date: 2014-03-25 10:27-0400\n" "PO-Revision-Date: 2014-03-19 20:22+0000\n" "Last-Translator: sarina \n" "Language-Team: Catalan (Valencian) (http://www.transifex.com/projects/p/edx-platform/language/ca@valencia/)\n" @@ -790,7 +790,7 @@ msgid "Error generating grades. Please try again." msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js -msgid "File Name (Newest First)" +msgid "File Name" msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js @@ -830,6 +830,21 @@ msgstr "" msgid "Error changing user's permissions." msgstr "" +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Could not find a user with username or email address '<%= identifier %>'." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Error: User '<%= username %>' has not yet activated their account. Users " +"must create and activate their accounts before they can be assigned a role." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Error: You cannot remove yourself from the Instructor group!" +msgstr "" + #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error adding/removing users as beta testers." msgstr "" diff --git a/conf/locale/cs/LC_MESSAGES/django.mo b/conf/locale/cs/LC_MESSAGES/django.mo index d3b5bc4162a4e134b6cf47e01c12f5899dfeb1b6..5110cd98a3dc0c2e1a566be3a018ca720379a27c 100644 GIT binary patch delta 20 bcmaFL^^|MFO(u3z1w#WXBa6)sm|B?tPpt;$ delta 20 bcmaFL^^|MFO(u2|1w#WX1GCK!m|B?tPlpEL diff --git a/conf/locale/cs/LC_MESSAGES/django.po b/conf/locale/cs/LC_MESSAGES/django.po index ac47e133b7..80ab88e5df 100644 --- a/conf/locale/cs/LC_MESSAGES/django.po +++ b/conf/locale/cs/LC_MESSAGES/django.po @@ -53,7 +53,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" +"POT-Creation-Date: 2014-03-25 10:28-0400\n" "PO-Revision-Date: 2014-02-24 17:06+0000\n" "Last-Translator: Slamic \n" "Language-Team: Czech (http://www.transifex.com/projects/p/edx-platform/language/cs/)\n" @@ -1253,7 +1253,7 @@ msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py msgid "" "Can't receive transcripts from Youtube for {youtube_id}. Status code: " -"{statuc_code}." +"{status_code}." msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py @@ -3774,14 +3774,6 @@ msgstr "" msgid "Help" msgstr "" -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "Visual" -msgstr "" - -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "HTML" -msgstr "" - #: common/templates/course_modes/choose.html msgid "Upgrade Your Registration for {} | Choose Your Track" msgstr "" @@ -6207,7 +6199,7 @@ msgid "Students" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -msgid "Answer distribution for problems" +msgid "Score distribution for problems" msgstr "" #: lms/templates/courseware/instructor_dashboard.html @@ -7105,7 +7097,7 @@ msgid "Skip" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html -msgid "Grade Distribution" +msgid "Score Distribution" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html @@ -7182,8 +7174,8 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button generates a CSV file of all students enrolled in this " -"course, along with profile information such as email address and username." +"Click to generate a CSV file of all students enrolled in this course, along " +"with profile information such as email address and username:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7192,7 +7184,7 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"For smaller courses, profile information for enrolled students can be listed" +"For smaller courses, click to list profile information for enrolled students" " directly on this page:" msgstr "" @@ -7202,10 +7194,10 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button displays the grading configuration for the course. The " -"grading configuration is the breakdown of graded subsections of the course " -"(such as exams and problem sets), and can be changed on the 'Grading' page " -"(under 'Settings') in Studio." +"Click to display the grading configuration for the course. The grading " +"configuration is the breakdown of graded subsections of the course (such as " +"exams and problem sets), and can be changed on the 'Grading' page (under " +"'Settings') in Studio." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7213,7 +7205,7 @@ msgid "Grading Configuration" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "Download a CSV of anonymized student IDs by clicking this button." +msgid "Click to download a CSV of anonymized student IDs:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7226,9 +7218,9 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button will generate a CSV grade report for all currently " -"enrolled students. Generated reports appear in a table below and can be " -"downloaded." +"Click to generate a CSV grade report for all currently enrolled students. " +"Links to generated reports appear in a table below when report generation is" +" complete." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7254,24 +7246,19 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Grade reports listed below are generated each time the Generate Grade " -"Report button is clicked. A link to each grade report remains available " -"on this page, identified by the UTC date and time of generation. Grade " +"The grade reports listed below are generated each time the Generate Grade" +" Report button is clicked. A link to each grade report remains available" +" on this page, identified by the UTC date and time of generation. Grade " "reports are not deleted, so you will always be able to access previously " "generated reports from this page." msgstr "" -#. Translators: "these rules" in this sentence references a detailed -#. description of the grading reports that will appear in a table that -#. contains -#. a mix of different types of reports. This sentence intends to indicate -#. that -#. the description of the grading report does not apply to the other reports -#. that may appear in the table. #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Other reports may appear in the table for which these rules will not " -"necessarily apply." +"The answer distribution report listed below is generated periodically by an " +"automated background process. The report is cumulative, so answers submitted" +" after the process starts are included in a subsequent report. The report is" +" generated several times per day." msgstr "" #. Translators: a table of URL links to report files appears after this @@ -8290,7 +8277,7 @@ msgstr "" #: lms/templates/static_templates/server-error.html msgid "" "Please wait a few seconds and then reload the page. If the problem persists," -" please email us at {email}." +" please email us at {email}." msgstr "" #: lms/templates/static_templates/server-overloaded.html @@ -9318,6 +9305,10 @@ msgstr "" msgid "Page Actions" msgstr "" +#: cms/templates/asset_index.html +msgid "Loading…" +msgstr "" + #: cms/templates/asset_index.html msgid "What files are listed here?" msgstr "" diff --git a/conf/locale/cs/LC_MESSAGES/djangojs.mo b/conf/locale/cs/LC_MESSAGES/djangojs.mo index 64d75a0559a6281a1d9b6dd7fb25b8bd7ab07677..34d50075bbbda5791027595717b6000627577e8a 100644 GIT binary patch delta 20 bcmX@fagt+0Digb@f}w$xk@@Bvrn`&)LrMl2 delta 20 bcmX@fagt+0Digbjf}w$xf!XF9rn`&)Ln;Op diff --git a/conf/locale/cs/LC_MESSAGES/djangojs.po b/conf/locale/cs/LC_MESSAGES/djangojs.po index de2924e9c0..5b72b8ef46 100644 --- a/conf/locale/cs/LC_MESSAGES/djangojs.po +++ b/conf/locale/cs/LC_MESSAGES/djangojs.po @@ -20,7 +20,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" +"POT-Creation-Date: 2014-03-25 10:27-0400\n" "PO-Revision-Date: 2014-03-19 23:12+0000\n" "Last-Translator: sarina \n" "Language-Team: Czech (http://www.transifex.com/projects/p/edx-platform/language/cs/)\n" @@ -811,7 +811,7 @@ msgid "Error generating grades. Please try again." msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js -msgid "File Name (Newest First)" +msgid "File Name" msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js @@ -851,6 +851,21 @@ msgstr "" msgid "Error changing user's permissions." msgstr "" +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Could not find a user with username or email address '<%= identifier %>'." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Error: User '<%= username %>' has not yet activated their account. Users " +"must create and activate their accounts before they can be assigned a role." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Error: You cannot remove yourself from the Instructor group!" +msgstr "" + #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error adding/removing users as beta testers." msgstr "" diff --git a/conf/locale/cy/LC_MESSAGES/django.mo b/conf/locale/cy/LC_MESSAGES/django.mo index d5fb900203b7f2e5caa90e0facb5b3f9ea39953c..657f5e15cbd22bc3d351b9bf8b38523a2334f0d2 100644 GIT binary patch delta 18 ZcmdnVvXf=PMs`yLLjx-#i;X)P838)p1_%HE delta 18 ZcmdnVvXf=PMs^bgLjx-VvyD3%838)I1_J;9 diff --git a/conf/locale/cy/LC_MESSAGES/django.po b/conf/locale/cy/LC_MESSAGES/django.po index 1e5e5ab91a..b7f047afa3 100644 --- a/conf/locale/cy/LC_MESSAGES/django.po +++ b/conf/locale/cy/LC_MESSAGES/django.po @@ -40,7 +40,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" +"POT-Creation-Date: 2014-03-25 10:28-0400\n" "PO-Revision-Date: 2014-02-06 03:04+0000\n" "Last-Translator: nedbat \n" "Language-Team: Welsh (http://www.transifex.com/projects/p/edx-platform/language/cy/)\n" @@ -1240,7 +1240,7 @@ msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py msgid "" "Can't receive transcripts from Youtube for {youtube_id}. Status code: " -"{statuc_code}." +"{status_code}." msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py @@ -3765,14 +3765,6 @@ msgstr "" msgid "Help" msgstr "" -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "Visual" -msgstr "" - -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "HTML" -msgstr "" - #: common/templates/course_modes/choose.html msgid "Upgrade Your Registration for {} | Choose Your Track" msgstr "" @@ -6200,7 +6192,7 @@ msgid "Students" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -msgid "Answer distribution for problems" +msgid "Score distribution for problems" msgstr "" #: lms/templates/courseware/instructor_dashboard.html @@ -7100,7 +7092,7 @@ msgid "Skip" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html -msgid "Grade Distribution" +msgid "Score Distribution" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html @@ -7177,8 +7169,8 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button generates a CSV file of all students enrolled in this " -"course, along with profile information such as email address and username." +"Click to generate a CSV file of all students enrolled in this course, along " +"with profile information such as email address and username:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7187,7 +7179,7 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"For smaller courses, profile information for enrolled students can be listed" +"For smaller courses, click to list profile information for enrolled students" " directly on this page:" msgstr "" @@ -7197,10 +7189,10 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button displays the grading configuration for the course. The " -"grading configuration is the breakdown of graded subsections of the course " -"(such as exams and problem sets), and can be changed on the 'Grading' page " -"(under 'Settings') in Studio." +"Click to display the grading configuration for the course. The grading " +"configuration is the breakdown of graded subsections of the course (such as " +"exams and problem sets), and can be changed on the 'Grading' page (under " +"'Settings') in Studio." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7208,7 +7200,7 @@ msgid "Grading Configuration" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "Download a CSV of anonymized student IDs by clicking this button." +msgid "Click to download a CSV of anonymized student IDs:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7221,9 +7213,9 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button will generate a CSV grade report for all currently " -"enrolled students. Generated reports appear in a table below and can be " -"downloaded." +"Click to generate a CSV grade report for all currently enrolled students. " +"Links to generated reports appear in a table below when report generation is" +" complete." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7249,24 +7241,19 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Grade reports listed below are generated each time the Generate Grade " -"Report button is clicked. A link to each grade report remains available " -"on this page, identified by the UTC date and time of generation. Grade " +"The grade reports listed below are generated each time the Generate Grade" +" Report button is clicked. A link to each grade report remains available" +" on this page, identified by the UTC date and time of generation. Grade " "reports are not deleted, so you will always be able to access previously " "generated reports from this page." msgstr "" -#. Translators: "these rules" in this sentence references a detailed -#. description of the grading reports that will appear in a table that -#. contains -#. a mix of different types of reports. This sentence intends to indicate -#. that -#. the description of the grading report does not apply to the other reports -#. that may appear in the table. #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Other reports may appear in the table for which these rules will not " -"necessarily apply." +"The answer distribution report listed below is generated periodically by an " +"automated background process. The report is cumulative, so answers submitted" +" after the process starts are included in a subsequent report. The report is" +" generated several times per day." msgstr "" #. Translators: a table of URL links to report files appears after this @@ -8285,7 +8272,7 @@ msgstr "" #: lms/templates/static_templates/server-error.html msgid "" "Please wait a few seconds and then reload the page. If the problem persists," -" please email us at {email}." +" please email us at {email}." msgstr "" #: lms/templates/static_templates/server-overloaded.html @@ -9313,6 +9300,10 @@ msgstr "" msgid "Page Actions" msgstr "" +#: cms/templates/asset_index.html +msgid "Loading…" +msgstr "" + #: cms/templates/asset_index.html msgid "What files are listed here?" msgstr "" diff --git a/conf/locale/cy/LC_MESSAGES/djangojs.mo b/conf/locale/cy/LC_MESSAGES/djangojs.mo index d7e42d48ed21c9d9bf8f97f915a936ca9a42e353..d395c8c430aa7e6eb8588e423e1b6507b87986f2 100644 GIT binary patch delta 18 ZcmZ3&vV>*AMs`yLLjx-#^Nl-l7y&os1;_vZ delta 18 ZcmZ3&vV>*AMs^bgLjx-VvyD4)7y&oQ1;hXV diff --git a/conf/locale/cy/LC_MESSAGES/djangojs.po b/conf/locale/cy/LC_MESSAGES/djangojs.po index 2125977728..03a0c5f036 100644 --- a/conf/locale/cy/LC_MESSAGES/djangojs.po +++ b/conf/locale/cy/LC_MESSAGES/djangojs.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" +"POT-Creation-Date: 2014-03-25 10:27-0400\n" "PO-Revision-Date: 2014-03-19 20:22+0000\n" "Last-Translator: sarina \n" "Language-Team: Welsh (http://www.transifex.com/projects/p/edx-platform/language/cy/)\n" @@ -821,7 +821,7 @@ msgid "Error generating grades. Please try again." msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js -msgid "File Name (Newest First)" +msgid "File Name" msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js @@ -861,6 +861,21 @@ msgstr "" msgid "Error changing user's permissions." msgstr "" +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Could not find a user with username or email address '<%= identifier %>'." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Error: User '<%= username %>' has not yet activated their account. Users " +"must create and activate their accounts before they can be assigned a role." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Error: You cannot remove yourself from the Instructor group!" +msgstr "" + #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error adding/removing users as beta testers." msgstr "" diff --git a/conf/locale/de_DE/LC_MESSAGES/django.mo b/conf/locale/de_DE/LC_MESSAGES/django.mo index fd43e2d6bef626445899165fba6119f9ec7b3fbc..4bbfb8822b82b68a42abe2b890f5da88bbf82a48 100644 GIT binary patch delta 6573 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 NO@2k`HD!6B{{tfo?gIb- delta 6610 zcmYk=2V9rc9>?*+l8plqaQ+ohkRdKy47Gq%#BimVB?4}+fXqz$hgO)G3oBR4*>XjB zyXno$RLYhbn%7m9sgjI5gK{_#9rN%6dHs&>4f)g;ksWDIBdOU<3n;Fv^y?MDKW?&hXqBnkxA^0u& z;T4R)-!Re`w+U_G6vSdU>ZiaNyN1_CIB!^gpG1vd1*#*@qZ;0TdTtX2 z<4#*%i+cVuR0qC5)qeroqfd-;KOu(sR|P2)XuoA5vuB1P`@@u@Dp+jG*JBR(y{Ha^ zwsoeyF|xd-J^Ela>iz(m&qvMZaO*hKOiyde{A;Z$DbUm|MOCyKHPRh82KS(Lck5WE zqI^`x?nX6Kj=ne(wQ1d`5ihdkub|r5jH-7R2H}1^*o4F()D&Jo&B!(ML*I5zgF&c# zBNkyZT*>!h@(y z^F3-${DOMkiv^V-s2Pbw&153#{Zx#@{>UFw#t(m7iM@3G*O1T)Cy{T8Ifwq}&0A_H z2sN@OYkLeJpK9}&sHx6F?V*X*S*WF0jH>TN%*B^c=l>cO>imbt8^iLN2XH&CMtWw3 zc5p_p5H&+Dp(@&lI$m2)9o%d0A4YZb7^>m(s2RA9+LXb3l>)Fn^3gO=7^(B$m4sf* zMgEx4{7?l|s5N>P)$q%xDc*|Oy?br>QA{I$8tY;6L}yRLpw>JNHGpoY`@K;!)eqg8 zx)CJQ(7mW0R-!sEAJygY!N9Jix7RF&jBw;DAg>rfw@H&6|Igj(WLs3ks+ z+Vnoj%)c6Jn(S<%7*xZ_HlKmoeErdd<51s+xyUELtVLD0A5-uQvaBY&qqEu4Fob*& z&cgdpe|KEMSahW@|16Km=Iw{|06vG8F$)*+v?}}ptMCS@1CMof_P}~neg`hZ+4InS}O0K8E2G)FzpUYPizocUx$AWZRhcah}fqPb9RKGkO{`1XrWJ{Xd~LQ3z*Iw#B)a zhMJ-GPz{|ymfcL}w-9F8tVgZwF=Uy|U#Romk>Tt9Ak4-}EY|t2B@s?Ra=LS@`k@*e zhWai{MXm7?48?8e!d=)Nzd}uEK!&p?8leyQIMfm(qSm?->NIsn&2%RE(7wqdp-nOb zy>T|G!beaQ%*W=q2=(0S_>Gq_NAYd)JNh`k;Z*c>W~dG?Qa-AmG3-Z^bBp6lTtI#k z^1A7DEAy}8kw!v2?2i#R7}a1gM&TT6imR{*ZpUc+#Fn2!&5U;zzf@oY>ku4Dei>@7 zoVT`O{tL;E$Y%a^tlptOBkq^uG? z9chf(bS=>r^Dqd9qB?vxw!_J&4lZ$%P)|0XHpM*lShymDapfe+FQO|cr zJ)e#BFcwq0Z23%7$L3-Ty62H-P2zP_&p*W={1Y|ez+7iZT&Rxrw2s0S z!m_g1ACSV--zUYIKQ5`RJ@@_MmLb+M{4evs2;tx>o9kt~rF_iYr84_yXGHPW0w>uRyMvWjI z)o=>7$4t}*Y69vQx={_UKs~n+HGu7?_jjX?bFIC97Bxdx(ap!t1o7ead?-+xXC`Lh zTvWv$Vp}|F@Bd-T{f0Ol4Y$Uj-cLsjC>yo*V^DkNacqYhupxdjg!xyGPg5`!FQLx& zV7?mDaSA5j8N7mF!#JvFhC5R_05!rfsD_JBBQ3%DI3G3TD^WA{BI-l-Ha5b;!|5eaRUb*PbVK{b33HL@R3OLPq*(f3X#-yD@sKo{PE{PWHfVG>rM*8VL_##7h{ zLq|J%AQKsY+l(jiG&jmo4+P%jywDrt$xp^AT!#O|=41F5F&;sUB>irF(ZoX3>1c9~ z({KiMAU^?L!KJ8belS)77tI{#q>>IQ3z!|?!WNm`F{{v8m9y~!717kmMA?hhk% zn$xJwmdRgfQ8*ZtpNN{`88-hEYDu0$&1?-utKpp_`rr}N8b=m6-{x3rf7B9`pgJ}S zb8#-}gY`N3;Fs7FPhc->QtbQ>NIu?6{#E=An=yT@(0c*{SC86|&{X%pZa5A%<8n;I zoQd`q4AiHy4x8dtjK=zt*!dWbI<7~t7JVi=f2VwmspS7aEpeAAEE^V2Vd7&*tfgQe z?ngGR37^VG2&bZs**VmC{TX*VJ-SbK9 zBmTaaT+azo{yXAjVlTm@dVcRbjoPq>h*yXv#Af2=YX_N?#FK;uuF3kA(4{Tm!zePa zjn33L5*;bfn%Bb`{5KInTq1OR;9vr{znJvXHZS}s({+H@;7K{#KuP_7WiloZ)sp<3 zxQ+<&ymt@(oFn5$=2HyCww@dO-y-=Tgsz=LFy*aqJ+Yj4j?l;LI`IU-2{-KB|6hD+ z%+~6Nh?v;Rw(N@azg915j3<3n`RXwd&C-wAJAb1Ssp|pa6!9YQ38AYcZy&}6L_5-N zRKFDw!n1ju71mUB43bhy{c`X5EO{gsy%> zI`Jnln%GV}NF-Btl-9F|Ob8KA!7_Y`XixfQbQ8KdIC%a!Zj+whsOOTogSbHaMjRzt z5N{EY)DcMN8bQQ(Qu;je(Ic`v`5a>&A@M!Yf`~$;dCpr_K6ZaEss72Rm2eSmfAP(BRKW?$kGFGdC#4p6Fo&x9lXp^3g^>~~42}_B5q6g9RrVi~P|1NQZ z_z$70B@y6BQ76y7ZPS~qqcBWUt?NA^k$8dNFB22P3yH*!q)!l^5xV{$n%&f}5Bc!w z8&Q$z5w`SeO6C#MiELsw(Sduv<2ytxp{vlr^E0|SKRP@xjHhzRx2h?Lz7*^;Y*22^ zsMuQ@`b{dozhG+3s?>P_{#{+2QhKGNR(Hs3*|l?0XR_VNCZuo$MoC@r5_ zP%*8nm#eh6Xk0;sD-HV;7tKhXRyLt#Rc4)Ebw+k@&8(~(Z?BS?y*c^5O-l+UO?6Ew zuW*%4Dx6s1nli1dtawUAvdJo`>72X9+tZUndH3o0tbCUjj2|*z{5ODm}DXJ{a3j80eZu~m{ diff --git a/conf/locale/de_DE/LC_MESSAGES/django.po b/conf/locale/de_DE/LC_MESSAGES/django.po index 487e179636..ab39a5d8c9 100644 --- a/conf/locale/de_DE/LC_MESSAGES/django.po +++ b/conf/locale/de_DE/LC_MESSAGES/django.po @@ -23,6 +23,7 @@ # ramirezterrix , 2014 # ramirezterrix , 2014 # Shan9204 , 2013 +# Shan9204 , 2014 # #-#-#-#-# mako.po (edx-platform) #-#-#-#-# # edX community translations have been downloaded from German (Germany) (http://www.transifex.com/projects/p/edx-platform/language/de_DE/) # Copyright (C) 2014 edX @@ -49,6 +50,7 @@ # ramirezterrix , 2014 # pongratz , 2014 # Shan9204 , 2013 +# Shan9204 , 2014 # #-#-#-#-# messages.po (edx-platform) #-#-#-#-# # edX translation file # Copyright (C) 2013 edX @@ -63,13 +65,14 @@ # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. # # Translators: +# Shan9204 , 2014 msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" -"PO-Revision-Date: 2014-02-24 17:06+0000\n" -"Last-Translator: nedbat \n" +"POT-Creation-Date: 2014-03-25 10:28-0400\n" +"PO-Revision-Date: 2014-03-25 13:07+0000\n" +"Last-Translator: Shan9204 \n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/edx-platform/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -220,7 +223,7 @@ msgstr "" #: common/djangoapps/student/views.py msgid "Email or password is incorrect." -msgstr "Email oder Password ist falsch." +msgstr "E-Mail oder Password ist falsch." #: common/djangoapps/student/views.py msgid "" @@ -263,7 +266,7 @@ msgstr "" #: common/djangoapps/student/views.py msgid "An account with the Email '{email}' already exists." -msgstr "Es existiert bereits ein Konto mit dieser Emailadresse '{email}'." +msgstr "Es existiert bereits ein Konto mit dieser E-Mailadresse '{email}'." #: common/djangoapps/student/views.py msgid "Error (401 {field}). E-mail us." @@ -381,7 +384,7 @@ msgstr "Es existiert bereits ein Konto mit dieser Emailadresse" #: common/djangoapps/student/views.py msgid "Old email is the same as the new email." -msgstr "Die alte Emailadresse ist identisch mit der neuen." +msgstr "Die alte E-Mailadresse ist identisch mit der neuen." #: common/djangoapps/student/views.py msgid "Name required" @@ -1275,7 +1278,7 @@ msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py msgid "" "Can't receive transcripts from Youtube for {youtube_id}. Status code: " -"{statuc_code}." +"{status_code}." msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py @@ -3855,14 +3858,6 @@ msgstr "Datenschutzbestimmungen" msgid "Help" msgstr "Hilfe" -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "Visual" -msgstr "Visuell" - -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "HTML" -msgstr "HTML" - #: common/templates/course_modes/choose.html msgid "Upgrade Your Registration for {} | Choose Your Track" msgstr "" @@ -4175,7 +4170,7 @@ msgstr "" #: lms/templates/dashboard.html msgid "Password Reset Email Sent" -msgstr "Passwort-Rücksetz-E-mail wurde gesendet" +msgstr "Passwort-Rücksetz-E-Mail wurde gesendet" #: lms/templates/dashboard.html msgid "" @@ -4187,11 +4182,11 @@ msgstr "" #: lms/templates/dashboard.html lms/templates/dashboard.html msgid "Change Email" -msgstr "Email ändern" +msgstr "E-Mail ändern" #: lms/templates/dashboard.html msgid "Please enter your new email address:" -msgstr "Bitte geben Sie Ihre neue Emailadresse ein:" +msgstr "Bitte geben Sie Ihre neue E-Mailadresse ein:" #: lms/templates/dashboard.html msgid "Please confirm your password:" @@ -4202,8 +4197,8 @@ msgid "" "We will send a confirmation to both {email} and your new email as part of " "the process." msgstr "" -"Als Teil des Prozesses senden wir Ihnen an {email} und Ihre neue Email eine " -"Bestätigung" +"Als Teil des Prozesses senden wir Ihnen an {email} und Ihre neue E-Mail eine" +" Bestätigung" #: lms/templates/dashboard.html msgid "Change your name" @@ -4425,7 +4420,7 @@ msgstr "Mein Passwort zurücksetzen" #: lms/templates/forgot_password_modal.html msgid "Email is incorrect." -msgstr "Email ist nicht korrekt." +msgstr "E-Mail ist nicht korrekt." #: lms/templates/help_modal.html msgid "{platform_name} Help" @@ -6294,7 +6289,7 @@ msgid "Students" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -msgid "Answer distribution for problems" +msgid "Score distribution for problems" msgstr "" #: lms/templates/courseware/instructor_dashboard.html @@ -7190,7 +7185,7 @@ msgid "Skip" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html -msgid "Grade Distribution" +msgid "Score Distribution" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html @@ -7267,8 +7262,8 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button generates a CSV file of all students enrolled in this " -"course, along with profile information such as email address and username." +"Click to generate a CSV file of all students enrolled in this course, along " +"with profile information such as email address and username:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7277,7 +7272,7 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"For smaller courses, profile information for enrolled students can be listed" +"For smaller courses, click to list profile information for enrolled students" " directly on this page:" msgstr "" @@ -7287,10 +7282,10 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button displays the grading configuration for the course. The " -"grading configuration is the breakdown of graded subsections of the course " -"(such as exams and problem sets), and can be changed on the 'Grading' page " -"(under 'Settings') in Studio." +"Click to display the grading configuration for the course. The grading " +"configuration is the breakdown of graded subsections of the course (such as " +"exams and problem sets), and can be changed on the 'Grading' page (under " +"'Settings') in Studio." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7298,7 +7293,7 @@ msgid "Grading Configuration" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "Download a CSV of anonymized student IDs by clicking this button." +msgid "Click to download a CSV of anonymized student IDs:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7311,9 +7306,9 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button will generate a CSV grade report for all currently " -"enrolled students. Generated reports appear in a table below and can be " -"downloaded." +"Click to generate a CSV grade report for all currently enrolled students. " +"Links to generated reports appear in a table below when report generation is" +" complete." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7339,24 +7334,19 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Grade reports listed below are generated each time the Generate Grade " -"Report button is clicked. A link to each grade report remains available " -"on this page, identified by the UTC date and time of generation. Grade " +"The grade reports listed below are generated each time the Generate Grade" +" Report button is clicked. A link to each grade report remains available" +" on this page, identified by the UTC date and time of generation. Grade " "reports are not deleted, so you will always be able to access previously " "generated reports from this page." msgstr "" -#. Translators: "these rules" in this sentence references a detailed -#. description of the grading reports that will appear in a table that -#. contains -#. a mix of different types of reports. This sentence intends to indicate -#. that -#. the description of the grading report does not apply to the other reports -#. that may appear in the table. #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Other reports may appear in the table for which these rules will not " -"necessarily apply." +"The answer distribution report listed below is generated periodically by an " +"automated background process. The report is cumulative, so answers submitted" +" after the process starts are included in a subsequent report. The report is" +" generated several times per day." msgstr "" #. Translators: a table of URL links to report files appears after this @@ -8381,7 +8371,7 @@ msgstr "" #: lms/templates/static_templates/server-error.html msgid "" "Please wait a few seconds and then reload the page. If the problem persists," -" please email us at {email}." +" please email us at {email}." msgstr "" #: lms/templates/static_templates/server-overloaded.html @@ -9415,6 +9405,10 @@ msgstr "" msgid "Page Actions" msgstr "" +#: cms/templates/asset_index.html +msgid "Loading…" +msgstr "" + #: cms/templates/asset_index.html msgid "What files are listed here?" msgstr "" diff --git a/conf/locale/de_DE/LC_MESSAGES/djangojs.mo b/conf/locale/de_DE/LC_MESSAGES/djangojs.mo index 1958a9d57aba3011d5a7bf7e8a814d0ccd6d58ac..7a945a6809ec9bd1cf9e1a5fab8918186fbbd88a 100644 GIT binary patch delta 5628 zcmX}w34D!L9>(#LRR~!~Bt#-1gxHcuEJ4IB2x^NUcB-VBGBI?@4O7)vS_C!J)-sHa zYNe{E6m3yj%hXnTm>FA9TeZrV-*exi@2AiGp7ZABeb4!ybKe{N;jqWT!yc{+6}=Z5 z4j&I=s$qLSV{&Nc2I;IZmqLw6#!_sGl`9*Qirp~^3$X@nupYvN^l#&9I6cgm0DOWW z=pSxOMT|yn;WCYB_;R8>`eRqy&$14-jzY#@a#0tUfx6&g%)pH}1s|YpIKGN8u{aeQ z;QN?~M=>6wsv6Uf``W)ld_Pv;Ab$09vDqn2x+qH8T=b%BiSd*pIsLainVICTeCrEW8FDfGYLd zn2IY<13HbW%yrc7J;ir1j9IDln~`FeGu64wdK$lQA`VwZJ2Tmb!Sv6fE_BQ45o1hW z`k|<`9fum|eAJ9qU?W^>`^Pbb{#n}(W~Zux;ix5zs^M}*T$>Z#oM?)gK}!t8Ow`)u z*z@C1m3keu2^XU(umSb{ZKwh6$3%>*=`3jv)cdn-KNt1>NiG^%yEjoYU5?rdn~`dp z9jJkwMlU>%TH{jG3?8ADA7Fu@v>GDBy>h@odzZFGS6J6>3Q~pencrwPYu(SJ0RKUDSYoMZM3fj^4-m zhtbf5YN6JoA*%Fgs2dGJUEn3uTIbDT9CGMdv=tZ5i6cv%V zm^6&Rspy5PP{02H2IEKQ3Z=1|hDLZ2)xU#!qfdLMv_YsFMxq9ofYI0-HShsA5c5%+ z?3g`YiYoOJ)Br;|uo1B)s(+vZ_0OhpiW8biVn@fe7*D@9?!jr;3)4F}e-Rboe)>C5 zOErTJbrkMG4fGspLU<^2>0(%%ZRX{W+)sY|n5xYjl7U+O0>h40?5OcB?=7($BQ^ zL2b5ys0)w5aySh&(?WZG4XP5`?D_quN?k+^@G)wyRB&~5-WY+sIZ+R_b~^8mC8%9{ z5X<2O+rMsoimF_2H)r5AFp_>edShpMJ`*G8_qF|3(VxC+3JsNTCTg?nM(xtes0&;} zRpb_y#fSFi&rlWc$#iBGfu8i6;6iMU`n~V4G9E`=_ac%KEouuZTm4jjoC{-8#TjfFF2dF4yvDMZH2M={AbY6 z+Kfkyv=Fs+~4cvkaQ8z3_K9S}()IeJGalR$HVIuv}s0%K|3AhIJ;0o#MJg9nN z0{z)o0e9jM{1#n2ZB5;N&bQKNWMi5o$TP*1qDmf{<@{lhhjr<%K$hR^$Lbi;-??Ej zYV+n{JZ{Eacm_}6Qa zl_nRp+gD;g{0d93>Imnb;XmS8`T--IO?w0NexFg!--z+3(r2Rv@&?wyxu}Y5#Y%Vx zE28V7{lPs{>HS7Kn=lZ|(T~6otd07G7FZ3tTgPD-{kPB?S7RWqLv7}*);*}D_#S=n zEY{N{FVoOk1iZ*sCC)6G9u(L716n#>B{Rs|qy~9@WY|V)ob~)9zF$-tR4H;PEmfg2 z$tOC#b1;7?3J$L1Vz%yod1`mHCtHaYvJ<&TbbLjwlRpz}hQmaMzOl5p$%HAm*F&GX zbnL;hxsS%YQXUt7dhqQ)(us~0#DiZLixUYu+?0|O@;jMEo{@i(_sDIc z<2B-KZ`6+VbTWx(H?w)&{{z7XwVAFG9WC`7noZ+d@;|bhXi;^r45mO0j`89LSI9^bN&Ze^ zNe7~1AL&Bws$-8VOttNWxRdzWes4T!+r{{y)?bJIpW7yP%XtX!+;%@zKCJIZbrD?(oO!En4?&ucz+sNoTJ;@gp7}{^W1Oo9Jjmj*=Fn z4oM>m$R(oV7YFz2HD2f1eogdZat&}LIcLx71HPK}+H_tt>NTl5<+rGQ{q&Y2FET3^H01(hLAk6gnU8%L3ETSQ`{|M z-ofMK1SzrSysUB7W4g@)I)lkewy6PSIFQ&XCI_oP?2|$#3Mp zB#Im%>qtj3kLdW4)OELbsa1S0w3&Z#yO=ZKWm2LO6H=3!7RRR63M?L(5%25SAhYe|Qy{ty%v8cw#WRJ|^tdUPV{||QHdkX*n delta 5690 zcmX}w34Bdg0>|-_NP;9Hk%*{BpM7bN*b}9p8ls3@Qze85B`Ffxl6q*1whR(WEyL(o zYP5<>7gQHpF~S%I)zVmMooO+h)>6#x|IRVz)BpRPbKiUSp6%W|EjsLX?69BrY?XjT zh7#mwOe}VcW5O^r z#+WFqfmJX8xrEm|O(lo}{V)Uvxps~-&p8q4gDFIvpa^xswU~z6@l_0{ZZ9|$>(ZW! zO>isrz%p!%O&=p%-(*mU=fG@yA3w%W98$wxXbhI8Jr#AqnHY@AF%s8dCESh-+U!Rr z(foiK*cEJzKjY(ApJ~?dRIJ4HO%EzM;UKJtBT*k5hxKtj>cpR7ARcxeN3GInRL8EP zX2{gEMx)Lfj~Y-L*Y1q!KstJf8Nds(X9`eLIT!VXlc)<{L}tz0LyfE|3$KpHq1JXK zCgX>w4qZXb%pKJCDlwWR*Z?*4Um}xXu076a)>8@c@Fs3TjpPJI;C0lA?mHuD*^bu3 z{v7XsTH}SN4sSz^Y#%nmQrEtZt!M|ZQ}uo_Y9>3@W*A!AE*wzL(=h;tx^^~JracL@ z#xvdVg{T=@i`tA|pl0GI>hoo&4&J~-Os!*=_7&9UXSntvFBN@Z6>8)kp+>w1wRWeF zSvMC@9rI(jxj@`o5X*niMK5kC}jt zaUp61U!q2E8CPO32X%LB!17pvTJs&Kk?%(>$x+k{UPCR}17~PM+rh_B9j=9u+Q#uz z^uZLYfIU%5G7vTOIj9T0i9uL|TI;2lkME;K9NWn5p<1Z#H%Fbf6Ml%jP)qgzpTa0c z8_4xdKPu|+^T@eO9_m6%a44?Cw)ha6Vq4}@Q<}qzE>Mi)a5c8WD)IJ#))O`5Q}9XL ziJkB+aw^ll3G1)QC@LvfjGFS}sAv6e$bY68SJg}m#)UWq7hrfZV^~h}9`c{r&&yoA zje$5b!OrL$)a|^;xgNu5Z%bhQ)#HO4sDwe>D>`8m>cNqW6|o;yz#$ldIT(id7>YAc zGd2%3(#6;wkD<;V(VS-m_COt8P2TkD7^&R9XE2#A3z+Z6|mSdsxfp<`U)m9;$HK#EXqf=N8oaEe$>?d;#Z(&V_rzHvR zWM?i8)xpLXgNdjPb;B?(m0nczg-q0@%SG+>*{C&KfGM~fJ@`FpWcN`sQGt2YOw>Tl zR6J@a+96{yIamwVVL9B7`u-vGYPX-HQWdYFdic<_V>;UpHbqTs66%7fs19bJ2eVKe ze;o(mO4KI1>y8IMWABoBs1CNrHQ4W7r=D!J*BOFji?qd*!cC))S63f%> zf*mm(_5K3qyQrC2g}T587>v76&xKNV{72M`+;hi6p0ypRB38sC_x{tU8AwA-aVGlXWGuqhP~QvhX@6hDV4&{*W>nPUR;W#t ziaK#RzK9v94(&mf)jY(y*frh$z{tfE+Mgj0O>+mEV`4Ac9)Y`PuRskjv$ws@7!1+< zU*M}4GYxg(Ij9kA!Du{$x+^ZAI`}(=VPGG-#!(nSJ08{X4yXrBSFDeNQ8V*~dw&_~ z^J~zn`~MRvI&o_jTyH#udI0rC^*9^1;&{}is@u;#N}oh^WExh-d68MTnM7I5WDmJA(1~v7|P#xKeTC!5qjCp^h z5=kX=qcq7ul*(rnfDBWt#+i$5114Ueq3 zl$vItE15)8N-d_a*e@c|ORs$Y_>acU_W|SQCw0j) zMCBXOjoebhmFF$ov?U+8W4bTrxcYVc zm0Ti8qz6&iLE_1KWIOqmsJv$R|LafGesQf{T7Q2UyWN4)cz}eEWh8*8bRL{!F-fn*V>PMVXCiOOL\n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/edx-platform/language/de_DE/)\n" @@ -838,8 +838,8 @@ msgstr "" "einmal." #: lms/static/coffee/src/instructor_dashboard/data_download.js -msgid "File Name (Newest First)" -msgstr "Dateinname (neuste zuerst)" +msgid "File Name" +msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js msgid "" @@ -878,6 +878,21 @@ msgstr "" msgid "Error changing user's permissions." msgstr "" +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Could not find a user with username or email address '<%= identifier %>'." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Error: User '<%= username %>' has not yet activated their account. Users " +"must create and activate their accounts before they can be assigned a role." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Error: You cannot remove yourself from the Instructor group!" +msgstr "" + #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error adding/removing users as beta testers." msgstr "" @@ -982,7 +997,7 @@ msgstr "Ihre Nachricht darf nicht leer sein." #: lms/static/coffee/src/instructor_dashboard/send_email.js msgid "Your email was successfully queued for sending." -msgstr "Ihre Email wurde erfolgreich zum Senden vorbereitet" +msgstr "Ihre E-Mail wurde erfolgreich zum Senden vorbereitet" #: lms/static/coffee/src/instructor_dashboard/send_email.js msgid "" @@ -1008,7 +1023,7 @@ msgid "" "classes, it may take up to an hour (or more, if other courses are " "simultaneously sending email) to send all emails." msgstr "" -"Ihre E-mail wurde erfolgreich gesendet. Bitte beachten sie, dass es für " +"Ihre E-Mail wurde erfolgreich gesendet. Bitte beachten sie, dass es für " "große Kurse mehrere Stunden (falls mehrere Kurse gleichzeitig E-Mails senden" " noch einmal länger) dauern kann bis alle E-Mails versendet wurden ." @@ -1018,7 +1033,7 @@ msgstr "Fehler beim Senden der E-Mail." #: lms/static/coffee/src/instructor_dashboard/send_email.js msgid "There is no email history for this course." -msgstr "Sie haben keine Emails für diesen Kurs." +msgstr "Sie haben keine E-Mails für diesen Kurs." #: lms/static/coffee/src/instructor_dashboard/send_email.js msgid "There was an error obtaining email task history for this course." @@ -1032,7 +1047,7 @@ msgstr "" #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a student email address or username." msgstr "" -"Bitte geben Sie eine Teilnehmer-Emailadresse oder einen Benutzernamen ein." +"Bitte geben Sie eine Teilnehmer-E-Mailadresse oder einen Benutzernamen ein." #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "" diff --git a/conf/locale/el/LC_MESSAGES/django.mo b/conf/locale/el/LC_MESSAGES/django.mo index 694d772f836bed7d19c755f11b644af2c886362d..6c161d416d76b6280a65e25d289d3fb95ccde708 100644 GIT binary patch delta 18 ZcmeBY>1Ua+k=<0m(7?*bV&jf*MgTPS1&ROw delta 18 ZcmeBY>1Ua+k=;bW(7?*TY~zk_MgTO`1%&_r diff --git a/conf/locale/el/LC_MESSAGES/django.po b/conf/locale/el/LC_MESSAGES/django.po index aef9eb777f..95ef442962 100644 --- a/conf/locale/el/LC_MESSAGES/django.po +++ b/conf/locale/el/LC_MESSAGES/django.po @@ -40,7 +40,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" +"POT-Creation-Date: 2014-03-25 10:28-0400\n" "PO-Revision-Date: 2014-02-10 03:11+0000\n" "Last-Translator: sarina \n" "Language-Team: Greek (http://www.transifex.com/projects/p/edx-platform/language/el/)\n" @@ -1240,7 +1240,7 @@ msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py msgid "" "Can't receive transcripts from Youtube for {youtube_id}. Status code: " -"{statuc_code}." +"{status_code}." msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py @@ -3765,14 +3765,6 @@ msgstr "" msgid "Help" msgstr "" -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "Visual" -msgstr "" - -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "HTML" -msgstr "" - #: common/templates/course_modes/choose.html msgid "Upgrade Your Registration for {} | Choose Your Track" msgstr "" @@ -6196,7 +6188,7 @@ msgid "Students" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -msgid "Answer distribution for problems" +msgid "Score distribution for problems" msgstr "" #: lms/templates/courseware/instructor_dashboard.html @@ -7092,7 +7084,7 @@ msgid "Skip" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html -msgid "Grade Distribution" +msgid "Score Distribution" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html @@ -7169,8 +7161,8 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button generates a CSV file of all students enrolled in this " -"course, along with profile information such as email address and username." +"Click to generate a CSV file of all students enrolled in this course, along " +"with profile information such as email address and username:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7179,7 +7171,7 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"For smaller courses, profile information for enrolled students can be listed" +"For smaller courses, click to list profile information for enrolled students" " directly on this page:" msgstr "" @@ -7189,10 +7181,10 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button displays the grading configuration for the course. The " -"grading configuration is the breakdown of graded subsections of the course " -"(such as exams and problem sets), and can be changed on the 'Grading' page " -"(under 'Settings') in Studio." +"Click to display the grading configuration for the course. The grading " +"configuration is the breakdown of graded subsections of the course (such as " +"exams and problem sets), and can be changed on the 'Grading' page (under " +"'Settings') in Studio." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7200,7 +7192,7 @@ msgid "Grading Configuration" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "Download a CSV of anonymized student IDs by clicking this button." +msgid "Click to download a CSV of anonymized student IDs:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7213,9 +7205,9 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button will generate a CSV grade report for all currently " -"enrolled students. Generated reports appear in a table below and can be " -"downloaded." +"Click to generate a CSV grade report for all currently enrolled students. " +"Links to generated reports appear in a table below when report generation is" +" complete." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7241,24 +7233,19 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Grade reports listed below are generated each time the Generate Grade " -"Report button is clicked. A link to each grade report remains available " -"on this page, identified by the UTC date and time of generation. Grade " +"The grade reports listed below are generated each time the Generate Grade" +" Report button is clicked. A link to each grade report remains available" +" on this page, identified by the UTC date and time of generation. Grade " "reports are not deleted, so you will always be able to access previously " "generated reports from this page." msgstr "" -#. Translators: "these rules" in this sentence references a detailed -#. description of the grading reports that will appear in a table that -#. contains -#. a mix of different types of reports. This sentence intends to indicate -#. that -#. the description of the grading report does not apply to the other reports -#. that may appear in the table. #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Other reports may appear in the table for which these rules will not " -"necessarily apply." +"The answer distribution report listed below is generated periodically by an " +"automated background process. The report is cumulative, so answers submitted" +" after the process starts are included in a subsequent report. The report is" +" generated several times per day." msgstr "" #. Translators: a table of URL links to report files appears after this @@ -8277,7 +8264,7 @@ msgstr "" #: lms/templates/static_templates/server-error.html msgid "" "Please wait a few seconds and then reload the page. If the problem persists," -" please email us at {email}." +" please email us at {email}." msgstr "" #: lms/templates/static_templates/server-overloaded.html @@ -9305,6 +9292,10 @@ msgstr "" msgid "Page Actions" msgstr "" +#: cms/templates/asset_index.html +msgid "Loading…" +msgstr "" + #: cms/templates/asset_index.html msgid "What files are listed here?" msgstr "" diff --git a/conf/locale/el/LC_MESSAGES/djangojs.mo b/conf/locale/el/LC_MESSAGES/djangojs.mo index e7c7edad51d5dea796988a6402a333e54768cfc2..9eacb8ee83813eb34f8340416742b7654aa56c8d 100644 GIT binary patch delta 18 Zcmey){GEBiMs`yLLjx-#^Nl;~8396Z20s7* delta 18 Zcmey){GEBiMs^bgLjx-VvyD6K8396720H)% diff --git a/conf/locale/el/LC_MESSAGES/djangojs.po b/conf/locale/el/LC_MESSAGES/djangojs.po index b392341b67..7855e9738b 100644 --- a/conf/locale/el/LC_MESSAGES/djangojs.po +++ b/conf/locale/el/LC_MESSAGES/djangojs.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" +"POT-Creation-Date: 2014-03-25 10:27-0400\n" "PO-Revision-Date: 2014-03-19 20:22+0000\n" "Last-Translator: sarina \n" "Language-Team: Greek (http://www.transifex.com/projects/p/edx-platform/language/el/)\n" @@ -789,7 +789,7 @@ msgid "Error generating grades. Please try again." msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js -msgid "File Name (Newest First)" +msgid "File Name" msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js @@ -829,6 +829,21 @@ msgstr "" msgid "Error changing user's permissions." msgstr "" +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Could not find a user with username or email address '<%= identifier %>'." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Error: User '<%= username %>' has not yet activated their account. Users " +"must create and activate their accounts before they can be assigned a role." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Error: You cannot remove yourself from the Instructor group!" +msgstr "" + #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error adding/removing users as beta testers." msgstr "" diff --git a/conf/locale/en@lolcat/LC_MESSAGES/django.mo b/conf/locale/en@lolcat/LC_MESSAGES/django.mo index c2350d576b5d4abf4bb231250b8693d88616e1cf..8fc029a04a16114281e01c0841cb586862db01fa 100644 GIT binary patch delta 20 bcmZ3$vw&xVG&8%Yf}w$xk;P^u=6_58IG_b! delta 20 bcmZ3$vw&xVG&8%2f}w$xf!Ssy=6_58IC=$J diff --git a/conf/locale/en@lolcat/LC_MESSAGES/django.po b/conf/locale/en@lolcat/LC_MESSAGES/django.po index 483dfad111..37b3e35e7b 100644 --- a/conf/locale/en@lolcat/LC_MESSAGES/django.po +++ b/conf/locale/en@lolcat/LC_MESSAGES/django.po @@ -43,7 +43,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" +"POT-Creation-Date: 2014-03-25 10:28-0400\n" "PO-Revision-Date: 2014-02-06 03:04+0000\n" "Last-Translator: nedbat \n" "Language-Team: LOLCAT English (http://www.transifex.com/projects/p/edx-platform/language/en@lolcat/)\n" @@ -1245,7 +1245,7 @@ msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py msgid "" "Can't receive transcripts from Youtube for {youtube_id}. Status code: " -"{statuc_code}." +"{status_code}." msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py @@ -3770,14 +3770,6 @@ msgstr "" msgid "Help" msgstr "" -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "Visual" -msgstr "" - -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "HTML" -msgstr "" - #: common/templates/course_modes/choose.html msgid "Upgrade Your Registration for {} | Choose Your Track" msgstr "" @@ -6201,7 +6193,7 @@ msgid "Students" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -msgid "Answer distribution for problems" +msgid "Score distribution for problems" msgstr "" #: lms/templates/courseware/instructor_dashboard.html @@ -7097,7 +7089,7 @@ msgid "Skip" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html -msgid "Grade Distribution" +msgid "Score Distribution" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html @@ -7174,8 +7166,8 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button generates a CSV file of all students enrolled in this " -"course, along with profile information such as email address and username." +"Click to generate a CSV file of all students enrolled in this course, along " +"with profile information such as email address and username:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7184,7 +7176,7 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"For smaller courses, profile information for enrolled students can be listed" +"For smaller courses, click to list profile information for enrolled students" " directly on this page:" msgstr "" @@ -7194,10 +7186,10 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button displays the grading configuration for the course. The " -"grading configuration is the breakdown of graded subsections of the course " -"(such as exams and problem sets), and can be changed on the 'Grading' page " -"(under 'Settings') in Studio." +"Click to display the grading configuration for the course. The grading " +"configuration is the breakdown of graded subsections of the course (such as " +"exams and problem sets), and can be changed on the 'Grading' page (under " +"'Settings') in Studio." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7205,7 +7197,7 @@ msgid "Grading Configuration" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "Download a CSV of anonymized student IDs by clicking this button." +msgid "Click to download a CSV of anonymized student IDs:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7218,9 +7210,9 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button will generate a CSV grade report for all currently " -"enrolled students. Generated reports appear in a table below and can be " -"downloaded." +"Click to generate a CSV grade report for all currently enrolled students. " +"Links to generated reports appear in a table below when report generation is" +" complete." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7246,24 +7238,19 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Grade reports listed below are generated each time the Generate Grade " -"Report button is clicked. A link to each grade report remains available " -"on this page, identified by the UTC date and time of generation. Grade " +"The grade reports listed below are generated each time the Generate Grade" +" Report button is clicked. A link to each grade report remains available" +" on this page, identified by the UTC date and time of generation. Grade " "reports are not deleted, so you will always be able to access previously " "generated reports from this page." msgstr "" -#. Translators: "these rules" in this sentence references a detailed -#. description of the grading reports that will appear in a table that -#. contains -#. a mix of different types of reports. This sentence intends to indicate -#. that -#. the description of the grading report does not apply to the other reports -#. that may appear in the table. #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Other reports may appear in the table for which these rules will not " -"necessarily apply." +"The answer distribution report listed below is generated periodically by an " +"automated background process. The report is cumulative, so answers submitted" +" after the process starts are included in a subsequent report. The report is" +" generated several times per day." msgstr "" #. Translators: a table of URL links to report files appears after this @@ -8282,7 +8269,7 @@ msgstr "" #: lms/templates/static_templates/server-error.html msgid "" "Please wait a few seconds and then reload the page. If the problem persists," -" please email us at {email}." +" please email us at {email}." msgstr "" #: lms/templates/static_templates/server-overloaded.html @@ -9310,6 +9297,10 @@ msgstr "" msgid "Page Actions" msgstr "" +#: cms/templates/asset_index.html +msgid "Loading…" +msgstr "" + #: cms/templates/asset_index.html msgid "What files are listed here?" msgstr "" diff --git a/conf/locale/en@lolcat/LC_MESSAGES/djangojs.mo b/conf/locale/en@lolcat/LC_MESSAGES/djangojs.mo index 80b37359281ce6e59e75dcf2801b888171016306..6a560ace069286f5f3ef43abe2143f0d4aa12cb1 100644 GIT binary patch delta 18 ZcmeBU>0_C&k=<0m(7?*beB+KVMgTO;1%?0s delta 18 ZcmeBU>0_C&k=;bW(7?*TY~zkFMgTOi1%dzo diff --git a/conf/locale/en@lolcat/LC_MESSAGES/djangojs.po b/conf/locale/en@lolcat/LC_MESSAGES/djangojs.po index 55223dbd48..5ed96128a5 100644 --- a/conf/locale/en@lolcat/LC_MESSAGES/djangojs.po +++ b/conf/locale/en@lolcat/LC_MESSAGES/djangojs.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" +"POT-Creation-Date: 2014-03-25 10:27-0400\n" "PO-Revision-Date: 2014-03-19 20:22+0000\n" "Last-Translator: sarina \n" "Language-Team: LOLCAT English (http://www.transifex.com/projects/p/edx-platform/language/en@lolcat/)\n" @@ -790,7 +790,7 @@ msgid "Error generating grades. Please try again." msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js -msgid "File Name (Newest First)" +msgid "File Name" msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js @@ -830,6 +830,21 @@ msgstr "" msgid "Error changing user's permissions." msgstr "" +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Could not find a user with username or email address '<%= identifier %>'." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Error: User '<%= username %>' has not yet activated their account. Users " +"must create and activate their accounts before they can be assigned a role." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Error: You cannot remove yourself from the Instructor group!" +msgstr "" + #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error adding/removing users as beta testers." msgstr "" diff --git a/conf/locale/en@pirate/LC_MESSAGES/django.mo b/conf/locale/en@pirate/LC_MESSAGES/django.mo index 76f33fd69643b828bc96e78e4157dab07d0f2db5..c20fd75f80eafcb6450f77613f7df0ee43fc3a86 100644 GIT binary patch delta 18 acmdnXx|emrLv~XILjx-#i;XX?G6DcUE(XQ` delta 18 acmdnXx|emrLv|AdLjx-VvyCsVG6DcU4F\n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/edx-platform/language/en@pirate/)\n" @@ -1240,7 +1240,7 @@ msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py msgid "" "Can't receive transcripts from Youtube for {youtube_id}. Status code: " -"{statuc_code}." +"{status_code}." msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py @@ -3765,14 +3765,6 @@ msgstr "" msgid "Help" msgstr "" -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "Visual" -msgstr "" - -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "HTML" -msgstr "" - #: common/templates/course_modes/choose.html msgid "Upgrade Your Registration for {} | Choose Your Track" msgstr "" @@ -6196,7 +6188,7 @@ msgid "Students" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -msgid "Answer distribution for problems" +msgid "Score distribution for problems" msgstr "" #: lms/templates/courseware/instructor_dashboard.html @@ -7092,7 +7084,7 @@ msgid "Skip" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html -msgid "Grade Distribution" +msgid "Score Distribution" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html @@ -7169,8 +7161,8 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button generates a CSV file of all students enrolled in this " -"course, along with profile information such as email address and username." +"Click to generate a CSV file of all students enrolled in this course, along " +"with profile information such as email address and username:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7179,7 +7171,7 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"For smaller courses, profile information for enrolled students can be listed" +"For smaller courses, click to list profile information for enrolled students" " directly on this page:" msgstr "" @@ -7189,10 +7181,10 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button displays the grading configuration for the course. The " -"grading configuration is the breakdown of graded subsections of the course " -"(such as exams and problem sets), and can be changed on the 'Grading' page " -"(under 'Settings') in Studio." +"Click to display the grading configuration for the course. The grading " +"configuration is the breakdown of graded subsections of the course (such as " +"exams and problem sets), and can be changed on the 'Grading' page (under " +"'Settings') in Studio." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7200,7 +7192,7 @@ msgid "Grading Configuration" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "Download a CSV of anonymized student IDs by clicking this button." +msgid "Click to download a CSV of anonymized student IDs:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7213,9 +7205,9 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button will generate a CSV grade report for all currently " -"enrolled students. Generated reports appear in a table below and can be " -"downloaded." +"Click to generate a CSV grade report for all currently enrolled students. " +"Links to generated reports appear in a table below when report generation is" +" complete." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7241,24 +7233,19 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Grade reports listed below are generated each time the Generate Grade " -"Report button is clicked. A link to each grade report remains available " -"on this page, identified by the UTC date and time of generation. Grade " +"The grade reports listed below are generated each time the Generate Grade" +" Report button is clicked. A link to each grade report remains available" +" on this page, identified by the UTC date and time of generation. Grade " "reports are not deleted, so you will always be able to access previously " "generated reports from this page." msgstr "" -#. Translators: "these rules" in this sentence references a detailed -#. description of the grading reports that will appear in a table that -#. contains -#. a mix of different types of reports. This sentence intends to indicate -#. that -#. the description of the grading report does not apply to the other reports -#. that may appear in the table. #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Other reports may appear in the table for which these rules will not " -"necessarily apply." +"The answer distribution report listed below is generated periodically by an " +"automated background process. The report is cumulative, so answers submitted" +" after the process starts are included in a subsequent report. The report is" +" generated several times per day." msgstr "" #. Translators: a table of URL links to report files appears after this @@ -8279,7 +8266,7 @@ msgstr "" #: lms/templates/static_templates/server-error.html msgid "" "Please wait a few seconds and then reload the page. If the problem persists," -" please email us at {email}." +" please email us at {email}." msgstr "" #: lms/templates/static_templates/server-overloaded.html @@ -9307,6 +9294,10 @@ msgstr "" msgid "Page Actions" msgstr "" +#: cms/templates/asset_index.html +msgid "Loading…" +msgstr "" + #: cms/templates/asset_index.html msgid "What files are listed here?" msgstr "" diff --git a/conf/locale/en@pirate/LC_MESSAGES/djangojs.mo b/conf/locale/en@pirate/LC_MESSAGES/djangojs.mo index 1b3b4ffe550c62e7932799410f49d4482f0fbcba..a5b456503bd28062cbcf1293ec1f5a373b65cc18 100644 GIT binary patch delta 18 ZcmeBU>0_C&k=<0m(7?*beB+KVMgTO;1%?0s delta 18 ZcmeBU>0_C&k=;bW(7?*TY~zkFMgTOi1%dzo diff --git a/conf/locale/en@pirate/LC_MESSAGES/djangojs.po b/conf/locale/en@pirate/LC_MESSAGES/djangojs.po index 668321cfbb..3450e934f0 100644 --- a/conf/locale/en@pirate/LC_MESSAGES/djangojs.po +++ b/conf/locale/en@pirate/LC_MESSAGES/djangojs.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" +"POT-Creation-Date: 2014-03-25 10:27-0400\n" "PO-Revision-Date: 2014-03-19 20:22+0000\n" "Last-Translator: sarina \n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/edx-platform/language/en@pirate/)\n" @@ -789,7 +789,7 @@ msgid "Error generating grades. Please try again." msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js -msgid "File Name (Newest First)" +msgid "File Name" msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js @@ -829,6 +829,21 @@ msgstr "" msgid "Error changing user's permissions." msgstr "" +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Could not find a user with username or email address '<%= identifier %>'." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Error: User '<%= username %>' has not yet activated their account. Users " +"must create and activate their accounts before they can be assigned a role." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Error: You cannot remove yourself from the Instructor group!" +msgstr "" + #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error adding/removing users as beta testers." msgstr "" diff --git a/conf/locale/eo/LC_MESSAGES/django.mo b/conf/locale/eo/LC_MESSAGES/django.mo index fc2bfa155324c5febf5595bd69b6ece5b7c73140..e3e3d2ce48a90eab7215c7d1498eb58a1694ff3f 100644 GIT binary patch delta 53675 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 z zDxrpMIOfIOsHlH|S_Mh^S#)PX-LNxO#NpTpkD`LGV1HYV6)+3=DySjvgBsDHs1D6X z_x*nf2@TC!&+VvXb`Uicw^0@Q23UD)OiMmHDwt|{wn9y1Z&XZ;Mcrr$YD1feQ*fnM zUSy#6{$FaKwX{4&a6&iCic?WN-HnQYztP>GQ0qV1AUi(^sv$*C&x)#;8r!2{WE^Vh z=3o=tgsM08;IN&Lez47DepC#ULIu^gsGihE?O08`d>hpI?}QqO5ttsAqo(Qv>bmQw zA-{*^FfhdKQwg;{)CrR)Kw<)Fi1(vf{I}-n7U=KTENodFqpoaJaszK*aJ$s5;R?$cJoGMrk71fJS z4LFYK(Rqx(yQpOw8fkN$4Ap_Wm=w#RrmiU_(E9I9LKTfi^<)OBK?_lHxDqvV8&Ege zf;w-%=Sj>#{u1uQDD2xhegHG!Db&clLj~_A?|AId+(+v_nG%=|wG6YPrl2rtNGp3b zLiMCQD$4tzVq-e$`bDT4uR?7!TToGd3N?}sumgt1SoC+ru!edh35~!nsJU8>>hTV* z{0~&cN4)%5EKUA8>ggEqqa9C+>TwQKur~0@JD}?Ag<6(lP#sv45-*FEaIaj2>J4fEk`)Z;$UczX}1Hr`t{ zgDKE@`~}sJ^VkGmU^A>S!A4{~YDzYvVqrh3VSk}|bPqKpFHj@!1!MWxXeRpj=_eyK z$>-F^DcBw#gh^-})|^bsIk6XNXPP<1Zm=3PMcYwP{Wq%Oho~+311g#mO|>s9bD)O0 zGb&bwqMjjBa1?Iy@+E%qIi1Oe+mfh3;w(1Dbkl678ihLHDE7oc(|yiCT!W>t#|#^> z&6u716I4(po9T0&VL^;ThceFcIg7~`o^4Zg6?2kL`?K4?uv3SGTHFd1^?gu7ItDew zb5RwqLXFO`$kPc-@Bhmv&{n$<6$9H)4LE{o=}ABR?Dehr3b1)@!*n zY&~k^u3-{l;}Ist&`N7?%2hu1H=;UXPRdW>_niMFyxQk1C-L1H`%D*DYd0K*-%@@L zt6|P{K4&8i#(K)Hx35}8p?1IvsD`K9U@xx)ur2u+sD0uSj>04xeNF>hfbB8-mc$4W z%{SRd+(lgw=Qo>*9H?L_iQ0JTphl(*YT1rL^?Wueh?k*aVhy@GCF=bBsMT}_Gvj+C zR>Dr&%@!<$P!*L%Ra662K|NH3tvx%Tg0Yw9FjUM;LOnYcV1B%YYGAxA_N7$@RC!a( zgwx$T>u)!S0u;PLt%5B7vkHr#f~E@Q!jYH}w_pamhFVs^tzHLEK~);{uo;O(aXacw z=rt_WuqeKW zn%nEBA^nKzVT^;;qvWUx^5Rykj&4H^Sr3z;8kiH+p+cy7N?|dq?H!+tivHQ?e*eFK zgj%`@b;CbUBXAPcpa-bc5d71EF)pftOqd#TqDHQkcf1>FBu1l_=N8oYJ5dj{eW)q= z6Ju!oUnijkJVy24J!;wb58H_eP+Mp=RL`oS=Cm&A2JKPjcR`&u4AtO8sI7fHY9#U= zv4)gKHJ~bnRZ%MvdU5EB8se#_2CYE_-FDP6Jc7E>4b;%TL^U|_QJ)imu~EU58#R(; zP&clHs;?F5`fjNGVZ>3^e?Ah6C{WAKqlWSgs-gtPeC{t6XTV(Kd!s5?hFYH6QA2tS z)zI6h_l1|Jsrig*V5;NRflR1|l|YqOJ07;7tWSY%`~#|IV^Pa;K4!vIo@Y=u`h?o3 zqMxu>Nrx&gj_PSO)QuXW>g(X;hoGixB5Eq9g-K{==b~D)(L1mMb>n@gsdy{Hilp7LJnu^{7qPlUQK z8!9$hqaG$<)cJE!Jza>WaXo6e4gK3bLG4Cu!O70pRMtY}7a|P|JLgHL=WkF$@)fIN zUE>5u1q?%xN*xu8`N z=4nO34I0#(en!n%3|AShVFHlqZ z6%%oPC&?viS#DH|E24(DA-2I@s0uHmqCV1PYhV^slo#}Dgt^EMM2+YguY3z?BfEe# z@ITbDFL#CYuV83MA`9-u@9`n3h2^hWPn)5JyccR{ccYf!5zK~HQ5Al3%|i9OSzhB^nTVTDi)sEwJh z4QdJ|p_btc)CRK@b=`i{$ezF^cpcT?Vs}{onzNdBY;GH(qPH7rIjuzv`DrYI|DlFF z=UpqWg*nLgM%A+fHIi#k9l3y7HBY_#H}`C6B2W#@944Wj6vhBn^{j~smb$3mY>B#{ zGwP*suvfkvmy$n#ijg1gTSI1|uAh&(ehq3QwxXtRFX|x|K0zXa#C=qYBR{aANr@V= zJgAMNEUKbb-tjJ|3Ws~;6RY7_ly zTW}>*PuihwJPixrZ@35l#g@4G5$m5D#C&Y8;qjl?C#Oo7o8xP+J6=cCSM#aQ`4b0W z11$GUpSW0m^GIx^An9`proXWw`Hz?p%f9eAAF(5r$96C6_*zUy{x#Odq_6D5W@ps? zu^u(VyHGpcIn0aE{FkaNXw%}pwT;P z&@QY(-v8ciP#uetAC9SU4>rTwsF5l2!RP#ny)ayvMB%{NK zH%B#K7ixLEK}|(^pWhwIYN!zzf%$MHYRayo_V^5bzZ=ZOFbnxQsE!Q547dd~VpsiP zzx%~OrhwnkW3xY gQsf5IX7ZP4%jPRL=@zR;FGfzw=$MePf_QRlxyjcEBue)m)E z6wF3`2WH0ysPhs;w&N|sBsAm`JpV?`UE(NqVSQA?MtJ!{s2je*-!R8Fe)seLZB&CY zNA4N5rs^+=`mI@C_1;Nkob1cgA2V?1GO_Eo~gj?*`3s zRQ?jC!VIzf?z5r-YWe<(3a+!Lp^g;C?=HLIs12(FCd8#U7Tps2hJo#a7(JHlkfH zyVn0k5|cP^1D9i$BsL-mlltAS>?WaQ<4KKY(gboHW+pGN}6MVif!V^{nWL0UV5aj1NoWx9|VwQlN@{$NCs8tu2?9s3@I+ z3exSU;EJEl=DZ4KBi|7fWV5jpo<%hvL3-;@R@C)nP*eE}=Et4s!#1ZcD9{EHFN5Fx zIo)@dnfyZ3&>cnf`H|QZUt&wFmE9V!88sybu@N3c z-8fwiYiJHs14^L#_kUGLsG{bm=lLI)67OOK4CJ(RUKzFSo1tQ%4Jzupphj!~>fP}a z>W0yC+4%`kL!TTqLS<3)*Tp1S|2;{l;)$rCorZeIEJqFPQPd808CCHM)SQ1r^)za3 zYfvoIhLjjJHQ7;tQG0!o z{C@YBQlb^`yML%K2ot6JVk8->VfLPLac>runT^{o7lOS-?@&}i~HSo$m}I-AGwFCD9>J!hZhgC zi>Q~?U}<}%L@ncYe@eDFOky}EE-CAGKbL1LXG1jswQi@O*8N=6x?hGG;@?rvgiELn zJVpg&+VZwcv!Q~l2x`h2VKVHCn&N3*KKv^QZ3KUKUP4{)3R7d83U*;$EJeNs=ENzO z4fkLKKEbpYv!dNN59)@sa2j^T8R)CzcR$Y0!g+fBUm>BM^!wH>7>^379-VomUMtRZX!V_D8L)bsv0Y8g4TY~9brYGg0tcFa`UuRnTrZsRk&QpaAcj@7ky$c*)@L+ddU z$1mXs^w;;hpC3l!Bl0)uv;LQoIM%?P0o@z=oxSAaHL|%rhYFszSO~{Aw*BD%79sxy zHN=I#v$?N}Ey)kZLwFChT-SVW4NKO<&i@tlZ1}wi>t8KQ+|+tr8nprS#vHgFC*XC| zc^#YCdDF2J`NLlRo95P_;#h_9epnR`pkgOZ3wuGSfMv)J$C^z2!7z#Q6eMircmBgC zI1_KTwz=-##(TJ+mgOl_&!3=zDpOl)P;*R8emZIc`yW=oH`on}x3ei-hwaIK+urZ~ zs~X`=B>thGV+Y#->-}JFv1>3IEsWdImQ%`3wyx7+8_q9-sc;1(bqVZ8n}GpRI@O`Tm}^fz(Cyumx&a zjl$n?3u-6q)ywaGm|cVsP*MLM zMqu{778BJ`*Y!fZaQue~&fNVh78;{sWD;s*kDwaz6qjMt{`LW7Bf8K3lmqOs+8#S` z!X2!OH3wRhFGUUIeT-yu_XB^xRF>nje1%RA7WE72}@DF7S)iatTt`U@rK&N zE%8v+e-sKLD2Tw!sJX0+D(`@bfgaczN1@jHzn-CCmXGi(>RI2jyXOSY<(~UIuMML` zs_>mx5O26`ojE+Kc((T(<+<4N56`Qp9rQh_!Kp`>`S2U^6;ThLTByf*JJd6xYnX(h zeJJWVKMA#5ent)TTGWv4Lp@whqK5EqR1jUj5I#el_uA7p(ry$3HIfNXF_IFqV?~UP z;ocMVq|iJ5jH0`%w))imLFOm%ojASUthi7;luBAJy;% zm`dxvD+#T~$*9NU3eJX!!6*e7S!W&25PU~giY`@Y9#86vngwcYH(ZBNc2Y4GYBPZ+?!Bnq&392Eh zP$Rb;b^Q_4)SO25#;6#%=N*56VV(GnL>Bytx**F08`}J+9+g1dxCSaXTX^pk&ATlWP~LslOZrF}e?ptjtsAcC-E&T^I8@ES|Y!A$X{k`LBQ1xy>HF#&3gf2LS>d86O&|Jm{eCCzMo?;ay zK=m*=>V{cSQExt>3JKqqrLI+(WhEI0@Z;6m=LR=>TQX+unX$O3$UKn|0)t%|ISY~6-iK!)2yhi zxgqMpo~WrGl{e7t%9)|xiR^Do45f!`OWW~ z#fn=9QcS+p$}?>9J3cBNy4~*#qlN@^{{-IG*JX`-=DX zJ@!`Jbgz9%p17CwznUJNqhKu#+vj(lP;t)vtW!*J$YLSlu+42X)Eu@)&HZRpbgxAP z)gDyP9>a=w7Dr+7BlbeG7&TRIu^dJmW&M{X(dMXCxEyPeKZ*KSo$8ovIQ6j_`9YW) zkD}J~C#-@wk6XhAVmk6aV{!Z)RsSdNc!?8s-uGCL@&RG5U=x<5;54cS@lVEnNbZaizTrm>iX5F)pGz9Q@1gkfJDqYwgII>?eS$%LDm2jWc^WF z?pF_a~}>XK@%lMOEDGuEo+kR8YS~4Smsj787;wCHY17SpOQT>1M0oap*1KqrXpVgI}xN!u_^gu|JYP!`PUlK2en`9z-V~l zU)I0o_!0$Gx$v_jU-_{)3pK}gQNfkqiR}+XQP2Mg*n;a;qiz`Encw}($xhfo*I_-Z z{@m~WZO9T_O1}9E8>vX)m+Z|HCFyUfGLACwxzSFt+AKegE@2`^jH@ZRag~ zVr;LSTVt-b*3cO^iTr(35cYm&8`Kn3$HQAlaOQA>3PHQ@Rw&>O`5R2lc?lu~+!v67s8^|KSOuG)>RE{j))S~#ynitQ zKcTkp6p@u@{na3$7Is7Ra6BsLHlc#-5h?~gpl+Nsid9q%wVb-3-UlY&H;lklY)Jlo z)PTF1N=6H~f67@06Lb7h^nm+tdKr^E_jiiKvYymIJ(oM6Zagk_z>U_QQOj}-DhT(W zqWwPd3vT?VHQ+vM{*D`Pzw?P5FW`RuZ-AP@pYS>!MUB+T_yKo0Z^v*+3eJ(x5G6ob2oJ#&UszFT?*$587YBX#qmZAJr;(+_}gaS!y zWW!jQ@@+{1VfU3PkTl@_kx5sa&w)Fr)i69+!2P!B9BN-Ek=#b00c!aTMr|zfP*b=W zBk&Yzj-O*rOp_wu26=7Nd807`7o`YWVjl(C(e9vjwC7k9qo%Yuu7H};*0>0Fqqg2= zsRGUioQJ7#R)kIEcGQ%eLhbo?Fgt!gO+}{E7Mzj8X>7>Tp|;{$sI9ggy2}OC!`XPw z$0rxm-aa~Az-fu=a2Uo(A8@X4d>XbO-!)^v-HQK0y}EtI;utxzb+CLEYgo7$iL+eL z2Q|c1vIg8OxwYp+&;Owscmwr%{u;HjrO9R^*AKP#k3v11HlkM3ALs@vY6K!>w+`jQ z2%bOuOGE+p4W)BVi~2OVELd`T4nRfiepE$gP*e2^H8M_ai3}=F4kCeHFF!mdIxfnSpi5 zKg3d4Jio=#5af-=*?~G9C=hU(aet>FiR!ow^I+tHwmgcUR>3G#123XGl&EJ!q(U~A zxiB^P%BZOCgg@YXRIGec*n%y$XLVGNcf_!^$WbITB#Tiu_ze{cXHX|TM$KiUA{I2+ zQ6p5&%lAi3#S~0~D^Sbq7%G_WqweD`YO5&~s=Rp7K-hiVZbX5W+bUGW_c1;uD`r8L z3$@i&Kwa1xwLuLcc9W@2bQ4RhPH8NYVBK{pFp@&A& z(gF9^Y0{MqxIgh6hPt38mlEhds;De{?6%d-P&3d5-D7oeVoC-FOc ziTSa51=~r(BT4A#whGnKE2y~&RJ34?G>C=bkYtSqx?I zEQ^IW{yi4M8Az~(oxe$F;|P9hTWl_DLw+pkhR<*?MyhN>JQCHz`RF#lD?f<}+J{&N zeN_VP2by}Q)w2N=Q@>+DJcCKJ{-ag33)7>XZY59^FUBFb3AN$mu4Y4D0`>5zhMLPx zs1X^1nu7JH9v(z(JpSqy6B$u4RMyLP$28pEnMgt-umM%kRn&7nSi^=s3+jdqP&eq~ zIRVwM#rQ3*N3D|gsPhxmwBrS^9{IAU>wiWaUyor`aFT>O_t=1ZpjN>B_dvcwJ>U1E z)_1+yc424KPBsBG_vcVU`xdn^MXzJatN`XD-vAXGV^FJR3F^8Nby)waSU%4v*oJfJ z1>7IA*J%)N-_Mt#=5!;*#iOW=>KbZ2KSlL8Q$uS|1w2N6GA_dJ8U@^6M*WOx;E#R< zVboNhT`Ti&wnz zSgq`MR#b3RL^Ys^=OEOL=c0DVljtr}q~5UOYi$QoU_MSLh^es?KE_F?pd8r7w&XLY z<@Et|Uct7uu{1)($WN$|TZ(GP4%F0KLIvSlT#NDBDX3Y0`$*`*%cvecL2a2)+MC%h z3;CL;5gF*Y2n&$^6Se%lc;%Hk*cRIb-Dt;796y2Dc#8aBtD*;X*7{#eLOqJzG2k3x z4y)lf^6@(d+m6`E%#Ou) z6P83u=TX;xanAq7Umo6$Lf=*<5x-4e3-Yj)zg-SVrn^dwH<|HgvO4!S*LA zy078)7#e8Hwk2xLSD>cg5bAmV40V3OK{k>l2C@FNj2ci7fum7Fy&SdUJ@CrEqIwiD z*j`lfp?cB{Q{#A4l&?iC=bNY=KSMosV-B%~|A2+a&p|E2Ghq_CVQL!E23w$lKf$d?*nFPA$}TX*b{0r&5Q7o!?hca+6i zD^vr+3rQp-@rUPm)QL~L{3onRKHg{>q2{QeABGx{S*Z2A8nfd8jDasv=Q(3+hfIjN z&kfX+zd;%hb`t(*%OyW5xH_ULSctm8I&6gdP(z%2ti?zT)KhabYF%$aHT)DNAZD(k zw)X$V1^E4NUgyUL+#lCpoM7kAny3ba`Orv08^$rzuiM|mUoh)r3!WoWEJj|U<~;RO zdowDATK8R0H{OP7@Shk5uXyE8Q126;@Fhn7$%6AMy5Ik&m}U=!vRIT8YT{y?fQr_f z(`|V+z=q@}Bd<=*LsY|)&afNj#OUP9;&iNusqr2v#v;$O;}uaOTo=PdNVFue8h^pc z`0Xr<{^_V2twAlz>s~&=Y>VQGxRCOpsD`Hg*<#^a)P~j))xZU)soRWt20TDbjc*R? zUqf1Sj;;6ls9>6odg`r3&F$}~^?U{6;(JuZ(dSylsWF0lU5tjkQR{vf=EYU0dak4D z|A>V!{ydhMDylZmhN>m%#F3~LFTyl<7S+SIsGv*rOTc-BRq!U3oF8!RV8jA@8U`2g z<(2XnpIF+7s_*n7zR(~aSZp!VDg3L=-9Xe3PsTs-5b6zO(vpDt&uaaK6UfhB8gPF% zEbB7cayMgp%CjsFIQwxLszVJ{*fQ&c8uAIKjxECqxF5B_g`=*tph$zdFem1~a;P5n z#B4YhH3f&UI^M^8n17X3^aIu*KO9xhc^rk0uo`w>ZTrC=SeyJgtfKXwX^m|#y|6w9 z_F@A}yf)ze?pHU|!zH+mPf9od)sT^>4Q4T_f!k2AaSzqgci0jWthXJtA70UMoQZok z@M@>;{~KAwY>BiMIy!2O-g(pw0c0B<(`V>K{$&A0QI=J-!L0?u6W zjdli{d*om53OEP-1nKU869^JJdswac8*#PQ{fG=#Zhm^DUR9W_55*r+D$uQU)?-MZ9E50+R$G@{_4_siajXbd)mHT z%lDT>{R-3+-NLYz*&7mC7Lot9H=GF65LQ6#53M}sV>$AdP{Enz|g+qhK)wThCeWH9l`U)L7g``7BgLH7{60`=UNrOu>n` z2X({h7j3z=M3s+11#`Shwu6>I-Dd!5Ii|SG`d39YF9+Q3>xW`n^8aExtaZh<-0i5X zIqp@Pn(8=+d?!@H{=rEY`&z&`g9}j0uIF{@=|oi2FUFYo8a1-P@C`e$BLpzu?+bJmZrRACLcQD;LXCX*dlK3R`rfu7 zoQ&1U|BCAIOH|8q+_5lwLLuoBgi*KHGCkdo(-4`AEVx;qudMV z517JEUJ}}99-tZ$>%OhyjHt(E5mb3)R8Lx>o^nII{6y6HUya(+FQOV4=Yfq#P1JSW zFh5Shes}=m>G@y$VZi-4e=Y3Df&Hk}knPnuiP(2-j5jey1e>jW$1uTeN|FwtN za?~#@-NR3m$A4@Miu1&#I5)cA|5qSUmJ^y`F8tLy;Vi1<|Dc92@>6S2SyZevMa4pA z)JTm%t%6yo<+vKZ!$YWsrFrH}4R$3z5W~$$JR;Eut3J17w+uDJn=uFO#RB*o^-`Mg zMZo=Uy=_A^yv$2$z-ZLS%|uPXdQ=cTMLjhWys{3JMs>8=E7pHz5>qHp4D3Ml(4?xUvSKU7bnyt5!JjGBtJ_!rI( zlTb^#y|>rr>8KX&!{qoEs-mZ;iv1t#ro@L9c$r9R0kqHT6rnd z{pw+H4EHCY$LLnn-hKkr;<%se+pn@%o%}wmfpI?DKF|VngV8t~FXCwY?u+fHx3MJo zxL@tM+Sr8rV${yc7;Clh@Bfm}fwQQf$>VbmFn>Y!Cbt0aOnM@r>07 zO~pjG4)stvgc`9&sPn#J8jK$dx<7s^h*!zij1=Uhm-U}La?t%Fl1o^c1M{N9&|s7<;Do|Yfue6feOxl@eAgU5p=3^ zeI)RaM|1t!91*dGC0&`rQQ=;EPX(V#2c19gZJD6^Znw3pRZyWEbH{ntaUsWJRS3F& z8@>Stk*{7c=)RB~!)@f>;Q`!ODd@hS^!YaEJSV>%f6|aFtZXObtrB#iQt>-1OL?H0 zEw_rO$xlZ$_z8B!Sha%gmt5gm ztbaXR9#fzbi`EXhFCx=XtKccB!l-qE?n`K9)P^+(tKmh|mYSiiEvxRR2A;zncpG)R zUcI3E4-YKF!sHXww+_{)@2&q%6r|$7Xw*n7Lk;-}RLdWE$73|Ge0Hozc@5M^%|Z?F zMr_Lz9z{)6ZhlWw8&F-(R;UfH2X4S+VG`0ns1|S_zo2d#oF2q*b3FqeyG(jAFJX{RE1I6S&!3TCGxp23-(7fcnRvE^apB6 z?_x^s?|fDQlef1$yeJkXUlBD0!%#O`hnnM$s2GXX!Paq7Y)HNgHo&>q2w&lBtoDPA zz>9F17`aL^W(Hs>SC~U#mUC+?cqlMSEq`$ZYIp zUO+wXKVx)^*4^HO5@S#Dg;C{eyR-gvgB=tox-X#~HlI*K8mEUnM6zOj@{LgqnSy!+ zTZy{<43@-~sFBOl(;C_dH4-yW*F8hUNR(c7pG>`2|C*!X6eu{_qk?59YKUiHYFvie zG7qDo{yC}#nR;7!epG{-U|Q^p3g)?}xxa*8@IO=oUiGnt#|!thXw8EPj;5%g9f5gp z3o0ldqAL1=nt~+#>_%l!`L?JAPsV&WAKj5bUH1~zkr@50qd8Ic3s)qe$7?6-fGbcf zk2}DYTTN7p$Ko%z5}RVhfi`8!upId#7!P9(vXMxG$``{DSQ9m3lTi(xhcqng9P|#{ zM8&`pEP$~GTQF5bRn!@);xN<;#YxnLm2`-WU;)fVz9p)BGHT>jqvn1uY6>r-rpnLM zyFdR+P9how`Otj|qN2B*SKb>dkspTIQjem7?<1;b>4(}-w?;kxN1&#_8D?)h`LP(; zE%-aW#P+yxc#yyUB$0GP(ESC$o2Ztz9c9ru9M$t#sGwSn9q|vig1mo{1z7}YITyl|SPhr@i8a)I5qB!zp&9I6xqJptJ?!iG=8H>-fiho1}*?v?kT*6YAc$U2-H$p}I|4^%HKWZcM%?>(q zv0#{l=JpKk$G2DqcmC{s>YZa396&9b4>%6f&b5(Qhg#SBQ9ZneTGu7#SuC{1ndFDy zD26`4FF|J=BR+RQ(AkOM%8RTAk$w%j-$*3K$ej2TvvT2^r50RimYD@mLtPoQK{duS zI1%-5*?^jBXSt1FD%5Hyj=HV~M&NM#pVt4cBsAoWS6I*uMZMWf!tS^WwZY_A$@@O` z#4fl4%V6eJR^AD#lm87hVAU`###?~+h3yh06Sv^Ca{?5HiZ zC~5<#j9O-`P|yFq*axS3<mA-o+F{1?VBz3B2fg3lAneR@D%FC8UJTHS8MD~#V2qp z1Q&L|rkH*gUqs+YY=}*Eb7QXm-)`3b3JMDR5p@4Sfg9M80~h!3@tg9Z``F2F0#?PO z``I!%-VXbb&weoIe(AIf6${x9*+Z%u4k91(PYdqxs9;`%9q&IqTW5^Y*Fu19qi6e8KkaXE=m>$oA8tple~8{7UXj3~aw!PxMsHSj#%BOmU3E$IG`sm}GF`_rksH-hf3&0WLa zIHAx@dx$*7@5nc~Wh1a1^%M)rt~xFnN$64P(M8n zJ6lNTg0DCar{1#m;(1&=wrsA98<5JP-CD-z^Ywwg#vGRngqYAvefg;8^lyqlBEJH1q_%CO;SmKbAnj05Q5^}$SZIU$Pep!?%S;&dt!mF4XKVtz*l|1CGiu$OX zaue!V5jBOG7Pa>mL#={37!Sj!SG8$MW3UtXJn3xC7ho;&SFtnZNFQ=vKIfqt5F>+)Kz`ISqXib^ z{!WsNR#7c1!-3yX>(-Yk@eg#W8aBkh`^(N6qCr)ZQH}N66jN$D(?$6E(DF zP%-imlVO~k*7NMB@@lB^R;XYMqdGDZ-M{}^MnbR2yHI~5@)l=e{@gY-$Me{n7tU+3 zau+*re!P4k_eUv%@elHi^M~BuoJd+AGPXF1pLCNXUJaN{bq)Jop_>Mr~k^P&aH^)XwjM z70Hi5#muRq;gI{K(h~~wxXe(@=DH!KBi{qnkXfh}U%~A77FBWj;#Qs?)zez2;B1Rp zroB)d`~`Kx&0hX*)b;;_NoWq=;}lF?!YPb@CcFfYK4!y)hn68Y~dk9mKzlK#X{E39taiy|$U<=kIe-^u7=5itTO=vdi zpXDr2-sU`EMcX-Fp&E9-Qpg$2@fzQToFGrT^Oe~l$zQ1&azE+BtsZh;-`8O^&VP*) zwEoN1u(>;p?KqIVX2|`tIs-L_g=^Ucv<5ZAq1qw$r({X-0{QJYj2lg@!z#ge_2_`| z^+WEf-TemKn0&j2A*Uz}Th}P$@Gt)IE8T3_`u(5FO+wCX3i31yxqr)%phd|2te3c@ zEu%}QIem|6K;%{-_w_tEDj2^-#YR`uJKuPWiO*2W^b2aL61H}CJf{ZcBR>X{YW?pb zq4j?Ob7IssW)aL!{s%093sL9Yz(E+dt&QAd)RaBOqFB0J$SIG5u^{e8?UWxeEgj9- zp4h@V9a#UPIneC~mKgC-kzQE73dT{zzsP z=Ae9WAM5#Fs69MRUmNQ0QB$`V)$qS@DaP(+?+O3I#^j%%&a2elp0@qMB(hVm+w&1> zc_bNN%c>n_XKGI4P|Cjy47tDW8y*yLdQu*1aLD1`m3Br9VKrdip|*Nz3=g^g%Ka-W z$#sWD*kd}<$dLO>ZDnx-<>7Bfu{U$!2dsjN$8Z5Y{gE4Dj&b%_UO%1}4e~Eh%QD5p zko)m`3icxJpJXx97d7{*aWe)chuj}lZ^N79i%ku=zlN9MCwCQuo%bZxaUjPudpEm= zt(Bi1azFV@L%p*FW`vxlSQnKqJJW`AIu0fO4C`RGS@!rofO?TBK0D<8-0uu(qw4r` z$o(?wtSjrU>YR}CBXfTMhtR`nzl0qAg>C2f{E+)|z5@$G?(g}&USu~cx!9J~9PCDg ze`9Yf`>U=0?O29rwzH}M93ztncdV$0ZPbVASN3?Vnnw<6^Ja~UgFhTOkU zD84%6{-WU{OhN-Ut+D6%@pbl8yp1QgKKXi^<9|`>KFbE%YP(@c@>{VSzC~?V#Wvc8 z)e^(0C>TN_8_q{na14uKoK3c@s$**M?NCua7AxXeEP%;>3pw|&4r-$+yg9`C8$T(* z59IrAv4>l)|JhC$+8T2IdjKW2vi`NKl5De~sf1d7nYOcTsbChPAV0X%$Kke-}X#chpmXAe^C#k>gViucnpc?6wJezxDpjK+fXfihcPhMd5eJ(xSxD; z)cNTy*jAg@v#e(w)bUoHJv@hbPC>Tlu(QA`SZ@W+?_U0-=QYpAo*zA42P)z>I0mEORE&*tP$Rb*-T(f_84_9rw@~l}T{x0gZ`-^A%%QnJUP$O9ot73U<947G-2|X5{cqas}SWDxgE=Y@NU~W_c zYN3XiZz4ApEm;45dgZokMdgo9hllm&bhb=IyXkSdC2%bVcouXc|o)p2P zoyTS){GRM4)H5K~6Dx0ky730o+weiu zjc=iP`~fxh(VklHWkr@}*y%(ff&+a}LplpJq}x%;?<%Sy|1*2RNQTkK*Z6-~X93^j z{rvGKRon^`=oo?G?(XjHUfNI!H7e*JxO;%$ZpCc`Skd4z+=p%hHa0dK#$f;VB^TD; z{`cZ~-@E(V=kELDX`19o0#*pSVXI(=W93}>7Ar^WC{{Lh2`jjVSb6Md`qQ27hs_~> zpa-*%+iDh83btTnCkL={M{yY|N8~T8Jnt{}!cEu+D}#k&rST}N0Y{j%SvOj(%#7evZ zR?da?YWrYiW3gD_8-qSmrX?bLtL2xBBynH-B!s z+wv|7wl*O3fxk6>farj7@xUd!iJL%kdBpYgMS-ko{6BJ>u{^R4jt?-4qzAhY?0!Ff z`H3a44kISg5j`&BAk%p-w|m7;d7it7g1!)m6rr#=>x~q5)1llMo>?%y$PMhbN>&YQ zZE&G*3|IUNI9KA&bHj~$x`72?J26l{c`jXpMsJlwamE#hxvF8*0T|9&o{WFXx*OQF z3hDy!bk=g?SiqLi9r|N=)A|2M9_lNCYe<}n6b4sLT=Kg$MdMe5-qD0_q&1EJOvSV_ zlym}qYu4Eq;BOkQ0257qCGi2o=0JFtT6t2i4Q)?cE{Q(GRwVxoefoe80#^vTmRudI z>-bL~*ci}5f+C?hRD1l zo7iPEgAP!F_904J;HndwO(U7JA#0Jc@RVR(5-it<_$)0yR%z0Yz< zW?7K+1ks$(>_-P`+u4+~fqt!yG+8!>a23ZmP2~)wmZ$$yshO-}$hD+}isb>AOLl@0 znUB9o*WwR=V=A}*vt{Y6JILjyt}yu!;oK?@BROl#PZAQ;1_f zom?;cf3WjtvyJN8hJ-5(YbSj|$hBm>8m@{~ zcGOjyOG9}vB?pc8u1q739;)rcH=sY0vw?pCfz;(hCrJ?^f3Qp7i}2^rC9P;I5&=&u z8rCG=RWW8_Tyr(77XdV)p-3+p>?VjIG0 z)S)gBOO0QQ!J`>u4z>rrTq)!l>lfk4zp+mT@25wotv`=|3PMzcMuR9kZ8NP3w0i47 zlG>$2Y_5Z|tC`KXt1i1GWA6XDxA zjdGg1OAi$*pJMT>d1y>QA^bHoolik22<3&N_Qd-sEVab&V;Slugz_eYSvrhBWMC)@F5(^=qpAL2~Kab;YP1)!$L|9Vjo>BDGj|Ko@JV@6nkVSgjI=E zBA-WxIgaf_Z3#AUUa^a?`Qa2PNW3xImk$Ju2Ae=m9+`^ll}9|CS@5Ni##eflSn$&T zd<1E4fMrE~! zm_Mu(H3TSM*4vL@4%U5$6+lhIs-shg%M-i2=uV1xK4+9CUY90~Y37ldo&|O;_2rZhVSs=f%9!lO9TuJ=pkjfPz zj}&HcoyK{I$;%gW!8HPN9J`uYk>mK|@I}VSx5t$yAd&>2KRb)in_)8~`)MYU2FurC z8kfMNCV!pWScWXmnm2_Q4ao8FI)gWm7(2kE(*~#U`@(q^`vaKM#LKa^p})A8i!m(# z5!XjdAU*)`eMr86{4hoGL{7wMo4qc;dXa1?Xa+&yO=S!AD>93?N8adKUfy2@wlRs< zFg*l2hnhYx-@xbnGDbZ*d1R1s^`zbm=D$)_{%2r6Ef|y{+eBl0S*lS76)8ZYX*B;6 z(%q~VLFm8++brvYi~LM7es)NbFB>Aw} z{@s01*B3IkgrpAof@aGpG-**a$ad-07TPi=1>`&s`%1b!=Ly@;>Gbh(Mz7kAJajFXc2MVM`YAyJr3)U`P9|n&=0|ijHAW^ z_YpRek11YjA5vE1J3zY$b|!cdP0(9%5Aol1W4l>j*4t>59*qf*iPZg<%qUEZcU-yT z2jV}Y_R#`S`8zHHGVG zP=sU&ib6m)Z872f3@zSQUenjjTni1T5@DpiJlYCWl3-L zd91&)MG<+`rxc@_1x0on70-yBBHx|$A*K+CB`=q*--3M(+diH02AFeT=Tj>(o%lv@ z$MEm4ehL02dV~5O!Kzq|>I6l)0=}(HJ^@H3K9#~q3Oq6$vg!CyY+)vtljI#VeFUH# z_}5BY4xYm)ZX-{94KTgM0hhzIac=5v3Y<@%8Ed}i`HOU+VJ?~-BDReD9rAf0iAOt= zTSB~?qGuAjg8roS<*|wQ4b=~$wzjJ&4^mjCM_s2{8G?rZHlvY9H#8l7E#eE%NPz9g z4Pxr#Xwftb9P}ztWc0#i{XDI>|p{T?e|E(5+xRktg6pCSq@q6N%KAtQXSfZ}1`? zv}acL)mwK^eqMukJH=HQ#2@>W7R>k;Vmx4fCBZEOlMej`e-HyM1yh4zEaZOGjcnIO z->0bW1wK;azscKSrr^{fC~}oT3saw=aTWKGGJYq%S$F9I@k1_N2ZI@jzGA&qcbXlX zmy%~vD>Xj0huZ?I-C$g#6ic*Y0;mA0yW)@3*imA!FomJv#5yZ`oHF)M8%X>B7^mlW zvu?uLkD550{xg_n^z81(nU|eolN&&y7VKgC>(WdcG{P33a2N67I%sc5=MgVWtRb3lAsEOHjvmma%nX;g!N}sWDS^}V5Y;|8Jmn>0<8~r2>OB^r|5Bx*aIe* zg}ufEU(3rUEm#yMd63|22zx@Zf!J<{xwc^xBi0*&#SpirI0h^7n3zYJ)1)Q!S>fT` z!$vP1>;!%u{B-a%qOK9~tnl-WV`C{?zsl3+S`-#0c!I!oTbZ2!*6~owr%7@W`I8=< zSc_zb;xP6+KN3msyU!+-I za?MzabYffF;clIvw@8Al2S*2P1s2`J;>AW3!?d$IG6&F%5Gy=wP6LC$i>15 zkcc$X!TM>_lh^~qtAUrdW5&RhTd|X|)2J_puC{7Zc{`hk6JTc6r74s*c!|U@@d+gs zzaa!4$yL^-2U!nMY&Pn45w8UP6x=arJ=R^cc`{Asz;O^OVs%2^i$!{DdkS+=kQXrD z{cmi>-$O39lJm_f#tU#uQw$>{Wr%I0j!QBwX#>7G8|jO;m)I|8X=3HzT@S9H;)=`D z|E_>)5ZIy<3Bw40Q2>uXybOOm`C{5MGq`y=ki6?@2-uFONCpN>4|X4VfB{7KQWKY~ zqV7959-`HW+{G@D+ds7e<%2&W3-K#KI6~tRTf{I=D3}KEQgTZetTXv_Xgl&5bO6B~ zL5tv@qG1f2HzbIphGRP#MQn@?<+^xyAJV=ACqP<+CY!MBh>4V^K;*s-(@qN|_9n%E zV_93NJ4$^7R-`FIsQX zjUOh?eWVc%vB)U=tPE8FY=Xw-x>H6M_~Kdr>K)Dj2Jo{2c9F2aMxtR8g(bO7Oa#Cj`v33Z^J|8m4=fgT52LF+o>H-+=nmjUTtlw=@*YfQFJ zn+c)F7~*I32z`LG00imL%+z!zUru*34xCvE5N~pm(DQm!e8Ico_~pQDRX;{}+oMsC zG*a+jJ!RkPAe#aGO=FQE6#GIPiC>AD{n&Xrz;)sd{BOZceZ%rL z4cA5f7%bnQW=y2;M;g2UJPHlP-@w>cDU87P!uEr72{r>Yp~R|C_muS|tjGm&0dP!Y zy^KM}g3m%erL6Vg5#$d5f26@BG_4kgu=dCf$>YRAR-3g)_CWRlVv))m!6eu5e1bO} zWH{}r!O|An96u7B1*#z17y!%B6if-Qj3OUR_mN=gqhrAhLKngD5F3{Qe*u4+^q{T+ z{J&FI4j-`^O99p+=#hH(M<^&I1b`Mm{yhbg@drW>M1xJlHlU4&uSWl2YwM^vLOwfw zFxrw>TVe;`kke6Q7O|ILHo#GYcq(uA?dkf?x-%4gB)I}$ChP*hyRoBD{uw>Uw?$(q z-pnw0(7#w)800Zz1HhL?=K&tbhPHr}|L#DfsSqF!up@|_M*FiaERT~);@Bbh1`TB5 zG>{tDXXHd|NS5i3R9M#H1TK2dib zj=f;^;kRL3k@c@MPDSoCxLdjb&L*Mc9)g63uMW|HX}`Bc9V})oPMJs`CAC3~!q$iO zB(%9fi7doUqD2W}8L=W&Sc`l^?nkzF+wHo376ucITFEVjvjTjn=ra`VJm^oXN0O^5 zPZdw=08JPzPRATatRJLH@l#Ro9D;`sUM6-~F(2_q=n%hvxkb$?_0K5h62_TFjmUNI zi_ybqJz~4ydEv$R(Z`)P?2tS|TQk`p04*4(K14xECa@U{BJvo$OS5WvJlEq_gSdeX z-~cyR8#jcr3;spTEdzIt9?S8+vt>J+(YgSZ6-2KvQaRm#rc`!lp`-D+%}|u_%acK(tKBvg$$k3~m{<{lH8GJBr%wUa&@ z=x5X;!!^GF{^hI_;hZK(+uEZUtusMBP(($Jkw_=Cb3pz=ej$Dfsy)(?DT2@rbf1Rx z$ZdR&yk=S-b`lEr4(w6aYo42FT;a6oaTd4gJ`$NDGE(09jw#C1;@ZFW_aN z&5iv)b}Z;1MP_ClOsqF(c^~3d9Vto2=nCsjavsTr{~Go%Y;Q1T){W3J=o|D0wp>uVt{_)OzF| zb-&?%#Q=x3$ItSsmmcR4iG3g|K(Ch;RhM*#ULD~nvIQ+E?lbcw)?tV5! zr-%SKXXJ9J-%R+BrE1T?IhGAn$DU8ct(8|v4Bhc)61Qod z%l6_#fP8I&(Fa5!D7Io_u@@QPPf#(e{{lIMz1*VRv=k#0CRUtWKH4UN4`akjaQz6T z5Y~%WP58dSRwS1J>~K_M26hGfKl$tN$x0wV=P#<`o+dVjSa-A}1n($Jf~*6Ym)I{5 zh~&n zkZVd#W;=rw`HWU4FpDE`0qfBCZE9cBP-Hf>Q_*(BhGMH@(<<&S@-yYG&Pk#O&P0e_ zG5v2^+!WFP)?YK+3+zX7Pr>^_&=K2&SYK-L$yCTd{PC=Vb*EXth@=J6jtvaOrbD}< ziJG(iNWn>xZLn1-bgANJ!sxVg2)^9S8TbRmH^H{lmoy?1#gEa2BI=RmJrXyU=K7mgn^cW_eg(+JfS&H z?0fuPU^c^13w%24TzHb@!kTL|qecTH)S_z#Fh>@?hy zf_Nu!6L~wf4_+M*vOEf_609Z zKc=Y{84)_boDgFUv*#&mDrCPOXbQ@xp>RvIB`zevVqf^mG$>6~!-KUKeQm0jrg=p4 zfOx44w@1G=6$u{P&k}8pv&6>4C787`A|~1#5pNESiHeQ1Bv?v1-UXUU=W;}pHGRmL zKGf4WG9o^~9@5-Y%(1As>6)K?OgmEn$Mg24?j}d8j;5XkQx)uIiHwYht>#$!jp^ps z_M7#*@;crwHWkh8Kim=(5)nDVQDdhmTlS3R`Y^>s^hr#hvC+=n`?)E*?enM9juxj( zalzK;_`#Mqb65(DXIz=U5@zmWiHsR61A8_eW{$PQMZ|$4mI}~Y7U7uha@J% zL~&HWhlCCYkBdo+1{W6-YKf08X>Q-o;$fAYCq^Ykh9pD`vJ^L4<6|h78RE_HiG89X z5`-h9ZvsOlP^A>+_=J$Sgm`mEoW&dw9U7S!1}cKKQWS3)m}rSk&<_9Y_V3v7mO-SmC`-I-!W)pBJ^maS5yOzA3)Ulw{5@8W3p%4=J&Z+x%Nm@qs4zgB_yKY95% z$_9GZ%aCRpCzf-K^ME@!G?2Uq;s2dJ?EKo4=38oj@}jQvv+yt zwucq)E}QL3Cfu16?M#Yuu1Rnv+4r6BS#Edc_s(NqvDvFkhW{n8Uq9*7IbCz-HrFW# zX}G=ADW9s@2ls=*9Oq1mb?%YV&`oG>vBNi~y=!yd9`?hdeEl4=3V27Aag6BXUB65g z=lT?*vE)=dJjuI?BmHFWyXow)bA5d6<(hcsuos>0UD$DVfp>zJBW$sE{U+%=C#Ct( zjunn2KY3TF=CGQ5Iu^Cx-{S3O|LUqwbw{aYK9h^&HrE%{I1a#aXL15&Pqfq&x-d4F zbM#uWkJ(=Cl~-=Z_5`02_2eYw5SYXMf6bR&xu$d`g_$8tigfN7YzFMvtLxx#KFV>V z6+F)M&NY#d+$g~Lu_hXoLH0x`miQWOobWj39%t=j*U8Lky)(&uK0A~CJ)qKvOmdVn znH!qT400wFH^*}W!0Vda{`sVD?nbe~&vyY1r6;_mJa3&GtXxC91wcL^F?1Hqj@kRSnq2McaNLU23J z+h70Jf1SIky1TmMtLmQFUGi{f(#ciSV${wEAZ zP_UMSdhi#jr8hm_dF64L$Rv~}KtjXGhU2jiYGe*$4ZMmQF!NK#X@!?C3=2PFRIxF} z$GNEM);(kV)qq13WWs+@L!X=gkh$?BR>Ck$_}p>IVSZGw4#a#o2W#Rf%#0~tI8GWY zj~dCgsQL$@MrIji!J{u2e_imBf^bas(kd>B8mdUt$n?cnIKXoZ2FTCC1h@b-LYq)M zJBC^D1}cXB_sYtXBZK5bU{6dD{Fj3yCSyjNgSue9=ULR0+(F&w6Y55BUR#BkP%%^- z)zf_#AJ1cKypJ*PKQHh6XE6~6<4_(9^9mv`AqAyT7dAlkxGkzdy)YV%LJjQ{RKqu+ z&fke{&oPYr4b=5tF)qe@V^f+6)u4PxdC)0EB02@NQ7v!cozNZC!a=ACCZKNkBkG1L zurzK(#mZZ(g0bG(Tt{L|@ z_&SE+100A^zuFClV;k~$zuEb7QRi<$-EbGGLH98;CUZjEWmyI_lG9NgT7nwstxibL z-Pw*&pdq<~VfYSHV$u-H=SN-G08?QnT!&*ZG=yOCg*ahYh)g}o8~H=r7}@B#4;2fi zP*ZmmHIk40K}&q3KrM>F17IE%rN*=5cSZ?uqjg+VJ8u?hHLOHM@lMnT96?Rd8SnU8 zRFMAfe|9_x>bh`Dj(NR&jUWk~*a9^I-BCRsiJ`a@6$>j+73@bf^en0ecTq$AA4a3$ zsraAlQVGqA#T(r^h|@Af~=?p zl)#5r8^f@0><}kCHb$+UAf~`Y*bjH3R!^Qd*5RUchHXKO*f}hq_5YDXVG44`4{_Id zXVeLMu_)e0jZk<3yFpIW4a=a)E2E~c0cvF0VlwQHn!4$z2CqY%cMLU^moP5(cOH?@ z#_$2P5rrhQD36MY)(ogQ&5yOQ6^7wf9E2B9u~0jaO<60?uBagGj~daD*b{$5)f*>q zh!fO-G$j035Y@tBs0*v2)@?(4ifu6w)=m=QK6cxq9>+hTrtWW42i~Jb<|}r_7)h<3 zeyHn5c`iuG`d7hb3UtF`sG<84Bk&*8$fQnYH^_(zqT;C4QUTTT?@%4-g1YfYWH6m+ z*o6Fw3j@KZFXpQ>X^q zMxFN_RgW*F-8i~u0@V6Xi8`-fkc3Vwjm@w!HpbPcXb(*l;=Z*Oz})29VP2ez;dsjP zIc6dsH?^H#2z7l2RO~E3jqGvML+K7`>ks}fjWr-IDyoa3hPDj4bB`LCwy3SQ9~Qt_ zsPj&tg6VJ1SE%bk*pJ;HL-jNbYO1oJMz#oYUeKvXLKW3V#Xu)iOZ$5Hsi+HnL^Wg$ z>IQpI!Fs~;3hIUrJ>Q{5AZoa+`y!~JZ-kn<-WWscKS)9sPViiSTDR*^H$H;8@j1`C zsF8Ss+Nu+zwR{Ashc!?!(HzyGUS4?+RnJsZhnHb&t^XY))Z?S5hTKN2ikCP7qolJQ zk4GJ!i|Wa0R7HnT!FL5UA}=v5enXyXPTKS#?i*013?c60yaB3%=P;-nJs}Z>PDYE? za8yucMFm+N)R5If#Yl5h1?^Bh3SusthC2TcY6R}0&U@$O<7To3rbl%+Zzk5iHje5P zXsFttdej58&PQQR?2Ua(B zczx83nxf9@jrnj1R?+&uNJ2de%VBez1GP67N8PX$D)@S#hIR<5XA4llwE-0yM^Qbz z&Ssz*6_y|OY8p?3EkiuYR;oa*m_QgYCs;;mRT0tV@K2$eGY44 z_S`o2KcE^m3^iplQ2WGc)Z8CM)$<-pW9mHQwf`6DoZ3sE=x2^AZgQS}@`?Tlwp9erJZ_1~XFl!7+&K~#e_ zU>ZDxn$y2g!S@;!D{%{1LsFoQXGS%o2&!SFu@TlmHDo>Ny4|P-{f4^F#h{mXj9MmN zP(zcju$dKg<5HLro1%t#Br3S(p|0D3`SA?ue18#}x^UFaR|LbbCqBR#SRR7|i-tJ$ zNgTv*OkB){un=klN}$S{VIdrfdad4tnehfHnxhoAm(xn97n%8}jpqZZVTnpu!>VFM z@*R*>5p;egp`p8jb@4H(XT?jJ-=S_i0JV2-!PfW^6$|xBnJrO6-wid_LA->MQFGn4 zwAmjuLK85J*8ge}3n@5`xv*Us8@k!39c>e8O7@_RpTq1JQq~%t6Lma4YHF%_`4*_T z?~7VRBT)@ph#Jw2I?nx_vm_KmH&H?I5>w+RR8NwZv*TG%Pqm_`he!j|$Th|YY>B$j zbkqp0Lru{M)D8c|e3-Dj#YANcR-s@R33&=jVv-8>Uf&QEJU^n2U+~J)RJ0e0HdveT z8Q2c*qZ(GNlEqFfR0DgUrmCOkNYqX{trF{B2NqDE4P!NGS)BDwyoZ{CSE!-)>iwer;s2wtTm7ooIf-2Ud)Tk4xdv-((=_pi1 zi%>1!gg@dgRK*RdhB#NSH!3)*SF`gsqZ;%ps-b`2di)C&oMVI4EqI#OupO)qYJ-@9 ziqgfXIopf6@henCpHQ(9wWgKF_e_b3sf?(hUy1I9hI$qpLdDhz)M^VpBBAIlR?805 z!5rkjM+Mtr)Qxs~{)QU5vsewUqJ}zSZ40tOs2er*Y=vpacfzJP9<_=dAtMuXlGd>y z&wy%KX)oWx%m0A2C|`hDUe8c_d`Ml3nW(6TN-oqhARlVg)IhEKrl@**pgXci96O6K zlg8>nJqxbb^=&9qqE5_+8o~mo5h#ut`bww@>!E_N7plh-P$M}5HFaxHF>@3Zyq8he z-S^7<4H!AiRU#6)Q6|)o=S20WGO7nPP!+dC-LN0d!znlzvos8Gdf_Tm!&5|tIMp#5 zPR0SKk@;Vv5a%GKMa9xxbf5qKkWdu=i|sLPV+)%8*pK`~tc3pWLY%T#9gE;JEP$s_ zQ6JjG8r~k&^Dd~K4@Na?0;b0Ws3|IQu<8;(FNw@s+m>%Eu}zoDisV>5dd%Y(Vdw`s=uk03FVg8cX!sz;x&3g&5U zJspfb@;gyI*@LR^B&xxeQ5|@W3ce3m82{J89$sZ|0Qo_vsdW;mw1?UWBt4NcU;Mq&tR=*Qy| zoP&yy;osZ0X!}qx_5n3gNqV~X4LWH_C>XM%cB(w6A+CU0E)7r@_CW>D4Agl$u{@qa zogcrKH6ShO2Dwl%R0Oqe)bjFeQByYvCu#kUA)&1>QEv;jj;I}OII71JP!&BvHPq>2 z%PtM{jwj7&dQmy|1BouVhQ9*M8HFTl(Y+3J!{=BLL;Hs~U9c)D2zR3Pkz<$@PodWRJJg7V3?TN@qckMc;|!>w z$>~`HwahA@rlK{f;^AKTG)zZ+BPy8Ad)`A$(OXnZMIUG*7Z0_eCBdnfbs+0s4cJ40 zT6zf8(xVuLuP__NA7ni(fr^2;s2lW0t^bJ_hVxMk*@JqFpT=-}jEa#MKiJfzz^3H$ z{t&c^r%|9eT!|Wq&8TSJjq1TM)JAp2%U?pR`x~ec_zyE+(!n-GB~aJZL=ANVEQh^O z_t}Mo@JNt^=Kc$6X!8xRmX`Ibi)u(~RL^>N4##TbXQFQKH>SaFI3Lr{vEjHI6*I+$ z+6dP`jaXe&!-FkJC`w16ZnOw>!8%lhdr?Do9YgUMYRX=sg6S=)N6s+oKn%=FHaRM0 zYM|!4E0)5csGc7}f}EfKlhBaoA8tcj0@a`jsGc=PEvLa)6_27~B>o6%Kyg%$DqlVx<4?H`}`-No_t32B+5u@P(0KeCPxKlIO;|jQRn6JEQvYE zSHV3vz$?$szMYwTDb&byL-%HdjeeJYJ!od4+m*giN#d zi7cr6ChUsA%Oq-&C_g>KX@Rp)JJnm%2}Nhv%jFvUjeM$^HurZ?BbH&7eO_pW3d)K2 z0#{=^Iy857h_j6R+Br5=)#uvK&qNv+bdHcvi!Y#}{vm2e-=l^&<~*x7IVuNUnYd(Z}YM$`&{`s~lVxq1~gqoT(sC^(iM%DVS=pCqux?vO44%Z1ad-g z!-5d!5MDsGeP{NM)_??y?EDm{4&+8H>+-1jYM>fW54EgYO0EAM-U&g^QMiWk3Ah*Y zFSeNY7d7`$m)H%Gp>B`^wLA-;DlUy$4Yg1W>Et;C^OB$L9Y2aeU3i;BBYcVqn(|9+ zBBtE4dl>#-S zJ8H`vh>C?_s0K{;j?cjy--J1Kit69_yyBr%atL{b{vfgy5g&>Vf|4tv=WmM8(T3c zo>^@Tez+#Y{mrO+Ygq-9&k2%H500%1aaLja_4b+W6zYamHiS5paU)j8_qZ7=Y_#|J z_gI^JjZL<^mY^E`5cTr<4clR}pKZVR4M&l`g9_$ghs`1Gug@LC5fqf%Vk2=FwZXhZ zO+~CilJ>RrM=o(fYqaLc!wOYQd5O zRZ$qKqMWD-@}Vj$>sb{QjCDO*pc>j0^$Zz;`Ef6*f&XGb3~aOV;+R?Mzn53=BNpI< z^QdT#w%saBh6}dzYCt;FQ0Mh5kLpQ7R8)6Djnq`sNG(DI<#N<{-|ey&k8Y@j^+avagHX$T z4hGedS0vPv_o%Hh&2H;?7Ss)jpen3{YS?$EhfZhINDN0^w-z;3TT%PKVbn6aj=KIM zYD0>($Ic7i!}?bbBPdYCWw0&QK}GRS@5HmHpt*%Q?+q$A1ADEZX;D*`7ajh;6RO9Z z_gReeM#aJ~FTVq`kw3DJ^{?Q2NkMK5?6-;wqHa_VwL!H(&D~h9d=)C#cHmV!j_Sy= z12!^SQ4KhW+VL)+g7r3PME^nUGoON9LE?jUVtUk6M4*PMp;zA7%lAVyYyzqW3s6IT z47EBgp*E)m;Q>UpxmAF0pnCWb)xg+CtwTvr^`yaKm>YGx8%ELk??*z>IRw?xX{Z}6 zLXE%%RInXI&D~v8Fup>qo~Xy{r872aJL_LP8cuPv*m zXGKj>Vbm%siE3EIAPKd!sdu0q>c-trQ!@uOXPYrM9!HJPM=XIc&e%^htDs(Fx}rw( zXKaCIQBS?xe}uTdy4ex0kw1g#P;kvz8_Hdt`%!az7RB~B zi{GJ^SN8Mv$*CjeCw~lU;1@4n?N4jqaHQiwXBi0%$vV`Dzn~tMz6_e@Rsh1Tqtp7zMG^cA&b9e~V zvooGIyyMSMBjdkfJ7F@^vPy^QKvvXFmV^wZQ@Rdyzuzzs_jhiPP>Wxq zp3nZP_7n_5RX7?I^;=L4yo8GKyPkn-wn{RgVkr`Jyd`Sm8i6%&2`cJeVjJ}T#rn@m zq9chWI1|;vSE!!GxNbuph8o(AsC}RhX2-Fp3b&y~>;zW9D_EYPPj|zDt>euQ=Woi( z-LiTz-VSm4lFxIS^&iTKYba2ZZ}{8R@e$8IP!FAJsD|A`HQ+01mBhPaQ&0pI&81Nr zOl{P4-BBYu0Gr}?RD&O(rtI?_*1zV$f7hZnCF%=_MyMhG0gK=g)R6w=m4CsUX@8!3lrsfo?p%+mdxgR7EO5(leXH>8__iZF%qb^8>S`}Hm^0v5w zd=FHNBz|BGDTBJc3Tj7;M2$pi)D(6_ZCnE|41?22sKvjahURzFkljRWBri}E#d&DQ zlcOrki7GFI9k48p$Mu+iDJ}TOMz-o>8_Cuf#_=(zky(uqTK|VhXz%|I)sqBI?8YUr z0Qu&45NBg6Z1~h(w|8S}^3PE_W1VLq&i6PHRnJ>IhH3w?PdZOwj6aZHh}!XzzqPMSyI=%R(#l_c~qd4=UM;*g;k4BB?pO^(xNAbBk zWhKl(z7OiWpHRnN21#hhlSegMpyqBRX2*M|hQ<4zoP4F2c067z8_DvhsS9=`(U`<+9D}d08xDwVEq#Ovn*4Dr-yXFuY(+gY zE+FgJ$sO0uYlRx>nW$xW618!?LrqEEcs_R-RzapJ=o}}pm;*PlBo2x1b8gY{{ivQU zN@x{b#Tw)TiG0p0tcP096%t#6j-ZD09#+TLNo>TLpl&=46*Mp3LWd4fhRGkzbSC=RO0DVSxN&)Kl^WY9sQe@VOseJ75>`XRsv}O=&^6 z5Ow3@*dJr0@;NQIzcZ4=6uggJu}^BN@Giz9Uonl(eONR?Jfz>u`P{8KDaIz74z*F`!C*NORY_>sOhpaVN>l~=P*MK7SN;{X>=K3Bc}1}r z`8ucuEk-r?EULac_&l1Z_@(6leokiW-r} zs9?&O(S|M()sxn!mUltD`;A6FPD1r?I>yBxF&1vX=(xwrA4Oev0X4#Z1-%m!?){KfBNUf?+7OB7Y0jfHFC3O6p=G@{y<; zZ$UM5FRB5j(Ea--98nf-%`h1VE?pHU;0BbU$p z1k@CD!}+N5m!pP$EvkX%Fg4!6WLp0r5q4qb&O|tV|*_w^djjbwLxXgk4a}Z5t{Uo}s&Z^4PiwFKKBhN1*#$4P*Fb+H4?*6!M-{#>t6>Rc_+NU?Bw5KVN93L9?wlt zd;Ui3flK%mmw_0sfCcSDJVO2ue#6lPeeO@eM;EeZMtEVH+8&sN6DIQOorZD%k!&P2F=$ficV5R0lJYP(dNoI9q3>SGxB;g}A8Lf!Zn>beIw1AP^J?pyI}EUWdOy^_!URmvWyp2Vtb7lfgLs~DET zI$rqSP)}Zv+F8geD3emCy|k$=zxmO zDb;OAci~v_4^TT`_Zl|DV^NRcHK?Kf19kkhcRXfITYfoE?+ZgwQ?(Fv-f7hS@&Mhx z|BF`3f+`#{aiB2jx!)4!<1EzrkEm_0R^4$I`F;2v`_-`^?oroXv0Bu#cgek|4wb8K zkMV9eg8Uqe#1su!|4&KuZs2o2&9-Q0&w?nCKIahSt5I{^sgVWGL@Y!;tg-D6jj#y$ z8K@yXgIcbSu@xry&gUG(fvDwLx`{RHXVm$HnzH^Ik*M3$TDSq#^GjG5qc^h;Amwl( z`CgbAo#u947A!@!sh3}bYS4MCim_VQi%lcUM}8$1#lNr&CJDA=hhy#=<0T5#wesmt z^qt|Yea>v`*T&{Lc3Ydne5hsF26dz1sG!=1YWN$}h-GPK8(3A;PB#IybDqcfShl^- z{n#G7Nn$4j6+8Hx$LMsl9qdguK86ooHPx_)=hc4&+5$7>PQuKWbkX?H!+oir)RGjpc6~hF?${ zPOzKh7ok>HSa+ZM6VxTBk$ZyQP<#HIp0!S6u7msnM;5>?og%_xL()G8IZH8*d2waJaG1!Gfg#k81 zzu-XfUr^=!2m0JUr@xP-$QK!8=M6$_xxZl*yoMz)!w)`Za|l~2>baj}h)qd4EJb-4 z)D({hS}d&&vi|jUx`6^cwYFgx?nlk#EwB75Dh8qswWnipOin)NIp1@e=ULCEo>7L` z`Qe_$JR1(9VpY`BE12ZD8ntyE_Pp)+#WVSEJ6_PUp6B4E_qi8^n*=WNuCmZ3&? zEhm*{5h(6LzOoD1@8ZVy()xg}S8@SyXIL>dnGN7>UUJ?gPq9QE9;hM%wre#OYqY{>*u!!g#7(PPaisD{r) zHFOzjL{_01umQE~{zQ$)eOK1cKi+{isGde0XD22_#XwfnUR@EJ;&{{z9-%gR?9H{!#(e&>rYM{|A!L&`mIY5g&MM_s3?sw$t;Z8 za@(WkbdFcP4>cuEQ4M&Bx}h`KdK||y87c_Vp%2SXX8o&$l_*fp8lhU&8P(Dus34k- z+B)Z=reZ7Vy1l4|pZ3b1p+@XK)KGsxjcn8@_BkUq>Ue2Xy;XuF)Z$vG3tFIh(g`&( z-7ySDdgUun6|P0~a5JjHgQzJxfeN|{sCurTo|ZRI9doAIevtrmJeZAyE{s6+tSBlt z%6cc%MBShss>MxFBh%WmA8JRN;N_Qk`E95UoW#U<8&&T+jKI)o?tS_BKZ*Jjl*FVs z3pEuRF*_baZPEXrF8tqgn~K7yp4G>U*xxH(j5>c0X2VOU$F*;U)t?dd9#GQFv;Lcs z$U;G1)CEiM7d(X}aOg~XVK{(V@409B+<(=gB-SLq4ol%D%#6im+bU{{8iA>vE3gF{ z*KX9ll47pU>C63{LL?N;n^3`Y5p}|UsO1=Mp3P}7{Fw?$;TppC)qGxFnZyMP`2@wJ zzgfzA0>`JX@VS5cadM@-mJeCwa~^Phx79vpFURYzbJ=% zNWGaGlW(|%8{qI?e9i^DzLg-w&D*Vf&kmmxLdA)8`J6$NC)wk3|5jwiUZ3+X4eznf zJ`c3s&l?rT58z_T>mIbX>emNZ{}m}nd&uYhdp@0T1Np?i`ka5L_z3!N%WoD7+m6}X z-a*ab7u4LRIBwBh1{KWpQ9;`RRewhug`2S+7Cd27HSq-NzZ?bIC@75|Q56>Z-M)Be zjrv%<6*Waqu{y>(Y2S7?$2{bxVO2bWYFOM;_NJ2)i<7U5s(%{l_@ADyf+Y0*9_O?j zsEB3Bw?*|}4Q9eEsNlTjl}9;aJ6Rl5kmbfW3~>doyuly#5vxDOqWm0g<-A*GEvRRn zW6H<}|0JR1QS-d5f?n8|{6bVu-+Sd1{x$5I^6aM9~{<6Iz_C$^37G%Wu{XY_wbix(;uBNN!UMxm=jH~v&UnSIA@DS7-??CMrzk2?K zTKE5011zCR7@@|9LKPIEzm=0hHy+2%(qa1IwXy#OCOJ|JRp98VaU*C;aT?PojeH zDeAo-{@>Q)?5Ok0V=Qco8mV4h{%6$r`%w+Nf+f+pW7n5L1z{r$DyaIA&>sF1Y6IGZ z+T*WaI6gxKS?s&E^`=8@P$g0CdQDI_?1;l~1ghS^J&UE>sGy#R8v3)Sn0R!L^{1O>5}}dr)KtNHpc@{!L=4^;aSv(h5y6Pdbq9>>W0gn z``o{r40+*m|Kwr->LGU*_h8|d_JzlrAPEiCf>-R#cns^{$bT(rFJoNtA+K#CiH{%1 z*TOd3u*!cv=P>zAZ@lIE)<$F@HlTbxw!zSM*5D2}nfxx)Y6(_)Z#z|M)Ci2lytp1U z6}PbjM*U#xy8;#_KLmArr&oRpOVgkvAKAFrvKxIOX0X*4pR=0t`hBw-hVgo$8y7`l zDo87>pff5eM|&oX-uC`P~bht$|Q?=ucoc=RHCNar7vm?i*DYRwW;S zs^<`|6;*o2YfcSR3%S5^ENq3)k_X2hh#pR+z@sQZ-qEj9(57%PtTBqQqaTnu&N zrg1~vcepO7D6$VoCC=QA6|ywWEE+oR}$*9dCf$$NKoB zmZAJ;(olEHkCrSn=nie2WTEaC2@|k0CtSi_SSER>`wxz6N3DwbDMHeWhIn>%er>jo0G^Jd7H_;M|O%?py0- z&ugBcnXCcXQ87>kwS#p>jm&ST8=OZygubFyOU%qR_jyr0tcz;!FbpHu=iyfJyR*7M z9dx>9vtStFc?=blakE=RVW=CHLRC~96$@=qt70dr0mo1ybP?0z6VzPC$r0-Ape0fD z)Iy!#6ys?9cP5dKftX(gP^T1* zN5#rX)Qe5j+;+ScHYdLVYhZv~Ef4p1>XE2|V^9^IN3}3RUT-K-Z!mRH!8jNdTys!S zy$d_xQ&cQ8$Y-%M#B%}ax}9GBJnEV90)twoPJRo9Fw}{KQFB=r6*L1;BQ(v+A4N^Y z4NQw~P|Gc80Snf=s9>&%S}k3?^6{vr=1SBEy(_@_SH*b?+T3+OMg3sZg)=Y(ZbofD zr%?_1jA59dkeLq^Z1qt=IRXpgChz!TREMG$w(E0a82L(tS^pZ!juhyG38))xK~;Fh z%YVkqiTD>r(KHDq3&=t64Q!0d zP$TsP6Jm^t_S6eQ)fb7nt|zwE`kz2T6~DkC_zksD45?&8KLPb{nU9*wU8oVcfSQ8O zs2;|zY#UEaR1Eb-#n4nQzaO<)uAzeT3ufZ}PL?V*H?>hi-w$=e<)|AR_PmN}*bA(T zpHZu%LRCAz4eIy^tdCPs*FW%%fA)^2sAe6=jKPMSP>V!+T#eH(ZgpGV%TNv3joQhs zqE<`V8aA}$P#aSt48swqEq6I8HZGu6%`4P($!mr>Ygs+Ta3?;j#rm(!fhBc9-PiDc zQFHSZ<71M#wo_$At>>bs9``{tXa=6d>$ntG*9&!j3AIXn?^%F~ohPVgLi7e!PcE!U zzGDN{e?bzvD9}{A!t(fiL%YEaRB$z?mXL6)$& zH6W{JWz>y3pqAYN)YNW6)qBRugU%BY`6%$WuplXn&&Yp=3eHL`ZEIeFT4u*ET<5p4 z4JIQhR+^(a(i1fjV^CAG5*3U`a0C90dU#D~t?QWdRV38I-KeeeqUQ(9NnA@R!2$fO1?W5Q_$TYag;es-rl13?+&5v zKabI+qdfz@poXq^C!2x>Sc3d`Y>6kZ3})+WFBaXfFZq4A1oL$Xbw6}oM2+;cuA%OS z(xVtu%Objkxqk{4CTrlz(Dl^3nR*(6vDY+e}n+uf-;K9<^+9 z_4D=z)D+A>J=XW4&cBNq$r$}@6{YVVwB=Qof|4BQjS7yf7>1`%@9qC!Q4ASiJt>ZA zcqA&y2V!j8fa>vH{0{#@?T7^jTClc9EyE?K`#lemXiFmJAPbh6IF)?J524NkoQ|5y z)PqCa@9Sn^XY%oegu1^oIv59%k3~o7;aJobegijS_o3FX@L{%kB2W$Nih9}xCwhsW zP(9e~v*OU`P-hMKPk4a* zim`Tn+i}*Q;pqPU-#ijkIB_E`#1G>wc;-y>Udd3=`vP-g^hvhvi=l2j8r9%g7!TKY z<$F-?6~E)Zcn!6xPEWS|AW3Fe^tVFYXdr6H*L(T9 zScrV0nYOXiKsEFQDi)H=@`4Q2z^P{ehaIe`m4&HMH4hv-A1*5i4r_ zpPy?L#+_$R!7Qk`E`l1uh8Q3Fpl&o4b)$tChG#JbzC!H-UobCboNx6sMm4zKe3prN zG?fBXbOJSWH@y>`1y*q?)D3H)de9ox^U;_MH{xr&hPUy|kD<<8+_cc1b~6_7<(2Z7 zkQl47*y?Q_T*5aR6ii12)2F32r_q<$(5J>@l-EbS!KC^r)cxnR%HTxuIhKdIzazFA zwH23LVc(GK!o%d#uC$Ilz%=APp{63mDsT1VCsBcdI;fp*9x7Niqef&u=EOfyJ@&1( zH=L~KP6gJWybtEXBdB^lU|o#2#_DN{qsR|L?SRf&cb^D4HAvJU-v+DV4y=Zu>+EB8 zEo?}B70$qKsGiPP&qpbYw!s>b0JZVt#_U)THD$d~u`>o+;d1PPQ8$M2cON~(P=6Jrtq0R%Gbc78`>%aHWQ1`3T)W>X&S{%1n7>e2| zr=W&Lc7m9I^Xi?pq3?j_Ie#$rq`cN2_U+nX3@Z8y zp0yKupk6vhp_a#N%z&FvLwFIjas2C<<6Nlw)3Xk!;M{;?@jPl-e|O%t+Pu#YM8s(BbX4Bv#@-eP%=*`jqFu4|xE}SqzJ(nz&ec%&pU)V8?aAN9NUU_tw(O;- zskwna;3rhW`u`Q`e$BoZ|0JLDx-C234eMx1RM6)RlF+&zi5l7&sP%cqD}RIK%GAW3*iPVgAY*aJgkPo-p@tt@tZIVAEWk%=y$E2lE~+PpfiYsUbE-m zFZe5Jqv?Ck*6$+JV{|jBVTVvXxQg1S-g$ZdeOvcwQ6o_kOW;`4NE}05_YisUZ~_lP z`7<2WUr`bYmaX_b9>>mDnr-@VtiV;TsIYn2)?SB%DLO1}eB7U~x?Sn4n{1 zo8V{i6P{Ru#y(|gxxcfTgyv!&mc>h`?`V=gv$?N|YIzIP6bwN%Xg4Z$E}~-K9%`h% zqB<1&A3HBC>SeSzs$ugm49{V(JBfcuw7^!+?Um~=YPqF)VMCk^bCNHFdLL+ydP!Y` z<1p7tYxpiy1HPa-6zi2uK}J;YwM9KGC!#vE^A+n~J-tLh7L59@&3$fEMU7C=-x1ZI zA*c%{dgW_TJwM>(uVQ@i&rvTlA+MQIhQ1oAeE)y;P&$VixeRZD7Pa}_*o`7lH|mNC zu0g1W%2-qoEkX_bek6LGtDbLA(H-xt#YP2GJxx(l(HYgzAnM`tGioYssNfulMDMI2 z4>1S%81Joxg;85?B~(RiQ56rscsK^tlX*B8S7S8H_`y09fwjq(M|EJ1SH1(aT!W`b z6esZ#)zh3GZBH+UYVkN6g1fN>7XD;kos31T|0}2)e8J&Z^K+>C`vB)L7x_kC>?L#@ z)+B!dn_{xB?v5IC`jOCbyM;PX^_vCF8dUis%#HQ3oi z;2aap@6P>Z)M_||D*uEU+6>YC?&>Iyit-{q8c$6UXoVV>5g43CCy0^*bYo?qTted?10}{Vn%#7)ky; zDky6w^gCBLZ#3#hFwGOwLGnYB`kkPj*S{w7yBkE+SfLN2noaJ$j3>HY4raa8^!+o{_4V%kREn4UDi=lPb60ea)|i1b@((OQHuCB+cV@x5RNclKdg8j}`Lz z-OqMEqISkVP*1@xxE~AWWA5=iR^Wyu^84M#_^1N53f`fnpjJUfgxKha`UQnPh5bCP zX~K}Ae)rp}#KrthLk|3j+qocHNp3`ickl!G)TRCI7YRwr_}zEAD>#Sp_GOtm&ijT- z$VZg-yMHTw4u2ruy@KD}^Pk~P^2sXNK64%mY5mWsS05uY~P(vQ2fweq6>Uae&-wrF1AB(#FENY0K zU^}KTw4qH^r$`&oNuECjNoXrwhd<*j)R0Z(7dsWzn^05m2378FY!#+yG3iF`-Qid#@4cmvaO zf9E|31xu>-Hpc}#>!bGY-dGriqNZRs>P8PybDXb(^{gCf8P~-~9E1(=0ye_z9sSN+ z9E}=*G@V%g3YG#S)br8UoT1x|<1l#_YuNIxwgvA)1>s9ngX46wsmY9bMXQa9_7SL& zdD7jC+rvhp0LG-e9ER!q9<2XfBzk%W9-waU8WlwGzqg^zj~db{m=oJzew=}7$O+V| z*d5gMF?;&mZ$7i3My@j|hE||P;tcA#%)MCu3X;;j>_#n7bJQ2LWiCYx)h<-VY;zgRva>C71y3qk8_q%O@D*cRz+_LXA*6R0nz?4GTIydIxr( z=KKg2z=x0EGoLYp?1P?s0PeKP2CPGf`_pYe)Y;DXIMRLW-v!uZa+|<8*W6k z>)= zo7=T`n1VA{7pKp)PrDCL7c7`(%jO)8C;t&OGNb0(x}J~f;a=1yox}?)7K-9*^7U~P zL;nmnGU7cK`JFu&3}0eBxUtmlei88+qjKVJ%WPSlUT(ql!86th8|rY>29+DrVjI-6 zWDIIGTtr zhGo!MW94PB2HEkbjpiy=#|NmX&9~MX+zgeUhOxCk_mEI<{f^;y2ek_P>ugJnkJ>=O zQOm3d>Um!S`(kIW{0{0@G2UW5%5!b7ARLK_$xp@jxC*sZ@5TgL|0hUf#~WB0qi?i) zHPpHvfEv<;SPb`~D*AwWA&I%khBhy%fo1UzY>4q`P^O>#P6$(4WV7|W*e~{O*$#tw zIdMG+?QFL(660;P{h$*zB)<}MQQp8ufV{il;Y z9rC+hGWGt|V&D@lLuI5`{5AscW@)NyzF=X z=p^nHzx#Dul&jY8NYn;b^%^6LgK;q4Ml~?l>@UCj)2cUki-Nzd+gB=kZus3_y=Z&W z?|vC~VSTOtlu!NckIj3cPKf%GFE;1@`)UpEjM|tEVQ)&xDB-x&vXJ#ac;aDdy;=25^#2eG6KGU`;|<(C;>Of2H-f3pTyrezkbw! z8-!ue0`7j1IC{XH>$<35TaNXyXpDeu!7&0sX9)#+DCmPtVg}q1IFC`NFhi_>`{y{> zV+Y(%#{=R7+&?798aLoRmixyGxR2dUs4e#)`-;+4b z(1g~ovWfWb9}S~mW}<+*&J!mNxZhqyOA>IxX~1DT#PRz{1MYW3tC9trF!F7Za~wxu z0bGUO;Z4+zStNxuXu9V*OicL^%!YrVw(6+ClmYjhEd}PJAU_VnHmJAN2dF8Eohsn& zXoavP`5LHY^)pt)tEe}k@YFWc)vyWqyO;(`rLp>2pq`FnQ4hJ`ED~`@{Df-2FQ~`u z9h`-k!UFDpscawW+0ZpS;JytX#kJ()qz$-V-Rwp^BQmA4*l2@Y$!|yP8|l+q17@K{ zU?1}A2s)2R6r^Bj2CL{QmLXpuW5E5IZ5-;2Cut^&jh|3M_ZHQI=$QlVhu5T-ihMOp zh@DU!3!+9~3hG^PlXv`gbl?APk=ykYPZEAvTNmQj^BzD2G-htv}?1Uy*kMcp- zO~-K|mMj}^|C!DksJY))-geOW6|8}iDh8a<#Lipv^VAz$nVpjS@Tvj#lh3Yd0lm%# zo%+?;)2ZM`oQO|QbJ(v&!2JU80{%q4SWTPD+o+AGZY>+?^|*-qA-s$&YO{lKqe699 zEx5Zb9ZPH3~{>fiwT4VNZ9M&Y@+`+3&1C9^(HV-%l zsrWz(TTVk;+T1Qd&Gkmij)ze}`4Sb>iCYESFQN0Gf^#-%xvs!MxDN|z{l6uV4|BG* zjiWW@AwL9j;bzajF+cfuZS1L65p~{Z`~i2NMy^0xo3a^Ll>8$skLlalPTL9dl3#|w zboB5NiIn)UJ#)r^Bpq39QethQwiMQ(e0nbny8Eaf z$&~1AJ7DEL*7N?Tx8a?rp$_e9Q&$<)@Bz32cVGc*+ArX~UC#`X&>X)&J$BRdw~eKZ z=XBKSIEY&Ju?KLR2K2+BN3cheUpkU~0V|K@0-QC58{);W_IPeEo)-@C^HA@IMh3J*@zuME%&HDSx}F`TPg@$Zd>DBJV-wIN`{ad{)PHyGit34xPQ5DZ%x4c zMZ@W9iEn;iHSkZpA zWt0K6qm@TRb5AUWJ5kH(4TfXv%@*|$Sdsi7RCFK4`}h${;O#8|mKMSNOThi>*s!hk zkV~c{k1_u8^uw$Fn56RJV$_uEeTbU(}E8wKG9Y^Mu9Xv?n*zNfqgY9u-yvM8U8 z+G?ZyYQZ=fRpDFIQ#Ai!>)|l$Oa6x=7Obza75Q?%*(zCumB=Rx9<|_Uh59r*AFpxX zuVc(TZa*Gy|NFgFPT13}^zXKjBs&>!f8FK)&g8r@r)+D!jEeGaI231{=JP`+52G`- z^_Dtk&xHEenivXBBcUmH^QWDV^MbvdmPI|aYN3LuIV#E*V=TOk;dmbpW7Law{z=pe z%{9*_o*%vA(J$F~$;_aW*()fBy0C(mZ{X$Idig${BRyw$F7w>%c@S04A71_zssqn4 z8s@wlaQ|hMLg@bcpQTCYsa6Novw@ff$D$r4t1$uoiW%?{>go0w^)yR&#co&#m9K<3 zuqo>L37801c<#ZNQ4Ly$dK&KX^1q`Rcm;LC_o%6g zbGkU->9eLC;UjT zCce(qL#hfi=Fwz_9Gh<)GogLIz7Q127!Y_<_8wl z1yL<-gb~;c=i*{ig@qml+#fJBz@+3`p;p5nOp6OqJw1rpS+AiQ@D?>S2_9Mfd4eP~ zw-vpDNYo9wqE4KE+Pl}Hg76ipp@GMC=q=Lh$Z zP=%*GuX_icqK5htYN+x)v6$$Bk>po-I#2DTvk~eUupM>$E9%A#pVLEU&Ps>4f> zsSP??NR*=BJZgO=_{Zix6>3OJpoX*sYWa;oRkQ~4;;$G3-=bp0_uQU_|F7#j;F`RH zKK_J&xECtojN(=l6!+eHL(BUU6?*t5sV^ty*iXZLPcN z`@Q7S^7iw-_wl&@-Tm%&_kR*Yk|%j6jFtORcdTqM3M)GvjuqS#Y(M#hyioyJUbu-1 zVCA-|jFo~gtn4HLD~}T+uvM_DuyT{!#tPwYSQ#wy@9xIMv62tP$^cE&?}U{jH3%C> ze`7a`a@d<#Y2^EdyD%SCb{3442ap@6S3Q|3$SwUZ}igLAPL)4;#hgJ={~jwHp5@;r|(U$tNSn<%m7P$|Gi`SMFcap;&pIF!GiD|KCYKp8sFN%5DB0TNRt{wVS9TR-TO7vBQZ! zeB*u*+5N5i^}t)~SmIgVxqrRR!M4FSzjxnMVc7ckGqC>HYgjpQPv3Wf$csD82lv}- z%RlSQi+qPJhB0f_b`iO2D=#Sfiyfw5F5%m zl9)(G^n{Fq%;dA(?iD|)Lbi~C{t$_jq_8FH%@lXjq1+jc4daXO6$xXPlGOlP2V5UG zzEJ#hI9KD#vkj3SbOVdPc4nYR6a8z_NM4Sl7QV}2aMr@82XFxEx!4r68`yOU>y{l7@R3_$uDxM$s>QUcuSL!08ao+$F#GQbTWQh z);SsAZyGNL6H9(I@j=8mX>8o3_DkYh(GJArEsY1*O628KSYPmY!Ii+SAy*G;JwozJ zf=#eo1k5G9b*OguV`;{TBV!{f(u`OIV)9|#g)|fyjvcG(_KJ%q-Vn{K@nD7@PK{iH z?=HRS(|mk7z5Tz$`5NVkqrtV}7BmNnUSc_DECx~@fuurhpt^8P{NnesDb&w#y<+bSw zwGr&DBP#L(8bNb;OJo5ZRzsMB<{eRQ@GJ2}da(hy#FfZhw=vRcKXG%Of-sK)cx~r8 z_gU3ecX?jxNumMJ96;l>?Ho$lLBC!{nk<_`I4R@$diYGGmhX~Gr)H{-aT6}PVtE4Q z68Y0VB6j?Zx)y&B9Md?berI_m>ke{()RiP3PJ9l0@_BcW%EZes#~Id7#n)c02Rr;p z_-U#Cp7nj5{|vSV@iyug!|sH41C~D!W#rZPGit1I@8s9fKhl(yFQ75H`TqD_Ddvo_ z(U4(EaO`K2>xC~*6Xw%s4gUUA97m~_SBIg*+(wj~_*e7SdWHArKe z?pR*wU!~DaibN_Z_$c54#D5|mP19M#FQLU*A15~+JCK^JT6b3K2H{U9w;HYttdG;D z54qN?SHe}9Ltu2)=F+en&J$ zH9wDaQAlg(P?w3N!!N_&u?%9v_P}o{SlzAg^P=C_uY*VF5o+hlQ@cQjs?aEj!t=I2 zR{2}KQEJ89q}F7mTzPk#~6PA zIgyLl3Yxo34;8M41JENGDJYJ=j;8Y{2!>GJ4ecOA3QA9G6#fu~x&>iga5HrnflPzE z0+`xhlCb6Add^y;JnJ;*P2wVvzSX%Ox~A0RsppQCsrCiQsc!dMS5zOOYCkA5Ymu6)+oMahZEy00(dw`yQzudk?M!Sd zvEe9JJv9=*mmoG0zZ~`!m_)QTDkqC~$TOa45VQt7R*A?NO#zFH;~2H1*drq$tWK;7 zd5aFi`!q%;YJ=FsWyLPR7J^fx81cqzKL~$3*rDX)OT!|2KR=)Cb zpV;qKnGRq_8br|`fOQ{YMNv7GAt&{w5tkQsh0xs;^E%FTt&O@gX_D%w)gu2$o6MvB zJhdWIz~u%v2frUWL54=m>4KaAomVLRuLT zkCb3>lg5RK$=et6!8HbRT6n1yIgLLFUt~O2Gc`g9h$I6T#Lfol&5#VqKA9AekGK7W zUIUY!{5Rw#GGs;8eAdILPmXWH8GJy**eMuoz-NGr{%~Hza;;e7Jn;&wZRjs9=F&_H zK*R??TZoT9d=HY*kRKr?FXTi{+QzN-vtA<`49zeoys2!-ensXGUq+S4Yt|xhu&n^w zgf&+MHGTwZqoyy+Ty)oX1V=rs5&SUa>P3AaF#nYb?!P+e4$GUB9%-T^Pav(0iWH;K z44VG|>2B6bAWXp)v31xGSn@H^Tx3O7Q&C5bs8+h8Ffra$+o}zI0kf&i!%#JKs8>`z z0M^lVX+vO3KcY>+@@o2ji}Kfl`vKJhb$jwUt{l1S)Yypg($DpNK|^rg*=lagYYiaU zkF0z+&l_E$yu7pFlB+O%!#WDgT6E`sI)`yQP7zy9t-SqJ7fd5KbJBGywRYAbHNoU2 z7KqLM@9s;vKE%@!k~-+06fA|vON**Qwnw+N*k(%h%YTlD$Y4 za~)$dflR?SW<6px4g%UsunWPn=uo{SQ;7dYycDrLtiNFZkuiESCPOAt|6ekrBr!fw z)v2*$)l{uI2!P|VWU6fQvrS==D^Nmm{+X%WoC?G7x~H8 z0+&HCvXXnv+SQ-0 z*BS*VTt|aa5SO7SoMbZbrKm@WviO>#5X6o|;>g8lv%xe-N8M6XgbQE0WFh%&=nCql zxoLT(?;N3I03u2K7IIRk0e?35s+Ad{dizl7_^mQaG3bkIaBc?V4&0%!;Rl@f=-bDTr)U#S76H$fA)+^%7{sk%?6xKLV^}Yr8G4^}Wt2Z_mnyOa3eEX&pq3m(of88S8q`&4O-~?)_(QB2%!p$cYTr z*kUkt`g{a0@U)D9sPX6WahNGMbqI=Fqp%-SU!ZX{*OB7EjQCdFr3=Il`Q&pT zm@(+@thehY`2h^mf)vKT4%rYLzX`S&g}aHD z(LsAdx`22vu|~w+U_Fu-?9Xsc)nJND5<;K0dp7ZVf?aa z1F*xr7Bk-acu?B8cQsg0mp(2}v@sJrHwB!zigumO|W~;yA3x z6G%PMf+nr0mkX!ysbHgr);RGC;%9=V33UyL=YXG26dTLodL}QQ>rhyN;AsNeZH0FE zS-*sOGo`tS{6UW})G;La!c1I5hp3_i zW3^!gn#jq*$&iS&(7^_1)3eya#A|@B1xGAg1r+-g_ABZ`(6v@=`l~iN2~fTO5<+2q zjSXSqGfFJY8bk1wTvcrE%Ik@A{`mDQZ^8+-U3&$a>h}8*sFBTcG z9VpC8L1Dlj0Zd|@Lau<4zlQt|aLZE-BP7AZHiP}31GNHQgN^hf=OFeo8bT}--i_dj zD=tW0{&xjbi@;``NC?LOi~)FDn&EFGUs{`HmL2FoYq2B1c0xrmGGJz~`_RJ-Ai~8< zT(Xk7LvZ|v${Db`*rjs&r&FMOd`@H$eiaBuYg}SW80KdRWkJ0#RYzqeY4kD2> zV4v!i2jLgd_)+3KMjHJf78!@1lc6etP0-jpcgpArUjpl2%>6n00N{}V_K+w_a}h3& zW0;sY8${#r3t&aO!P~*SWIclh5gISdAYte{>e9kD4xC5I+nzgkvrfB6)I_#9-BOF3 zGcK;N)vyi({|0>u>q0%|8B?)JEhkq0k&Dze0{4mODl)}HR3w|5lm9KqIg-5@J6N~* z6uXNidm#R(&AUT#Opog{V)dzu(gB3yKI`q|CDe}k4=kFar@>a#x{mnG;N+CH3jIrw z%uV11lO51zp7aFb7xW0dhO{sQ>CtS|bO#iwyO{*eqD5wMQ_#zLRJ_28nDIlwZBai) zc*D>bNE$16xZY*o=^$GGy`!4}(jRU(t2e?Um5B^?oQ#kMJXDvykSzB4i za^W%K1@OM zci*tjaVn9B!*V4wV={#gY49hpv1niXb&UNjg;Drsv5+pqW}&7pv1-&kVf{5$sfDUyFVMw}zS% z!mctk^|>_hQGP{4;uz zZ;!@Nyp>@r=m*w)8RRi!(cnYS`GDiu&^EAX$cZ!~=EpD(uwM{6gAQa}!V0Ji&U^^I zKyw3152*?JjGV|E@_q3AQIQZD=ckc@^@3y#b>C}lHNK?YVq>Z6jN{9?Bb@i(^Cxyj zVyp*H@7jMpg4-bYf~l7QenaAW3jQn8gc(_-xqV>MQhSpD;d&p)qfIJN+#g_eCe5NpLWo8XyM@Y;^GG=sHX1sK zy{GOX9Q(i=z;DO8BI{@LNk{HHxZAn`?oDorG9*OO=nx&4_KK~?k zwjs2qq0J9UWRcpk#4^)Lq#A3HQRE)5y*qB#^|Lsb!KjtoLO3hImySLo;4X;z;g2C# zRbDEd*8!R_TC9%wm{>nZ7vra;;5P~$KzNnd6~%nOAEQJ30_HX~Yt+A>oJ$$UMvce~ z@Qcu6XkB7E;CbQ2{iBaNZ`dLE6>Y<0i2zzLP(z6FDVe}#F^I?$^n03B1uL=vtp;%; z9bg~0q1w0+oL%v+Xl@0#d(^GOKWOtgmc_b=POFGsWu!p#1{D*C1)@K}QV;)I?JV8= zs6Mak7m45YFoT;*O-;Bq3sB`V{w8z~Iuuv$GZxtu&$<#Zjr?6AnypUH0uSBh6)Q(2!g!CeRPO!*aKi5>F__}-$N&% zA5f2s(0nrd%UBPCbGjsL^G{^4P6v5c5tTVcBAwORKt3kF7{3+O9_hdodC-n@{|f7o zTlgM%#kAh+BpmKtSSS8_cxHpC|1X#8f!K(r$!K)AXH-}|QBaA(Rys_glAk1Z0UZst zi^eMA|A-C&+d(;S|B+CJ{0WWIVTb-RKtVUA3`C(c^kv5)%^0Q;Wc_W&o&MGjz=NSJ zfPGJPBItaI%+5NHSU70;9O70TX@ic@71rJ4Jdy|h57;BHJ;4-WEpi6?C;9_h4n{?; zxH+uGw~&@2`5ZN~hX+`ZTDp&HknPlllgV{PW66cybOu zJ;%?-0Ee~5WBIR_8RsF1{U9qrwoMP@T?j&0zoDSI4l@Ld{(dpOW~lvO-Vo~xt~orr zS!ZP(179I(Cg7g~BWJoV5x(Z&c(hqmkQDQl4>YA?y*V*@p@m(y}<6;cw{Q$B#> zN!+G+fbGF)KkIKm`+_J=W;-?xdyNtP02RynJ;-Tn;RfxdrW&CnvC`xU(sn5LNJjh` zuKQq$W4(yghHn(MGPz7(N1`Irv8&*J6ka%9SCqs$Eq}s%MIXgLqqJt#Q2q8sn@q0tq zUxDFRKXOgU$!zDbBA?Nk1mP1*z}6~Kz@dmz%ddf zai&1@7t=q};^vU%U|oRWe#ibz?lE|82*R+VQgR| zHWS(dP0*b6Aq8hiw!>DVa3AZ<*!|cRG`bDJcyd4Dd!!nRR}9^rh9bqlwZX1oK#_Um z&S?YjM-p$Yxt=udB0=OeSF~`i_}L1;MTi0boK^5vhz3IxLVg+XJPh_gb0ZjNC3uev zV#qU^^Te*;_XM*EjymAeVdulMAKu!i>;2E)3C?9F2La?{Ez+I!OeH%=?u4#uQ1l&* z?2wGZZX>tAU1Hp#CW3r38lF&|Xj{wkfz}G3)03$N;w!42z&3)de8F0zB=JUI4iWFd zI-?%f>#U2R8Hj%aV}RoSVEvN#25__B5qV43YySB#D5Al5s+l%u))&y$%>n<{3 zFOup+ex-5>#}8V!o_HVP!=wlN%VbS#5qV$iIr`RTeTbS?Xbbqp>Wnm)VwO3uR zEXx|5SnL9n1YngmJw;{|6_<#G(=4kNh1gbI@UyO_#Y@`VBijbl5d5C3e}rWVY>D_b z^1Ja{pg9?}HGXYWq%8ggaO>T!QH!o4SVx2HNjw*v#aP$WyvM8{*Vz3BdEKEzMiXg= zPK7iF4JJ{175^1rkvqgEFi;l=TcREr&X(Gsg>WY`iGRkoWBX}WGnfp-+A?8PYExMEO2u8AyvRqo&qb$#>5+yHeVxH+igOz9 zYyevz-C_&5R50WcV~CW6suPIR(ww%HXf-BPu;}h_mpTRKPe_W4w?srGB*sVe8JZXs z8)NAg8*hn=kL?p3Ie7Q=k8`t|`a1e&HMRH67@HIm9UC5D=@%6p>G02E3eIESo7+?{ zz|v=grEhdp-$79^{Vjm?BK(u$CbhITVHqjCj**7vFAv``R z+EpGs!jW#Nsa3B0HNq_e;v@UjEc`{};P9yE(S>X2qDHy!T8^H(OgVEo)}J*E4s--O zH=R$D#l0svRB_SaBNFV#{7nxFgfT_G*y!lkB-y({`bWk@#)l_HCfGmaHVw;L*7!eB zGN64-fT_NzvHe1Tsia?cOoT;`QiL9A$F-LxUoS`C8&j2d; z1XrtAB`7#FI5>Tq)Ru;0i(I!G(gW7Fw}vm5L!%%7;3_ z7JHTH;**f%Opdo_KIR=@KQz=kzhm@EuU&!M(82!Z_{{eE#m$9GDfT(vc;|HVDrIgP zVxLmnT&keOxx#ta;@lAJ-0s{k$hqBhYdg0mNc>P@qP~Fv&x_1`90xCWkMUwM^EfZpUEtJG zb68VH$YXO*b!*}PCbh&nljEEzu6u!Vtqid?F3y?kTpMp;3~qP$6G^OyX3-CzC24>R zDR&8Hast74=OJ?3Eu7ose&I~vjsd|2VhPX?RaR_Si+i|hv#!mv_v~RV?&w;`yK5=? z-9p~!vi|qpVxKd?r-HrrJ9AdY+veVrOFAA5^)6c9UgnT@dPl%P?=u;5xDJjpCB_oL z5r~VH`4b$Qikh7!`_&dc8A^u9^b8#x?Mz`jj;i~3N=bibGGoR&*K*_%?72#qSJ)R- zGUvDV&Tg(17|0##|1Wjz)b3Z(+?hLAQb}{QJkGV;!`SlL80nDAJSqH-cBVMj+T$X; y`#LV1;jeo*>R\n" "MIME-Version: 1.0\n" @@ -1321,10 +1321,10 @@ msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py msgid "" "Can't receive transcripts from Youtube for {youtube_id}. Status code: " -"{statuc_code}." +"{status_code}." msgstr "" "Çän't réçéïvé tränsçrïpts fröm Ýöütüßé för {youtube_id}. Stätüs çödé: " -"{statuc_code}. Ⱡ'σяєм ιρѕυм ∂σłσя #" +"{status_code}. Ⱡ'σяєм ιρѕυм ∂σłσя #" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py msgid "Can't find any transcripts on the Youtube service." @@ -4213,14 +4213,6 @@ msgstr "Prïväçý Pölïçý Ⱡ'#" msgid "Help" msgstr "Hélp Ⱡ'σяєм#" -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "Visual" -msgstr "Vïsüäl Ⱡ'σяєм ιρѕ#" - -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "HTML" -msgstr "HTML Ⱡ'σяєм#" - #: common/templates/course_modes/choose.html msgid "Upgrade Your Registration for {} | Choose Your Track" msgstr "Ûpgrädé Ýöür Régïsträtïön för {} | Çhöösé Ýöür Träçk Ⱡ'σяєм ιρѕυм ∂σ#" @@ -6944,8 +6936,8 @@ msgid "Students" msgstr "Stüdénts #" #: lms/templates/courseware/instructor_dashboard.html -msgid "Answer distribution for problems" -msgstr "Ànswér dïstrïßütïön för prößléms Ⱡ'σяєм ι#" +msgid "Score distribution for problems" +msgstr "Sçöré dïstrïßütïön för prößléms Ⱡ'σяєм ι#" #: lms/templates/courseware/instructor_dashboard.html #: lms/templates/courseware/instructor_dashboard.html @@ -7913,8 +7905,8 @@ msgid "Skip" msgstr "Skïp Ⱡ'σяєм#" #: lms/templates/instructor/instructor_dashboard_2/analytics.html -msgid "Grade Distribution" -msgstr "Grädé Dïstrïßütïön Ⱡ'σ#" +msgid "Score Distribution" +msgstr "Sçöré Dïstrïßütïön Ⱡ'σ#" #: lms/templates/instructor/instructor_dashboard_2/analytics.html msgid "" @@ -7999,12 +7991,12 @@ msgstr "Çöürsé Wärnïngs Ⱡ'#" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button generates a CSV file of all students enrolled in this " -"course, along with profile information such as email address and username." +"Click to generate a CSV file of all students enrolled in this course, along " +"with profile information such as email address and username:" msgstr "" -"Thé föllöwïng ßüttön générätés ä ÇSV fïlé öf äll stüdénts énrölléd ïn thïs " -"çöürsé, älöng wïth pröfïlé ïnförmätïön süçh äs émäïl äddréss änd üsérnämé. " -"Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє¢тєтυя α∂ιριѕ#" +"Çlïçk tö généräté ä ÇSV fïlé öf äll stüdénts énrölléd ïn thïs çöürsé, älöng " +"wïth pröfïlé ïnförmätïön süçh äs émäïl äddréss änd üsérnämé: Ⱡ'σяєм ιρѕυм " +"∂σłσя ѕιт αмєт, ¢σηѕє¢тєтυя α#" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "Download profile information as a CSV" @@ -8012,10 +8004,10 @@ msgstr "Döwnlöäd pröfïlé ïnförmätïön äs ä ÇSV Ⱡ'σяєм ιρѕ# #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"For smaller courses, profile information for enrolled students can be listed" +"For smaller courses, click to list profile information for enrolled students" " directly on this page:" msgstr "" -"För smällér çöürsés, pröfïlé ïnförmätïön för énrölléd stüdénts çän ßé lïstéd" +"För smällér çöürsés, çlïçk tö lïst pröfïlé ïnförmätïön för énrölléd stüdénts" " dïréçtlý ön thïs pägé: Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢#" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -8024,26 +8016,24 @@ msgstr "Lïst énrölléd stüdénts' pröfïlé ïnförmätïön Ⱡ'σяєм #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button displays the grading configuration for the course. The " -"grading configuration is the breakdown of graded subsections of the course " -"(such as exams and problem sets), and can be changed on the 'Grading' page " -"(under 'Settings') in Studio." +"Click to display the grading configuration for the course. The grading " +"configuration is the breakdown of graded subsections of the course (such as " +"exams and problem sets), and can be changed on the 'Grading' page (under " +"'Settings') in Studio." msgstr "" -"Thé föllöwïng ßüttön dïspläýs thé grädïng çönfïgürätïön för thé çöürsé. Thé " -"grädïng çönfïgürätïön ïs thé ßréäkdöwn öf grädéd süßséçtïöns öf thé çöürsé " -"(süçh äs éxäms änd prößlém séts), änd çän ßé çhängéd ön thé 'Grädïng' pägé " -"(ündér 'Séttïngs') ïn Stüdïö. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє¢тєтυя " -"α∂ιριѕι¢ιηg єłιт, ѕє∂ ∂σ єιυѕмσ∂ тємρσя ι#" +"Çlïçk tö dïspläý thé grädïng çönfïgürätïön för thé çöürsé. Thé grädïng " +"çönfïgürätïön ïs thé ßréäkdöwn öf grädéd süßséçtïöns öf thé çöürsé (süçh äs " +"éxäms änd prößlém séts), änd çän ßé çhängéd ön thé 'Grädïng' pägé (ündér " +"'Séttïngs') ïn Stüdïö. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє¢тєтυя α∂ιριѕι¢ιηg " +"єłιт, ѕє∂ ∂σ єιυѕмσ∂ тєм#" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "Grading Configuration" msgstr "Grädïng Çönfïgürätïön Ⱡ'σя#" #: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "Download a CSV of anonymized student IDs by clicking this button." -msgstr "" -"Döwnlöäd ä ÇSV öf änönýmïzéd stüdént ÌDs ßý çlïçkïng thïs ßüttön. Ⱡ'σяєм " -"ιρѕυм ∂σłσя #" +msgid "Click to download a CSV of anonymized student IDs:" +msgstr "Çlïçk tö döwnlöäd ä ÇSV öf änönýmïzéd stüdént ÌDs: Ⱡ'σяєм ιρѕυм ∂#" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "Get Student Anonymized IDs CSV" @@ -8055,13 +8045,13 @@ msgstr "Répörts #" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button will generate a CSV grade report for all currently " -"enrolled students. Generated reports appear in a table below and can be " -"downloaded." +"Click to generate a CSV grade report for all currently enrolled students. " +"Links to generated reports appear in a table below when report generation is" +" complete." msgstr "" -"Thé föllöwïng ßüttön wïll généräté ä ÇSV grädé répört för äll çürréntlý " -"énrölléd stüdénts. Générätéd répörts äppéär ïn ä täßlé ßélöw änd çän ßé " -"döwnlöädéd. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє¢тєтυя α∂ιριѕι¢#" +"Çlïçk tö généräté ä ÇSV grädé répört för äll çürréntlý énrölléd stüdénts. " +"Lïnks tö générätéd répörts äppéär ïn ä täßlé ßélöw whén répört générätïön ïs" +" çömplété. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє¢тєтυя α∂ιριѕι¢ιη#" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" @@ -8093,33 +8083,31 @@ msgstr "Répörts Àväïläßlé för Döwnlöäd Ⱡ'σяєм #" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Grade reports listed below are generated each time the Generate Grade " -"Report button is clicked. A link to each grade report remains available " -"on this page, identified by the UTC date and time of generation. Grade " +"The grade reports listed below are generated each time the Generate Grade" +" Report button is clicked. A link to each grade report remains available" +" on this page, identified by the UTC date and time of generation. Grade " "reports are not deleted, so you will always be able to access previously " "generated reports from this page." msgstr "" -"Grädé répörts lïstéd ßélöw äré générätéd éäçh tïmé thé Généräté Grädé " -"Répört ßüttön ïs çlïçkéd. À lïnk tö éäçh grädé répört rémäïns äväïläßlé " -"ön thïs pägé, ïdéntïfïéd ßý thé ÛTÇ däté änd tïmé öf générätïön. Grädé " +"Thé grädé répörts lïstéd ßélöw äré générätéd éäçh tïmé thé Généräté Grädé" +" Répört ßüttön ïs çlïçkéd. À lïnk tö éäçh grädé répört rémäïns äväïläßlé" +" ön thïs pägé, ïdéntïfïéd ßý thé ÛTÇ däté änd tïmé öf générätïön. Grädé " "répörts äré nöt délétéd, sö ýöü wïll älwäýs ßé äßlé tö äççéss prévïöüslý " "générätéd répörts fröm thïs pägé. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє¢тєтυя " -"α∂ιριѕι¢ιηg єłιт, ѕє∂ ∂σ єιυѕмσ∂ тємρσя ιη¢ι∂ι∂υηт υт łαвσяє єт #" +"α∂ιριѕι¢ιηg єłιт, ѕє∂ ∂σ єιυѕмσ∂ тємρσя ιη¢ι∂ι∂υηт υт łαвσяє єт ∂#" -#. Translators: "these rules" in this sentence references a detailed -#. description of the grading reports that will appear in a table that -#. contains -#. a mix of different types of reports. This sentence intends to indicate -#. that -#. the description of the grading report does not apply to the other reports -#. that may appear in the table. #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Other reports may appear in the table for which these rules will not " -"necessarily apply." +"The answer distribution report listed below is generated periodically by an " +"automated background process. The report is cumulative, so answers submitted" +" after the process starts are included in a subsequent report. The report is" +" generated several times per day." msgstr "" -"Öthér répörts mäý äppéär ïn thé täßlé för whïçh thésé rülés wïll nöt " -"néçéssärïlý äpplý. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмє#" +"Thé änswér dïstrïßütïön répört lïstéd ßélöw ïs générätéd pérïödïçällý ßý än " +"äütömätéd ßäçkgröünd pröçéss. Thé répört ïs çümülätïvé, sö änswérs süßmïttéd" +" äftér thé pröçéss stärts äré ïnçlüdéd ïn ä süßséqüént répört. Thé répört ïs" +" générätéd sévéräl tïmés pér däý. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє¢тєтυя " +"α∂ιριѕι¢ιηg єłιт, ѕє∂ ∂σ єιυѕмσ∂ тємρσя ιη¢#" #. Translators: a table of URL links to report files appears after this #. sentence. @@ -9311,11 +9299,10 @@ msgstr "" #: lms/templates/static_templates/server-error.html msgid "" "Please wait a few seconds and then reload the page. If the problem persists," -" please email us at {email}." +" please email us at {email}." msgstr "" "Pléäsé wäït ä féw séçönds änd thén rélöäd thé pägé. Ìf thé prößlém pérsïsts," -" pléäsé émäïl üs ät {email}. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт " -"αмєт, ¢ση#" +" pléäsé émäïl üs ät {email}. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σ#" #: lms/templates/static_templates/server-overloaded.html msgid "Currently the {platform_name} servers are overloaded" @@ -10521,6 +10508,10 @@ msgstr "Çöntént #" msgid "Page Actions" msgstr "Pägé Àçtïöns Ⱡ#" +#: cms/templates/asset_index.html +msgid "Loading…" +msgstr "Löädïng… Ⱡ#" + #: cms/templates/asset_index.html msgid "What files are listed here?" msgstr "Whät fïlés äré lïstéd héré? Ⱡ'σяєм#" diff --git a/conf/locale/eo/LC_MESSAGES/djangojs.mo b/conf/locale/eo/LC_MESSAGES/djangojs.mo index dddffc6a1e2cd1f51c77cf5684d7fda527956d0d..9dc59adf11fb1af55dd2f78da07b3cec2813ccb2 100644 GIT binary patch delta 7976 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 A7XSbN delta 7361 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 diff --git a/conf/locale/eo/LC_MESSAGES/djangojs.po b/conf/locale/eo/LC_MESSAGES/djangojs.po index ce98b5becc..c978e0ec71 100644 --- a/conf/locale/eo/LC_MESSAGES/djangojs.po +++ b/conf/locale/eo/LC_MESSAGES/djangojs.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: 0.1a\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:57-0400\n" -"PO-Revision-Date: 2014-03-24 14:58:46.326786\n" +"POT-Creation-Date: 2014-03-25 10:43-0400\n" +"PO-Revision-Date: 2014-03-25 14:44:32.725277\n" "Last-Translator: \n" "Language-Team: openedx-translation \n" "MIME-Version: 1.0\n" @@ -846,8 +846,8 @@ msgid "Error generating grades. Please try again." msgstr "Érrör générätïng grädés. Pléäsé trý ägäïn. Ⱡ'σяєм ιρѕυ#" #: lms/static/coffee/src/instructor_dashboard/data_download.js -msgid "File Name (Newest First)" -msgstr "Fïlé Nämé (Néwést Fïrst) Ⱡ'σяє#" +msgid "File Name" +msgstr "Fïlé Nämé #" #: lms/static/coffee/src/instructor_dashboard/data_download.js msgid "" @@ -888,6 +888,28 @@ msgstr "Érrör fétçhïng lïst för rölé Ⱡ'σяєм #" msgid "Error changing user's permissions." msgstr "Érrör çhängïng üsér's pérmïssïöns. Ⱡ'σяєм ιρ#" +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Could not find a user with username or email address '<%= identifier %>'." +msgstr "" +"Çöüld nöt fïnd ä üsér wïth üsérnämé ör émäïl äddréss '<%= identifier %>'. " +"Ⱡ'σяєм ιρѕυм ∂σłσ#" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Error: User '<%= username %>' has not yet activated their account. Users " +"must create and activate their accounts before they can be assigned a role." +msgstr "" +"Érrör: Ûsér '<%= username %>' häs nöt ýét äçtïvätéd théïr äççöünt. Ûsérs " +"müst çréäté änd äçtïväté théïr äççöünts ßéföré théý çän ßé ässïgnéd ä rölé. " +"Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє¢тєтυя α#" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Error: You cannot remove yourself from the Instructor group!" +msgstr "" +"Érrör: Ýöü çännöt rémövé ýöürsélf fröm thé Ìnstrüçtör gröüp! Ⱡ'σяєм ιρѕυм " +"∂σłσ#" + #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error adding/removing users as beta testers." msgstr "Érrör äddïng/rémövïng üsérs äs ßétä téstérs. Ⱡ'σяєм ιρѕυм#" diff --git a/conf/locale/es_419/LC_MESSAGES/django.mo b/conf/locale/es_419/LC_MESSAGES/django.mo index 8b619badcd31538006e0af758ac2ceee84242805..33acee9f1953f70c0d14c48017805a4d404795fb 100644 GIT binary patch delta 49684 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ν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 delta 50671 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\n" "Language-Team: Spanish (Latin America) (http://www.transifex.com/projects/p/edx-platform/language/es_419/)\n" @@ -1369,10 +1369,8 @@ msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py msgid "" "Can't receive transcripts from Youtube for {youtube_id}. Status code: " -"{statuc_code}." +"{status_code}." msgstr "" -"No se han podido recibir las transcripciones de Youtube para {youtube_id}. " -"Código del estado del proceso: {statuc_code}." #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py msgid "Can't find any transcripts on the Youtube service." @@ -4169,14 +4167,6 @@ msgstr "Política de privacidad" msgid "Help" msgstr "Ayuda" -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "Visual" -msgstr "Visual" - -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "HTML" -msgstr "HTML" - #: common/templates/course_modes/choose.html msgid "Upgrade Your Registration for {} | Choose Your Track" msgstr "Actualice su registro para {} | Elija su ruta" @@ -6854,8 +6844,8 @@ msgid "Students" msgstr "Estudiantes" #: lms/templates/courseware/instructor_dashboard.html -msgid "Answer distribution for problems" -msgstr "Distribución de respuestas a los problemas" +msgid "Score distribution for problems" +msgstr "" #: lms/templates/courseware/instructor_dashboard.html #: lms/templates/courseware/instructor_dashboard.html @@ -7811,8 +7801,8 @@ msgid "Skip" msgstr "Omitir" #: lms/templates/instructor/instructor_dashboard_2/analytics.html -msgid "Grade Distribution" -msgstr "Distribución de calificaciones" +msgid "Score Distribution" +msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html msgid "" @@ -7891,8 +7881,8 @@ msgstr "Advertencias del curso" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button generates a CSV file of all students enrolled in this " -"course, along with profile information such as email address and username." +"Click to generate a CSV file of all students enrolled in this course, along " +"with profile information such as email address and username:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7901,7 +7891,7 @@ msgstr "Descargar la informaicón de perfíl como archivo CSV" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"For smaller courses, profile information for enrolled students can be listed" +"For smaller courses, click to list profile information for enrolled students" " directly on this page:" msgstr "" @@ -7911,10 +7901,10 @@ msgstr "Listar la información de perfil de los estudiantes inscritos" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button displays the grading configuration for the course. The " -"grading configuration is the breakdown of graded subsections of the course " -"(such as exams and problem sets), and can be changed on the 'Grading' page " -"(under 'Settings') in Studio." +"Click to display the grading configuration for the course. The grading " +"configuration is the breakdown of graded subsections of the course (such as " +"exams and problem sets), and can be changed on the 'Grading' page (under " +"'Settings') in Studio." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7922,10 +7912,8 @@ msgid "Grading Configuration" msgstr "Configuración de calificaciones" #: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "Download a CSV of anonymized student IDs by clicking this button." +msgid "Click to download a CSV of anonymized student IDs:" msgstr "" -"Descargue un archivo CSV con la información de los estudiantes en forma " -"anónima haciendo clic en este botón." #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "Get Student Anonymized IDs CSV" @@ -7939,14 +7927,10 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button will generate a CSV grade report for all currently " -"enrolled students. Generated reports appear in a table below and can be " -"downloaded." +"Click to generate a CSV grade report for all currently enrolled students. " +"Links to generated reports appear in a table below when report generation is" +" complete." msgstr "" -"El siguiente botón generará un reporte de calificaciones en un archivo CSV " -"para todos los estudiantes actualmente inscritos. Los reportes generados " -"aparecen en la tabla a continuación y pueden ser descargados al equipo " -"local." #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" @@ -7977,24 +7961,19 @@ msgstr "Reportes disponibles para descargar" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Grade reports listed below are generated each time the Generate Grade " -"Report button is clicked. A link to each grade report remains available " -"on this page, identified by the UTC date and time of generation. Grade " +"The grade reports listed below are generated each time the Generate Grade" +" Report button is clicked. A link to each grade report remains available" +" on this page, identified by the UTC date and time of generation. Grade " "reports are not deleted, so you will always be able to access previously " "generated reports from this page." msgstr "" -#. Translators: "these rules" in this sentence references a detailed -#. description of the grading reports that will appear in a table that -#. contains -#. a mix of different types of reports. This sentence intends to indicate -#. that -#. the description of the grading report does not apply to the other reports -#. that may appear in the table. #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Other reports may appear in the table for which these rules will not " -"necessarily apply." +"The answer distribution report listed below is generated periodically by an " +"automated background process. The report is cumulative, so answers submitted" +" after the process starts are included in a subsequent report. The report is" +" generated several times per day." msgstr "" #. Translators: a table of URL links to report files appears after this @@ -9131,10 +9110,8 @@ msgstr "" #: lms/templates/static_templates/server-error.html msgid "" "Please wait a few seconds and then reload the page. If the problem persists," -" please email us at {email}." +" please email us at {email}." msgstr "" -"Por favor espere unos segundos y vuelva a cargar la página. Si el problema " -"persiste, por favor envíenos un email a {email}." #: lms/templates/static_templates/server-overloaded.html msgid "Currently the {platform_name} servers are overloaded" @@ -10318,6 +10295,10 @@ msgstr "Contenido" msgid "Page Actions" msgstr "Acciones de página" +#: cms/templates/asset_index.html +msgid "Loading…" +msgstr "" + #: cms/templates/asset_index.html msgid "What files are listed here?" msgstr "¿Cuales archivos se listan aquí?" diff --git a/conf/locale/es_419/LC_MESSAGES/djangojs.mo b/conf/locale/es_419/LC_MESSAGES/djangojs.mo index 9c2a7cd669dbf5121596477c736fbf0e4e762077..0b543cb45d3c061c116713eda360b9c5d93a9439 100644 GIT binary patch delta 6232 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 B!H56= delta 6337 zcmZA53w+Pz0>|-Z!!C^3#bUGVKa5S;#dXbPW4YuqEK>`$VHk!si->=6qKV2{DKR<9 zI48F#p@fng-P4hTIw(rg;n0Pg&v(zW^XheeufBUf&-4HNf4}GU`)&H*n$NcDKHd|d zb)PmI9v@?xWAi{`9#J_|t;VD@HKrq`Viz2T=~#s^cobXUFV3iD##B)6fwS-vY=i?N zjS0sQs7p`7#>RNfdc|*I*$PXr9rriOC=8-uKeolNXk(JF2i}6k*bkTEIy{9zxR~MV#?PTYzKpu@ zHmr{aF$@o5Lp+NScm)HnVJrjU{w9J#XN*SvGsF0y8JUjy;%w9f%aPSFmB@dliXW|U zH|oM?P$RsC^{|1*8iGuhn+?S&R(YJcTT?*@Bwd zf1u6}kFymn2)5v4-M3>Kx~D=v8Z@$zn2Tk2 z0S}=z%gzKl(vzqeIgiPB$<mqIWND^P3w zvio2sszZlRo9r}d3a_Hh_hWk0(Fjb%$ry-LsPosk`YzM}_M^V{J!%j9h8nmx_-4EI zEm3QngzDiytb;?b3Fe|kG6@5)6mP=^kx4Rpk<~KiP!|s3(a{WeP}ghiycz3LPeHEl zHC-vF#~G+yoP)ktgp+YH>H`y%dC*vZdZ{{lU zfS8s^nmN`#ivqJ@%1|SD0X35MunK=bP3@v&I|G#%M12KnCf1{t>J`+;4`D+*>HHDZ z!QW9G_D!+pHN=K`JmM(mLdh76X{gQA4>NEsYH4<(Zu}MMg6FUiUc^$oftsmOHbi5b ziMn1nszcA=2CT-KC2i0A>jsl3XiEQ%uj3ZfNG39$Y;ZFdb;D{5!HuY;+JpIc1a;xG zj`nf<7SpId&M25Xa{x8#{%V&;bPpr>xnr=7{dto_hiQdOd zyoy?)H10ytjKG=~6joB-f=jW_t-NIL3uN}qAGidQcnfL3Z=^H-n)-b-Xk>?+$5B)G z6RLyy!R(rDs1X#SE<79c;#!T`BfC)7+m8+KL(~#|iCVgIsF}Qi8sK#=h3*v6sZlgD zu?KELwO_)1m`bG#XQ4j7h_RSVMI9fEkywE0$b+~T7vORXW1TfK8&OlAmC5e|^lqb| zk-d*i@j9}cCW3W{!TuPHMaXx}LR^FgP*a-2`s~JsF$#NT+4DzX9QE1Q3RmLoxDV-* z3A(Lj3A|kJC=nF5mC`9Cf`js1Et|w(pl1 z^rfDPTAGenPtSj*Yv_ZzU=G&BQK(%z8tdTWc*cicHpo6TGyB@jxCv=87g00Tnf21< z%*9qZ548j<@li};8nn0eVmS9VpHk2WzH=X3MSto6{q4KDF=kSaM=ilP48*n0&8SVa z6Pw^(jKCwvDwzweJ!OC~L#X$`g}4m8p%h{V+ULAIYVAkh9ry(D$eL5gE5S4yWS{GS zNFU83_!@qM4RJxXeHtoJ9omSRkykMQ52H5ganua_l+FCB!3?%jABs9L8re^#HEJ!3 zumLW>FswjbV6AgICQyG5lkjKspoihcVo$7x1*ndVM-6<+5az!zg?TjSMir>3+l2M; zUDS!6U?V(@y1*rDjlW?_j2p^6!QQBju0!2;8)_3CMh)yDR^YFw8C&elvA?C3V`Cc5 zU?^U}b{NPyY{4$5O?D0wF?pDM4D)ag_0!k~U&^&havrsGYlhp79>q7Qn>+1h+>Ps~ zdh_nG&#P~qodFMO2D)QB4#Rw$g-zN0$1s`t<-6@>Yc;}d)^zMjdoR??%|&&n+|@tE zAnM0l{VcMSUUP|pcDw&byW4|NGtde(BVAB$wtm54}Sj?-)>)$jQ zWtXfk>IF6&wKUT)6(7P-J^!yz(1rJ-2T!6-H22sU2|~RO5}iq?P1XU`@zJOePehj0 zlwk)vfLf~GQP+>Z*IqXR{iqMXK<;mHC}=Z`MD5avs1Z&>y`vYRZnO%Yz-rWaUGnYY z)E#xf!5EIiQRh!WPBo>d4t|C_dFBL8!FC1AzaFy{6w>h|vTsZzTe&?>Lycq&rr;6W zfdOOei1wk@^ebd7%{kOAzm9R}H`Wd$0kuRK*aU~5&KozD`Pay&(x54tgCV#K^@dxI z`r=mPkv8uj8`*>x+8azl?SUnz^H-w2UyaY=4%AHKjI$lQ8@0ElpsqV_oR{C(6e?(l z!R+yN4U18G;4S6r^ zpk{J42H+m&LDWD$MP27>WRG~wWeWZ@M3nMKU<@*AW+D#4!^rBG7SrwL<)}UIIr3F= z3-dh?S79ukM=eRv{k9{~SeJS?+=e}IEndORdj3~3@3Uygo@rk+2QiEKY19-ZJYe5! z12CTYLez~mpw9aM*JB75X^*?`GG4$aJT=>H)*I-d9`~UAW49OPa(^?Gf<~|(H4~w8 z?2RKalzMm6E+2v#Sw4o~eW)p(?>=AbK40P7fKB;)H@3wiPT#rqy6w>G!v~oZv^Kpk z2#26hMO?3<^;9cLre59sYCm9*Or6#kax+`^D(~d%Jc9j(KD{6LCe>dEGMVQi{v%3i|F{k zQu7;9MQ=1WexAZqvW|RDbgUq)NL`}6q2nZ}swvsGTm|JPUA+hXNIWEwEG0VPh&JmK zRorpS$>6=_Qz{op7uQ(dS<6*dc+aV4cQXm5t&NNyA{*cn4OKzmR{CCgdkFh}=SS+(+K3 zDe=cA_9p(SbN`yZ#Z^9}9~@mRHP8AMSFU9ag$u3{L+4Jo@^knMX-S&X{tJFd^q9Uu zVrjdA{CfG{@hm0p9)6^f-$^CWahT-Rl=y!FIGTJ-UM982N>_-%_g%Rg7P+!s<*!}!}$SWJBA;dgiw)*hd@!Vzpl8jyUV<4zLtr*oH4->VPY5zc2j zDE~pi{&e0*>cQkVvGWhFkapyC@+&z;z98A;1)?LG_;R7yIE4H_9v~e^?QzK!{)Ugc zas=OL;yMt7g|tVydd>Pbqf(c|yD#`k>gS*hxtXjX<)nc4k>+G3(VyfCa3ZNa>QSgi zdzNb$hPS$MAH3np2Qj|^C+g@#GReI}$5^tP%pm_J5hRM#9up`mA+fa$_!!wh0?A!u zD0ymV--xX-O{0RtvI~j}Jqg)`GYU(md-@cWlul3F+M&%eG5#GrsVV6xowt76J1Z\n" "Language-Team: Spanish (Latin America) (http://www.transifex.com/projects/p/edx-platform/language/es_419/)\n" @@ -866,8 +866,8 @@ msgid "Error generating grades. Please try again." msgstr "Error al generar las calificaciones. Por favor inténtelo nuevamente." #: lms/static/coffee/src/instructor_dashboard/data_download.js -msgid "File Name (Newest First)" -msgstr "Nombre de archivo (Más nuevo arriba)" +msgid "File Name" +msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js msgid "" @@ -906,6 +906,21 @@ msgstr "" msgid "Error changing user's permissions." msgstr "" +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Could not find a user with username or email address '<%= identifier %>'." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Error: User '<%= username %>' has not yet activated their account. Users " +"must create and activate their accounts before they can be assigned a role." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Error: You cannot remove yourself from the Instructor group!" +msgstr "" + #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error adding/removing users as beta testers." msgstr "" diff --git a/conf/locale/es_AR/LC_MESSAGES/django.mo b/conf/locale/es_AR/LC_MESSAGES/django.mo index 36d75f03a98699932c6269826d1313da9372fd0d..e901f92c5c010819fec0e3172e59d2a8b420e184 100644 GIT binary patch delta 18 ZcmZ3?vY2JUMs`yLLjx-#i;X+7838xO1;zjX delta 18 ZcmZ3?vY2JUMs^bgLjx-VvyD5l838w?1;GFS diff --git a/conf/locale/es_AR/LC_MESSAGES/django.po b/conf/locale/es_AR/LC_MESSAGES/django.po index de6834c5e1..618be04764 100644 --- a/conf/locale/es_AR/LC_MESSAGES/django.po +++ b/conf/locale/es_AR/LC_MESSAGES/django.po @@ -41,7 +41,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" +"POT-Creation-Date: 2014-03-25 10:28-0400\n" "PO-Revision-Date: 2014-03-15 17:20+0000\n" "Last-Translator: sarina \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/edx-platform/language/es_AR/)\n" @@ -1241,7 +1241,7 @@ msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py msgid "" "Can't receive transcripts from Youtube for {youtube_id}. Status code: " -"{statuc_code}." +"{status_code}." msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py @@ -3766,14 +3766,6 @@ msgstr "" msgid "Help" msgstr "" -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "Visual" -msgstr "" - -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "HTML" -msgstr "" - #: common/templates/course_modes/choose.html msgid "Upgrade Your Registration for {} | Choose Your Track" msgstr "" @@ -6197,7 +6189,7 @@ msgid "Students" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -msgid "Answer distribution for problems" +msgid "Score distribution for problems" msgstr "" #: lms/templates/courseware/instructor_dashboard.html @@ -7093,7 +7085,7 @@ msgid "Skip" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html -msgid "Grade Distribution" +msgid "Score Distribution" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html @@ -7170,8 +7162,8 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button generates a CSV file of all students enrolled in this " -"course, along with profile information such as email address and username." +"Click to generate a CSV file of all students enrolled in this course, along " +"with profile information such as email address and username:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7180,7 +7172,7 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"For smaller courses, profile information for enrolled students can be listed" +"For smaller courses, click to list profile information for enrolled students" " directly on this page:" msgstr "" @@ -7190,10 +7182,10 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button displays the grading configuration for the course. The " -"grading configuration is the breakdown of graded subsections of the course " -"(such as exams and problem sets), and can be changed on the 'Grading' page " -"(under 'Settings') in Studio." +"Click to display the grading configuration for the course. The grading " +"configuration is the breakdown of graded subsections of the course (such as " +"exams and problem sets), and can be changed on the 'Grading' page (under " +"'Settings') in Studio." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7201,7 +7193,7 @@ msgid "Grading Configuration" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "Download a CSV of anonymized student IDs by clicking this button." +msgid "Click to download a CSV of anonymized student IDs:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7214,9 +7206,9 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button will generate a CSV grade report for all currently " -"enrolled students. Generated reports appear in a table below and can be " -"downloaded." +"Click to generate a CSV grade report for all currently enrolled students. " +"Links to generated reports appear in a table below when report generation is" +" complete." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7242,24 +7234,19 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Grade reports listed below are generated each time the Generate Grade " -"Report button is clicked. A link to each grade report remains available " -"on this page, identified by the UTC date and time of generation. Grade " +"The grade reports listed below are generated each time the Generate Grade" +" Report button is clicked. A link to each grade report remains available" +" on this page, identified by the UTC date and time of generation. Grade " "reports are not deleted, so you will always be able to access previously " "generated reports from this page." msgstr "" -#. Translators: "these rules" in this sentence references a detailed -#. description of the grading reports that will appear in a table that -#. contains -#. a mix of different types of reports. This sentence intends to indicate -#. that -#. the description of the grading report does not apply to the other reports -#. that may appear in the table. #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Other reports may appear in the table for which these rules will not " -"necessarily apply." +"The answer distribution report listed below is generated periodically by an " +"automated background process. The report is cumulative, so answers submitted" +" after the process starts are included in a subsequent report. The report is" +" generated several times per day." msgstr "" #. Translators: a table of URL links to report files appears after this @@ -8278,7 +8265,7 @@ msgstr "" #: lms/templates/static_templates/server-error.html msgid "" "Please wait a few seconds and then reload the page. If the problem persists," -" please email us at {email}." +" please email us at {email}." msgstr "" #: lms/templates/static_templates/server-overloaded.html @@ -9306,6 +9293,10 @@ msgstr "" msgid "Page Actions" msgstr "" +#: cms/templates/asset_index.html +msgid "Loading…" +msgstr "" + #: cms/templates/asset_index.html msgid "What files are listed here?" msgstr "" diff --git a/conf/locale/es_AR/LC_MESSAGES/djangojs.mo b/conf/locale/es_AR/LC_MESSAGES/djangojs.mo index 86602d693bd0f86e2c6c7bf2a77cda92a2136ed1..8c145fdc0d946a7a688596a56e2942fe8b60e0fc 100644 GIT binary patch delta 18 ZcmeBX>1LU*k=<0m(7?*beB+K_MgTNn1$_Vj delta 18 ZcmeBX>1LU*k=;bW(7?*TY~zk#MgTNL1$h7f diff --git a/conf/locale/es_AR/LC_MESSAGES/djangojs.po b/conf/locale/es_AR/LC_MESSAGES/djangojs.po index 230cf1a081..b033426eef 100644 --- a/conf/locale/es_AR/LC_MESSAGES/djangojs.po +++ b/conf/locale/es_AR/LC_MESSAGES/djangojs.po @@ -5,6 +5,7 @@ # # Translators: # Aylén , 2014 +# mauriciospesot , 2014 # #-#-#-#-# djangojs-studio.po (edx-platform) #-#-#-#-# # edX translation file. # Copyright (C) 2014 EdX @@ -15,7 +16,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" +"POT-Creation-Date: 2014-03-25 10:27-0400\n" "PO-Revision-Date: 2014-03-19 20:22+0000\n" "Last-Translator: sarina \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/edx-platform/language/es_AR/)\n" @@ -790,7 +791,7 @@ msgid "Error generating grades. Please try again." msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js -msgid "File Name (Newest First)" +msgid "File Name" msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js @@ -830,6 +831,21 @@ msgstr "" msgid "Error changing user's permissions." msgstr "" +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Could not find a user with username or email address '<%= identifier %>'." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Error: User '<%= username %>' has not yet activated their account. Users " +"must create and activate their accounts before they can be assigned a role." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Error: You cannot remove yourself from the Instructor group!" +msgstr "" + #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error adding/removing users as beta testers." msgstr "" diff --git a/conf/locale/es_EC/LC_MESSAGES/django.mo b/conf/locale/es_EC/LC_MESSAGES/django.mo index 06369f9da2c5b1c0dd3347df800649982bfc0e92..1e26927a3e9a034b8c2f9a50bf8301ffd5cfe31b 100644 GIT binary patch delta 18 ZcmbQoGLL1#Ms`yLLjx-#i;X+d7y&mD1-AeI delta 18 ZcmbQoGLL1#Ms^bgLjx-VvyD5_7y&l%1+oAD diff --git a/conf/locale/es_EC/LC_MESSAGES/django.po b/conf/locale/es_EC/LC_MESSAGES/django.po index e1364ae3b0..36278a90f8 100644 --- a/conf/locale/es_EC/LC_MESSAGES/django.po +++ b/conf/locale/es_EC/LC_MESSAGES/django.po @@ -52,7 +52,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" +"POT-Creation-Date: 2014-03-25 10:28-0400\n" "PO-Revision-Date: 2014-03-01 16:10+0000\n" "Last-Translator: nedbat \n" "Language-Team: Spanish (Ecuador) (http://www.transifex.com/projects/p/edx-platform/language/es_EC/)\n" @@ -1252,7 +1252,7 @@ msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py msgid "" "Can't receive transcripts from Youtube for {youtube_id}. Status code: " -"{statuc_code}." +"{status_code}." msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py @@ -3777,14 +3777,6 @@ msgstr "" msgid "Help" msgstr "" -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "Visual" -msgstr "" - -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "HTML" -msgstr "" - #: common/templates/course_modes/choose.html msgid "Upgrade Your Registration for {} | Choose Your Track" msgstr "" @@ -6208,7 +6200,7 @@ msgid "Students" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -msgid "Answer distribution for problems" +msgid "Score distribution for problems" msgstr "" #: lms/templates/courseware/instructor_dashboard.html @@ -7104,7 +7096,7 @@ msgid "Skip" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html -msgid "Grade Distribution" +msgid "Score Distribution" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html @@ -7181,8 +7173,8 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button generates a CSV file of all students enrolled in this " -"course, along with profile information such as email address and username." +"Click to generate a CSV file of all students enrolled in this course, along " +"with profile information such as email address and username:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7191,7 +7183,7 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"For smaller courses, profile information for enrolled students can be listed" +"For smaller courses, click to list profile information for enrolled students" " directly on this page:" msgstr "" @@ -7201,10 +7193,10 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button displays the grading configuration for the course. The " -"grading configuration is the breakdown of graded subsections of the course " -"(such as exams and problem sets), and can be changed on the 'Grading' page " -"(under 'Settings') in Studio." +"Click to display the grading configuration for the course. The grading " +"configuration is the breakdown of graded subsections of the course (such as " +"exams and problem sets), and can be changed on the 'Grading' page (under " +"'Settings') in Studio." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7212,7 +7204,7 @@ msgid "Grading Configuration" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "Download a CSV of anonymized student IDs by clicking this button." +msgid "Click to download a CSV of anonymized student IDs:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7225,9 +7217,9 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button will generate a CSV grade report for all currently " -"enrolled students. Generated reports appear in a table below and can be " -"downloaded." +"Click to generate a CSV grade report for all currently enrolled students. " +"Links to generated reports appear in a table below when report generation is" +" complete." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7253,24 +7245,19 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Grade reports listed below are generated each time the Generate Grade " -"Report button is clicked. A link to each grade report remains available " -"on this page, identified by the UTC date and time of generation. Grade " +"The grade reports listed below are generated each time the Generate Grade" +" Report button is clicked. A link to each grade report remains available" +" on this page, identified by the UTC date and time of generation. Grade " "reports are not deleted, so you will always be able to access previously " "generated reports from this page." msgstr "" -#. Translators: "these rules" in this sentence references a detailed -#. description of the grading reports that will appear in a table that -#. contains -#. a mix of different types of reports. This sentence intends to indicate -#. that -#. the description of the grading report does not apply to the other reports -#. that may appear in the table. #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Other reports may appear in the table for which these rules will not " -"necessarily apply." +"The answer distribution report listed below is generated periodically by an " +"automated background process. The report is cumulative, so answers submitted" +" after the process starts are included in a subsequent report. The report is" +" generated several times per day." msgstr "" #. Translators: a table of URL links to report files appears after this @@ -8289,7 +8276,7 @@ msgstr "" #: lms/templates/static_templates/server-error.html msgid "" "Please wait a few seconds and then reload the page. If the problem persists," -" please email us at {email}." +" please email us at {email}." msgstr "" #: lms/templates/static_templates/server-overloaded.html @@ -9317,6 +9304,10 @@ msgstr "" msgid "Page Actions" msgstr "" +#: cms/templates/asset_index.html +msgid "Loading…" +msgstr "" + #: cms/templates/asset_index.html msgid "What files are listed here?" msgstr "" diff --git a/conf/locale/es_EC/LC_MESSAGES/djangojs.mo b/conf/locale/es_EC/LC_MESSAGES/djangojs.mo index a6723c65affa7c69a98d33e2807b15ae5edb9d06..b9cb18ac09886cbf18f0a015e9e455ab0cc91da2 100644 GIT binary patch delta 18 ZcmeBV>13I(k=<0m(7?*beB+KlMgTM!1$O`d delta 18 ZcmeBV>13I(k=;bW(7?*TY~zkVMgTMY1#\n" "Language-Team: Spanish (Ecuador) (http://www.transifex.com/projects/p/edx-platform/language/es_EC/)\n" @@ -789,7 +789,7 @@ msgid "Error generating grades. Please try again." msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js -msgid "File Name (Newest First)" +msgid "File Name" msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js @@ -829,6 +829,21 @@ msgstr "" msgid "Error changing user's permissions." msgstr "" +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Could not find a user with username or email address '<%= identifier %>'." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Error: User '<%= username %>' has not yet activated their account. Users " +"must create and activate their accounts before they can be assigned a role." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Error: You cannot remove yourself from the Instructor group!" +msgstr "" + #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error adding/removing users as beta testers." msgstr "" diff --git a/conf/locale/es_ES/LC_MESSAGES/django.mo b/conf/locale/es_ES/LC_MESSAGES/django.mo index 88b8438975174bd805878a4ef3d9c4eb97ce0397..1dc382d72f18d1d8853d2f7f5bbe94227a1fe52f 100644 GIT binary patch delta 18 ZcmZ3^vYchYMs`yLLjx-#i;X+-838y}1=0Wj delta 18 ZcmZ3^vYchYMs^bgLjx-VvyD6Q838yo1\n" "Language-Team: Spanish (Spain) (http://www.transifex.com/projects/p/edx-platform/language/es_ES/)\n" @@ -1281,7 +1281,7 @@ msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py msgid "" "Can't receive transcripts from Youtube for {youtube_id}. Status code: " -"{statuc_code}." +"{status_code}." msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py @@ -3806,14 +3806,6 @@ msgstr "" msgid "Help" msgstr "" -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "Visual" -msgstr "" - -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "HTML" -msgstr "" - #: common/templates/course_modes/choose.html msgid "Upgrade Your Registration for {} | Choose Your Track" msgstr "" @@ -6237,7 +6229,7 @@ msgid "Students" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -msgid "Answer distribution for problems" +msgid "Score distribution for problems" msgstr "" #: lms/templates/courseware/instructor_dashboard.html @@ -7133,7 +7125,7 @@ msgid "Skip" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html -msgid "Grade Distribution" +msgid "Score Distribution" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html @@ -7210,8 +7202,8 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button generates a CSV file of all students enrolled in this " -"course, along with profile information such as email address and username." +"Click to generate a CSV file of all students enrolled in this course, along " +"with profile information such as email address and username:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7220,7 +7212,7 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"For smaller courses, profile information for enrolled students can be listed" +"For smaller courses, click to list profile information for enrolled students" " directly on this page:" msgstr "" @@ -7230,10 +7222,10 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button displays the grading configuration for the course. The " -"grading configuration is the breakdown of graded subsections of the course " -"(such as exams and problem sets), and can be changed on the 'Grading' page " -"(under 'Settings') in Studio." +"Click to display the grading configuration for the course. The grading " +"configuration is the breakdown of graded subsections of the course (such as " +"exams and problem sets), and can be changed on the 'Grading' page (under " +"'Settings') in Studio." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7241,7 +7233,7 @@ msgid "Grading Configuration" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "Download a CSV of anonymized student IDs by clicking this button." +msgid "Click to download a CSV of anonymized student IDs:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7254,9 +7246,9 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button will generate a CSV grade report for all currently " -"enrolled students. Generated reports appear in a table below and can be " -"downloaded." +"Click to generate a CSV grade report for all currently enrolled students. " +"Links to generated reports appear in a table below when report generation is" +" complete." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7282,24 +7274,19 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Grade reports listed below are generated each time the Generate Grade " -"Report button is clicked. A link to each grade report remains available " -"on this page, identified by the UTC date and time of generation. Grade " +"The grade reports listed below are generated each time the Generate Grade" +" Report button is clicked. A link to each grade report remains available" +" on this page, identified by the UTC date and time of generation. Grade " "reports are not deleted, so you will always be able to access previously " "generated reports from this page." msgstr "" -#. Translators: "these rules" in this sentence references a detailed -#. description of the grading reports that will appear in a table that -#. contains -#. a mix of different types of reports. This sentence intends to indicate -#. that -#. the description of the grading report does not apply to the other reports -#. that may appear in the table. #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Other reports may appear in the table for which these rules will not " -"necessarily apply." +"The answer distribution report listed below is generated periodically by an " +"automated background process. The report is cumulative, so answers submitted" +" after the process starts are included in a subsequent report. The report is" +" generated several times per day." msgstr "" #. Translators: a table of URL links to report files appears after this @@ -8318,7 +8305,7 @@ msgstr "" #: lms/templates/static_templates/server-error.html msgid "" "Please wait a few seconds and then reload the page. If the problem persists," -" please email us at {email}." +" please email us at {email}." msgstr "" #: lms/templates/static_templates/server-overloaded.html @@ -9346,6 +9333,10 @@ msgstr "" msgid "Page Actions" msgstr "" +#: cms/templates/asset_index.html +msgid "Loading…" +msgstr "" + #: cms/templates/asset_index.html msgid "What files are listed here?" msgstr "" diff --git a/conf/locale/es_ES/LC_MESSAGES/djangojs.mo b/conf/locale/es_ES/LC_MESSAGES/djangojs.mo index 1bc1e4ee7f06cae5f8e58777ffbdd0c01ae26174..d458104cd9c800c641dc4912348db2f81083e40d 100644 GIT binary patch delta 18 ZcmeBY>1Ua+k=<0m(7?*beB+LAMgTPN1&IIv delta 18 ZcmeBY>1Ua+k=;bW(7?*TY~zk_MgTO`1%&_r diff --git a/conf/locale/es_ES/LC_MESSAGES/djangojs.po b/conf/locale/es_ES/LC_MESSAGES/djangojs.po index b081aea2f1..d0653338db 100644 --- a/conf/locale/es_ES/LC_MESSAGES/djangojs.po +++ b/conf/locale/es_ES/LC_MESSAGES/djangojs.po @@ -28,7 +28,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" +"POT-Creation-Date: 2014-03-25 10:27-0400\n" "PO-Revision-Date: 2014-03-24 14:25+0000\n" "Last-Translator: mcolomer \n" "Language-Team: Spanish (Spain) (http://www.transifex.com/projects/p/edx-platform/language/es_ES/)\n" @@ -803,7 +803,7 @@ msgid "Error generating grades. Please try again." msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js -msgid "File Name (Newest First)" +msgid "File Name" msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js @@ -843,6 +843,21 @@ msgstr "" msgid "Error changing user's permissions." msgstr "" +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Could not find a user with username or email address '<%= identifier %>'." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Error: User '<%= username %>' has not yet activated their account. Users " +"must create and activate their accounts before they can be assigned a role." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Error: You cannot remove yourself from the Instructor group!" +msgstr "" + #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error adding/removing users as beta testers." msgstr "" diff --git a/conf/locale/es_MX/LC_MESSAGES/django.mo b/conf/locale/es_MX/LC_MESSAGES/django.mo index e032841abdd11bc05bb68e75437ba1ac9f932a36..f80506f31c1382ed4527459111670b52955fa2d3 100644 GIT binary patch delta 28 kcmZ3=vXo`QMs`yLLjx-#i-|iF*-R9SjI9he-gjdJ0DDOYU;qFB delta 28 kcmZ3=vXo`QMs^bgLjx-Vvxz$t*$fm646Tee-gjdJ0D8IzRR910 diff --git a/conf/locale/es_MX/LC_MESSAGES/django.po b/conf/locale/es_MX/LC_MESSAGES/django.po index afe917f0df..68c4436fc4 100644 --- a/conf/locale/es_MX/LC_MESSAGES/django.po +++ b/conf/locale/es_MX/LC_MESSAGES/django.po @@ -4,18 +4,21 @@ # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. # # Translators: +# preteric , 2014 # #-#-#-#-# django-studio.po (edx-platform) #-#-#-#-# # edX translation file. # Copyright (C) 2014 EdX # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. # # Translators: +# preteric , 2014 # #-#-#-#-# mako.po (edx-platform) #-#-#-#-# # edX community translations have been downloaded from Spanish (Mexico) (http://www.transifex.com/projects/p/edx-platform/language/es_MX/) # Copyright (C) 2014 edX # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. # # Translators: +# preteric , 2014 # #-#-#-#-# mako-studio.po (edx-platform) #-#-#-#-# # edX translation file # Copyright (C) 2014 edX @@ -28,6 +31,7 @@ # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. # # Translators: +# preteric , 2014 # #-#-#-#-# wiki.po (edx-platform) #-#-#-#-# # edX translation file # Copyright (C) 2014 edX @@ -41,8 +45,8 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" -"PO-Revision-Date: 2014-03-20 01:30+0000\n" +"POT-Creation-Date: 2014-03-25 10:28-0400\n" +"PO-Revision-Date: 2014-03-24 23:10+0000\n" "Last-Translator: preteric \n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/edx-platform/language/es_MX/)\n" "MIME-Version: 1.0\n" @@ -1241,7 +1245,7 @@ msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py msgid "" "Can't receive transcripts from Youtube for {youtube_id}. Status code: " -"{statuc_code}." +"{status_code}." msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py @@ -3766,14 +3770,6 @@ msgstr "" msgid "Help" msgstr "" -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "Visual" -msgstr "" - -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "HTML" -msgstr "" - #: common/templates/course_modes/choose.html msgid "Upgrade Your Registration for {} | Choose Your Track" msgstr "" @@ -6197,7 +6193,7 @@ msgid "Students" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -msgid "Answer distribution for problems" +msgid "Score distribution for problems" msgstr "" #: lms/templates/courseware/instructor_dashboard.html @@ -7093,7 +7089,7 @@ msgid "Skip" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html -msgid "Grade Distribution" +msgid "Score Distribution" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html @@ -7170,8 +7166,8 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button generates a CSV file of all students enrolled in this " -"course, along with profile information such as email address and username." +"Click to generate a CSV file of all students enrolled in this course, along " +"with profile information such as email address and username:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7180,7 +7176,7 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"For smaller courses, profile information for enrolled students can be listed" +"For smaller courses, click to list profile information for enrolled students" " directly on this page:" msgstr "" @@ -7190,10 +7186,10 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button displays the grading configuration for the course. The " -"grading configuration is the breakdown of graded subsections of the course " -"(such as exams and problem sets), and can be changed on the 'Grading' page " -"(under 'Settings') in Studio." +"Click to display the grading configuration for the course. The grading " +"configuration is the breakdown of graded subsections of the course (such as " +"exams and problem sets), and can be changed on the 'Grading' page (under " +"'Settings') in Studio." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7201,7 +7197,7 @@ msgid "Grading Configuration" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "Download a CSV of anonymized student IDs by clicking this button." +msgid "Click to download a CSV of anonymized student IDs:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7214,9 +7210,9 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button will generate a CSV grade report for all currently " -"enrolled students. Generated reports appear in a table below and can be " -"downloaded." +"Click to generate a CSV grade report for all currently enrolled students. " +"Links to generated reports appear in a table below when report generation is" +" complete." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7242,24 +7238,19 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Grade reports listed below are generated each time the Generate Grade " -"Report button is clicked. A link to each grade report remains available " -"on this page, identified by the UTC date and time of generation. Grade " +"The grade reports listed below are generated each time the Generate Grade" +" Report button is clicked. A link to each grade report remains available" +" on this page, identified by the UTC date and time of generation. Grade " "reports are not deleted, so you will always be able to access previously " "generated reports from this page." msgstr "" -#. Translators: "these rules" in this sentence references a detailed -#. description of the grading reports that will appear in a table that -#. contains -#. a mix of different types of reports. This sentence intends to indicate -#. that -#. the description of the grading report does not apply to the other reports -#. that may appear in the table. #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Other reports may appear in the table for which these rules will not " -"necessarily apply." +"The answer distribution report listed below is generated periodically by an " +"automated background process. The report is cumulative, so answers submitted" +" after the process starts are included in a subsequent report. The report is" +" generated several times per day." msgstr "" #. Translators: a table of URL links to report files appears after this @@ -8278,7 +8269,7 @@ msgstr "" #: lms/templates/static_templates/server-error.html msgid "" "Please wait a few seconds and then reload the page. If the problem persists," -" please email us at {email}." +" please email us at {email}." msgstr "" #: lms/templates/static_templates/server-overloaded.html @@ -9306,6 +9297,10 @@ msgstr "" msgid "Page Actions" msgstr "" +#: cms/templates/asset_index.html +msgid "Loading…" +msgstr "" + #: cms/templates/asset_index.html msgid "What files are listed here?" msgstr "" diff --git a/conf/locale/es_MX/LC_MESSAGES/djangojs.mo b/conf/locale/es_MX/LC_MESSAGES/djangojs.mo index 2606177005275a74dcbe94fb10ae18fca56bb352..7be04f19644df2e277fd38283b5fa95c4e2a0c5a 100644 GIT binary patch delta 27 icmeBW>1CO)k=<0m(7?*beBuseRwH986N8NpbQu9}eFygd delta 27 icmeBW>1CO)k=;bW(7?*TY~l`ORznjjBh!r!bQu9}NeA`- diff --git a/conf/locale/es_MX/LC_MESSAGES/djangojs.po b/conf/locale/es_MX/LC_MESSAGES/djangojs.po index 77a888f963..8dc56e1f80 100644 --- a/conf/locale/es_MX/LC_MESSAGES/djangojs.po +++ b/conf/locale/es_MX/LC_MESSAGES/djangojs.po @@ -4,6 +4,7 @@ # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. # # Translators: +# preteric , 2014 # #-#-#-#-# djangojs-studio.po (edx-platform) #-#-#-#-# # edX translation file. # Copyright (C) 2014 EdX @@ -17,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" -"PO-Revision-Date: 2014-03-24 14:25+0000\n" +"POT-Creation-Date: 2014-03-25 10:27-0400\n" +"PO-Revision-Date: 2014-03-24 23:40+0000\n" "Last-Translator: preteric \n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/edx-platform/language/es_MX/)\n" "MIME-Version: 1.0\n" @@ -792,7 +793,7 @@ msgid "Error generating grades. Please try again." msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js -msgid "File Name (Newest First)" +msgid "File Name" msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js @@ -832,6 +833,21 @@ msgstr "" msgid "Error changing user's permissions." msgstr "" +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Could not find a user with username or email address '<%= identifier %>'." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Error: User '<%= username %>' has not yet activated their account. Users " +"must create and activate their accounts before they can be assigned a role." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Error: You cannot remove yourself from the Instructor group!" +msgstr "" + #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error adding/removing users as beta testers." msgstr "" diff --git a/conf/locale/es_PE/LC_MESSAGES/django.mo b/conf/locale/es_PE/LC_MESSAGES/django.mo index 70d3b16a4d7fbd1693992cd6b0f86b46d9ddc3cc..fa312e7a810f34b1073e55ea6dbc52374d90df42 100644 GIT binary patch delta 18 ZcmbQoGLL1#Ms`yLLjx-#i;X+d7y&mD1-AeI delta 18 ZcmbQoGLL1#Ms^bgLjx-VvyD5_7y&l%1+oAD diff --git a/conf/locale/es_PE/LC_MESSAGES/django.po b/conf/locale/es_PE/LC_MESSAGES/django.po index 8ed1a2b04d..0d54575920 100644 --- a/conf/locale/es_PE/LC_MESSAGES/django.po +++ b/conf/locale/es_PE/LC_MESSAGES/django.po @@ -38,7 +38,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" +"POT-Creation-Date: 2014-03-25 10:28-0400\n" "PO-Revision-Date: 2014-03-11 21:33+0000\n" "Last-Translator: sarina \n" "Language-Team: Spanish (Peru) (http://www.transifex.com/projects/p/edx-platform/language/es_PE/)\n" @@ -1238,7 +1238,7 @@ msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py msgid "" "Can't receive transcripts from Youtube for {youtube_id}. Status code: " -"{statuc_code}." +"{status_code}." msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py @@ -3763,14 +3763,6 @@ msgstr "" msgid "Help" msgstr "" -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "Visual" -msgstr "" - -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "HTML" -msgstr "" - #: common/templates/course_modes/choose.html msgid "Upgrade Your Registration for {} | Choose Your Track" msgstr "" @@ -6194,7 +6186,7 @@ msgid "Students" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -msgid "Answer distribution for problems" +msgid "Score distribution for problems" msgstr "" #: lms/templates/courseware/instructor_dashboard.html @@ -7090,7 +7082,7 @@ msgid "Skip" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html -msgid "Grade Distribution" +msgid "Score Distribution" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html @@ -7167,8 +7159,8 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button generates a CSV file of all students enrolled in this " -"course, along with profile information such as email address and username." +"Click to generate a CSV file of all students enrolled in this course, along " +"with profile information such as email address and username:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7177,7 +7169,7 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"For smaller courses, profile information for enrolled students can be listed" +"For smaller courses, click to list profile information for enrolled students" " directly on this page:" msgstr "" @@ -7187,10 +7179,10 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button displays the grading configuration for the course. The " -"grading configuration is the breakdown of graded subsections of the course " -"(such as exams and problem sets), and can be changed on the 'Grading' page " -"(under 'Settings') in Studio." +"Click to display the grading configuration for the course. The grading " +"configuration is the breakdown of graded subsections of the course (such as " +"exams and problem sets), and can be changed on the 'Grading' page (under " +"'Settings') in Studio." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7198,7 +7190,7 @@ msgid "Grading Configuration" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "Download a CSV of anonymized student IDs by clicking this button." +msgid "Click to download a CSV of anonymized student IDs:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7211,9 +7203,9 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button will generate a CSV grade report for all currently " -"enrolled students. Generated reports appear in a table below and can be " -"downloaded." +"Click to generate a CSV grade report for all currently enrolled students. " +"Links to generated reports appear in a table below when report generation is" +" complete." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7239,24 +7231,19 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Grade reports listed below are generated each time the Generate Grade " -"Report button is clicked. A link to each grade report remains available " -"on this page, identified by the UTC date and time of generation. Grade " +"The grade reports listed below are generated each time the Generate Grade" +" Report button is clicked. A link to each grade report remains available" +" on this page, identified by the UTC date and time of generation. Grade " "reports are not deleted, so you will always be able to access previously " "generated reports from this page." msgstr "" -#. Translators: "these rules" in this sentence references a detailed -#. description of the grading reports that will appear in a table that -#. contains -#. a mix of different types of reports. This sentence intends to indicate -#. that -#. the description of the grading report does not apply to the other reports -#. that may appear in the table. #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Other reports may appear in the table for which these rules will not " -"necessarily apply." +"The answer distribution report listed below is generated periodically by an " +"automated background process. The report is cumulative, so answers submitted" +" after the process starts are included in a subsequent report. The report is" +" generated several times per day." msgstr "" #. Translators: a table of URL links to report files appears after this @@ -8275,7 +8262,7 @@ msgstr "" #: lms/templates/static_templates/server-error.html msgid "" "Please wait a few seconds and then reload the page. If the problem persists," -" please email us at {email}." +" please email us at {email}." msgstr "" #: lms/templates/static_templates/server-overloaded.html @@ -9303,6 +9290,10 @@ msgstr "" msgid "Page Actions" msgstr "" +#: cms/templates/asset_index.html +msgid "Loading…" +msgstr "" + #: cms/templates/asset_index.html msgid "What files are listed here?" msgstr "" diff --git a/conf/locale/es_PE/LC_MESSAGES/djangojs.mo b/conf/locale/es_PE/LC_MESSAGES/djangojs.mo index 5e28883be4adb5e7b2e3c8d0f715f0598da0d8a5..75a7fc6df6a38fb777f7ecf7dbea93083c26dd37 100644 GIT binary patch delta 18 ZcmZo;X=9nNk=<0m(7?*beB%y3MgTLd1#SQU delta 18 ZcmZo;X=9nNk=;bW(7?*TY~v0;MgTLB1!@2Q diff --git a/conf/locale/es_PE/LC_MESSAGES/djangojs.po b/conf/locale/es_PE/LC_MESSAGES/djangojs.po index 9697b95eda..9b7f3f0aa6 100644 --- a/conf/locale/es_PE/LC_MESSAGES/djangojs.po +++ b/conf/locale/es_PE/LC_MESSAGES/djangojs.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" +"POT-Creation-Date: 2014-03-25 10:27-0400\n" "PO-Revision-Date: 2014-03-19 20:22+0000\n" "Last-Translator: sarina \n" "Language-Team: Spanish (Peru) (http://www.transifex.com/projects/p/edx-platform/language/es_PE/)\n" @@ -789,7 +789,7 @@ msgid "Error generating grades. Please try again." msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js -msgid "File Name (Newest First)" +msgid "File Name" msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js @@ -829,6 +829,21 @@ msgstr "" msgid "Error changing user's permissions." msgstr "" +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Could not find a user with username or email address '<%= identifier %>'." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Error: User '<%= username %>' has not yet activated their account. Users " +"must create and activate their accounts before they can be assigned a role." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Error: You cannot remove yourself from the Instructor group!" +msgstr "" + #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error adding/removing users as beta testers." msgstr "" diff --git a/conf/locale/es_US/LC_MESSAGES/django.mo b/conf/locale/es_US/LC_MESSAGES/django.mo index d69a1d3f9ac7364183b33ec33d6cb1244b5c5f1d..e0b24f6b4515d16c4d21bcf989d052720183af0b 100644 GIT binary patch delta 18 ZcmZ3&vV>*AMs`yLLjx-#i;X*S7y&ox1<3#a delta 18 ZcmZ3&vV>*AMs^bgLjx-VvyD4)7y&oQ1;hXV diff --git a/conf/locale/es_US/LC_MESSAGES/django.po b/conf/locale/es_US/LC_MESSAGES/django.po index 1d0683104c..d5eb50b032 100644 --- a/conf/locale/es_US/LC_MESSAGES/django.po +++ b/conf/locale/es_US/LC_MESSAGES/django.po @@ -38,7 +38,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" +"POT-Creation-Date: 2014-03-25 10:28-0400\n" "PO-Revision-Date: 2014-02-06 03:04+0000\n" "Last-Translator: nedbat \n" "Language-Team: Spanish (United States) (http://www.transifex.com/projects/p/edx-platform/language/es_US/)\n" @@ -1238,7 +1238,7 @@ msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py msgid "" "Can't receive transcripts from Youtube for {youtube_id}. Status code: " -"{statuc_code}." +"{status_code}." msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py @@ -3763,14 +3763,6 @@ msgstr "" msgid "Help" msgstr "" -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "Visual" -msgstr "" - -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "HTML" -msgstr "" - #: common/templates/course_modes/choose.html msgid "Upgrade Your Registration for {} | Choose Your Track" msgstr "" @@ -6194,7 +6186,7 @@ msgid "Students" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -msgid "Answer distribution for problems" +msgid "Score distribution for problems" msgstr "" #: lms/templates/courseware/instructor_dashboard.html @@ -7090,7 +7082,7 @@ msgid "Skip" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html -msgid "Grade Distribution" +msgid "Score Distribution" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html @@ -7167,8 +7159,8 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button generates a CSV file of all students enrolled in this " -"course, along with profile information such as email address and username." +"Click to generate a CSV file of all students enrolled in this course, along " +"with profile information such as email address and username:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7177,7 +7169,7 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"For smaller courses, profile information for enrolled students can be listed" +"For smaller courses, click to list profile information for enrolled students" " directly on this page:" msgstr "" @@ -7187,10 +7179,10 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button displays the grading configuration for the course. The " -"grading configuration is the breakdown of graded subsections of the course " -"(such as exams and problem sets), and can be changed on the 'Grading' page " -"(under 'Settings') in Studio." +"Click to display the grading configuration for the course. The grading " +"configuration is the breakdown of graded subsections of the course (such as " +"exams and problem sets), and can be changed on the 'Grading' page (under " +"'Settings') in Studio." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7198,7 +7190,7 @@ msgid "Grading Configuration" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "Download a CSV of anonymized student IDs by clicking this button." +msgid "Click to download a CSV of anonymized student IDs:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7211,9 +7203,9 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button will generate a CSV grade report for all currently " -"enrolled students. Generated reports appear in a table below and can be " -"downloaded." +"Click to generate a CSV grade report for all currently enrolled students. " +"Links to generated reports appear in a table below when report generation is" +" complete." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7239,24 +7231,19 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Grade reports listed below are generated each time the Generate Grade " -"Report button is clicked. A link to each grade report remains available " -"on this page, identified by the UTC date and time of generation. Grade " +"The grade reports listed below are generated each time the Generate Grade" +" Report button is clicked. A link to each grade report remains available" +" on this page, identified by the UTC date and time of generation. Grade " "reports are not deleted, so you will always be able to access previously " "generated reports from this page." msgstr "" -#. Translators: "these rules" in this sentence references a detailed -#. description of the grading reports that will appear in a table that -#. contains -#. a mix of different types of reports. This sentence intends to indicate -#. that -#. the description of the grading report does not apply to the other reports -#. that may appear in the table. #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Other reports may appear in the table for which these rules will not " -"necessarily apply." +"The answer distribution report listed below is generated periodically by an " +"automated background process. The report is cumulative, so answers submitted" +" after the process starts are included in a subsequent report. The report is" +" generated several times per day." msgstr "" #. Translators: a table of URL links to report files appears after this @@ -8275,7 +8262,7 @@ msgstr "" #: lms/templates/static_templates/server-error.html msgid "" "Please wait a few seconds and then reload the page. If the problem persists," -" please email us at {email}." +" please email us at {email}." msgstr "" #: lms/templates/static_templates/server-overloaded.html @@ -9303,6 +9290,10 @@ msgstr "" msgid "Page Actions" msgstr "" +#: cms/templates/asset_index.html +msgid "Loading…" +msgstr "" + #: cms/templates/asset_index.html msgid "What files are listed here?" msgstr "" diff --git a/conf/locale/es_US/LC_MESSAGES/djangojs.mo b/conf/locale/es_US/LC_MESSAGES/djangojs.mo index e1e377189a69ec983ffbaad56b913c2cbc8d60d3..26620b2436c7b861beaceb6c5c450540c2b833fa 100644 GIT binary patch delta 18 ZcmeBY>1Ua+k=<0m(7?*beB+LAMgTPN1&IIv delta 18 ZcmeBY>1Ua+k=;bW(7?*TY~zk_MgTO`1%&_r diff --git a/conf/locale/es_US/LC_MESSAGES/djangojs.po b/conf/locale/es_US/LC_MESSAGES/djangojs.po index e13c0aa13e..b3e8fb27c1 100644 --- a/conf/locale/es_US/LC_MESSAGES/djangojs.po +++ b/conf/locale/es_US/LC_MESSAGES/djangojs.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" +"POT-Creation-Date: 2014-03-25 10:27-0400\n" "PO-Revision-Date: 2014-03-19 20:22+0000\n" "Last-Translator: sarina \n" "Language-Team: Spanish (United States) (http://www.transifex.com/projects/p/edx-platform/language/es_US/)\n" @@ -789,7 +789,7 @@ msgid "Error generating grades. Please try again." msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js -msgid "File Name (Newest First)" +msgid "File Name" msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js @@ -829,6 +829,21 @@ msgstr "" msgid "Error changing user's permissions." msgstr "" +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Could not find a user with username or email address '<%= identifier %>'." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Error: User '<%= username %>' has not yet activated their account. Users " +"must create and activate their accounts before they can be assigned a role." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Error: You cannot remove yourself from the Instructor group!" +msgstr "" + #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error adding/removing users as beta testers." msgstr "" diff --git a/conf/locale/et_EE/LC_MESSAGES/django.mo b/conf/locale/et_EE/LC_MESSAGES/django.mo index e60f70524b4aa22733bfebe52392e8d1d040e062..c536b131babfc3f58c336a7a843c87028b8b0c7e 100644 GIT binary patch delta 18 ZcmbQwGM{C_Ms`yLLjx-#i;X+d838vo1-bwL delta 18 ZcmbQwGM{C_Ms^bgLjx-VvyD5_838vH1+@SG diff --git a/conf/locale/et_EE/LC_MESSAGES/django.po b/conf/locale/et_EE/LC_MESSAGES/django.po index b344f42fc0..02ff809c43 100644 --- a/conf/locale/et_EE/LC_MESSAGES/django.po +++ b/conf/locale/et_EE/LC_MESSAGES/django.po @@ -42,7 +42,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" +"POT-Creation-Date: 2014-03-25 10:28-0400\n" "PO-Revision-Date: 2014-02-06 03:20+0000\n" "Last-Translator: nedbat \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/edx-platform/language/et_EE/)\n" @@ -1242,7 +1242,7 @@ msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py msgid "" "Can't receive transcripts from Youtube for {youtube_id}. Status code: " -"{statuc_code}." +"{status_code}." msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py @@ -3767,14 +3767,6 @@ msgstr "" msgid "Help" msgstr "" -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "Visual" -msgstr "" - -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "HTML" -msgstr "" - #: common/templates/course_modes/choose.html msgid "Upgrade Your Registration for {} | Choose Your Track" msgstr "" @@ -6198,7 +6190,7 @@ msgid "Students" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -msgid "Answer distribution for problems" +msgid "Score distribution for problems" msgstr "" #: lms/templates/courseware/instructor_dashboard.html @@ -7094,7 +7086,7 @@ msgid "Skip" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html -msgid "Grade Distribution" +msgid "Score Distribution" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html @@ -7171,8 +7163,8 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button generates a CSV file of all students enrolled in this " -"course, along with profile information such as email address and username." +"Click to generate a CSV file of all students enrolled in this course, along " +"with profile information such as email address and username:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7181,7 +7173,7 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"For smaller courses, profile information for enrolled students can be listed" +"For smaller courses, click to list profile information for enrolled students" " directly on this page:" msgstr "" @@ -7191,10 +7183,10 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button displays the grading configuration for the course. The " -"grading configuration is the breakdown of graded subsections of the course " -"(such as exams and problem sets), and can be changed on the 'Grading' page " -"(under 'Settings') in Studio." +"Click to display the grading configuration for the course. The grading " +"configuration is the breakdown of graded subsections of the course (such as " +"exams and problem sets), and can be changed on the 'Grading' page (under " +"'Settings') in Studio." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7202,7 +7194,7 @@ msgid "Grading Configuration" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "Download a CSV of anonymized student IDs by clicking this button." +msgid "Click to download a CSV of anonymized student IDs:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7215,9 +7207,9 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button will generate a CSV grade report for all currently " -"enrolled students. Generated reports appear in a table below and can be " -"downloaded." +"Click to generate a CSV grade report for all currently enrolled students. " +"Links to generated reports appear in a table below when report generation is" +" complete." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7243,24 +7235,19 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Grade reports listed below are generated each time the Generate Grade " -"Report button is clicked. A link to each grade report remains available " -"on this page, identified by the UTC date and time of generation. Grade " +"The grade reports listed below are generated each time the Generate Grade" +" Report button is clicked. A link to each grade report remains available" +" on this page, identified by the UTC date and time of generation. Grade " "reports are not deleted, so you will always be able to access previously " "generated reports from this page." msgstr "" -#. Translators: "these rules" in this sentence references a detailed -#. description of the grading reports that will appear in a table that -#. contains -#. a mix of different types of reports. This sentence intends to indicate -#. that -#. the description of the grading report does not apply to the other reports -#. that may appear in the table. #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Other reports may appear in the table for which these rules will not " -"necessarily apply." +"The answer distribution report listed below is generated periodically by an " +"automated background process. The report is cumulative, so answers submitted" +" after the process starts are included in a subsequent report. The report is" +" generated several times per day." msgstr "" #. Translators: a table of URL links to report files appears after this @@ -8279,7 +8266,7 @@ msgstr "" #: lms/templates/static_templates/server-error.html msgid "" "Please wait a few seconds and then reload the page. If the problem persists," -" please email us at {email}." +" please email us at {email}." msgstr "" #: lms/templates/static_templates/server-overloaded.html @@ -9307,6 +9294,10 @@ msgstr "" msgid "Page Actions" msgstr "" +#: cms/templates/asset_index.html +msgid "Loading…" +msgstr "" + #: cms/templates/asset_index.html msgid "What files are listed here?" msgstr "" diff --git a/conf/locale/et_EE/LC_MESSAGES/djangojs.mo b/conf/locale/et_EE/LC_MESSAGES/djangojs.mo index ed24891132cbce247dfc231641b8fabd6aa45d09..38fc39a9f4ef5fa7f5d9e5184424c49b14a27454 100644 GIT binary patch delta 18 ZcmeBT>0+6%k=<0m(7?*beB+KFMgTND1$qDg delta 18 ZcmeBT>0+6%k=;bW(7?*TY~zj~MgTM+1$F=c diff --git a/conf/locale/et_EE/LC_MESSAGES/djangojs.po b/conf/locale/et_EE/LC_MESSAGES/djangojs.po index a17a5ee307..c957d40e3e 100644 --- a/conf/locale/et_EE/LC_MESSAGES/djangojs.po +++ b/conf/locale/et_EE/LC_MESSAGES/djangojs.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" +"POT-Creation-Date: 2014-03-25 10:27-0400\n" "PO-Revision-Date: 2014-03-19 20:22+0000\n" "Last-Translator: sarina \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/edx-platform/language/et_EE/)\n" @@ -789,7 +789,7 @@ msgid "Error generating grades. Please try again." msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js -msgid "File Name (Newest First)" +msgid "File Name" msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js @@ -829,6 +829,21 @@ msgstr "" msgid "Error changing user's permissions." msgstr "" +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Could not find a user with username or email address '<%= identifier %>'." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Error: User '<%= username %>' has not yet activated their account. Users " +"must create and activate their accounts before they can be assigned a role." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Error: You cannot remove yourself from the Instructor group!" +msgstr "" + #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error adding/removing users as beta testers." msgstr "" diff --git a/conf/locale/fa/LC_MESSAGES/django.mo b/conf/locale/fa/LC_MESSAGES/django.mo index 454e8167b7ff2014908aefcc3260c7bdf69f660b..393dd45a1f5bc26c6c8ca17dba2fe3c0cdc21bee 100644 GIT binary patch delta 18 ZcmZo?X=j\n" "Language-Team: Persian (http://www.transifex.com/projects/p/edx-platform/language/fa/)\n" @@ -1240,7 +1240,7 @@ msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py msgid "" "Can't receive transcripts from Youtube for {youtube_id}. Status code: " -"{statuc_code}." +"{status_code}." msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py @@ -3765,14 +3765,6 @@ msgstr "" msgid "Help" msgstr "" -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "Visual" -msgstr "" - -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "HTML" -msgstr "" - #: common/templates/course_modes/choose.html msgid "Upgrade Your Registration for {} | Choose Your Track" msgstr "" @@ -6194,7 +6186,7 @@ msgid "Students" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -msgid "Answer distribution for problems" +msgid "Score distribution for problems" msgstr "" #: lms/templates/courseware/instructor_dashboard.html @@ -7088,7 +7080,7 @@ msgid "Skip" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html -msgid "Grade Distribution" +msgid "Score Distribution" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html @@ -7165,8 +7157,8 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button generates a CSV file of all students enrolled in this " -"course, along with profile information such as email address and username." +"Click to generate a CSV file of all students enrolled in this course, along " +"with profile information such as email address and username:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7175,7 +7167,7 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"For smaller courses, profile information for enrolled students can be listed" +"For smaller courses, click to list profile information for enrolled students" " directly on this page:" msgstr "" @@ -7185,10 +7177,10 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button displays the grading configuration for the course. The " -"grading configuration is the breakdown of graded subsections of the course " -"(such as exams and problem sets), and can be changed on the 'Grading' page " -"(under 'Settings') in Studio." +"Click to display the grading configuration for the course. The grading " +"configuration is the breakdown of graded subsections of the course (such as " +"exams and problem sets), and can be changed on the 'Grading' page (under " +"'Settings') in Studio." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7196,7 +7188,7 @@ msgid "Grading Configuration" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "Download a CSV of anonymized student IDs by clicking this button." +msgid "Click to download a CSV of anonymized student IDs:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7209,9 +7201,9 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button will generate a CSV grade report for all currently " -"enrolled students. Generated reports appear in a table below and can be " -"downloaded." +"Click to generate a CSV grade report for all currently enrolled students. " +"Links to generated reports appear in a table below when report generation is" +" complete." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7237,24 +7229,19 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Grade reports listed below are generated each time the Generate Grade " -"Report button is clicked. A link to each grade report remains available " -"on this page, identified by the UTC date and time of generation. Grade " +"The grade reports listed below are generated each time the Generate Grade" +" Report button is clicked. A link to each grade report remains available" +" on this page, identified by the UTC date and time of generation. Grade " "reports are not deleted, so you will always be able to access previously " "generated reports from this page." msgstr "" -#. Translators: "these rules" in this sentence references a detailed -#. description of the grading reports that will appear in a table that -#. contains -#. a mix of different types of reports. This sentence intends to indicate -#. that -#. the description of the grading report does not apply to the other reports -#. that may appear in the table. #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Other reports may appear in the table for which these rules will not " -"necessarily apply." +"The answer distribution report listed below is generated periodically by an " +"automated background process. The report is cumulative, so answers submitted" +" after the process starts are included in a subsequent report. The report is" +" generated several times per day." msgstr "" #. Translators: a table of URL links to report files appears after this @@ -8273,7 +8260,7 @@ msgstr "" #: lms/templates/static_templates/server-error.html msgid "" "Please wait a few seconds and then reload the page. If the problem persists," -" please email us at {email}." +" please email us at {email}." msgstr "" #: lms/templates/static_templates/server-overloaded.html @@ -9301,6 +9288,10 @@ msgstr "" msgid "Page Actions" msgstr "" +#: cms/templates/asset_index.html +msgid "Loading…" +msgstr "" + #: cms/templates/asset_index.html msgid "What files are listed here?" msgstr "" diff --git a/conf/locale/fa/LC_MESSAGES/djangojs.mo b/conf/locale/fa/LC_MESSAGES/djangojs.mo index ab669c62da5cd139fedebaf29ca1b3a9ee344449..de5af237fda2b785859da35285b00fa2904831b2 100644 GIT binary patch delta 18 Zcmeyw{E2zOMs`yLLjx-#^Nl;K7y&`O1~32s delta 18 Zcmeyw{E2zOMs^bgLjx-VvyD5f7y&_{1}p#o diff --git a/conf/locale/fa/LC_MESSAGES/djangojs.po b/conf/locale/fa/LC_MESSAGES/djangojs.po index 0f6b7ab9a8..4172bb4205 100644 --- a/conf/locale/fa/LC_MESSAGES/djangojs.po +++ b/conf/locale/fa/LC_MESSAGES/djangojs.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" +"POT-Creation-Date: 2014-03-25 10:27-0400\n" "PO-Revision-Date: 2014-03-19 20:22+0000\n" "Last-Translator: sarina \n" "Language-Team: Persian (http://www.transifex.com/projects/p/edx-platform/language/fa/)\n" @@ -773,7 +773,7 @@ msgid "Error generating grades. Please try again." msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js -msgid "File Name (Newest First)" +msgid "File Name" msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js @@ -813,6 +813,21 @@ msgstr "" msgid "Error changing user's permissions." msgstr "" +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Could not find a user with username or email address '<%= identifier %>'." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Error: User '<%= username %>' has not yet activated their account. Users " +"must create and activate their accounts before they can be assigned a role." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Error: You cannot remove yourself from the Instructor group!" +msgstr "" + #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error adding/removing users as beta testers." msgstr "" diff --git a/conf/locale/fa_IR/LC_MESSAGES/django.mo b/conf/locale/fa_IR/LC_MESSAGES/django.mo index da5ab49373b8f243c215e90419de7a5b037943fb..4eb128e82a57b929212f529ec4248207e725973f 100644 GIT binary patch delta 18 ZcmbQjGKFQrMs`yLLjx-#i;X*C7y&h^1(^T< delta 18 ZcmbQjGKFQrMs^bgLjx-VvyD4q7y&hj1(W~) diff --git a/conf/locale/fa_IR/LC_MESSAGES/django.po b/conf/locale/fa_IR/LC_MESSAGES/django.po index e1ec0e8fff..40989b9f15 100644 --- a/conf/locale/fa_IR/LC_MESSAGES/django.po +++ b/conf/locale/fa_IR/LC_MESSAGES/django.po @@ -57,7 +57,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" +"POT-Creation-Date: 2014-03-25 10:28-0400\n" "PO-Revision-Date: 2014-02-24 17:06+0000\n" "Last-Translator: nedbat \n" "Language-Team: Persian (Iran) (http://www.transifex.com/projects/p/edx-platform/language/fa_IR/)\n" @@ -1257,7 +1257,7 @@ msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py msgid "" "Can't receive transcripts from Youtube for {youtube_id}. Status code: " -"{statuc_code}." +"{status_code}." msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py @@ -3782,14 +3782,6 @@ msgstr "" msgid "Help" msgstr "" -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "Visual" -msgstr "" - -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "HTML" -msgstr "" - #: common/templates/course_modes/choose.html msgid "Upgrade Your Registration for {} | Choose Your Track" msgstr "" @@ -6211,7 +6203,7 @@ msgid "Students" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -msgid "Answer distribution for problems" +msgid "Score distribution for problems" msgstr "" #: lms/templates/courseware/instructor_dashboard.html @@ -7105,7 +7097,7 @@ msgid "Skip" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html -msgid "Grade Distribution" +msgid "Score Distribution" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html @@ -7182,8 +7174,8 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button generates a CSV file of all students enrolled in this " -"course, along with profile information such as email address and username." +"Click to generate a CSV file of all students enrolled in this course, along " +"with profile information such as email address and username:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7192,7 +7184,7 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"For smaller courses, profile information for enrolled students can be listed" +"For smaller courses, click to list profile information for enrolled students" " directly on this page:" msgstr "" @@ -7202,10 +7194,10 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button displays the grading configuration for the course. The " -"grading configuration is the breakdown of graded subsections of the course " -"(such as exams and problem sets), and can be changed on the 'Grading' page " -"(under 'Settings') in Studio." +"Click to display the grading configuration for the course. The grading " +"configuration is the breakdown of graded subsections of the course (such as " +"exams and problem sets), and can be changed on the 'Grading' page (under " +"'Settings') in Studio." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7213,7 +7205,7 @@ msgid "Grading Configuration" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "Download a CSV of anonymized student IDs by clicking this button." +msgid "Click to download a CSV of anonymized student IDs:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7226,9 +7218,9 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button will generate a CSV grade report for all currently " -"enrolled students. Generated reports appear in a table below and can be " -"downloaded." +"Click to generate a CSV grade report for all currently enrolled students. " +"Links to generated reports appear in a table below when report generation is" +" complete." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7254,24 +7246,19 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Grade reports listed below are generated each time the Generate Grade " -"Report button is clicked. A link to each grade report remains available " -"on this page, identified by the UTC date and time of generation. Grade " +"The grade reports listed below are generated each time the Generate Grade" +" Report button is clicked. A link to each grade report remains available" +" on this page, identified by the UTC date and time of generation. Grade " "reports are not deleted, so you will always be able to access previously " "generated reports from this page." msgstr "" -#. Translators: "these rules" in this sentence references a detailed -#. description of the grading reports that will appear in a table that -#. contains -#. a mix of different types of reports. This sentence intends to indicate -#. that -#. the description of the grading report does not apply to the other reports -#. that may appear in the table. #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Other reports may appear in the table for which these rules will not " -"necessarily apply." +"The answer distribution report listed below is generated periodically by an " +"automated background process. The report is cumulative, so answers submitted" +" after the process starts are included in a subsequent report. The report is" +" generated several times per day." msgstr "" #. Translators: a table of URL links to report files appears after this @@ -8290,7 +8277,7 @@ msgstr "" #: lms/templates/static_templates/server-error.html msgid "" "Please wait a few seconds and then reload the page. If the problem persists," -" please email us at {email}." +" please email us at {email}." msgstr "" #: lms/templates/static_templates/server-overloaded.html @@ -9318,6 +9305,10 @@ msgstr "" msgid "Page Actions" msgstr "" +#: cms/templates/asset_index.html +msgid "Loading…" +msgstr "" + #: cms/templates/asset_index.html msgid "What files are listed here?" msgstr "" diff --git a/conf/locale/fa_IR/LC_MESSAGES/djangojs.mo b/conf/locale/fa_IR/LC_MESSAGES/djangojs.mo index 60a5c79be2bcc6f540d044cd99f32b948ca80478..37f34c8be025c7e11c3d0634961e4965cfc1887a 100644 GIT binary patch delta 18 Zcmey*{GWNkMs`yLLjx-#^Nl;)8399)23G(8 delta 18 Zcmey*{GWNkMs^bgLjx-VvyD648399e22%h4 diff --git a/conf/locale/fa_IR/LC_MESSAGES/djangojs.po b/conf/locale/fa_IR/LC_MESSAGES/djangojs.po index 14c0522510..ca91b2778b 100644 --- a/conf/locale/fa_IR/LC_MESSAGES/djangojs.po +++ b/conf/locale/fa_IR/LC_MESSAGES/djangojs.po @@ -20,7 +20,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" +"POT-Creation-Date: 2014-03-25 10:27-0400\n" "PO-Revision-Date: 2014-03-24 14:25+0000\n" "Last-Translator: sarina \n" "Language-Team: Persian (Iran) (http://www.transifex.com/projects/p/edx-platform/language/fa_IR/)\n" @@ -779,7 +779,7 @@ msgid "Error generating grades. Please try again." msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js -msgid "File Name (Newest First)" +msgid "File Name" msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js @@ -819,6 +819,21 @@ msgstr "" msgid "Error changing user's permissions." msgstr "" +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Could not find a user with username or email address '<%= identifier %>'." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Error: User '<%= username %>' has not yet activated their account. Users " +"must create and activate their accounts before they can be assigned a role." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Error: You cannot remove yourself from the Instructor group!" +msgstr "" + #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error adding/removing users as beta testers." msgstr "" diff --git a/conf/locale/fi_FI/LC_MESSAGES/django.mo b/conf/locale/fi_FI/LC_MESSAGES/django.mo index 35603ac468b28dea39e0121c467f50b0770925a2..c943c6d34ed23e1a9c2657f5869ac3687816833d 100644 GIT binary patch delta 18 ZcmZ3;vXEuMMs`yLLjx-#i;X)n838wb1;79R delta 18 ZcmZ3;vXEuMMs^bgLjx-VvyD44838w41-k$M diff --git a/conf/locale/fi_FI/LC_MESSAGES/django.po b/conf/locale/fi_FI/LC_MESSAGES/django.po index cf600ae226..7e877d40be 100644 --- a/conf/locale/fi_FI/LC_MESSAGES/django.po +++ b/conf/locale/fi_FI/LC_MESSAGES/django.po @@ -45,7 +45,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" +"POT-Creation-Date: 2014-03-25 10:28-0400\n" "PO-Revision-Date: 2014-03-19 14:10+0000\n" "Last-Translator: mop \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/edx-platform/language/fi_FI/)\n" @@ -1245,7 +1245,7 @@ msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py msgid "" "Can't receive transcripts from Youtube for {youtube_id}. Status code: " -"{statuc_code}." +"{status_code}." msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py @@ -3770,14 +3770,6 @@ msgstr "" msgid "Help" msgstr "" -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "Visual" -msgstr "" - -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "HTML" -msgstr "" - #: common/templates/course_modes/choose.html msgid "Upgrade Your Registration for {} | Choose Your Track" msgstr "" @@ -6201,7 +6193,7 @@ msgid "Students" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -msgid "Answer distribution for problems" +msgid "Score distribution for problems" msgstr "" #: lms/templates/courseware/instructor_dashboard.html @@ -7097,7 +7089,7 @@ msgid "Skip" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html -msgid "Grade Distribution" +msgid "Score Distribution" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html @@ -7174,8 +7166,8 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button generates a CSV file of all students enrolled in this " -"course, along with profile information such as email address and username." +"Click to generate a CSV file of all students enrolled in this course, along " +"with profile information such as email address and username:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7184,7 +7176,7 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"For smaller courses, profile information for enrolled students can be listed" +"For smaller courses, click to list profile information for enrolled students" " directly on this page:" msgstr "" @@ -7194,10 +7186,10 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button displays the grading configuration for the course. The " -"grading configuration is the breakdown of graded subsections of the course " -"(such as exams and problem sets), and can be changed on the 'Grading' page " -"(under 'Settings') in Studio." +"Click to display the grading configuration for the course. The grading " +"configuration is the breakdown of graded subsections of the course (such as " +"exams and problem sets), and can be changed on the 'Grading' page (under " +"'Settings') in Studio." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7205,7 +7197,7 @@ msgid "Grading Configuration" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "Download a CSV of anonymized student IDs by clicking this button." +msgid "Click to download a CSV of anonymized student IDs:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7218,9 +7210,9 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button will generate a CSV grade report for all currently " -"enrolled students. Generated reports appear in a table below and can be " -"downloaded." +"Click to generate a CSV grade report for all currently enrolled students. " +"Links to generated reports appear in a table below when report generation is" +" complete." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7246,24 +7238,19 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Grade reports listed below are generated each time the Generate Grade " -"Report button is clicked. A link to each grade report remains available " -"on this page, identified by the UTC date and time of generation. Grade " +"The grade reports listed below are generated each time the Generate Grade" +" Report button is clicked. A link to each grade report remains available" +" on this page, identified by the UTC date and time of generation. Grade " "reports are not deleted, so you will always be able to access previously " "generated reports from this page." msgstr "" -#. Translators: "these rules" in this sentence references a detailed -#. description of the grading reports that will appear in a table that -#. contains -#. a mix of different types of reports. This sentence intends to indicate -#. that -#. the description of the grading report does not apply to the other reports -#. that may appear in the table. #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Other reports may appear in the table for which these rules will not " -"necessarily apply." +"The answer distribution report listed below is generated periodically by an " +"automated background process. The report is cumulative, so answers submitted" +" after the process starts are included in a subsequent report. The report is" +" generated several times per day." msgstr "" #. Translators: a table of URL links to report files appears after this @@ -8282,7 +8269,7 @@ msgstr "" #: lms/templates/static_templates/server-error.html msgid "" "Please wait a few seconds and then reload the page. If the problem persists," -" please email us at {email}." +" please email us at {email}." msgstr "" #: lms/templates/static_templates/server-overloaded.html @@ -9310,6 +9297,10 @@ msgstr "" msgid "Page Actions" msgstr "" +#: cms/templates/asset_index.html +msgid "Loading…" +msgstr "" + #: cms/templates/asset_index.html msgid "What files are listed here?" msgstr "" diff --git a/conf/locale/fi_FI/LC_MESSAGES/djangojs.mo b/conf/locale/fi_FI/LC_MESSAGES/djangojs.mo index aaab997a3d4c3569b1d55d234ed8041a93344b37..f9aac48f340f0f209850fbd8bb495c6e307f97e3 100644 GIT binary patch delta 18 ZcmeBV>13I(k=<0m(7?*beB+KlMgTM!1$O`d delta 18 ZcmeBV>13I(k=;bW(7?*TY~zkVMgTMY1#\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/edx-platform/language/fi_FI/)\n" @@ -790,7 +790,7 @@ msgid "Error generating grades. Please try again." msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js -msgid "File Name (Newest First)" +msgid "File Name" msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js @@ -830,6 +830,21 @@ msgstr "" msgid "Error changing user's permissions." msgstr "" +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Could not find a user with username or email address '<%= identifier %>'." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Error: User '<%= username %>' has not yet activated their account. Users " +"must create and activate their accounts before they can be assigned a role." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Error: You cannot remove yourself from the Instructor group!" +msgstr "" + #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error adding/removing users as beta testers." msgstr "" diff --git a/conf/locale/fr/LC_MESSAGES/django.mo b/conf/locale/fr/LC_MESSAGES/django.mo index b54948f0a9188ad8f01e8295533883675d8c9c09..70906e7ed6b4118f4813ca165945df1e3e5fdcd9 100644 GIT binary patch delta 48234 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 delta 49282 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 Ca^j2t diff --git a/conf/locale/fr/LC_MESSAGES/django.po b/conf/locale/fr/LC_MESSAGES/django.po index cd8bba461b..19318d3b5b 100644 --- a/conf/locale/fr/LC_MESSAGES/django.po +++ b/conf/locale/fr/LC_MESSAGES/django.po @@ -122,7 +122,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" +"POT-Creation-Date: 2014-03-25 10:28-0400\n" "PO-Revision-Date: 2014-03-03 14:01+0000\n" "Last-Translator: antoviaque \n" "Language-Team: French (http://www.transifex.com/projects/p/edx-platform/language/fr/)\n" @@ -1407,10 +1407,8 @@ msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py msgid "" "Can't receive transcripts from Youtube for {youtube_id}. Status code: " -"{statuc_code}." +"{status_code}." msgstr "" -"Echec de la réception de la transcription de Youtube pour l'utilisateur " -"{youtube_id}. Code du status : {statuc_code}." #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py msgid "Can't find any transcripts on the Youtube service." @@ -4219,14 +4217,6 @@ msgstr "Politique de confidentialité" msgid "Help" msgstr "Aide" -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "Visual" -msgstr "Visuel" - -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "HTML" -msgstr "HTML" - #: common/templates/course_modes/choose.html msgid "Upgrade Your Registration for {} | Choose Your Track" msgstr "Mettre à niveau votre inscription pour {} | Choisir votre parcours" @@ -6905,8 +6895,8 @@ msgid "Students" msgstr "Étudiants" #: lms/templates/courseware/instructor_dashboard.html -msgid "Answer distribution for problems" -msgstr "Distribution des réponses pour les exercices" +msgid "Score distribution for problems" +msgstr "" #: lms/templates/courseware/instructor_dashboard.html #: lms/templates/courseware/instructor_dashboard.html @@ -7866,8 +7856,8 @@ msgid "Skip" msgstr "Passer" #: lms/templates/instructor/instructor_dashboard_2/analytics.html -msgid "Grade Distribution" -msgstr "Répartition des notes" +msgid "Score Distribution" +msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html msgid "" @@ -7945,8 +7935,8 @@ msgstr "Avertissements du cours" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button generates a CSV file of all students enrolled in this " -"course, along with profile information such as email address and username." +"Click to generate a CSV file of all students enrolled in this course, along " +"with profile information such as email address and username:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7955,7 +7945,7 @@ msgstr "Télécharger les informations de profil au format CSV" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"For smaller courses, profile information for enrolled students can be listed" +"For smaller courses, click to list profile information for enrolled students" " directly on this page:" msgstr "" @@ -7965,10 +7955,10 @@ msgstr "Lister les informations de profil des étudiants inscrits" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button displays the grading configuration for the course. The " -"grading configuration is the breakdown of graded subsections of the course " -"(such as exams and problem sets), and can be changed on the 'Grading' page " -"(under 'Settings') in Studio." +"Click to display the grading configuration for the course. The grading " +"configuration is the breakdown of graded subsections of the course (such as " +"exams and problem sets), and can be changed on the 'Grading' page (under " +"'Settings') in Studio." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7976,9 +7966,8 @@ msgid "Grading Configuration" msgstr "Configuration de la Notation" #: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "Download a CSV of anonymized student IDs by clicking this button." +msgid "Click to download a CSV of anonymized student IDs:" msgstr "" -"Télécharger les ID anonymisés des étudiants en cliquant sur ce bouton." #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "Get Student Anonymized IDs CSV" @@ -7990,13 +7979,10 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button will generate a CSV grade report for all currently " -"enrolled students. Generated reports appear in a table below and can be " -"downloaded." +"Click to generate a CSV grade report for all currently enrolled students. " +"Links to generated reports appear in a table below when report generation is" +" complete." msgstr "" -"Le bouton suivant permet de générer un rapport de notes au format CSV pour " -"tous les étudiants actuellement inscrits. Les rapports générés apparaissent " -"dans le tableau ci-dessous et peuvent être téléchargés." #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" @@ -8027,24 +8013,19 @@ msgstr "Rapports disponibles pour être téléchargés" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Grade reports listed below are generated each time the Generate Grade " -"Report button is clicked. A link to each grade report remains available " -"on this page, identified by the UTC date and time of generation. Grade " +"The grade reports listed below are generated each time the Generate Grade" +" Report button is clicked. A link to each grade report remains available" +" on this page, identified by the UTC date and time of generation. Grade " "reports are not deleted, so you will always be able to access previously " "generated reports from this page." msgstr "" -#. Translators: "these rules" in this sentence references a detailed -#. description of the grading reports that will appear in a table that -#. contains -#. a mix of different types of reports. This sentence intends to indicate -#. that -#. the description of the grading report does not apply to the other reports -#. that may appear in the table. #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Other reports may appear in the table for which these rules will not " -"necessarily apply." +"The answer distribution report listed below is generated periodically by an " +"automated background process. The report is cumulative, so answers submitted" +" after the process starts are included in a subsequent report. The report is" +" generated several times per day." msgstr "" #. Translators: a table of URL links to report files appears after this @@ -9182,10 +9163,8 @@ msgstr "Il y a eu une erreur 500 sur le serveur de {platform_name}" #: lms/templates/static_templates/server-error.html msgid "" "Please wait a few seconds and then reload the page. If the problem persists," -" please email us at {email}." +" please email us at {email}." msgstr "" -"Attendez quelques secondes et rechargez la page. Si le problème persiste, " -"envoyez nous un mail à l'adresse {email}." #: lms/templates/static_templates/server-overloaded.html msgid "Currently the {platform_name} servers are overloaded" @@ -10378,6 +10357,10 @@ msgstr "Contenu" msgid "Page Actions" msgstr "Actions de la Page" +#: cms/templates/asset_index.html +msgid "Loading…" +msgstr "" + #: cms/templates/asset_index.html msgid "What files are listed here?" msgstr "Quels sont les fichiers listés ici ?" diff --git a/conf/locale/fr/LC_MESSAGES/djangojs.mo b/conf/locale/fr/LC_MESSAGES/djangojs.mo index 3b9850c704b8896c8e576156865857ab3f117f74..ec0e75634f05ab35afbed8728c0a00b5e6f4877e 100644 GIT binary patch delta 6178 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 EAB*0}3jhEB delta 6280 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 diff --git a/conf/locale/fr/LC_MESSAGES/djangojs.po b/conf/locale/fr/LC_MESSAGES/djangojs.po index cc809f1e0d..f5644966c2 100644 --- a/conf/locale/fr/LC_MESSAGES/djangojs.po +++ b/conf/locale/fr/LC_MESSAGES/djangojs.po @@ -41,7 +41,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" +"POT-Creation-Date: 2014-03-25 10:27-0400\n" "PO-Revision-Date: 2014-03-24 14:25+0000\n" "Last-Translator: sarina \n" "Language-Team: French (http://www.transifex.com/projects/p/edx-platform/language/fr/)\n" @@ -867,8 +867,8 @@ msgid "Error generating grades. Please try again." msgstr "Erreur lors de la génération des notes. Merci d’essayer à nouveau." #: lms/static/coffee/src/instructor_dashboard/data_download.js -msgid "File Name (Newest First)" -msgstr "Nom du fichier (le plus récent en premier)" +msgid "File Name" +msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js msgid "" @@ -907,6 +907,21 @@ msgstr "" msgid "Error changing user's permissions." msgstr "" +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Could not find a user with username or email address '<%= identifier %>'." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Error: User '<%= username %>' has not yet activated their account. Users " +"must create and activate their accounts before they can be assigned a role." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Error: You cannot remove yourself from the Instructor group!" +msgstr "" + #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error adding/removing users as beta testers." msgstr "" diff --git a/conf/locale/gl/LC_MESSAGES/django.mo b/conf/locale/gl/LC_MESSAGES/django.mo index 54efd3cc289c4db08ac161893fc848dc26943694..b4369067d78482b3563e794f6f50e52a515fcc41 100644 GIT binary patch delta 18 ZcmbQnGL2=zMs`yLLjx-#i;X+t7y&i%1)l%_ delta 18 ZcmbQnGL2=zMs^bgLjx-VvyD6A7y&iW1)2Z= diff --git a/conf/locale/gl/LC_MESSAGES/django.po b/conf/locale/gl/LC_MESSAGES/django.po index d6a9180777..69b886ebe8 100644 --- a/conf/locale/gl/LC_MESSAGES/django.po +++ b/conf/locale/gl/LC_MESSAGES/django.po @@ -46,7 +46,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" +"POT-Creation-Date: 2014-03-25 10:28-0400\n" "PO-Revision-Date: 2014-02-24 17:06+0000\n" "Last-Translator: bulebule \n" "Language-Team: Galician (http://www.transifex.com/projects/p/edx-platform/language/gl/)\n" @@ -1246,7 +1246,7 @@ msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py msgid "" "Can't receive transcripts from Youtube for {youtube_id}. Status code: " -"{statuc_code}." +"{status_code}." msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py @@ -3771,14 +3771,6 @@ msgstr "" msgid "Help" msgstr "" -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "Visual" -msgstr "" - -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "HTML" -msgstr "" - #: common/templates/course_modes/choose.html msgid "Upgrade Your Registration for {} | Choose Your Track" msgstr "" @@ -6202,7 +6194,7 @@ msgid "Students" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -msgid "Answer distribution for problems" +msgid "Score distribution for problems" msgstr "" #: lms/templates/courseware/instructor_dashboard.html @@ -7098,7 +7090,7 @@ msgid "Skip" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html -msgid "Grade Distribution" +msgid "Score Distribution" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html @@ -7175,8 +7167,8 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button generates a CSV file of all students enrolled in this " -"course, along with profile information such as email address and username." +"Click to generate a CSV file of all students enrolled in this course, along " +"with profile information such as email address and username:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7185,7 +7177,7 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"For smaller courses, profile information for enrolled students can be listed" +"For smaller courses, click to list profile information for enrolled students" " directly on this page:" msgstr "" @@ -7195,10 +7187,10 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button displays the grading configuration for the course. The " -"grading configuration is the breakdown of graded subsections of the course " -"(such as exams and problem sets), and can be changed on the 'Grading' page " -"(under 'Settings') in Studio." +"Click to display the grading configuration for the course. The grading " +"configuration is the breakdown of graded subsections of the course (such as " +"exams and problem sets), and can be changed on the 'Grading' page (under " +"'Settings') in Studio." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7206,7 +7198,7 @@ msgid "Grading Configuration" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "Download a CSV of anonymized student IDs by clicking this button." +msgid "Click to download a CSV of anonymized student IDs:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7219,9 +7211,9 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button will generate a CSV grade report for all currently " -"enrolled students. Generated reports appear in a table below and can be " -"downloaded." +"Click to generate a CSV grade report for all currently enrolled students. " +"Links to generated reports appear in a table below when report generation is" +" complete." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7247,24 +7239,19 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Grade reports listed below are generated each time the Generate Grade " -"Report button is clicked. A link to each grade report remains available " -"on this page, identified by the UTC date and time of generation. Grade " +"The grade reports listed below are generated each time the Generate Grade" +" Report button is clicked. A link to each grade report remains available" +" on this page, identified by the UTC date and time of generation. Grade " "reports are not deleted, so you will always be able to access previously " "generated reports from this page." msgstr "" -#. Translators: "these rules" in this sentence references a detailed -#. description of the grading reports that will appear in a table that -#. contains -#. a mix of different types of reports. This sentence intends to indicate -#. that -#. the description of the grading report does not apply to the other reports -#. that may appear in the table. #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Other reports may appear in the table for which these rules will not " -"necessarily apply." +"The answer distribution report listed below is generated periodically by an " +"automated background process. The report is cumulative, so answers submitted" +" after the process starts are included in a subsequent report. The report is" +" generated several times per day." msgstr "" #. Translators: a table of URL links to report files appears after this @@ -8283,7 +8270,7 @@ msgstr "" #: lms/templates/static_templates/server-error.html msgid "" "Please wait a few seconds and then reload the page. If the problem persists," -" please email us at {email}." +" please email us at {email}." msgstr "" #: lms/templates/static_templates/server-overloaded.html @@ -9311,6 +9298,10 @@ msgstr "" msgid "Page Actions" msgstr "" +#: cms/templates/asset_index.html +msgid "Loading…" +msgstr "" + #: cms/templates/asset_index.html msgid "What files are listed here?" msgstr "" diff --git a/conf/locale/gl/LC_MESSAGES/djangojs.mo b/conf/locale/gl/LC_MESSAGES/djangojs.mo index 463ad5f33976938763083fa37de86363602c5f34..a4107e0d47c37746a9c11c4ac0a2e2d524ebf95d 100644 GIT binary patch delta 20 bcmdnZzng!9DGR%)f}w$xk@;pDmU?CYJ_-d> delta 20 bcmdnZzng!9DGR%af}w$xf!SsomU?CYJ?aHd diff --git a/conf/locale/gl/LC_MESSAGES/djangojs.po b/conf/locale/gl/LC_MESSAGES/djangojs.po index f5fb18d455..495e20b275 100644 --- a/conf/locale/gl/LC_MESSAGES/djangojs.po +++ b/conf/locale/gl/LC_MESSAGES/djangojs.po @@ -18,7 +18,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" +"POT-Creation-Date: 2014-03-25 10:27-0400\n" "PO-Revision-Date: 2014-03-24 14:25+0000\n" "Last-Translator: sarina \n" "Language-Team: Galician (http://www.transifex.com/projects/p/edx-platform/language/gl/)\n" @@ -793,7 +793,7 @@ msgid "Error generating grades. Please try again." msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js -msgid "File Name (Newest First)" +msgid "File Name" msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js @@ -833,6 +833,21 @@ msgstr "" msgid "Error changing user's permissions." msgstr "" +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Could not find a user with username or email address '<%= identifier %>'." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Error: User '<%= username %>' has not yet activated their account. Users " +"must create and activate their accounts before they can be assigned a role." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Error: You cannot remove yourself from the Instructor group!" +msgstr "" + #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error adding/removing users as beta testers." msgstr "" diff --git a/conf/locale/he/LC_MESSAGES/django.mo b/conf/locale/he/LC_MESSAGES/django.mo index 6923bd2d1bbb2925ebde768925b2c98827212391..5a3d7ce31dd58029a3eacfcdf82d5abc3c4ad920 100644 GIT binary patch delta 18 Zcmcb{a*bueeRfj?Ljx-#i;d3;7y&_c28{p! delta 18 Zcmcb{a*bueeRdNCLjx-VvyIOR7y&_528aLv diff --git a/conf/locale/he/LC_MESSAGES/django.po b/conf/locale/he/LC_MESSAGES/django.po index fa5269a450..7b24344a30 100644 --- a/conf/locale/he/LC_MESSAGES/django.po +++ b/conf/locale/he/LC_MESSAGES/django.po @@ -42,7 +42,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" +"POT-Creation-Date: 2014-03-25 10:28-0400\n" "PO-Revision-Date: 2014-02-06 03:04+0000\n" "Last-Translator: nedbat \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/edx-platform/language/he/)\n" @@ -1242,7 +1242,7 @@ msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py msgid "" "Can't receive transcripts from Youtube for {youtube_id}. Status code: " -"{statuc_code}." +"{status_code}." msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py @@ -3767,14 +3767,6 @@ msgstr "" msgid "Help" msgstr "" -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "Visual" -msgstr "" - -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "HTML" -msgstr "" - #: common/templates/course_modes/choose.html msgid "Upgrade Your Registration for {} | Choose Your Track" msgstr "" @@ -6198,7 +6190,7 @@ msgid "Students" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -msgid "Answer distribution for problems" +msgid "Score distribution for problems" msgstr "" #: lms/templates/courseware/instructor_dashboard.html @@ -7094,7 +7086,7 @@ msgid "Skip" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html -msgid "Grade Distribution" +msgid "Score Distribution" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html @@ -7171,8 +7163,8 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button generates a CSV file of all students enrolled in this " -"course, along with profile information such as email address and username." +"Click to generate a CSV file of all students enrolled in this course, along " +"with profile information such as email address and username:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7181,7 +7173,7 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"For smaller courses, profile information for enrolled students can be listed" +"For smaller courses, click to list profile information for enrolled students" " directly on this page:" msgstr "" @@ -7191,10 +7183,10 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button displays the grading configuration for the course. The " -"grading configuration is the breakdown of graded subsections of the course " -"(such as exams and problem sets), and can be changed on the 'Grading' page " -"(under 'Settings') in Studio." +"Click to display the grading configuration for the course. The grading " +"configuration is the breakdown of graded subsections of the course (such as " +"exams and problem sets), and can be changed on the 'Grading' page (under " +"'Settings') in Studio." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7202,7 +7194,7 @@ msgid "Grading Configuration" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "Download a CSV of anonymized student IDs by clicking this button." +msgid "Click to download a CSV of anonymized student IDs:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7215,9 +7207,9 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button will generate a CSV grade report for all currently " -"enrolled students. Generated reports appear in a table below and can be " -"downloaded." +"Click to generate a CSV grade report for all currently enrolled students. " +"Links to generated reports appear in a table below when report generation is" +" complete." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7243,24 +7235,19 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Grade reports listed below are generated each time the Generate Grade " -"Report button is clicked. A link to each grade report remains available " -"on this page, identified by the UTC date and time of generation. Grade " +"The grade reports listed below are generated each time the Generate Grade" +" Report button is clicked. A link to each grade report remains available" +" on this page, identified by the UTC date and time of generation. Grade " "reports are not deleted, so you will always be able to access previously " "generated reports from this page." msgstr "" -#. Translators: "these rules" in this sentence references a detailed -#. description of the grading reports that will appear in a table that -#. contains -#. a mix of different types of reports. This sentence intends to indicate -#. that -#. the description of the grading report does not apply to the other reports -#. that may appear in the table. #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Other reports may appear in the table for which these rules will not " -"necessarily apply." +"The answer distribution report listed below is generated periodically by an " +"automated background process. The report is cumulative, so answers submitted" +" after the process starts are included in a subsequent report. The report is" +" generated several times per day." msgstr "" #. Translators: a table of URL links to report files appears after this @@ -8279,7 +8266,7 @@ msgstr "" #: lms/templates/static_templates/server-error.html msgid "" "Please wait a few seconds and then reload the page. If the problem persists," -" please email us at {email}." +" please email us at {email}." msgstr "" #: lms/templates/static_templates/server-overloaded.html @@ -9307,6 +9294,10 @@ msgstr "" msgid "Page Actions" msgstr "" +#: cms/templates/asset_index.html +msgid "Loading…" +msgstr "" + #: cms/templates/asset_index.html msgid "What files are listed here?" msgstr "" diff --git a/conf/locale/he/LC_MESSAGES/djangojs.mo b/conf/locale/he/LC_MESSAGES/djangojs.mo index e9b8804b586d057418906cdcc38c8bb71eccd988..8dcef332c82ca41b6bf1652f42765b082b858377 100644 GIT binary patch delta 18 Zcmeyt{DXPIMs`yLLjx-#^Nl+k7y&|+20{P; delta 18 Zcmeyt{DXPIMs^bgLjx-VvyD3(7y&|g20j1) diff --git a/conf/locale/he/LC_MESSAGES/djangojs.po b/conf/locale/he/LC_MESSAGES/djangojs.po index 7baee5f6cd..417165539f 100644 --- a/conf/locale/he/LC_MESSAGES/djangojs.po +++ b/conf/locale/he/LC_MESSAGES/djangojs.po @@ -16,7 +16,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" +"POT-Creation-Date: 2014-03-25 10:27-0400\n" "PO-Revision-Date: 2014-03-19 20:22+0000\n" "Last-Translator: sarina \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/edx-platform/language/he/)\n" @@ -791,7 +791,7 @@ msgid "Error generating grades. Please try again." msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js -msgid "File Name (Newest First)" +msgid "File Name" msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js @@ -831,6 +831,21 @@ msgstr "" msgid "Error changing user's permissions." msgstr "" +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Could not find a user with username or email address '<%= identifier %>'." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Error: User '<%= username %>' has not yet activated their account. Users " +"must create and activate their accounts before they can be assigned a role." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Error: You cannot remove yourself from the Instructor group!" +msgstr "" + #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error adding/removing users as beta testers." msgstr "" diff --git a/conf/locale/hi/LC_MESSAGES/django.mo b/conf/locale/hi/LC_MESSAGES/django.mo index 001186322cd6f354d28ef5985f2b59d4c62e486f..3243b9c0354d19c38ccb54c340f37cbdb2ba4441 100644 GIT binary patch delta 40129 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 delta 43456 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\n" "Language-Team: Hindi (http://www.transifex.com/projects/p/edx-platform/language/hi/)\n" @@ -1323,10 +1323,8 @@ msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py msgid "" "Can't receive transcripts from Youtube for {youtube_id}. Status code: " -"{statuc_code}." +"{status_code}." msgstr "" -"यू ट्यूब से {youtube_id} के लिए प्रतिलिपियां नहीं मिल रही हैं। स्टेटस कोड: " -"{statuc_code}" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py msgid "Can't find any transcripts on the Youtube service." @@ -4113,14 +4111,6 @@ msgstr "निजता नीति" msgid "Help" msgstr "सहायता" -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "Visual" -msgstr "दृश्य" - -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "HTML" -msgstr "एच टी एम एल" - #: common/templates/course_modes/choose.html msgid "Upgrade Your Registration for {} | Choose Your Track" msgstr " {} | के लिए अपना रजिस्ट्रेशन अपग्रेड करें। अपना ट्रैक चुनें।" @@ -6770,8 +6760,8 @@ msgid "Students" msgstr "छात्र" #: lms/templates/courseware/instructor_dashboard.html -msgid "Answer distribution for problems" -msgstr "समस्याओं के उत्तर" +msgid "Score distribution for problems" +msgstr "" #: lms/templates/courseware/instructor_dashboard.html #: lms/templates/courseware/instructor_dashboard.html @@ -7727,8 +7717,8 @@ msgid "Skip" msgstr "आगे बढ़ें" #: lms/templates/instructor/instructor_dashboard_2/analytics.html -msgid "Grade Distribution" -msgstr "ग्रेड वितरण" +msgid "Score Distribution" +msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html msgid "" @@ -7809,12 +7799,9 @@ msgstr "पाठ्यक्रम चेतावनियां" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button generates a CSV file of all students enrolled in this " -"course, along with profile information such as email address and username." +"Click to generate a CSV file of all students enrolled in this course, along " +"with profile information such as email address and username:" msgstr "" -"नीचे दीया गया बटन इस पाठ्यक्रम में दाखिल सभी छात्रों की एक सीएसवी फ़ाइल " -"बनाता है, और साथ-साथ प्रोफ़ाइल जानकारी, जैसे की ई-मेल पता और उपयोगकर्ता नाम," -" भी बनाता है।" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "Download profile information as a CSV" @@ -7822,11 +7809,9 @@ msgstr "एक CSV के रूप में प्रोफ़ाइल जा #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"For smaller courses, profile information for enrolled students can be listed" +"For smaller courses, click to list profile information for enrolled students" " directly on this page:" msgstr "" -"छोटे पाठ्यक्रमों के लिए, दाखिल छात्रों की प्रोफ़ाइल जानकारी इस पेज पर सीधे " -"सूचीबद्ध की जा सकती है:" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "List enrolled students' profile information" @@ -7834,22 +7819,19 @@ msgstr "दाखिल छात्रों की प्रोफाइल #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button displays the grading configuration for the course. The " -"grading configuration is the breakdown of graded subsections of the course " -"(such as exams and problem sets), and can be changed on the 'Grading' page " -"(under 'Settings') in Studio." +"Click to display the grading configuration for the course. The grading " +"configuration is the breakdown of graded subsections of the course (such as " +"exams and problem sets), and can be changed on the 'Grading' page (under " +"'Settings') in Studio." msgstr "" -"यह बटन पाठ्यक्रम की ग्रेडिंग कॉनफ़िगरेशन को दिखाता है। ग्रेडिंग कॉनफ़िगरेशन " -"पाठ्यक्रम के भिन्न-भिन्न भागों (जैसे कि परीक्षाएं और समस्या सेट) का खंड होता" -" है और इसको स्टूडियो में 'ग्रेडिंग' पेज (सेटिंग्स के नीचे) बदला जा सकता है।" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "Grading Configuration" msgstr "ग्रेडिंग कॉन्फ़िगरेशन" #: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "Download a CSV of anonymized student IDs by clicking this button." -msgstr "इस बटन पर क्लिक करके गुमनाम छात्रों के आईडी की CSV डाउनलोड करें।" +msgid "Click to download a CSV of anonymized student IDs:" +msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "Get Student Anonymized IDs CSV" @@ -7861,13 +7843,10 @@ msgstr "रिपोर्ट्स" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button will generate a CSV grade report for all currently " -"enrolled students. Generated reports appear in a table below and can be " -"downloaded." +"Click to generate a CSV grade report for all currently enrolled students. " +"Links to generated reports appear in a table below when report generation is" +" complete." msgstr "" -"नीचे दिया गया बटन सभी छात्र जिनके पास मौजूदा दाखिला है के लिए एक CSV ग्रेड " -"रिपोर्ट बनाएगा। तैयार रिपोर्ट नीचे एक टेबल में दिखाई देगी और उसे डाउनलोड " -"किया जा सकता है।" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" @@ -7898,32 +7877,20 @@ msgstr "रिपोर्ट्स डाउनलोड करने के #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Grade reports listed below are generated each time the Generate Grade " -"Report button is clicked. A link to each grade report remains available " -"on this page, identified by the UTC date and time of generation. Grade " +"The grade reports listed below are generated each time the Generate Grade" +" Report button is clicked. A link to each grade report remains available" +" on this page, identified by the UTC date and time of generation. Grade " "reports are not deleted, so you will always be able to access previously " "generated reports from this page." msgstr "" -"नीचे दी गई सूची में जो ग्रेड रिपोर्ट्स हैं वे तब बनती हैं जब ग्रेड की " -"रिपोर्ट बनाएं बटन क्लिक किया जाता है। हर ग्रेड रिपोर्ट का लिंक इसी पेज " -"पर रहेगा, जो की यूटीसी तारीख और रिपोर्ट के बने हुए समय से पहचाना जा सकता है।" -" ग्रेड रिपोर्ट्स नष्ट नहीं की जाती हैं, इसलिए आप हमेशा ही इस पेज से पहले " -"बनाई गई रिपोर्ट पा सकते हैं।" -#. Translators: "these rules" in this sentence references a detailed -#. description of the grading reports that will appear in a table that -#. contains -#. a mix of different types of reports. This sentence intends to indicate -#. that -#. the description of the grading report does not apply to the other reports -#. that may appear in the table. #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Other reports may appear in the table for which these rules will not " -"necessarily apply." +"The answer distribution report listed below is generated periodically by an " +"automated background process. The report is cumulative, so answers submitted" +" after the process starts are included in a subsequent report. The report is" +" generated several times per day." msgstr "" -"ऐसी अन्य रिपोर्ट्स भी तालिका में दिखाई दे सकती हैं जिनके लिए ज़रूरी नहीं है " -"कि ये नियम लागू होंगे।" #. Translators: a table of URL links to report files appears after this #. sentence. @@ -9082,10 +9049,8 @@ msgstr " {platform_name} के सरवरों पर 500 error ह #: lms/templates/static_templates/server-error.html msgid "" "Please wait a few seconds and then reload the page. If the problem persists," -" please email us at {email}." +" please email us at {email}." msgstr "" -"कृपया थोड़ी देर रुक कर पेज को फिर से रीलोड करें। अगर तब भी समस्या बनी रहती " -"है तो हमसे {email} पर संपर्क करें।" #: lms/templates/static_templates/server-overloaded.html msgid "Currently the {platform_name} servers are overloaded" @@ -10242,6 +10207,10 @@ msgstr "विषय-वस्तु" msgid "Page Actions" msgstr "" +#: cms/templates/asset_index.html +msgid "Loading…" +msgstr "" + #: cms/templates/asset_index.html msgid "What files are listed here?" msgstr "" diff --git a/conf/locale/hi/LC_MESSAGES/djangojs.mo b/conf/locale/hi/LC_MESSAGES/djangojs.mo index 77a317f1bcf65f51b2f5710a1477b1445fb5e35a..2509d6224a7b5371f8c0091041541129490b756b 100644 GIT binary patch delta 6540 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 delta 6602 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 diff --git a/conf/locale/hi/LC_MESSAGES/djangojs.po b/conf/locale/hi/LC_MESSAGES/djangojs.po index 688c15120b..6923bd9139 100644 --- a/conf/locale/hi/LC_MESSAGES/djangojs.po +++ b/conf/locale/hi/LC_MESSAGES/djangojs.po @@ -23,7 +23,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" +"POT-Creation-Date: 2014-03-25 10:27-0400\n" "PO-Revision-Date: 2014-03-24 14:25+0000\n" "Last-Translator: ria1234 \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/edx-platform/language/hi/)\n" @@ -844,8 +844,8 @@ msgid "Error generating grades. Please try again." msgstr "ग्रेड बनाने मे कुछ गड़बड़। कृपया फिर से कोशिश करें।" #: lms/static/coffee/src/instructor_dashboard/data_download.js -msgid "File Name (Newest First)" -msgstr "फ़ाइल नाम (सबसे नया सबसे पहले) " +msgid "File Name" +msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js msgid "" @@ -886,6 +886,21 @@ msgstr "भूमिका की सूची लाने में त्र msgid "Error changing user's permissions." msgstr "उपयोगकर्ता की अनुमतियों को बदलने में त्रुटि।" +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Could not find a user with username or email address '<%= identifier %>'." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Error: User '<%= username %>' has not yet activated their account. Users " +"must create and activate their accounts before they can be assigned a role." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Error: You cannot remove yourself from the Instructor group!" +msgstr "" + #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error adding/removing users as beta testers." msgstr "बीटा परीक्षक के रूप में उपयोगकर्ताओं को हटाने/जोड़ने में त्रुटि।" diff --git a/conf/locale/hu/LC_MESSAGES/django.mo b/conf/locale/hu/LC_MESSAGES/django.mo index e1fb84bbc234b62ca33830d7c3ebbeeeab45d724..4f562b668afe313d966619703bb243162fa2e933 100644 GIT binary patch delta 18 ZcmbQhGJ$2nMs`yLLjx-#i;X)X7y&gJ1&sgz delta 18 ZcmbQhGJ$2nMs^bgLjx-VvyD3<7y&f-1&9Cu diff --git a/conf/locale/hu/LC_MESSAGES/django.po b/conf/locale/hu/LC_MESSAGES/django.po index c838250076..2aaeff2919 100644 --- a/conf/locale/hu/LC_MESSAGES/django.po +++ b/conf/locale/hu/LC_MESSAGES/django.po @@ -41,7 +41,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" +"POT-Creation-Date: 2014-03-25 10:28-0400\n" "PO-Revision-Date: 2014-02-18 15:58+0000\n" "Last-Translator: nedbat \n" "Language-Team: Hungarian (http://www.transifex.com/projects/p/edx-platform/language/hu/)\n" @@ -1241,7 +1241,7 @@ msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py msgid "" "Can't receive transcripts from Youtube for {youtube_id}. Status code: " -"{statuc_code}." +"{status_code}." msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py @@ -3766,14 +3766,6 @@ msgstr "" msgid "Help" msgstr "" -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "Visual" -msgstr "" - -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "HTML" -msgstr "" - #: common/templates/course_modes/choose.html msgid "Upgrade Your Registration for {} | Choose Your Track" msgstr "" @@ -6197,7 +6189,7 @@ msgid "Students" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -msgid "Answer distribution for problems" +msgid "Score distribution for problems" msgstr "" #: lms/templates/courseware/instructor_dashboard.html @@ -7093,7 +7085,7 @@ msgid "Skip" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html -msgid "Grade Distribution" +msgid "Score Distribution" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html @@ -7170,8 +7162,8 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button generates a CSV file of all students enrolled in this " -"course, along with profile information such as email address and username." +"Click to generate a CSV file of all students enrolled in this course, along " +"with profile information such as email address and username:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7180,7 +7172,7 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"For smaller courses, profile information for enrolled students can be listed" +"For smaller courses, click to list profile information for enrolled students" " directly on this page:" msgstr "" @@ -7190,10 +7182,10 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button displays the grading configuration for the course. The " -"grading configuration is the breakdown of graded subsections of the course " -"(such as exams and problem sets), and can be changed on the 'Grading' page " -"(under 'Settings') in Studio." +"Click to display the grading configuration for the course. The grading " +"configuration is the breakdown of graded subsections of the course (such as " +"exams and problem sets), and can be changed on the 'Grading' page (under " +"'Settings') in Studio." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7201,7 +7193,7 @@ msgid "Grading Configuration" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "Download a CSV of anonymized student IDs by clicking this button." +msgid "Click to download a CSV of anonymized student IDs:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7214,9 +7206,9 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button will generate a CSV grade report for all currently " -"enrolled students. Generated reports appear in a table below and can be " -"downloaded." +"Click to generate a CSV grade report for all currently enrolled students. " +"Links to generated reports appear in a table below when report generation is" +" complete." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7242,24 +7234,19 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Grade reports listed below are generated each time the Generate Grade " -"Report button is clicked. A link to each grade report remains available " -"on this page, identified by the UTC date and time of generation. Grade " +"The grade reports listed below are generated each time the Generate Grade" +" Report button is clicked. A link to each grade report remains available" +" on this page, identified by the UTC date and time of generation. Grade " "reports are not deleted, so you will always be able to access previously " "generated reports from this page." msgstr "" -#. Translators: "these rules" in this sentence references a detailed -#. description of the grading reports that will appear in a table that -#. contains -#. a mix of different types of reports. This sentence intends to indicate -#. that -#. the description of the grading report does not apply to the other reports -#. that may appear in the table. #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Other reports may appear in the table for which these rules will not " -"necessarily apply." +"The answer distribution report listed below is generated periodically by an " +"automated background process. The report is cumulative, so answers submitted" +" after the process starts are included in a subsequent report. The report is" +" generated several times per day." msgstr "" #. Translators: a table of URL links to report files appears after this @@ -8278,7 +8265,7 @@ msgstr "" #: lms/templates/static_templates/server-error.html msgid "" "Please wait a few seconds and then reload the page. If the problem persists," -" please email us at {email}." +" please email us at {email}." msgstr "" #: lms/templates/static_templates/server-overloaded.html @@ -9306,6 +9293,10 @@ msgstr "" msgid "Page Actions" msgstr "" +#: cms/templates/asset_index.html +msgid "Loading…" +msgstr "" + #: cms/templates/asset_index.html msgid "What files are listed here?" msgstr "" diff --git a/conf/locale/hu/LC_MESSAGES/djangojs.mo b/conf/locale/hu/LC_MESSAGES/djangojs.mo index ff82ea68eae322a4c775a9edd81dc2bfe11f8639..a6a90a993a557cd9fb5033a0eb8dfefb0677bbdd 100644 GIT binary patch delta 18 Zcmey({F`~gMs`yLLjx-#^Nl;48398921@_{ delta 18 Zcmey({F`~gMs^bgLjx-VvyD5P8397&21ft@ diff --git a/conf/locale/hu/LC_MESSAGES/djangojs.po b/conf/locale/hu/LC_MESSAGES/djangojs.po index fce0c3cc6e..126997660f 100644 --- a/conf/locale/hu/LC_MESSAGES/djangojs.po +++ b/conf/locale/hu/LC_MESSAGES/djangojs.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" +"POT-Creation-Date: 2014-03-25 10:27-0400\n" "PO-Revision-Date: 2014-03-19 20:22+0000\n" "Last-Translator: sarina \n" "Language-Team: Hungarian (http://www.transifex.com/projects/p/edx-platform/language/hu/)\n" @@ -789,7 +789,7 @@ msgid "Error generating grades. Please try again." msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js -msgid "File Name (Newest First)" +msgid "File Name" msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js @@ -829,6 +829,21 @@ msgstr "" msgid "Error changing user's permissions." msgstr "" +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Could not find a user with username or email address '<%= identifier %>'." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Error: User '<%= username %>' has not yet activated their account. Users " +"must create and activate their accounts before they can be assigned a role." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Error: You cannot remove yourself from the Instructor group!" +msgstr "" + #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error adding/removing users as beta testers." msgstr "" diff --git a/conf/locale/hy_AM/LC_MESSAGES/django.mo b/conf/locale/hy_AM/LC_MESSAGES/django.mo index e6f0747296fb4483138b22f79aa1c39292e9b0df..6e43b151c0e53faa63e44e261ffae7bbc8f2e52c 100644 GIT binary patch delta 22 ecmezRi}~v><_-D9?4}Ba23AHEo6Cy-cLD%=DGB@l delta 22 ecmezRi}~v><_-D9>?R6^237`Uo6Cy-cLD%=0}1y4 diff --git a/conf/locale/hy_AM/LC_MESSAGES/django.po b/conf/locale/hy_AM/LC_MESSAGES/django.po index 4e27770c80..a31ff11cb8 100644 --- a/conf/locale/hy_AM/LC_MESSAGES/django.po +++ b/conf/locale/hy_AM/LC_MESSAGES/django.po @@ -46,7 +46,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" +"POT-Creation-Date: 2014-03-25 10:28-0400\n" "PO-Revision-Date: 2014-03-18 02:31+0000\n" "Last-Translator: nedbat \n" "Language-Team: Armenian (Armenia) (http://www.transifex.com/projects/p/edx-platform/language/hy_AM/)\n" @@ -1265,7 +1265,7 @@ msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py msgid "" "Can't receive transcripts from Youtube for {youtube_id}. Status code: " -"{statuc_code}." +"{status_code}." msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py @@ -3904,14 +3904,6 @@ msgstr "" msgid "Help" msgstr "" -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "Visual" -msgstr "" - -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "HTML" -msgstr "" - #: common/templates/course_modes/choose.html msgid "Upgrade Your Registration for {} | Choose Your Track" msgstr "" @@ -6335,7 +6327,7 @@ msgid "Students" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -msgid "Answer distribution for problems" +msgid "Score distribution for problems" msgstr "" #: lms/templates/courseware/instructor_dashboard.html @@ -7231,7 +7223,7 @@ msgid "Skip" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html -msgid "Grade Distribution" +msgid "Score Distribution" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html @@ -7308,8 +7300,8 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button generates a CSV file of all students enrolled in this " -"course, along with profile information such as email address and username." +"Click to generate a CSV file of all students enrolled in this course, along " +"with profile information such as email address and username:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7318,7 +7310,7 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"For smaller courses, profile information for enrolled students can be listed" +"For smaller courses, click to list profile information for enrolled students" " directly on this page:" msgstr "" @@ -7328,10 +7320,10 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button displays the grading configuration for the course. The " -"grading configuration is the breakdown of graded subsections of the course " -"(such as exams and problem sets), and can be changed on the 'Grading' page " -"(under 'Settings') in Studio." +"Click to display the grading configuration for the course. The grading " +"configuration is the breakdown of graded subsections of the course (such as " +"exams and problem sets), and can be changed on the 'Grading' page (under " +"'Settings') in Studio." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7339,7 +7331,7 @@ msgid "Grading Configuration" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "Download a CSV of anonymized student IDs by clicking this button." +msgid "Click to download a CSV of anonymized student IDs:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7352,9 +7344,9 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button will generate a CSV grade report for all currently " -"enrolled students. Generated reports appear in a table below and can be " -"downloaded." +"Click to generate a CSV grade report for all currently enrolled students. " +"Links to generated reports appear in a table below when report generation is" +" complete." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7380,24 +7372,19 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Grade reports listed below are generated each time the Generate Grade " -"Report button is clicked. A link to each grade report remains available " -"on this page, identified by the UTC date and time of generation. Grade " +"The grade reports listed below are generated each time the Generate Grade" +" Report button is clicked. A link to each grade report remains available" +" on this page, identified by the UTC date and time of generation. Grade " "reports are not deleted, so you will always be able to access previously " "generated reports from this page." msgstr "" -#. Translators: "these rules" in this sentence references a detailed -#. description of the grading reports that will appear in a table that -#. contains -#. a mix of different types of reports. This sentence intends to indicate -#. that -#. the description of the grading report does not apply to the other reports -#. that may appear in the table. #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Other reports may appear in the table for which these rules will not " -"necessarily apply." +"The answer distribution report listed below is generated periodically by an " +"automated background process. The report is cumulative, so answers submitted" +" after the process starts are included in a subsequent report. The report is" +" generated several times per day." msgstr "" #. Translators: a table of URL links to report files appears after this @@ -8416,7 +8403,7 @@ msgstr "" #: lms/templates/static_templates/server-error.html msgid "" "Please wait a few seconds and then reload the page. If the problem persists," -" please email us at {email}." +" please email us at {email}." msgstr "" #: lms/templates/static_templates/server-overloaded.html @@ -9444,6 +9431,10 @@ msgstr "" msgid "Page Actions" msgstr "" +#: cms/templates/asset_index.html +msgid "Loading…" +msgstr "" + #: cms/templates/asset_index.html msgid "What files are listed here?" msgstr "" diff --git a/conf/locale/hy_AM/LC_MESSAGES/djangojs.mo b/conf/locale/hy_AM/LC_MESSAGES/djangojs.mo index 3402cd2918820c848aa5ccf0d24c31c9895fea1f..7ac8ff66d0ed5f4606c566acf4ff4a6843b6b3bd 100644 GIT binary patch delta 30 lcmeBT>0+6%k=<0m(7?*beBurT4kJ?q19K~5gN+Zg7y*P#2zCGf delta 30 lcmeBT>0+6%k=;bW(7?*TY~l_D4ns=?BLgcVqm2)=7y*O+2yp-a diff --git a/conf/locale/hy_AM/LC_MESSAGES/djangojs.po b/conf/locale/hy_AM/LC_MESSAGES/djangojs.po index ca4e23ae48..b1235b3c5c 100644 --- a/conf/locale/hy_AM/LC_MESSAGES/djangojs.po +++ b/conf/locale/hy_AM/LC_MESSAGES/djangojs.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" -"PO-Revision-Date: 2014-03-19 20:22+0000\n" +"POT-Creation-Date: 2014-03-25 10:27-0400\n" +"PO-Revision-Date: 2014-03-25 07:30+0000\n" "Last-Translator: sarina \n" "Language-Team: Armenian (Armenia) (http://www.transifex.com/projects/p/edx-platform/language/hy_AM/)\n" "MIME-Version: 1.0\n" @@ -789,7 +789,7 @@ msgid "Error generating grades. Please try again." msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js -msgid "File Name (Newest First)" +msgid "File Name" msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js @@ -829,6 +829,21 @@ msgstr "" msgid "Error changing user's permissions." msgstr "" +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Could not find a user with username or email address '<%= identifier %>'." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Error: User '<%= username %>' has not yet activated their account. Users " +"must create and activate their accounts before they can be assigned a role." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Error: You cannot remove yourself from the Instructor group!" +msgstr "" + #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error adding/removing users as beta testers." msgstr "" diff --git a/conf/locale/id/LC_MESSAGES/django.mo b/conf/locale/id/LC_MESSAGES/django.mo index 00370f523ac7a9a82f2ddc864bd1e2070b77806b..a0048ee99c99d0b16c8e8a858fc28f28c04d0b3c 100644 GIT binary patch delta 18 ZcmZo*X<(VKk=<0m(7?*bV&e`EMgTI}1zi9D delta 18 ZcmZo*X<(VKk=;bW(7?*TY~v0OMgTIo1y}$8 diff --git a/conf/locale/id/LC_MESSAGES/django.po b/conf/locale/id/LC_MESSAGES/django.po index 4c7b9ca494..0ae4793ce5 100644 --- a/conf/locale/id/LC_MESSAGES/django.po +++ b/conf/locale/id/LC_MESSAGES/django.po @@ -57,7 +57,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" +"POT-Creation-Date: 2014-03-25 10:28-0400\n" "PO-Revision-Date: 2014-03-18 23:30+0000\n" "Last-Translator: Al Firdaus\n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/edx-platform/language/id/)\n" @@ -1257,7 +1257,7 @@ msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py msgid "" "Can't receive transcripts from Youtube for {youtube_id}. Status code: " -"{statuc_code}." +"{status_code}." msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py @@ -3782,14 +3782,6 @@ msgstr "" msgid "Help" msgstr "" -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "Visual" -msgstr "" - -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "HTML" -msgstr "" - #: common/templates/course_modes/choose.html msgid "Upgrade Your Registration for {} | Choose Your Track" msgstr "" @@ -6211,7 +6203,7 @@ msgid "Students" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -msgid "Answer distribution for problems" +msgid "Score distribution for problems" msgstr "" #: lms/templates/courseware/instructor_dashboard.html @@ -7105,7 +7097,7 @@ msgid "Skip" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html -msgid "Grade Distribution" +msgid "Score Distribution" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html @@ -7182,8 +7174,8 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button generates a CSV file of all students enrolled in this " -"course, along with profile information such as email address and username." +"Click to generate a CSV file of all students enrolled in this course, along " +"with profile information such as email address and username:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7192,7 +7184,7 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"For smaller courses, profile information for enrolled students can be listed" +"For smaller courses, click to list profile information for enrolled students" " directly on this page:" msgstr "" @@ -7202,10 +7194,10 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button displays the grading configuration for the course. The " -"grading configuration is the breakdown of graded subsections of the course " -"(such as exams and problem sets), and can be changed on the 'Grading' page " -"(under 'Settings') in Studio." +"Click to display the grading configuration for the course. The grading " +"configuration is the breakdown of graded subsections of the course (such as " +"exams and problem sets), and can be changed on the 'Grading' page (under " +"'Settings') in Studio." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7213,7 +7205,7 @@ msgid "Grading Configuration" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "Download a CSV of anonymized student IDs by clicking this button." +msgid "Click to download a CSV of anonymized student IDs:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7226,9 +7218,9 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button will generate a CSV grade report for all currently " -"enrolled students. Generated reports appear in a table below and can be " -"downloaded." +"Click to generate a CSV grade report for all currently enrolled students. " +"Links to generated reports appear in a table below when report generation is" +" complete." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7254,24 +7246,19 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Grade reports listed below are generated each time the Generate Grade " -"Report button is clicked. A link to each grade report remains available " -"on this page, identified by the UTC date and time of generation. Grade " +"The grade reports listed below are generated each time the Generate Grade" +" Report button is clicked. A link to each grade report remains available" +" on this page, identified by the UTC date and time of generation. Grade " "reports are not deleted, so you will always be able to access previously " "generated reports from this page." msgstr "" -#. Translators: "these rules" in this sentence references a detailed -#. description of the grading reports that will appear in a table that -#. contains -#. a mix of different types of reports. This sentence intends to indicate -#. that -#. the description of the grading report does not apply to the other reports -#. that may appear in the table. #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Other reports may appear in the table for which these rules will not " -"necessarily apply." +"The answer distribution report listed below is generated periodically by an " +"automated background process. The report is cumulative, so answers submitted" +" after the process starts are included in a subsequent report. The report is" +" generated several times per day." msgstr "" #. Translators: a table of URL links to report files appears after this @@ -8290,7 +8277,7 @@ msgstr "" #: lms/templates/static_templates/server-error.html msgid "" "Please wait a few seconds and then reload the page. If the problem persists," -" please email us at {email}." +" please email us at {email}." msgstr "" #: lms/templates/static_templates/server-overloaded.html @@ -9318,6 +9305,10 @@ msgstr "" msgid "Page Actions" msgstr "" +#: cms/templates/asset_index.html +msgid "Loading…" +msgstr "" + #: cms/templates/asset_index.html msgid "What files are listed here?" msgstr "" diff --git a/conf/locale/id/LC_MESSAGES/djangojs.mo b/conf/locale/id/LC_MESSAGES/djangojs.mo index 0598b7067c9817f6eb94c3b9e9286a6b8be95734..f29d2cbc9037331adc2aff8571ff88d82aef2072 100644 GIT binary patch delta 20 bcmX@=ebjq{rUbjGf}w$xk@;o=iK)B*NSp=_ delta 20 bcmX@=ebjq{rUbi*f}w$xf!SsQiK)B*NPGqh diff --git a/conf/locale/id/LC_MESSAGES/djangojs.po b/conf/locale/id/LC_MESSAGES/djangojs.po index e8d2f721e1..fefab49bcd 100644 --- a/conf/locale/id/LC_MESSAGES/djangojs.po +++ b/conf/locale/id/LC_MESSAGES/djangojs.po @@ -22,7 +22,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" +"POT-Creation-Date: 2014-03-25 10:27-0400\n" "PO-Revision-Date: 2014-03-24 14:25+0000\n" "Last-Translator: sarina \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/edx-platform/language/id/)\n" @@ -793,7 +793,7 @@ msgid "Error generating grades. Please try again." msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js -msgid "File Name (Newest First)" +msgid "File Name" msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js @@ -833,6 +833,21 @@ msgstr "" msgid "Error changing user's permissions." msgstr "" +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Could not find a user with username or email address '<%= identifier %>'." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Error: User '<%= username %>' has not yet activated their account. Users " +"must create and activate their accounts before they can be assigned a role." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Error: You cannot remove yourself from the Instructor group!" +msgstr "" + #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error adding/removing users as beta testers." msgstr "" diff --git a/conf/locale/it_IT/LC_MESSAGES/django.mo b/conf/locale/it_IT/LC_MESSAGES/django.mo index 2cd3306aabd3c54406c4c86adbc0d83be848cf76..6d98fcac59471dabbaa78cc58d2c0b52c30361f5 100644 GIT binary patch delta 20 bcmaE_`(Ag$5?*#w1w#WXBa6+ed0jXGQf3CT delta 20 bcmaE_`(Ag$5?*!_1w#WX1GCMmd0jXGQa}c- diff --git a/conf/locale/it_IT/LC_MESSAGES/django.po b/conf/locale/it_IT/LC_MESSAGES/django.po index 02e754877c..3ad550b284 100644 --- a/conf/locale/it_IT/LC_MESSAGES/django.po +++ b/conf/locale/it_IT/LC_MESSAGES/django.po @@ -62,7 +62,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" +"POT-Creation-Date: 2014-03-25 10:28-0400\n" "PO-Revision-Date: 2014-03-04 17:12+0000\n" "Last-Translator: eevidal\n" "Language-Team: Italian (Italy) (http://www.transifex.com/projects/p/edx-platform/language/it_IT/)\n" @@ -1262,7 +1262,7 @@ msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py msgid "" "Can't receive transcripts from Youtube for {youtube_id}. Status code: " -"{statuc_code}." +"{status_code}." msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py @@ -3790,14 +3790,6 @@ msgstr "" msgid "Help" msgstr "" -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "Visual" -msgstr "" - -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "HTML" -msgstr "" - #: common/templates/course_modes/choose.html msgid "Upgrade Your Registration for {} | Choose Your Track" msgstr "" @@ -6221,7 +6213,7 @@ msgid "Students" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -msgid "Answer distribution for problems" +msgid "Score distribution for problems" msgstr "" #: lms/templates/courseware/instructor_dashboard.html @@ -7117,7 +7109,7 @@ msgid "Skip" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html -msgid "Grade Distribution" +msgid "Score Distribution" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html @@ -7194,8 +7186,8 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button generates a CSV file of all students enrolled in this " -"course, along with profile information such as email address and username." +"Click to generate a CSV file of all students enrolled in this course, along " +"with profile information such as email address and username:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7204,7 +7196,7 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"For smaller courses, profile information for enrolled students can be listed" +"For smaller courses, click to list profile information for enrolled students" " directly on this page:" msgstr "" @@ -7214,10 +7206,10 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button displays the grading configuration for the course. The " -"grading configuration is the breakdown of graded subsections of the course " -"(such as exams and problem sets), and can be changed on the 'Grading' page " -"(under 'Settings') in Studio." +"Click to display the grading configuration for the course. The grading " +"configuration is the breakdown of graded subsections of the course (such as " +"exams and problem sets), and can be changed on the 'Grading' page (under " +"'Settings') in Studio." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7225,7 +7217,7 @@ msgid "Grading Configuration" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "Download a CSV of anonymized student IDs by clicking this button." +msgid "Click to download a CSV of anonymized student IDs:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7238,9 +7230,9 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button will generate a CSV grade report for all currently " -"enrolled students. Generated reports appear in a table below and can be " -"downloaded." +"Click to generate a CSV grade report for all currently enrolled students. " +"Links to generated reports appear in a table below when report generation is" +" complete." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7266,24 +7258,19 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Grade reports listed below are generated each time the Generate Grade " -"Report button is clicked. A link to each grade report remains available " -"on this page, identified by the UTC date and time of generation. Grade " +"The grade reports listed below are generated each time the Generate Grade" +" Report button is clicked. A link to each grade report remains available" +" on this page, identified by the UTC date and time of generation. Grade " "reports are not deleted, so you will always be able to access previously " "generated reports from this page." msgstr "" -#. Translators: "these rules" in this sentence references a detailed -#. description of the grading reports that will appear in a table that -#. contains -#. a mix of different types of reports. This sentence intends to indicate -#. that -#. the description of the grading report does not apply to the other reports -#. that may appear in the table. #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Other reports may appear in the table for which these rules will not " -"necessarily apply." +"The answer distribution report listed below is generated periodically by an " +"automated background process. The report is cumulative, so answers submitted" +" after the process starts are included in a subsequent report. The report is" +" generated several times per day." msgstr "" #. Translators: a table of URL links to report files appears after this @@ -8302,7 +8289,7 @@ msgstr "" #: lms/templates/static_templates/server-error.html msgid "" "Please wait a few seconds and then reload the page. If the problem persists," -" please email us at {email}." +" please email us at {email}." msgstr "" #: lms/templates/static_templates/server-overloaded.html @@ -9330,6 +9317,10 @@ msgstr "Contenuto" msgid "Page Actions" msgstr "Azioni Pagina" +#: cms/templates/asset_index.html +msgid "Loading…" +msgstr "" + #: cms/templates/asset_index.html msgid "What files are listed here?" msgstr "" diff --git a/conf/locale/it_IT/LC_MESSAGES/djangojs.mo b/conf/locale/it_IT/LC_MESSAGES/djangojs.mo index 0e2fa825871dc5b1d54ddc3fe91f74983877f446..139378f1c5aa1616ecac45929732ce037b682117 100644 GIT binary patch delta 20 bcmZoSXgApKoQK_1!O+0U$b9oV9!YKhNALzi delta 20 bcmZoSXgApKoQK^+!O+0Uz-;q79!YKhN6-d8 diff --git a/conf/locale/it_IT/LC_MESSAGES/djangojs.po b/conf/locale/it_IT/LC_MESSAGES/djangojs.po index 79751187d0..da42911934 100644 --- a/conf/locale/it_IT/LC_MESSAGES/djangojs.po +++ b/conf/locale/it_IT/LC_MESSAGES/djangojs.po @@ -29,7 +29,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" +"POT-Creation-Date: 2014-03-25 10:27-0400\n" "PO-Revision-Date: 2014-03-24 14:25+0000\n" "Last-Translator: sarina \n" "Language-Team: Italian (Italy) (http://www.transifex.com/projects/p/edx-platform/language/it_IT/)\n" @@ -804,7 +804,7 @@ msgid "Error generating grades. Please try again." msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js -msgid "File Name (Newest First)" +msgid "File Name" msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js @@ -844,6 +844,21 @@ msgstr "" msgid "Error changing user's permissions." msgstr "" +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Could not find a user with username or email address '<%= identifier %>'." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Error: User '<%= username %>' has not yet activated their account. Users " +"must create and activate their accounts before they can be assigned a role." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Error: You cannot remove yourself from the Instructor group!" +msgstr "" + #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error adding/removing users as beta testers." msgstr "" diff --git a/conf/locale/ja_JP/LC_MESSAGES/django.mo b/conf/locale/ja_JP/LC_MESSAGES/django.mo index 8945e791e3c1f1ff8d0508a85c2af5b73dfc9a2a..1b4bf92ecf920dfc6aaf09d37f97176aa33c8c73 100644 GIT binary patch delta 20 bcmZ3)v4~^C3PyHQ1w#WXBa6-J8H, 2014 # ushige , 2014 +# ngi644 , 2014 # ushige , 2014 # わたカフェの店長, 2013 # #-#-#-#-# django-studio.po (edx-platform) #-#-#-#-# @@ -69,7 +70,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" +"POT-Creation-Date: 2014-03-25 10:28-0400\n" "PO-Revision-Date: 2014-02-24 17:06+0000\n" "Last-Translator: h_yoshida \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/edx-platform/language/ja_JP/)\n" @@ -1269,7 +1270,7 @@ msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py msgid "" "Can't receive transcripts from Youtube for {youtube_id}. Status code: " -"{statuc_code}." +"{status_code}." msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py @@ -3794,14 +3795,6 @@ msgstr "" msgid "Help" msgstr "" -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "Visual" -msgstr "" - -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "HTML" -msgstr "" - #: common/templates/course_modes/choose.html msgid "Upgrade Your Registration for {} | Choose Your Track" msgstr "" @@ -6223,7 +6216,7 @@ msgid "Students" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -msgid "Answer distribution for problems" +msgid "Score distribution for problems" msgstr "" #: lms/templates/courseware/instructor_dashboard.html @@ -7117,7 +7110,7 @@ msgid "Skip" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html -msgid "Grade Distribution" +msgid "Score Distribution" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html @@ -7194,8 +7187,8 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button generates a CSV file of all students enrolled in this " -"course, along with profile information such as email address and username." +"Click to generate a CSV file of all students enrolled in this course, along " +"with profile information such as email address and username:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7204,7 +7197,7 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"For smaller courses, profile information for enrolled students can be listed" +"For smaller courses, click to list profile information for enrolled students" " directly on this page:" msgstr "" @@ -7214,10 +7207,10 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button displays the grading configuration for the course. The " -"grading configuration is the breakdown of graded subsections of the course " -"(such as exams and problem sets), and can be changed on the 'Grading' page " -"(under 'Settings') in Studio." +"Click to display the grading configuration for the course. The grading " +"configuration is the breakdown of graded subsections of the course (such as " +"exams and problem sets), and can be changed on the 'Grading' page (under " +"'Settings') in Studio." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7225,7 +7218,7 @@ msgid "Grading Configuration" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "Download a CSV of anonymized student IDs by clicking this button." +msgid "Click to download a CSV of anonymized student IDs:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7238,9 +7231,9 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button will generate a CSV grade report for all currently " -"enrolled students. Generated reports appear in a table below and can be " -"downloaded." +"Click to generate a CSV grade report for all currently enrolled students. " +"Links to generated reports appear in a table below when report generation is" +" complete." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7266,24 +7259,19 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Grade reports listed below are generated each time the Generate Grade " -"Report button is clicked. A link to each grade report remains available " -"on this page, identified by the UTC date and time of generation. Grade " +"The grade reports listed below are generated each time the Generate Grade" +" Report button is clicked. A link to each grade report remains available" +" on this page, identified by the UTC date and time of generation. Grade " "reports are not deleted, so you will always be able to access previously " "generated reports from this page." msgstr "" -#. Translators: "these rules" in this sentence references a detailed -#. description of the grading reports that will appear in a table that -#. contains -#. a mix of different types of reports. This sentence intends to indicate -#. that -#. the description of the grading report does not apply to the other reports -#. that may appear in the table. #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Other reports may appear in the table for which these rules will not " -"necessarily apply." +"The answer distribution report listed below is generated periodically by an " +"automated background process. The report is cumulative, so answers submitted" +" after the process starts are included in a subsequent report. The report is" +" generated several times per day." msgstr "" #. Translators: a table of URL links to report files appears after this @@ -8302,7 +8290,7 @@ msgstr "" #: lms/templates/static_templates/server-error.html msgid "" "Please wait a few seconds and then reload the page. If the problem persists," -" please email us at {email}." +" please email us at {email}." msgstr "" #: lms/templates/static_templates/server-overloaded.html @@ -9330,6 +9318,10 @@ msgstr "" msgid "Page Actions" msgstr "" +#: cms/templates/asset_index.html +msgid "Loading…" +msgstr "" + #: cms/templates/asset_index.html msgid "What files are listed here?" msgstr "" diff --git a/conf/locale/ja_JP/LC_MESSAGES/djangojs.mo b/conf/locale/ja_JP/LC_MESSAGES/djangojs.mo index 40925df206fb13df715b3b45b6a3ad70920c8108..b6bdd6fec51081b5e000e94205e813b27d60864e 100644 GIT binary patch delta 18 ZcmZ3>vX*7S1$I*fLjx-#^NrWT7y&xl1_A&8 delta 18 ZcmZ3>vX*7S1$Gk!Ljx-VvyIoo7y&xJ1^xg4 diff --git a/conf/locale/ja_JP/LC_MESSAGES/djangojs.po b/conf/locale/ja_JP/LC_MESSAGES/djangojs.po index 935564f517..f3bcb496d1 100644 --- a/conf/locale/ja_JP/LC_MESSAGES/djangojs.po +++ b/conf/locale/ja_JP/LC_MESSAGES/djangojs.po @@ -19,7 +19,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" +"POT-Creation-Date: 2014-03-25 10:27-0400\n" "PO-Revision-Date: 2014-03-24 14:25+0000\n" "Last-Translator: sarina \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/edx-platform/language/ja_JP/)\n" @@ -778,7 +778,7 @@ msgid "Error generating grades. Please try again." msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js -msgid "File Name (Newest First)" +msgid "File Name" msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js @@ -818,6 +818,21 @@ msgstr "" msgid "Error changing user's permissions." msgstr "" +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Could not find a user with username or email address '<%= identifier %>'." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Error: User '<%= username %>' has not yet activated their account. Users " +"must create and activate their accounts before they can be assigned a role." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Error: You cannot remove yourself from the Instructor group!" +msgstr "" + #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error adding/removing users as beta testers." msgstr "" diff --git a/conf/locale/km_KH/LC_MESSAGES/django.mo b/conf/locale/km_KH/LC_MESSAGES/django.mo index 4a01641e7e58a47fd9f6f6882fb9e8e9c5a9dfcd..95eaade233cc017c3986bce74e42cab5cde2ab67 100644 GIT binary patch delta 18 ZcmbQnGL2=zMs`yLLjx-#i;X+t7y&i%1)l%_ delta 18 ZcmbQnGL2=zMs^bgLjx-VvyD6A7y&iW1)2Z= diff --git a/conf/locale/km_KH/LC_MESSAGES/django.po b/conf/locale/km_KH/LC_MESSAGES/django.po index c066651ba8..3ba95ea5d3 100644 --- a/conf/locale/km_KH/LC_MESSAGES/django.po +++ b/conf/locale/km_KH/LC_MESSAGES/django.po @@ -38,7 +38,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" +"POT-Creation-Date: 2014-03-25 10:28-0400\n" "PO-Revision-Date: 2014-02-06 03:04+0000\n" "Last-Translator: nedbat \n" "Language-Team: Khmer (Cambodia) (http://www.transifex.com/projects/p/edx-platform/language/km_KH/)\n" @@ -1238,7 +1238,7 @@ msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py msgid "" "Can't receive transcripts from Youtube for {youtube_id}. Status code: " -"{statuc_code}." +"{status_code}." msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py @@ -3763,14 +3763,6 @@ msgstr "" msgid "Help" msgstr "" -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "Visual" -msgstr "" - -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "HTML" -msgstr "" - #: common/templates/course_modes/choose.html msgid "Upgrade Your Registration for {} | Choose Your Track" msgstr "" @@ -6192,7 +6184,7 @@ msgid "Students" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -msgid "Answer distribution for problems" +msgid "Score distribution for problems" msgstr "" #: lms/templates/courseware/instructor_dashboard.html @@ -7086,7 +7078,7 @@ msgid "Skip" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html -msgid "Grade Distribution" +msgid "Score Distribution" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html @@ -7163,8 +7155,8 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button generates a CSV file of all students enrolled in this " -"course, along with profile information such as email address and username." +"Click to generate a CSV file of all students enrolled in this course, along " +"with profile information such as email address and username:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7173,7 +7165,7 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"For smaller courses, profile information for enrolled students can be listed" +"For smaller courses, click to list profile information for enrolled students" " directly on this page:" msgstr "" @@ -7183,10 +7175,10 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button displays the grading configuration for the course. The " -"grading configuration is the breakdown of graded subsections of the course " -"(such as exams and problem sets), and can be changed on the 'Grading' page " -"(under 'Settings') in Studio." +"Click to display the grading configuration for the course. The grading " +"configuration is the breakdown of graded subsections of the course (such as " +"exams and problem sets), and can be changed on the 'Grading' page (under " +"'Settings') in Studio." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7194,7 +7186,7 @@ msgid "Grading Configuration" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "Download a CSV of anonymized student IDs by clicking this button." +msgid "Click to download a CSV of anonymized student IDs:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7207,9 +7199,9 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button will generate a CSV grade report for all currently " -"enrolled students. Generated reports appear in a table below and can be " -"downloaded." +"Click to generate a CSV grade report for all currently enrolled students. " +"Links to generated reports appear in a table below when report generation is" +" complete." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7235,24 +7227,19 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Grade reports listed below are generated each time the Generate Grade " -"Report button is clicked. A link to each grade report remains available " -"on this page, identified by the UTC date and time of generation. Grade " +"The grade reports listed below are generated each time the Generate Grade" +" Report button is clicked. A link to each grade report remains available" +" on this page, identified by the UTC date and time of generation. Grade " "reports are not deleted, so you will always be able to access previously " "generated reports from this page." msgstr "" -#. Translators: "these rules" in this sentence references a detailed -#. description of the grading reports that will appear in a table that -#. contains -#. a mix of different types of reports. This sentence intends to indicate -#. that -#. the description of the grading report does not apply to the other reports -#. that may appear in the table. #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Other reports may appear in the table for which these rules will not " -"necessarily apply." +"The answer distribution report listed below is generated periodically by an " +"automated background process. The report is cumulative, so answers submitted" +" after the process starts are included in a subsequent report. The report is" +" generated several times per day." msgstr "" #. Translators: a table of URL links to report files appears after this @@ -8271,7 +8258,7 @@ msgstr "" #: lms/templates/static_templates/server-error.html msgid "" "Please wait a few seconds and then reload the page. If the problem persists," -" please email us at {email}." +" please email us at {email}." msgstr "" #: lms/templates/static_templates/server-overloaded.html @@ -9299,6 +9286,10 @@ msgstr "" msgid "Page Actions" msgstr "" +#: cms/templates/asset_index.html +msgid "Loading…" +msgstr "" + #: cms/templates/asset_index.html msgid "What files are listed here?" msgstr "" diff --git a/conf/locale/km_KH/LC_MESSAGES/djangojs.mo b/conf/locale/km_KH/LC_MESSAGES/djangojs.mo index 92b3609e21eff6eda1ac02bb8143673f74bad665..4764305c8297df6e389a9bf4e5b9f0cde00c5cfe 100644 GIT binary patch delta 18 ZcmZo\n" "Language-Team: Khmer (Cambodia) (http://www.transifex.com/projects/p/edx-platform/language/km_KH/)\n" @@ -773,7 +773,7 @@ msgid "Error generating grades. Please try again." msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js -msgid "File Name (Newest First)" +msgid "File Name" msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js @@ -813,6 +813,21 @@ msgstr "" msgid "Error changing user's permissions." msgstr "" +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Could not find a user with username or email address '<%= identifier %>'." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Error: User '<%= username %>' has not yet activated their account. Users " +"must create and activate their accounts before they can be assigned a role." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Error: You cannot remove yourself from the Instructor group!" +msgstr "" + #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error adding/removing users as beta testers." msgstr "" diff --git a/conf/locale/ko_KR/LC_MESSAGES/django.mo b/conf/locale/ko_KR/LC_MESSAGES/django.mo index b1e238f6ff7592386bd1ccc6aee7b14f108fb06e..564f157a05ede0f64edd953060e5d86f6ceb32d8 100644 GIT binary patch delta 16195 zcmZA82YgT0|HtwB71>525<7{J#EiX1%?M%>qef7Q+O1K=*QQpHDq_^$Blg~-R%vUM z)+j~QuF+xrU+?cZ{ty5Eef&FNgu;%b_}`fq|HaLD&&BuuqY$oFP~j_o6QB zU&9!V;p9tV6gI&CuI~&Y&>f6I-N9T;#Z)YV9hkqCI14pHPf!EQS&Pmv8ogYO(;6eO zU7X`IqugEF-03+?NB$;iz>iTg?24z2?j(dD1|v{YQyX=GM9hv!=!IXPI&fotoQj2U z2dbajs0;mt)A22;pXqhX49>-J_Gh%;? z#4)yh8S4CPsDT_sE#*(BJ#ZaM;S1DeEL6|zxjyxne>EIHff|msreGlXRP@E&sDT{D zym%fpz<+IhV1l{x5G+7>B>H1r)cMWO58K#$XVeY#bQ9=~CZbN5gX(xGmcVV84*x`* z@Hgr)3a#%r*{}ra`~=jEw86COf$pdq>fON36lws=PyGWN z%m_1~)+{^fjvHb|?138a5Y$vp!H;n}YJicA&4r7iE?f>(UK!_O0_ufz5B>D~|3#oX zeuwm>OdyZz}9cUVDbl1Ykv-7@d|2S z=~|e*k{{=iFVTYe*RDQ8fjWMGTJwKxK9<*>W}pIUhH7C5CZGnKWObunRP#{-*n!&R zCsB8N7Igz&Os@tKWG&o^`Bz8r6lf28j4?O_HRVfCce)w1%MaS}Q>X#`iW>M$48=#N z0eH7IQ=bKAlP`!v@i402>K{5zeQe?;$VRXLb!R(qAfCo}jBCT)<5yS)PoQ?StF2jM zAJhP|U_OjO?S;Ci8);v!Fq93WfkYrP?sf_j=mOPHBd?EH zu_@|;Jy3W21*(JLs41Rcor^x?*P+heg4*@FFbkeWAH0p)6Ax_uIfm)^e?_2oddSD- zbGa<)@o9@b*b8f7f7E8&iRJJJYR2B6W~y{oV=dGjHb)J#BPQTym=IU_9NT4Yji0WVh`r}s^fU|9W305P&4%P8v)E#E~#I!4f>Zc59N$X&CY>ox659Y=c z)BtvW!u)IZo}@s#{}O5`9;hLkDY%E(3nhD+juSA3`u52GoN@d}!snrwF?H5oiDlP`h*;7G>&R;!yI12Jiud zE0K={=R@93jd26Uq1Pbu9;l0>$p3&ju^BIkAnc1FI1;t%zd>DZE3&!W&S3&gJsZp_bwf>T!BxeTAAj|H0-0*-+;fL_Gy1Q5UFy!5EKG*cvn8aP-1t^nCu$B+%L} zKy|zd_2SrxTDzZ6kKJ#m3;m56kn@FkbEZe-YhWR4gqd*&7RPC*899XN|2k?(A7i+l z|I9;7MM>0@)xb;G40Q*wtV0-9MGc?@24a%62kMRoq0S$Rx}lk<_6t!1T7|r|oqeds zF?<;FpPe9{U<-Cay>PNIs+_2ACmKK{)J!x$4Wun|Y=#lo4~yY+RQp4y z_7_kWyoQ>IH<%woMsPs|l}4Dyt}|+lhM_Jz1$Dw4)Xb!!)^saY!9Oq$#*AbzSQqtp zPDY(K9e=>(*Z>Fdh?K_fPy>7ICa6f@GunLKS4UlFB5G!)q1Jj9YHgRGHsco5jGaWi z7cQZu_;=LieTo`D;26_SBx+`3unZQ(Z0PPnpc96pI-Z5P&^pY4`>-?qf|`+PW6e9f zfwd2MrW|!ghiv&N)E;_>+AD$M%%+S$UAO?UL~f@Bfe!_VsHty@+Pytd0~v_wcszRH zG}N8XK;8Lb)OqVrGr8B6|A)Thy~msO=~3--p!$zS&+q@m2qGz{gxW-HQ6nCTI$@gf zF21p%W-9edvzd-zU-Eab3AUPGUcqayG5LpB3#(2vzbTEy#pDlTdF(ogrC|R#iwJns zolB^S#K~qUrlKCVWvDgVgZ1zkR>!JS9OnZZg$Z~F3t-S!=G9yQ*N`89IzM)*c|mnX zoi`2L*SNDEZN-M^d~c)T3f9Ln$z}k#zBX%K3VFRdiP%Z?$Qn8&XPC8)LvQk(FdcS7 z-M|2wpKS9fr~z-7!TJXiyrDo-9rTS^>l~;(kq=c~2-RU3o3DX7uL0)9Bn-rnsJ$=+ zqj5fF#Ut1guVOn)m}wr<)iarYb(~6pD)yl6Am=Qz`SM^M@+DCnCt?_OK|dUdnQ<&? z0CQ07mZSRJhI%XyV;MY)dT#{GHhZRyn?QFu*SZ)Rkza*cikEm8AEfX-5jV~;FOrRO z%^JJrnU3Qzk$N|3Z7-k(6gHm^9L$4P(d%3Oyn{DzCAtePVA=@Ip$5`oq4~nl4z;$Q zqeeanb;pM=98Y0xyoXgW{UY-eHNd>&dt)djqv}_p+W(2!FddIVWj+7V1VI#hgqo`U zm>x%4r=vck7N7>S3!`0pqroQRpD!_+FMg?cJUd&5qBijiZws zNhLT+MaXhfaT!~Ye~u-w;R^Fuj>1^-doVxVN7aWikFpNx@f?cU-N&&J0}Wfna*+Rc zwfW0Ql{IGR24GjN@9ZJyjL~aZGftR<5#(pBGcTg;s2Mqhnt{tW0v}*s?7iMh`ERJF z!aLP$$}FfoP#Dub#Dqem}ur?6ZOS4ENF3Uz^BFb%#& zwbyT&+LXbl$FUgdyjrM!5>OXzgn6(zX2L-mnSb5kMB897>P}anMx2V?xC5KxKGbFm z-DE!XieWVQ4yf|+SO^zmUOa=Efv1=Y(``2Sf>?lj4L3nwf}U6quVH2k*uq@lw7+7r)gdDtFvehlio(%2E>FcDYUdS|b$$NFa= zP{&cIJFS2kKo?ZUpP}yH8(fSVunIQc=lK=D`5J4H587{LED=kPZ;M%3s;Sr?S03P( z5XvJCna_s7=*#t;aRl1kU!kUMK577|7=wFJGjto%;eVJHeGi)p7DBZzfpxGdR>TRm z{wQiDzDLIDTt$DJe}v_ZAXq`56OUmI%yiV85Q`en2dE1)#z<^$^TRPW`6;LwN=41! zNsPq5Q3KEVojJd-wE`BWJpMc8zahb33I^f{^ug-K%mC_OF7mBW9SuUgXeOcVU?%F$ z7NVwnqs`w!_4C5|8e_<(J#NYiqs}jRocUM7%C@2=>Q3sRI_`r0I1n{}5vW}}1GQ%k zqh|0D=EQ$dOA~g&+;IhKJdSd)0a52&K53q^M{WW?3NoBB1IdE^m@Ynqd<5LtXeRYCwOYuJ;TBxt#NgfW92RGp4}>)Bvud zp6`2BuOG~xWOASel!%eo7Iooa)=8+DOF=E=dJMu7sCK`g26ER^&iX$kC`dutAI&$D zqNpjagSt>Z9E_i1Fg~;8K0ld`(_=%*!%;KV3qx7!6x8{tXU*Q(W<7~PlwZS)T;F+2 zkburP^NprHYPT*x-N`Ww!7J7$s0(?YH&a_2b!YL`L>xx`Bb&d8nu#ZtLcK&III0@M_*Lbcmv z^T$!wxr|5g$tC80G{N@E=7N=f;ad>-=BOoDi@M->?1gu+2Dbdw40JA5B7Yh+kiaYE z!lBk^)Bwt&X1Eqs#01QW5D6z3!S# zm>WxwuZuZxDEeaxHozsQ3qQr0==Z1jIIfSnfn-$wDK@_xHIQ{!n(I5e33P$KP-`A_ zj}I8Ej~VbX>V&(f4*y0C;EgT!yKf$^Fw{VbV*tjX-l&aH=QYP_*amf-`RLE}oudT0 zzz?Vsui6H8QBOhe1JgkPRJ&rUQik>xpZe}tC^}H{& z?na$=7BzFfK4+Mv2p&+Nsm}AlOkD+3#|^A)P_NMLsCHvekLf&AM;A~RzJpcpA-2RK zf1BS4$6{&nKcQyS?;kVMF>ZqK6eM6Qo<}W7+JDW3%3?hEhUml8&%)W{zx|J8!tyW8 z?}D$e9{FLf%m7Z{X7c{8%{QyP7(u?w8?&hsF^s&sGl3qrA(#$RP!CJjC)7+1vyMRxWD;sdQ&8vcK)0ssG=WaI zWh?HZF6d&%>BK-(eKu<(Y6fCZFPd`biwUTKG(%me2Wr3*QSXOMr~y7gz32jbU2e~m zh5DKi701F<#G%&cQ&fkGQ625F`J1Rac!|1jke|!*N9e4m8LWfqr$2VVMW`k8_c!N- zA(QA7@^`yDe;6zl;PU)Qbv|aG;cwUpA7eXg#@}T$1DmWnQ8RY{_4NFVy0aIkfd!{C zMx$o1B5H5cvE`jn{S9^#=nh6;0)C14@dB!&x2PG&oZfU)7*$>Yldz#JPerxci&^mk zmc>V?3&mt`dEP6rsDXCCNOTV&&;aJ4I$nwz@lMo<$53m12DK-yqt^USTmA;sE@MVB zfH2hgv8b7;gnIL}w&hb%{mn=EaXag6#UbmD)@!Iu^Z@fQ32$$Rs+e9d$(tfl9F7r|NzT$x>---6d;G4lW74lKx* z`SSQX>ID)WW-e3?Ym;w^>TnKL!9TDn#$+)sqOMqq{ASdE?&5W<&L0Qj_5A1Mtx^?x zU@KgUSGhCa>}FHm&cVRQ7s%=I`~~CFT;^#wfm-vwa0~{7yPN?y6;Wv~mj#d)amm#8)Ok2H@@h&2*bUj)^0MVqgVx^N@p-R^WnJtfJg zJ+sP|@5N~HcO!ZJ=Mx0wc6q*Xtw&w3QXaF$aX5{93)IN(+VW?p&FY=kw9AgVa3R#d zYS?^Zo9~9&GXrgYJZc8M$?JA`{)oJSf~FL_L~Wji`OKZ2LcKW7qBhTU3?y7#zF&RI?-B=ED7d1=L8Y9S$!3OAF zN}yNmGt^_2ubA1zwNX<%76Wk(YOR-B*I^9#EvPlVf=r6@4BL>;Uc$VH2BJQ`r=q5O zGq%U0I7!ccbV--zSEx;>HGGVED*Q^hoNG89b7I%hW(mfi?&u-5#+WkZO*aztnC-;M z_z0_Ek+Qreus0^*VeHF5qsqCQJG#=$@@4?;3T6-N#(^{ps_1e)!|~Xf6JDdHxMgKC z9-TAo^8qXy(#)tCXb*+NlE5RG~)>ta^ykDkB(Pa)8WGf^X*kGi8ZsD?XG z9sPtF$W7D$@1WN7G3LiK)l5HyP|te_EP!#Sz0}9nkFidw#`CWWCsUwry(y>>evkT; z`o}g5scr_89rc|q26g9UF%hd_D9*x?xDK^cH&Cx^r-sY(uU)cZZnE*HP20VO+kAM8 zum#IdkIx>|d*D9m!=+nI)6ou}xRDgoc+zHD zuewRejf;l3``MDSl;~=8N!3W3C}&Nbg~U3>ymw}^_u@OW`HK8F(nrM0NS_h^MmkBX zBbN9D@pq&a#JsSacF0Gp_MkbIQn;9q4;;^t9*fY39qbIHWC*d2_10Y`>vTXKE6<<1 zkDv}_#5qU1Ply{3UnRa^>v(y2jsyJ6sq1S92Pr&H`jb?G#-~YxiEEPrh?#QFF&z0; zd2cgg#Z;z-`4o0N4z9s2dCE9dOM$LOBK4;^)Au!uO4 zG=$W{mM_O2s9#OJp1v&FDY5SZ@xsI>X zF!}2VW|Fq5gkvw2BW#18>`QQEbF%8~OI2MTshzcXga6?n&xI+ztQ13fPi*zAbx>56SE3M!qWX&$e7;`gHn+{8Maa%hwS{ z>l{7*_bA*-8bdt6cH~dKGI<@xiBDorPmZ@CZN^ac?(lrPk^h1M{a>kc{70HjJPUJ^ zI+C)HpF^rne3SNdNbb-1(S-sXH%NRHbH2sZq(U^-u^+Wjf4~p%9{x(&M_o-%3-bq` zPl?Y`f5MiDL!{QE>y+QdtekgP}qDHdK?Dl<7!IStHbk zyN=H(-)KVT0&zLgMe<+L?rTynQXa}~p^lwcpZo+*p85ZZ!rmlr(igT7p_73|<1v7= z#Fpn#1;;h&bX>x=r2fQJX;apgtL}h3Cxo(E#0^R3NVnf>vq0wEr% z$h!hL@x2B|$bUd8|6ZBe)X)!m^rTK-fpqv1ceXdtp8Ok6DSLpj_O_4Ol>I`=q4)nb zf>xv-NqtE=Zqu+a>2G^N9*m;AvF*5?rxovVY{-vX*b$>_dsSyAo=lnk%R?gh8|34$ zxhgqIcz$~BpFeBTsIjNu|Ni)bavfh9oPp$%NrT8Q!P59WX&s$6AfFF^wQa>;q*9c> zc&{ui@u!qEqpj!pSKT@a@{)on97ujO9wx7&2JsoyGlziXF- zlhF}H!4=}E#37{m#9yP!)|V%Kcl<`6-|&5H!FQZno}?p=RLK+ZeTcH3NEdA%3B*r` zA5;H3sfkwUA;Di1Zly8@@dT2N+4iIelXVhp{t@|0q)nvVoU=^zxRLZgF^7K7DMnhs zIax?2smqB?m56op#JLK{EQzr^)z`F31N+w2&G zI_hE?+U+Ht=PBXW0$X>9@?E5PL=_o9}Gfh=sHZ#0;c{ zq_w2tqyWmN(Y`M!n*6(C82K&Kogwuloj3nHlGl*!JPQ`0^=VQUTQ-|`4XG9Rft>XI zahBc*8`rg+d_?6O;(u*k=L{e{ zBmXfeo-~YnGtyYjO(AWktO|J@TgVS0|Gn*ZG-WSI6)8)kY@sdBoW{NgCsNshN*$}H zd}L$gkLd?TZ_4(QR++35VLMUwd&9c;ldv)uy=~0!gKAQ&B8l8Dl#@0n5HtqVnYZc$pk;RKuC{b=x a!R=xGo7x;mpKa5?%Zd3mb$Gio{(k_&FLNaT delta 16549 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\n" "Language-Team: Korean (Korea) (http://www.transifex.com/projects/p/edx-platform/language/ko_KR/)\n" @@ -1239,7 +1239,7 @@ msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py msgid "" "Can't receive transcripts from Youtube for {youtube_id}. Status code: " -"{statuc_code}." +"{status_code}." msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py @@ -3749,14 +3749,6 @@ msgstr "" msgid "Help" msgstr "" -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "Visual" -msgstr "" - -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "HTML" -msgstr "" - #: common/templates/course_modes/choose.html msgid "Upgrade Your Registration for {} | Choose Your Track" msgstr "" @@ -6255,8 +6247,8 @@ msgid "Students" msgstr "학생" #: lms/templates/courseware/instructor_dashboard.html -msgid "Answer distribution for problems" -msgstr "문제에 대한 답 분포" +msgid "Score distribution for problems" +msgstr "" #: lms/templates/courseware/instructor_dashboard.html #: lms/templates/courseware/instructor_dashboard.html @@ -7154,8 +7146,8 @@ msgid "Skip" msgstr "건너뛰기" #: lms/templates/instructor/instructor_dashboard_2/analytics.html -msgid "Grade Distribution" -msgstr "성적 분포" +msgid "Score Distribution" +msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html msgid "" @@ -7231,8 +7223,8 @@ msgstr "강좌 경고" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button generates a CSV file of all students enrolled in this " -"course, along with profile information such as email address and username." +"Click to generate a CSV file of all students enrolled in this course, along " +"with profile information such as email address and username:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7241,7 +7233,7 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"For smaller courses, profile information for enrolled students can be listed" +"For smaller courses, click to list profile information for enrolled students" " directly on this page:" msgstr "" @@ -7251,10 +7243,10 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button displays the grading configuration for the course. The " -"grading configuration is the breakdown of graded subsections of the course " -"(such as exams and problem sets), and can be changed on the 'Grading' page " -"(under 'Settings') in Studio." +"Click to display the grading configuration for the course. The grading " +"configuration is the breakdown of graded subsections of the course (such as " +"exams and problem sets), and can be changed on the 'Grading' page (under " +"'Settings') in Studio." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7262,7 +7254,7 @@ msgid "Grading Configuration" msgstr "성적 설정" #: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "Download a CSV of anonymized student IDs by clicking this button." +msgid "Click to download a CSV of anonymized student IDs:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7275,9 +7267,9 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button will generate a CSV grade report for all currently " -"enrolled students. Generated reports appear in a table below and can be " -"downloaded." +"Click to generate a CSV grade report for all currently enrolled students. " +"Links to generated reports appear in a table below when report generation is" +" complete." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7303,24 +7295,19 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Grade reports listed below are generated each time the Generate Grade " -"Report button is clicked. A link to each grade report remains available " -"on this page, identified by the UTC date and time of generation. Grade " +"The grade reports listed below are generated each time the Generate Grade" +" Report button is clicked. A link to each grade report remains available" +" on this page, identified by the UTC date and time of generation. Grade " "reports are not deleted, so you will always be able to access previously " "generated reports from this page." msgstr "" -#. Translators: "these rules" in this sentence references a detailed -#. description of the grading reports that will appear in a table that -#. contains -#. a mix of different types of reports. This sentence intends to indicate -#. that -#. the description of the grading report does not apply to the other reports -#. that may appear in the table. #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Other reports may appear in the table for which these rules will not " -"necessarily apply." +"The answer distribution report listed below is generated periodically by an " +"automated background process. The report is cumulative, so answers submitted" +" after the process starts are included in a subsequent report. The report is" +" generated several times per day." msgstr "" #. Translators: a table of URL links to report files appears after this @@ -8357,10 +8344,8 @@ msgstr "{platform_name} 서버에 500 오류가 있습니다." #: lms/templates/static_templates/server-error.html msgid "" "Please wait a few seconds and then reload the page. If the problem persists," -" please email us at {email}." +" please email us at {email}." msgstr "" -"몇 초 기다렸다가 페이지를 다시 로드해 보십시요. 문제가 지속되면 {email}로 이메일 " -"주십시요." #: lms/templates/static_templates/server-overloaded.html msgid "Currently the {platform_name} servers are overloaded" @@ -9394,6 +9379,10 @@ msgstr "" msgid "Page Actions" msgstr "" +#: cms/templates/asset_index.html +msgid "Loading…" +msgstr "" + #: cms/templates/asset_index.html msgid "What files are listed here?" msgstr "" diff --git a/conf/locale/ko_KR/LC_MESSAGES/djangojs.mo b/conf/locale/ko_KR/LC_MESSAGES/djangojs.mo index 60fa66dfa81bdf0387b51259da29786d49c1b1e4..4eff956c94eff8a1d219ebb46701972336ce551f 100644 GIT binary patch delta 18 Zcmey*{GWNkMs`yLLjx-#^Nl;)8399)23G(8 delta 18 Zcmey*{GWNkMs^bgLjx-VvyD648399e22%h4 diff --git a/conf/locale/ko_KR/LC_MESSAGES/djangojs.po b/conf/locale/ko_KR/LC_MESSAGES/djangojs.po index f681ef2efd..22f066bbc8 100644 --- a/conf/locale/ko_KR/LC_MESSAGES/djangojs.po +++ b/conf/locale/ko_KR/LC_MESSAGES/djangojs.po @@ -19,7 +19,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" +"POT-Creation-Date: 2014-03-25 10:27-0400\n" "PO-Revision-Date: 2014-03-24 14:25+0000\n" "Last-Translator: sarina \n" "Language-Team: Korean (Korea) (http://www.transifex.com/projects/p/edx-platform/language/ko_KR/)\n" @@ -778,7 +778,7 @@ msgid "Error generating grades. Please try again." msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js -msgid "File Name (Newest First)" +msgid "File Name" msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js @@ -818,6 +818,21 @@ msgstr "" msgid "Error changing user's permissions." msgstr "" +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Could not find a user with username or email address '<%= identifier %>'." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Error: User '<%= username %>' has not yet activated their account. Users " +"must create and activate their accounts before they can be assigned a role." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Error: You cannot remove yourself from the Instructor group!" +msgstr "" + #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error adding/removing users as beta testers." msgstr "" diff --git a/conf/locale/lt_LT/LC_MESSAGES/django.mo b/conf/locale/lt_LT/LC_MESSAGES/django.mo index 5df180a71e32e8117965353e75ab4d198e4fdce2..e83bf23d7406bbd114049394a4907a21a5831802 100644 GIT binary patch delta 22 dcmZ4egmLu~#towO?4}Ba23AHEn`P|zjR9X%2G#%o delta 22 dcmZ4egmLu~#towO>?R6^237`Un`P|zjR9XR2GIZj diff --git a/conf/locale/lt_LT/LC_MESSAGES/django.po b/conf/locale/lt_LT/LC_MESSAGES/django.po index efadd065c4..f20bfbe162 100644 --- a/conf/locale/lt_LT/LC_MESSAGES/django.po +++ b/conf/locale/lt_LT/LC_MESSAGES/django.po @@ -54,7 +54,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" +"POT-Creation-Date: 2014-03-25 10:28-0400\n" "PO-Revision-Date: 2014-02-13 21:00+0000\n" "Last-Translator: Edukometrija \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/edx-platform/language/lt_LT/)\n" @@ -1261,7 +1261,7 @@ msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py msgid "" "Can't receive transcripts from Youtube for {youtube_id}. Status code: " -"{statuc_code}." +"{status_code}." msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py @@ -3865,14 +3865,6 @@ msgstr "" msgid "Help" msgstr "" -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "Visual" -msgstr "" - -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "HTML" -msgstr "" - #: common/templates/course_modes/choose.html msgid "Upgrade Your Registration for {} | Choose Your Track" msgstr "" @@ -6298,7 +6290,7 @@ msgid "Students" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -msgid "Answer distribution for problems" +msgid "Score distribution for problems" msgstr "" #: lms/templates/courseware/instructor_dashboard.html @@ -7196,7 +7188,7 @@ msgid "Skip" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html -msgid "Grade Distribution" +msgid "Score Distribution" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html @@ -7273,8 +7265,8 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button generates a CSV file of all students enrolled in this " -"course, along with profile information such as email address and username." +"Click to generate a CSV file of all students enrolled in this course, along " +"with profile information such as email address and username:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7283,7 +7275,7 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"For smaller courses, profile information for enrolled students can be listed" +"For smaller courses, click to list profile information for enrolled students" " directly on this page:" msgstr "" @@ -7293,10 +7285,10 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button displays the grading configuration for the course. The " -"grading configuration is the breakdown of graded subsections of the course " -"(such as exams and problem sets), and can be changed on the 'Grading' page " -"(under 'Settings') in Studio." +"Click to display the grading configuration for the course. The grading " +"configuration is the breakdown of graded subsections of the course (such as " +"exams and problem sets), and can be changed on the 'Grading' page (under " +"'Settings') in Studio." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7304,7 +7296,7 @@ msgid "Grading Configuration" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "Download a CSV of anonymized student IDs by clicking this button." +msgid "Click to download a CSV of anonymized student IDs:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7317,9 +7309,9 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button will generate a CSV grade report for all currently " -"enrolled students. Generated reports appear in a table below and can be " -"downloaded." +"Click to generate a CSV grade report for all currently enrolled students. " +"Links to generated reports appear in a table below when report generation is" +" complete." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7345,24 +7337,19 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Grade reports listed below are generated each time the Generate Grade " -"Report button is clicked. A link to each grade report remains available " -"on this page, identified by the UTC date and time of generation. Grade " +"The grade reports listed below are generated each time the Generate Grade" +" Report button is clicked. A link to each grade report remains available" +" on this page, identified by the UTC date and time of generation. Grade " "reports are not deleted, so you will always be able to access previously " "generated reports from this page." msgstr "" -#. Translators: "these rules" in this sentence references a detailed -#. description of the grading reports that will appear in a table that -#. contains -#. a mix of different types of reports. This sentence intends to indicate -#. that -#. the description of the grading report does not apply to the other reports -#. that may appear in the table. #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Other reports may appear in the table for which these rules will not " -"necessarily apply." +"The answer distribution report listed below is generated periodically by an " +"automated background process. The report is cumulative, so answers submitted" +" after the process starts are included in a subsequent report. The report is" +" generated several times per day." msgstr "" #. Translators: a table of URL links to report files appears after this @@ -8381,7 +8368,7 @@ msgstr "" #: lms/templates/static_templates/server-error.html msgid "" "Please wait a few seconds and then reload the page. If the problem persists," -" please email us at {email}." +" please email us at {email}." msgstr "" #: lms/templates/static_templates/server-overloaded.html @@ -9409,6 +9396,10 @@ msgstr "" msgid "Page Actions" msgstr "" +#: cms/templates/asset_index.html +msgid "Loading…" +msgstr "" + #: cms/templates/asset_index.html msgid "What files are listed here?" msgstr "" diff --git a/conf/locale/lt_LT/LC_MESSAGES/djangojs.mo b/conf/locale/lt_LT/LC_MESSAGES/djangojs.mo index 1ca522e5f765a51ea9e4773b2f4bf60e694c6760..b7a07e1333eaa8fcb5f7d9fbf70f629f9e17457c 100644 GIT binary patch delta 20 bcmbOuKSzE;DF?f$f}w$xk@@Bt4h41qKl%k? delta 20 bcmbOuKSzE;DF?fWf}w$xf!XF74h41qKiUOe diff --git a/conf/locale/lt_LT/LC_MESSAGES/djangojs.po b/conf/locale/lt_LT/LC_MESSAGES/djangojs.po index 779617706a..c2a739520b 100644 --- a/conf/locale/lt_LT/LC_MESSAGES/djangojs.po +++ b/conf/locale/lt_LT/LC_MESSAGES/djangojs.po @@ -21,7 +21,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" +"POT-Creation-Date: 2014-03-25 10:27-0400\n" "PO-Revision-Date: 2014-03-24 14:25+0000\n" "Last-Translator: sarina \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/edx-platform/language/lt_LT/)\n" @@ -824,7 +824,7 @@ msgid "Error generating grades. Please try again." msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js -msgid "File Name (Newest First)" +msgid "File Name" msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js @@ -864,6 +864,21 @@ msgstr "" msgid "Error changing user's permissions." msgstr "" +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Could not find a user with username or email address '<%= identifier %>'." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Error: User '<%= username %>' has not yet activated their account. Users " +"must create and activate their accounts before they can be assigned a role." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Error: You cannot remove yourself from the Instructor group!" +msgstr "" + #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error adding/removing users as beta testers." msgstr "" diff --git a/conf/locale/ml/LC_MESSAGES/django.mo b/conf/locale/ml/LC_MESSAGES/django.mo index 7736be990889240a37c00c89eb0dc72c8234d954..4f96929c5c0494ce45cd0e8dce6f4e6ec01a4a87 100644 GIT binary patch delta 18 ZcmbQhGJ$2nMs`yLLjx-#i;X)X7y&gJ1&sgz delta 18 ZcmbQhGJ$2nMs^bgLjx-VvyD3<7y&f-1&9Cu diff --git a/conf/locale/ml/LC_MESSAGES/django.po b/conf/locale/ml/LC_MESSAGES/django.po index cfe3440d0b..7a5ea642fc 100644 --- a/conf/locale/ml/LC_MESSAGES/django.po +++ b/conf/locale/ml/LC_MESSAGES/django.po @@ -38,7 +38,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" +"POT-Creation-Date: 2014-03-25 10:28-0400\n" "PO-Revision-Date: 2014-02-06 03:04+0000\n" "Last-Translator: nedbat \n" "Language-Team: Malayalam (http://www.transifex.com/projects/p/edx-platform/language/ml/)\n" @@ -1238,7 +1238,7 @@ msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py msgid "" "Can't receive transcripts from Youtube for {youtube_id}. Status code: " -"{statuc_code}." +"{status_code}." msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py @@ -3763,14 +3763,6 @@ msgstr "" msgid "Help" msgstr "" -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "Visual" -msgstr "" - -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "HTML" -msgstr "" - #: common/templates/course_modes/choose.html msgid "Upgrade Your Registration for {} | Choose Your Track" msgstr "" @@ -6194,7 +6186,7 @@ msgid "Students" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -msgid "Answer distribution for problems" +msgid "Score distribution for problems" msgstr "" #: lms/templates/courseware/instructor_dashboard.html @@ -7090,7 +7082,7 @@ msgid "Skip" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html -msgid "Grade Distribution" +msgid "Score Distribution" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html @@ -7167,8 +7159,8 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button generates a CSV file of all students enrolled in this " -"course, along with profile information such as email address and username." +"Click to generate a CSV file of all students enrolled in this course, along " +"with profile information such as email address and username:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7177,7 +7169,7 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"For smaller courses, profile information for enrolled students can be listed" +"For smaller courses, click to list profile information for enrolled students" " directly on this page:" msgstr "" @@ -7187,10 +7179,10 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button displays the grading configuration for the course. The " -"grading configuration is the breakdown of graded subsections of the course " -"(such as exams and problem sets), and can be changed on the 'Grading' page " -"(under 'Settings') in Studio." +"Click to display the grading configuration for the course. The grading " +"configuration is the breakdown of graded subsections of the course (such as " +"exams and problem sets), and can be changed on the 'Grading' page (under " +"'Settings') in Studio." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7198,7 +7190,7 @@ msgid "Grading Configuration" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "Download a CSV of anonymized student IDs by clicking this button." +msgid "Click to download a CSV of anonymized student IDs:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7211,9 +7203,9 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button will generate a CSV grade report for all currently " -"enrolled students. Generated reports appear in a table below and can be " -"downloaded." +"Click to generate a CSV grade report for all currently enrolled students. " +"Links to generated reports appear in a table below when report generation is" +" complete." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7239,24 +7231,19 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Grade reports listed below are generated each time the Generate Grade " -"Report button is clicked. A link to each grade report remains available " -"on this page, identified by the UTC date and time of generation. Grade " +"The grade reports listed below are generated each time the Generate Grade" +" Report button is clicked. A link to each grade report remains available" +" on this page, identified by the UTC date and time of generation. Grade " "reports are not deleted, so you will always be able to access previously " "generated reports from this page." msgstr "" -#. Translators: "these rules" in this sentence references a detailed -#. description of the grading reports that will appear in a table that -#. contains -#. a mix of different types of reports. This sentence intends to indicate -#. that -#. the description of the grading report does not apply to the other reports -#. that may appear in the table. #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Other reports may appear in the table for which these rules will not " -"necessarily apply." +"The answer distribution report listed below is generated periodically by an " +"automated background process. The report is cumulative, so answers submitted" +" after the process starts are included in a subsequent report. The report is" +" generated several times per day." msgstr "" #. Translators: a table of URL links to report files appears after this @@ -8275,7 +8262,7 @@ msgstr "" #: lms/templates/static_templates/server-error.html msgid "" "Please wait a few seconds and then reload the page. If the problem persists," -" please email us at {email}." +" please email us at {email}." msgstr "" #: lms/templates/static_templates/server-overloaded.html @@ -9303,6 +9290,10 @@ msgstr "" msgid "Page Actions" msgstr "" +#: cms/templates/asset_index.html +msgid "Loading…" +msgstr "" + #: cms/templates/asset_index.html msgid "What files are listed here?" msgstr "" diff --git a/conf/locale/ml/LC_MESSAGES/djangojs.mo b/conf/locale/ml/LC_MESSAGES/djangojs.mo index 276084927eade7ed716c676ffc3c4480339d7b0c..998721bc6d38fae9b0b09acc721972a8b1f48fd0 100644 GIT binary patch delta 18 Zcmey({F`~gMs`yLLjx-#^Nl;48398921@_{ delta 18 Zcmey({F`~gMs^bgLjx-VvyD5P8397&21ft@ diff --git a/conf/locale/ml/LC_MESSAGES/djangojs.po b/conf/locale/ml/LC_MESSAGES/djangojs.po index 2363c95e0a..b4f51cc930 100644 --- a/conf/locale/ml/LC_MESSAGES/djangojs.po +++ b/conf/locale/ml/LC_MESSAGES/djangojs.po @@ -16,7 +16,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" +"POT-Creation-Date: 2014-03-25 10:27-0400\n" "PO-Revision-Date: 2014-03-19 23:13+0000\n" "Last-Translator: sarina \n" "Language-Team: Malayalam (http://www.transifex.com/projects/p/edx-platform/language/ml/)\n" @@ -791,7 +791,7 @@ msgid "Error generating grades. Please try again." msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js -msgid "File Name (Newest First)" +msgid "File Name" msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js @@ -831,6 +831,21 @@ msgstr "" msgid "Error changing user's permissions." msgstr "" +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Could not find a user with username or email address '<%= identifier %>'." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Error: User '<%= username %>' has not yet activated their account. Users " +"must create and activate their accounts before they can be assigned a role." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Error: You cannot remove yourself from the Instructor group!" +msgstr "" + #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error adding/removing users as beta testers." msgstr "" diff --git a/conf/locale/mn/LC_MESSAGES/django.mo b/conf/locale/mn/LC_MESSAGES/django.mo index adc5fffe5b684d699ae43e8b6aae6c4b3b4ddff6..1ff2629d9760355df8e08c6c5b0f6669850cbcd6 100644 GIT binary patch delta 18 ZcmbQhGJ$2nMs`yLLjx-#i;X)X7y&gJ1&sgz delta 18 ZcmbQhGJ$2nMs^bgLjx-VvyD3<7y&f-1&9Cu diff --git a/conf/locale/mn/LC_MESSAGES/django.po b/conf/locale/mn/LC_MESSAGES/django.po index ed677a3de3..b7db2fc155 100644 --- a/conf/locale/mn/LC_MESSAGES/django.po +++ b/conf/locale/mn/LC_MESSAGES/django.po @@ -38,7 +38,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" +"POT-Creation-Date: 2014-03-25 10:28-0400\n" "PO-Revision-Date: 2014-02-15 19:51+0000\n" "Last-Translator: nedbat \n" "Language-Team: Mongolian (http://www.transifex.com/projects/p/edx-platform/language/mn/)\n" @@ -1238,7 +1238,7 @@ msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py msgid "" "Can't receive transcripts from Youtube for {youtube_id}. Status code: " -"{statuc_code}." +"{status_code}." msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py @@ -3763,14 +3763,6 @@ msgstr "" msgid "Help" msgstr "" -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "Visual" -msgstr "" - -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "HTML" -msgstr "" - #: common/templates/course_modes/choose.html msgid "Upgrade Your Registration for {} | Choose Your Track" msgstr "" @@ -6194,7 +6186,7 @@ msgid "Students" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -msgid "Answer distribution for problems" +msgid "Score distribution for problems" msgstr "" #: lms/templates/courseware/instructor_dashboard.html @@ -7090,7 +7082,7 @@ msgid "Skip" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html -msgid "Grade Distribution" +msgid "Score Distribution" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html @@ -7167,8 +7159,8 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button generates a CSV file of all students enrolled in this " -"course, along with profile information such as email address and username." +"Click to generate a CSV file of all students enrolled in this course, along " +"with profile information such as email address and username:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7177,7 +7169,7 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"For smaller courses, profile information for enrolled students can be listed" +"For smaller courses, click to list profile information for enrolled students" " directly on this page:" msgstr "" @@ -7187,10 +7179,10 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button displays the grading configuration for the course. The " -"grading configuration is the breakdown of graded subsections of the course " -"(such as exams and problem sets), and can be changed on the 'Grading' page " -"(under 'Settings') in Studio." +"Click to display the grading configuration for the course. The grading " +"configuration is the breakdown of graded subsections of the course (such as " +"exams and problem sets), and can be changed on the 'Grading' page (under " +"'Settings') in Studio." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7198,7 +7190,7 @@ msgid "Grading Configuration" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "Download a CSV of anonymized student IDs by clicking this button." +msgid "Click to download a CSV of anonymized student IDs:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7211,9 +7203,9 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button will generate a CSV grade report for all currently " -"enrolled students. Generated reports appear in a table below and can be " -"downloaded." +"Click to generate a CSV grade report for all currently enrolled students. " +"Links to generated reports appear in a table below when report generation is" +" complete." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7239,24 +7231,19 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Grade reports listed below are generated each time the Generate Grade " -"Report button is clicked. A link to each grade report remains available " -"on this page, identified by the UTC date and time of generation. Grade " +"The grade reports listed below are generated each time the Generate Grade" +" Report button is clicked. A link to each grade report remains available" +" on this page, identified by the UTC date and time of generation. Grade " "reports are not deleted, so you will always be able to access previously " "generated reports from this page." msgstr "" -#. Translators: "these rules" in this sentence references a detailed -#. description of the grading reports that will appear in a table that -#. contains -#. a mix of different types of reports. This sentence intends to indicate -#. that -#. the description of the grading report does not apply to the other reports -#. that may appear in the table. #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Other reports may appear in the table for which these rules will not " -"necessarily apply." +"The answer distribution report listed below is generated periodically by an " +"automated background process. The report is cumulative, so answers submitted" +" after the process starts are included in a subsequent report. The report is" +" generated several times per day." msgstr "" #. Translators: a table of URL links to report files appears after this @@ -8275,7 +8262,7 @@ msgstr "" #: lms/templates/static_templates/server-error.html msgid "" "Please wait a few seconds and then reload the page. If the problem persists," -" please email us at {email}." +" please email us at {email}." msgstr "" #: lms/templates/static_templates/server-overloaded.html @@ -9303,6 +9290,10 @@ msgstr "" msgid "Page Actions" msgstr "" +#: cms/templates/asset_index.html +msgid "Loading…" +msgstr "" + #: cms/templates/asset_index.html msgid "What files are listed here?" msgstr "" diff --git a/conf/locale/mn/LC_MESSAGES/djangojs.mo b/conf/locale/mn/LC_MESSAGES/djangojs.mo index e8d7b2162eee503e5c56290e8c108d70ead7a208..3f2a8fe2a1e429e77b614223a9f2540468637fcf 100644 GIT binary patch delta 18 Zcmey({F`~gMs`yLLjx-#^Nl;48398921@_{ delta 18 Zcmey({F`~gMs^bgLjx-VvyD5P8397&21ft@ diff --git a/conf/locale/mn/LC_MESSAGES/djangojs.po b/conf/locale/mn/LC_MESSAGES/djangojs.po index 23e8deb2d0..56ddffc7f1 100644 --- a/conf/locale/mn/LC_MESSAGES/djangojs.po +++ b/conf/locale/mn/LC_MESSAGES/djangojs.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" +"POT-Creation-Date: 2014-03-25 10:27-0400\n" "PO-Revision-Date: 2014-03-19 20:22+0000\n" "Last-Translator: sarina \n" "Language-Team: Mongolian (http://www.transifex.com/projects/p/edx-platform/language/mn/)\n" @@ -789,7 +789,7 @@ msgid "Error generating grades. Please try again." msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js -msgid "File Name (Newest First)" +msgid "File Name" msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js @@ -829,6 +829,21 @@ msgstr "" msgid "Error changing user's permissions." msgstr "" +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Could not find a user with username or email address '<%= identifier %>'." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Error: User '<%= username %>' has not yet activated their account. Users " +"must create and activate their accounts before they can be assigned a role." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Error: You cannot remove yourself from the Instructor group!" +msgstr "" + #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error adding/removing users as beta testers." msgstr "" diff --git a/conf/locale/ms/LC_MESSAGES/django.mo b/conf/locale/ms/LC_MESSAGES/django.mo index 2dfb8e0e236987f4145f3a57d668bc905c4e5248..bcd55b3cf5aaaf84fbf27c6c2e16229fe90a7576 100644 GIT binary patch delta 18 ZcmeBR>0p_#k=<0m(7?*bV&jegMgTMV1$6)b delta 18 ZcmeBR>0p_#k=;bW(7?*TY~zjqMgTL}1#kcW diff --git a/conf/locale/ms/LC_MESSAGES/django.po b/conf/locale/ms/LC_MESSAGES/django.po index dc917f658a..e6de9a9fd0 100644 --- a/conf/locale/ms/LC_MESSAGES/django.po +++ b/conf/locale/ms/LC_MESSAGES/django.po @@ -39,7 +39,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" +"POT-Creation-Date: 2014-03-25 10:28-0400\n" "PO-Revision-Date: 2014-03-18 18:07+0000\n" "Last-Translator: sarina \n" "Language-Team: Malay (http://www.transifex.com/projects/p/edx-platform/language/ms/)\n" @@ -1239,7 +1239,7 @@ msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py msgid "" "Can't receive transcripts from Youtube for {youtube_id}. Status code: " -"{statuc_code}." +"{status_code}." msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py @@ -3764,14 +3764,6 @@ msgstr "" msgid "Help" msgstr "" -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "Visual" -msgstr "" - -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "HTML" -msgstr "" - #: common/templates/course_modes/choose.html msgid "Upgrade Your Registration for {} | Choose Your Track" msgstr "" @@ -6193,7 +6185,7 @@ msgid "Students" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -msgid "Answer distribution for problems" +msgid "Score distribution for problems" msgstr "" #: lms/templates/courseware/instructor_dashboard.html @@ -7087,7 +7079,7 @@ msgid "Skip" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html -msgid "Grade Distribution" +msgid "Score Distribution" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html @@ -7164,8 +7156,8 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button generates a CSV file of all students enrolled in this " -"course, along with profile information such as email address and username." +"Click to generate a CSV file of all students enrolled in this course, along " +"with profile information such as email address and username:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7174,7 +7166,7 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"For smaller courses, profile information for enrolled students can be listed" +"For smaller courses, click to list profile information for enrolled students" " directly on this page:" msgstr "" @@ -7184,10 +7176,10 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button displays the grading configuration for the course. The " -"grading configuration is the breakdown of graded subsections of the course " -"(such as exams and problem sets), and can be changed on the 'Grading' page " -"(under 'Settings') in Studio." +"Click to display the grading configuration for the course. The grading " +"configuration is the breakdown of graded subsections of the course (such as " +"exams and problem sets), and can be changed on the 'Grading' page (under " +"'Settings') in Studio." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7195,7 +7187,7 @@ msgid "Grading Configuration" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "Download a CSV of anonymized student IDs by clicking this button." +msgid "Click to download a CSV of anonymized student IDs:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7208,9 +7200,9 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button will generate a CSV grade report for all currently " -"enrolled students. Generated reports appear in a table below and can be " -"downloaded." +"Click to generate a CSV grade report for all currently enrolled students. " +"Links to generated reports appear in a table below when report generation is" +" complete." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7236,24 +7228,19 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Grade reports listed below are generated each time the Generate Grade " -"Report button is clicked. A link to each grade report remains available " -"on this page, identified by the UTC date and time of generation. Grade " +"The grade reports listed below are generated each time the Generate Grade" +" Report button is clicked. A link to each grade report remains available" +" on this page, identified by the UTC date and time of generation. Grade " "reports are not deleted, so you will always be able to access previously " "generated reports from this page." msgstr "" -#. Translators: "these rules" in this sentence references a detailed -#. description of the grading reports that will appear in a table that -#. contains -#. a mix of different types of reports. This sentence intends to indicate -#. that -#. the description of the grading report does not apply to the other reports -#. that may appear in the table. #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Other reports may appear in the table for which these rules will not " -"necessarily apply." +"The answer distribution report listed below is generated periodically by an " +"automated background process. The report is cumulative, so answers submitted" +" after the process starts are included in a subsequent report. The report is" +" generated several times per day." msgstr "" #. Translators: a table of URL links to report files appears after this @@ -8272,7 +8259,7 @@ msgstr "" #: lms/templates/static_templates/server-error.html msgid "" "Please wait a few seconds and then reload the page. If the problem persists," -" please email us at {email}." +" please email us at {email}." msgstr "" #: lms/templates/static_templates/server-overloaded.html @@ -9300,6 +9287,10 @@ msgstr "" msgid "Page Actions" msgstr "" +#: cms/templates/asset_index.html +msgid "Loading…" +msgstr "" + #: cms/templates/asset_index.html msgid "What files are listed here?" msgstr "" diff --git a/conf/locale/ms/LC_MESSAGES/djangojs.mo b/conf/locale/ms/LC_MESSAGES/djangojs.mo index 10c40f261706ea1a4f41b3cfda344c91717a7aca..32ae4e8314c318c42ad3526c4b9a4ce430bf1d42 100644 GIT binary patch delta 18 Zcmeys{DFDGMs`yLLjx-#^Nl+!7y&_b1}Xpm delta 18 Zcmeys{DFDGMs^bgLjx-VvyD3}7y&_91||Ri diff --git a/conf/locale/ms/LC_MESSAGES/djangojs.po b/conf/locale/ms/LC_MESSAGES/djangojs.po index 103d75a106..01e1f7bbd9 100644 --- a/conf/locale/ms/LC_MESSAGES/djangojs.po +++ b/conf/locale/ms/LC_MESSAGES/djangojs.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" +"POT-Creation-Date: 2014-03-25 10:27-0400\n" "PO-Revision-Date: 2014-03-19 20:22+0000\n" "Last-Translator: sarina \n" "Language-Team: Malay (http://www.transifex.com/projects/p/edx-platform/language/ms/)\n" @@ -774,7 +774,7 @@ msgid "Error generating grades. Please try again." msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js -msgid "File Name (Newest First)" +msgid "File Name" msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js @@ -814,6 +814,21 @@ msgstr "" msgid "Error changing user's permissions." msgstr "" +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Could not find a user with username or email address '<%= identifier %>'." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Error: User '<%= username %>' has not yet activated their account. Users " +"must create and activate their accounts before they can be assigned a role." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Error: You cannot remove yourself from the Instructor group!" +msgstr "" + #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error adding/removing users as beta testers." msgstr "" diff --git a/conf/locale/nb/LC_MESSAGES/django.mo b/conf/locale/nb/LC_MESSAGES/django.mo index 803203d966be79f4e0d6c078146a9319a8dc38ed..c4a2d56491298c43e72688aa9dfec3e7ff622f73 100644 GIT binary patch delta 18 ZcmbQoGLL1#Ms`yLLjx-#i;X+d7y&mD1-AeI delta 18 ZcmbQoGLL1#Ms^bgLjx-VvyD5_7y&l%1+oAD diff --git a/conf/locale/nb/LC_MESSAGES/django.po b/conf/locale/nb/LC_MESSAGES/django.po index 68c158eed5..352f01241a 100644 --- a/conf/locale/nb/LC_MESSAGES/django.po +++ b/conf/locale/nb/LC_MESSAGES/django.po @@ -62,7 +62,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" +"POT-Creation-Date: 2014-03-25 10:28-0400\n" "PO-Revision-Date: 2014-03-15 22:41+0000\n" "Last-Translator: espenbye \n" "Language-Team: Norwegian Bokmål (http://www.transifex.com/projects/p/edx-platform/language/nb/)\n" @@ -1262,7 +1262,7 @@ msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py msgid "" "Can't receive transcripts from Youtube for {youtube_id}. Status code: " -"{statuc_code}." +"{status_code}." msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py @@ -3787,14 +3787,6 @@ msgstr "" msgid "Help" msgstr "" -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "Visual" -msgstr "" - -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "HTML" -msgstr "" - #: common/templates/course_modes/choose.html msgid "Upgrade Your Registration for {} | Choose Your Track" msgstr "" @@ -6218,7 +6210,7 @@ msgid "Students" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -msgid "Answer distribution for problems" +msgid "Score distribution for problems" msgstr "" #: lms/templates/courseware/instructor_dashboard.html @@ -7114,7 +7106,7 @@ msgid "Skip" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html -msgid "Grade Distribution" +msgid "Score Distribution" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html @@ -7191,8 +7183,8 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button generates a CSV file of all students enrolled in this " -"course, along with profile information such as email address and username." +"Click to generate a CSV file of all students enrolled in this course, along " +"with profile information such as email address and username:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7201,7 +7193,7 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"For smaller courses, profile information for enrolled students can be listed" +"For smaller courses, click to list profile information for enrolled students" " directly on this page:" msgstr "" @@ -7211,10 +7203,10 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button displays the grading configuration for the course. The " -"grading configuration is the breakdown of graded subsections of the course " -"(such as exams and problem sets), and can be changed on the 'Grading' page " -"(under 'Settings') in Studio." +"Click to display the grading configuration for the course. The grading " +"configuration is the breakdown of graded subsections of the course (such as " +"exams and problem sets), and can be changed on the 'Grading' page (under " +"'Settings') in Studio." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7222,7 +7214,7 @@ msgid "Grading Configuration" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "Download a CSV of anonymized student IDs by clicking this button." +msgid "Click to download a CSV of anonymized student IDs:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7235,9 +7227,9 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button will generate a CSV grade report for all currently " -"enrolled students. Generated reports appear in a table below and can be " -"downloaded." +"Click to generate a CSV grade report for all currently enrolled students. " +"Links to generated reports appear in a table below when report generation is" +" complete." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7263,24 +7255,19 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Grade reports listed below are generated each time the Generate Grade " -"Report button is clicked. A link to each grade report remains available " -"on this page, identified by the UTC date and time of generation. Grade " +"The grade reports listed below are generated each time the Generate Grade" +" Report button is clicked. A link to each grade report remains available" +" on this page, identified by the UTC date and time of generation. Grade " "reports are not deleted, so you will always be able to access previously " "generated reports from this page." msgstr "" -#. Translators: "these rules" in this sentence references a detailed -#. description of the grading reports that will appear in a table that -#. contains -#. a mix of different types of reports. This sentence intends to indicate -#. that -#. the description of the grading report does not apply to the other reports -#. that may appear in the table. #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Other reports may appear in the table for which these rules will not " -"necessarily apply." +"The answer distribution report listed below is generated periodically by an " +"automated background process. The report is cumulative, so answers submitted" +" after the process starts are included in a subsequent report. The report is" +" generated several times per day." msgstr "" #. Translators: a table of URL links to report files appears after this @@ -8299,7 +8286,7 @@ msgstr "" #: lms/templates/static_templates/server-error.html msgid "" "Please wait a few seconds and then reload the page. If the problem persists," -" please email us at {email}." +" please email us at {email}." msgstr "" #: lms/templates/static_templates/server-overloaded.html @@ -9327,6 +9314,10 @@ msgstr "" msgid "Page Actions" msgstr "" +#: cms/templates/asset_index.html +msgid "Loading…" +msgstr "" + #: cms/templates/asset_index.html msgid "What files are listed here?" msgstr "" diff --git a/conf/locale/nb/LC_MESSAGES/djangojs.mo b/conf/locale/nb/LC_MESSAGES/djangojs.mo index 340b3cdcbe4baf4c046793e847b7b1c55769bb50..809912bcc8b467dc583cd48cbe161f5b702a1df2 100644 GIT binary patch delta 18 ZcmeBX>1LU*k=<0m(7?*beB+K_MgTNn1$_Vj delta 18 ZcmeBX>1LU*k=;bW(7?*TY~zk#MgTNL1$h7f diff --git a/conf/locale/nb/LC_MESSAGES/djangojs.po b/conf/locale/nb/LC_MESSAGES/djangojs.po index 781eb31cd9..2b3386744b 100644 --- a/conf/locale/nb/LC_MESSAGES/djangojs.po +++ b/conf/locale/nb/LC_MESSAGES/djangojs.po @@ -18,7 +18,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" +"POT-Creation-Date: 2014-03-25 10:27-0400\n" "PO-Revision-Date: 2014-03-24 14:25+0000\n" "Last-Translator: Frode \n" "Language-Team: Norwegian Bokmål (http://www.transifex.com/projects/p/edx-platform/language/nb/)\n" @@ -793,7 +793,7 @@ msgid "Error generating grades. Please try again." msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js -msgid "File Name (Newest First)" +msgid "File Name" msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js @@ -833,6 +833,21 @@ msgstr "" msgid "Error changing user's permissions." msgstr "" +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Could not find a user with username or email address '<%= identifier %>'." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Error: User '<%= username %>' has not yet activated their account. Users " +"must create and activate their accounts before they can be assigned a role." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Error: You cannot remove yourself from the Instructor group!" +msgstr "" + #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error adding/removing users as beta testers." msgstr "" diff --git a/conf/locale/ne/LC_MESSAGES/django.mo b/conf/locale/ne/LC_MESSAGES/django.mo index 9a4504fee57af371c55785d132ebd0f838dbe72a..e7d715f4e09109706eae7aa94102ba4fb456cabc 100644 GIT binary patch delta 18 ZcmbQhGJ$2nMs`yLLjx-#i;X)X7y&gJ1&sgz delta 18 ZcmbQhGJ$2nMs^bgLjx-VvyD3<7y&f-1&9Cu diff --git a/conf/locale/ne/LC_MESSAGES/django.po b/conf/locale/ne/LC_MESSAGES/django.po index cbb396cd2a..102827f3ae 100644 --- a/conf/locale/ne/LC_MESSAGES/django.po +++ b/conf/locale/ne/LC_MESSAGES/django.po @@ -38,7 +38,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" +"POT-Creation-Date: 2014-03-25 10:28-0400\n" "PO-Revision-Date: 2014-03-12 12:54+0000\n" "Last-Translator: sarina \n" "Language-Team: Nepali (http://www.transifex.com/projects/p/edx-platform/language/ne/)\n" @@ -1238,7 +1238,7 @@ msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py msgid "" "Can't receive transcripts from Youtube for {youtube_id}. Status code: " -"{statuc_code}." +"{status_code}." msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py @@ -3763,14 +3763,6 @@ msgstr "" msgid "Help" msgstr "" -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "Visual" -msgstr "" - -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "HTML" -msgstr "" - #: common/templates/course_modes/choose.html msgid "Upgrade Your Registration for {} | Choose Your Track" msgstr "" @@ -6194,7 +6186,7 @@ msgid "Students" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -msgid "Answer distribution for problems" +msgid "Score distribution for problems" msgstr "" #: lms/templates/courseware/instructor_dashboard.html @@ -7090,7 +7082,7 @@ msgid "Skip" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html -msgid "Grade Distribution" +msgid "Score Distribution" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html @@ -7167,8 +7159,8 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button generates a CSV file of all students enrolled in this " -"course, along with profile information such as email address and username." +"Click to generate a CSV file of all students enrolled in this course, along " +"with profile information such as email address and username:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7177,7 +7169,7 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"For smaller courses, profile information for enrolled students can be listed" +"For smaller courses, click to list profile information for enrolled students" " directly on this page:" msgstr "" @@ -7187,10 +7179,10 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button displays the grading configuration for the course. The " -"grading configuration is the breakdown of graded subsections of the course " -"(such as exams and problem sets), and can be changed on the 'Grading' page " -"(under 'Settings') in Studio." +"Click to display the grading configuration for the course. The grading " +"configuration is the breakdown of graded subsections of the course (such as " +"exams and problem sets), and can be changed on the 'Grading' page (under " +"'Settings') in Studio." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7198,7 +7190,7 @@ msgid "Grading Configuration" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "Download a CSV of anonymized student IDs by clicking this button." +msgid "Click to download a CSV of anonymized student IDs:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7211,9 +7203,9 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button will generate a CSV grade report for all currently " -"enrolled students. Generated reports appear in a table below and can be " -"downloaded." +"Click to generate a CSV grade report for all currently enrolled students. " +"Links to generated reports appear in a table below when report generation is" +" complete." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7239,24 +7231,19 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Grade reports listed below are generated each time the Generate Grade " -"Report button is clicked. A link to each grade report remains available " -"on this page, identified by the UTC date and time of generation. Grade " +"The grade reports listed below are generated each time the Generate Grade" +" Report button is clicked. A link to each grade report remains available" +" on this page, identified by the UTC date and time of generation. Grade " "reports are not deleted, so you will always be able to access previously " "generated reports from this page." msgstr "" -#. Translators: "these rules" in this sentence references a detailed -#. description of the grading reports that will appear in a table that -#. contains -#. a mix of different types of reports. This sentence intends to indicate -#. that -#. the description of the grading report does not apply to the other reports -#. that may appear in the table. #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Other reports may appear in the table for which these rules will not " -"necessarily apply." +"The answer distribution report listed below is generated periodically by an " +"automated background process. The report is cumulative, so answers submitted" +" after the process starts are included in a subsequent report. The report is" +" generated several times per day." msgstr "" #. Translators: a table of URL links to report files appears after this @@ -8275,7 +8262,7 @@ msgstr "" #: lms/templates/static_templates/server-error.html msgid "" "Please wait a few seconds and then reload the page. If the problem persists," -" please email us at {email}." +" please email us at {email}." msgstr "" #: lms/templates/static_templates/server-overloaded.html @@ -9303,6 +9290,10 @@ msgstr "" msgid "Page Actions" msgstr "" +#: cms/templates/asset_index.html +msgid "Loading…" +msgstr "" + #: cms/templates/asset_index.html msgid "What files are listed here?" msgstr "" diff --git a/conf/locale/ne/LC_MESSAGES/djangojs.mo b/conf/locale/ne/LC_MESSAGES/djangojs.mo index 1ae4176777e134e07d72db054c168174dc5e5c1d..241e6183d3917e47fb3e8d0eed731b45a87fcea3 100644 GIT binary patch delta 18 Zcmeyt{DXPIMs`yLLjx-#^Nl+k7y&|+20{P; delta 18 Zcmeyt{DXPIMs^bgLjx-VvyD3(7y&|g20j1) diff --git a/conf/locale/ne/LC_MESSAGES/djangojs.po b/conf/locale/ne/LC_MESSAGES/djangojs.po index f8bf0374d2..c47b6a066d 100644 --- a/conf/locale/ne/LC_MESSAGES/djangojs.po +++ b/conf/locale/ne/LC_MESSAGES/djangojs.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" +"POT-Creation-Date: 2014-03-25 10:27-0400\n" "PO-Revision-Date: 2014-03-19 20:22+0000\n" "Last-Translator: sarina \n" "Language-Team: Nepali (http://www.transifex.com/projects/p/edx-platform/language/ne/)\n" @@ -789,7 +789,7 @@ msgid "Error generating grades. Please try again." msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js -msgid "File Name (Newest First)" +msgid "File Name" msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js @@ -829,6 +829,21 @@ msgstr "" msgid "Error changing user's permissions." msgstr "" +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Could not find a user with username or email address '<%= identifier %>'." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Error: User '<%= username %>' has not yet activated their account. Users " +"must create and activate their accounts before they can be assigned a role." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Error: You cannot remove yourself from the Instructor group!" +msgstr "" + #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error adding/removing users as beta testers." msgstr "" diff --git a/conf/locale/nl_NL/LC_MESSAGES/django.mo b/conf/locale/nl_NL/LC_MESSAGES/django.mo index 302695773725b0aa5ecc4c7c31f7f79b18747520..9072c51f82aa877710220e399e71bf9e2b75182b 100644 GIT binary patch delta 2321 zcmYk-Yedp-GaI$?v6zJgNK;pi7jO*@#!smJX{<{3vrs!V1~pMJ zvKBWTHO>OFCdm1#!lObj-%0a^`Mdef3=ZmTmuJpLEpQ8J;SHz>_n7-p3ps$v7{ye) zXx<#e{_Cy1O9emo%zTULs0(wuWK_o-RQn>-R+ga_P=#7REvj9E*@)Vq7As$~@-0;V z2Ob%nRTsYdf)|Emg6n1$ZRH2l6Zsfb0|ihMWOLC%3Q_G!aWXDLZS`T)f?81R&LLB{ z80x5QqrL*K-7+1hC+S4J-7ioB{e{}P_o$ud%d+*74MwV52*+W*)vrbMuQqE@3#l`A zq9)#lEW~q7WHeE;dA#?AYejzU5*H2FX7#sFPxKpVXF5>}e`@z%qK@*7-Tx1#QueWZ z+JOk_U8_Vt^SkY2Mo_UEd6C^I)PR?9G{#UJJ5dXLh1$XosGazT`Ye5%qn<2;TEIxu zXI*6VOYm>XD^NR9L8pMe|5apEQLPHB$6VZnI@`0@hF9?`tmC2uG@_2=5bB6dp!#1y zJ;+a}o%_|igZfk6j@r4q=&7Q^ZrnE?nvcvU=5y2&zCbOw3$>7L)K2_kjDC=Dg_9xNwj63d8r#CRf}iY-%bu0|c@ zSSyPSL=p45YNCQr`kEL+3?~*4`owAorCg$p&{>Zr^p~@Yh^JL#z9+U2I{$c@MP`W= zCSV>>VC5tJoON@^7h3s8| zM56os83Vr~7f=l!X<>*7V+M11pEStqCuZZ1(8eeBN|KaJc*LT|g$T4E_NMFmnN zp>JBLHaaYjnpsY61+j?OM(8czJ9U#{<$HU5G E12W6H=l}o! delta 2598 zcmajhZ)_Ar7{~DuTH0DDlnS*C!lY`U2rcDb6$%1c{wP8b1Q8IHcCS6X-d*mlR3UO| z32zXMo;3zTBqA|LQWJ`QLSl%JNHn6vh!|tgnD_#WFB&AlDCqasK7H-xp8d@1&dxkD zvs*Ya>-?PTrLlQEjw4P?AYK~ooG$z`f)ht`k#oav4UWWhn2!OLV;kOvSsaV6hLZsz^Pb>Gf@xDM{;sas18=3I%qbxqMnaiJ%f{| zcca=LMm_(&*^3(I_<&jGPEyF@!f8}TXHhdfhy2`+oOJ&;Bx834)#2Z$_Wz<1&MzKp zSAtw}WvF%&Q4^`M`_ph9^?EE}d>5lofxE0h58grj0Pe<5a1=I>l?G};E&VFgN<{2> zCn}-csG0A<@wm_KzhfRlZP^LTYGz+hIFDbWI(VDWG|&;V7d3;Au@XN+n!2CxFkZ%S zxSwqF{9)Anqo@`82sO@GWG?P2R6jqIu>UGtwF@Pq2VcS(bE(;4K5rg0Pns7|3I2&n z{3dF^0!Ei3QHhjtD#a=+!`Wk4e-)Np4mhyX4 z0>7gYxQ1$X(;UmFTA^yx^+u~VXDO(I2x_l(VgD`8y@ufS&{|8m7d4X{s-riNpX=qM zL{6jHUBCwX6}8lrbgqP|QSIuGoZJ%BR%O>x(C4tx3{W$PqTb##s-rF>C)bTyi5}ET z_AWA(JBCy7lwH4qdcNPhhDziwa~QK=+^j36piIh8167!J+x2?n8P|a7aHU;uM$KqF zYGtCR#N&4V8Przpw)-#ReCj#W3VeeT7~lOuL7CmaJ8=a2@D@%*UTpU{s^jml8ZV(b z$mbhW!sAgBs6wsC6y)dXIB8{m8`!SoaKT(Hzw{LA#`*QTCOPZIMGNbsY!%h zq=yL|6A8Ts>xo6gI$|j?oftaqvqH>#0=1P>wEsiLHVSiy7NVKZF^!l^R1psm`qV-~ zM-A~bp}npqn1fqR3>_OOv=b3R`#*Fnp|IL2MYR;}A!g++7fjyrAf?%M>nY^T99Xyq za3SG|`-wV2$J{{%{<&(UtWDfPY$EO@))M-7R}hPH9fjqi9-}mLY|Xt|SXT4oP!+cm z4OXv5?Tx;*CSqCcTw(e21(X6pFS?G+#2R9rDjbgz`hSd$wp?jZS;Z<$dn_78GCm}WWDuk*H)=Z)iBv1ycluTm z3EHCZ!0!lC@o3oDm8tcMV`<+WW-LW={@GV>anbu77;FPySDKeFw%B=lutW Cv>vqp diff --git a/conf/locale/nl_NL/LC_MESSAGES/django.po b/conf/locale/nl_NL/LC_MESSAGES/django.po index 0819d1e965..0ab1f65594 100644 --- a/conf/locale/nl_NL/LC_MESSAGES/django.po +++ b/conf/locale/nl_NL/LC_MESSAGES/django.po @@ -47,7 +47,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" +"POT-Creation-Date: 2014-03-25 10:28-0400\n" "PO-Revision-Date: 2014-03-11 15:31+0000\n" "Last-Translator: GlassParade \n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/projects/p/edx-platform/language/nl_NL/)\n" @@ -1252,7 +1252,7 @@ msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py msgid "" "Can't receive transcripts from Youtube for {youtube_id}. Status code: " -"{statuc_code}." +"{status_code}." msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py @@ -3774,14 +3774,6 @@ msgstr "" msgid "Help" msgstr "" -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "Visual" -msgstr "" - -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "HTML" -msgstr "" - #: common/templates/course_modes/choose.html msgid "Upgrade Your Registration for {} | Choose Your Track" msgstr "" @@ -6205,7 +6197,7 @@ msgid "Students" msgstr "Studenten" #: lms/templates/courseware/instructor_dashboard.html -msgid "Answer distribution for problems" +msgid "Score distribution for problems" msgstr "" #: lms/templates/courseware/instructor_dashboard.html @@ -7100,7 +7092,7 @@ msgid "Skip" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html -msgid "Grade Distribution" +msgid "Score Distribution" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html @@ -7177,8 +7169,8 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button generates a CSV file of all students enrolled in this " -"course, along with profile information such as email address and username." +"Click to generate a CSV file of all students enrolled in this course, along " +"with profile information such as email address and username:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7187,7 +7179,7 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"For smaller courses, profile information for enrolled students can be listed" +"For smaller courses, click to list profile information for enrolled students" " directly on this page:" msgstr "" @@ -7197,10 +7189,10 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button displays the grading configuration for the course. The " -"grading configuration is the breakdown of graded subsections of the course " -"(such as exams and problem sets), and can be changed on the 'Grading' page " -"(under 'Settings') in Studio." +"Click to display the grading configuration for the course. The grading " +"configuration is the breakdown of graded subsections of the course (such as " +"exams and problem sets), and can be changed on the 'Grading' page (under " +"'Settings') in Studio." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7208,7 +7200,7 @@ msgid "Grading Configuration" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "Download a CSV of anonymized student IDs by clicking this button." +msgid "Click to download a CSV of anonymized student IDs:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7221,9 +7213,9 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button will generate a CSV grade report for all currently " -"enrolled students. Generated reports appear in a table below and can be " -"downloaded." +"Click to generate a CSV grade report for all currently enrolled students. " +"Links to generated reports appear in a table below when report generation is" +" complete." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7249,24 +7241,19 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Grade reports listed below are generated each time the Generate Grade " -"Report button is clicked. A link to each grade report remains available " -"on this page, identified by the UTC date and time of generation. Grade " +"The grade reports listed below are generated each time the Generate Grade" +" Report button is clicked. A link to each grade report remains available" +" on this page, identified by the UTC date and time of generation. Grade " "reports are not deleted, so you will always be able to access previously " "generated reports from this page." msgstr "" -#. Translators: "these rules" in this sentence references a detailed -#. description of the grading reports that will appear in a table that -#. contains -#. a mix of different types of reports. This sentence intends to indicate -#. that -#. the description of the grading report does not apply to the other reports -#. that may appear in the table. #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Other reports may appear in the table for which these rules will not " -"necessarily apply." +"The answer distribution report listed below is generated periodically by an " +"automated background process. The report is cumulative, so answers submitted" +" after the process starts are included in a subsequent report. The report is" +" generated several times per day." msgstr "" #. Translators: a table of URL links to report files appears after this @@ -8292,11 +8279,8 @@ msgstr "" #: lms/templates/static_templates/server-error.html msgid "" "Please wait a few seconds and then reload the page. If the problem persists," -" please email us at {email}." +" please email us at {email}." msgstr "" -"Wacht alstublieft een paar seconden voordat u de pagina vernieuwt. Als het " -"probleem niet is opgelost, kunt u ons e-mailen op {email}." #: lms/templates/static_templates/server-overloaded.html msgid "Currently the {platform_name} servers are overloaded" @@ -9323,6 +9307,10 @@ msgstr "" msgid "Page Actions" msgstr "" +#: cms/templates/asset_index.html +msgid "Loading…" +msgstr "" + #: cms/templates/asset_index.html msgid "What files are listed here?" msgstr "" diff --git a/conf/locale/nl_NL/LC_MESSAGES/djangojs.mo b/conf/locale/nl_NL/LC_MESSAGES/djangojs.mo index 0d42773b53fecd755b651f3a1314449087914603..a51039c0ba8573251db9cba6623a263670017a28 100644 GIT binary patch delta 20 bcmZ3\n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/projects/p/edx-platform/language/nl_NL/)\n" @@ -790,7 +790,7 @@ msgid "Error generating grades. Please try again." msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js -msgid "File Name (Newest First)" +msgid "File Name" msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js @@ -830,6 +830,21 @@ msgstr "" msgid "Error changing user's permissions." msgstr "" +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Could not find a user with username or email address '<%= identifier %>'." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Error: User '<%= username %>' has not yet activated their account. Users " +"must create and activate their accounts before they can be assigned a role." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Error: You cannot remove yourself from the Instructor group!" +msgstr "" + #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error adding/removing users as beta testers." msgstr "" diff --git a/conf/locale/pl/LC_MESSAGES/django.mo b/conf/locale/pl/LC_MESSAGES/django.mo index 62804719e4977163be55231650e214d076f0da55..b4d8121983a85630cb47dcd2f47b9792d60e3cb3 100644 GIT binary patch delta 20 bcmexl`N?vFu?V}Vf}w$xk;P^!ksTZWO@jt- delta 20 bcmexl`N?vFu?V|~f}w$xf!Ss&ksTZWOGenerate Grade " -"Report button is clicked. A link to each grade report remains available " -"on this page, identified by the UTC date and time of generation. Grade " +"The grade reports listed below are generated each time the Generate Grade" +" Report button is clicked. A link to each grade report remains available" +" on this page, identified by the UTC date and time of generation. Grade " "reports are not deleted, so you will always be able to access previously " "generated reports from this page." msgstr "" -#. Translators: "these rules" in this sentence references a detailed -#. description of the grading reports that will appear in a table that -#. contains -#. a mix of different types of reports. This sentence intends to indicate -#. that -#. the description of the grading report does not apply to the other reports -#. that may appear in the table. #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Other reports may appear in the table for which these rules will not " -"necessarily apply." +"The answer distribution report listed below is generated periodically by an " +"automated background process. The report is cumulative, so answers submitted" +" after the process starts are included in a subsequent report. The report is" +" generated several times per day." msgstr "" #. Translators: a table of URL links to report files appears after this @@ -8290,7 +8277,7 @@ msgstr "" #: lms/templates/static_templates/server-error.html msgid "" "Please wait a few seconds and then reload the page. If the problem persists," -" please email us at {email}." +" please email us at {email}." msgstr "" #: lms/templates/static_templates/server-overloaded.html @@ -9318,6 +9305,10 @@ msgstr "" msgid "Page Actions" msgstr "" +#: cms/templates/asset_index.html +msgid "Loading…" +msgstr "" + #: cms/templates/asset_index.html msgid "What files are listed here?" msgstr "" diff --git a/conf/locale/pl/LC_MESSAGES/djangojs.mo b/conf/locale/pl/LC_MESSAGES/djangojs.mo index 9757f886b9d3c48393ac8aaf1f8f0c5cf96b2cf5..64376c163f2b847ed4c1a36a77de6a6ec9b88e1c 100644 GIT binary patch delta 20 bcmbQtHJNL}Y$kS71w#WXBlFFRm\n" "Language-Team: Polish (http://www.transifex.com/projects/p/edx-platform/language/pl/)\n" @@ -815,7 +815,7 @@ msgid "Error generating grades. Please try again." msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js -msgid "File Name (Newest First)" +msgid "File Name" msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js @@ -855,6 +855,21 @@ msgstr "" msgid "Error changing user's permissions." msgstr "" +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Could not find a user with username or email address '<%= identifier %>'." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Error: User '<%= username %>' has not yet activated their account. Users " +"must create and activate their accounts before they can be assigned a role." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Error: You cannot remove yourself from the Instructor group!" +msgstr "" + #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error adding/removing users as beta testers." msgstr "" diff --git a/conf/locale/pt_BR/LC_MESSAGES/django.mo b/conf/locale/pt_BR/LC_MESSAGES/django.mo index faaf70b9e0e261af732ca6c3f9d66a13f9614a4a..d8f0abf420d028203ada97da935a183cfbad66ef 100644 GIT binary patch delta 33705 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 Y!t-ZyFUcA{wXyp`=J1Z=+@tgTKNpEeEdT%j delta 34647 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�-N}Va`&hg2md3_hrFERH6+bbh=eU<93r6y5BrOFBn3K>8GY?kk4YPb zt4VA?nI<;#D(T(1lacnFc5>rvbdh$HHj-j$rvEExH@F?*x_V%y=<{Ea4F2lODNE(g zJme1H(?4_|B^8>IHkSN>cAp|JtnKIEk)tq-+x{0`<7>ar+Q|#eIozVHyasBOvPd@bHqvTPVV{o^oe- zXgMB|g8LAS{z2MS@)A?_3~A-auc&nDWhH$-X&JCT_aO2-0VJH|9!-G^RN6w~e}prW zcAjv0()!at2n~YOKBlyv6!hL9bE#W}YdJtcUV@T^m zcoFw_?v~uyN&i3dPxz31N)}I0ENvBQtOa_g))6Y5kdoirLD4llCv+FWehxtT=hP z21ZX4;q}}zeu$s5Wv6q z4~?|9BbZ5#OBAKUi5XCXDlMV3A1qfQ6{lI|8?!-4kxoC@$L3O+ic}9 z($d-^^oa00(wowWAFo{Yf!#>FN4O7n5bgX*xrL;qqTWZs1xfoxID)j;ggsShYy=5A zxl7vztKr2I{zxN3xKDGh;no#FdI4K*Cv|%hkG_Ud<^b_t_?`An+X0lIz%;`5@q|sg zMw#=``#&9{YeI#rByPip6kNtb3R8Fk@e-ux!(_xOkRF?G^i__$qC7MY>8D8FPq;02 zd+xC4LO7Sas|=MA5KczgOX5|DpThvs z;?Vg=gfmj-BX{%_X~QdQLQ=}LAgwO<7asn*I>PfE{SH`HE?eOx79&1`Lb^_K@8iLd zJS>QCGRhYv{FlvFnfav6Cw?6lQ8qqlcW@bPrBVTVRVBWPy3yCxLc_9T%M=#bHzdN{ zF*LGwL}*Y{@6hltcc<_Och89Mpza|(w$@u-DRrqpcjd;-+~J+vfnnic{d>brHB&@f)W|c^HP=9xD_t4;Op<$ify}N{x5Y@YPc$nYTQF~V+;c2~D8bhOnX zXSYr1N|VCd_29rTcTkACV|d>%b$>^ZLavTEV}(XW1$N&tqnT?}5#M6&!iCBdDzT&T zSl8{GxvJQy2|c{>@X~O%w=0o7!y|hKG8N&G(WBjwb(5=P##WWPhxUpJafgLOMuxb9 z!h5Sq&%lU4cTiwxzrYB0R1bGxM6amOKH=W61&0%NhiZ{RJ8GExFGQ;r7}h&PQym@_ z%2Eb)4D{R4;*6_Js#O1<-qZ`HCp-B6XYqB#tiiJF*m>9Wu6o1#?!eAbff2M9*u8U9 zSR~5_9mCxu^k%H=51!of@Z!#)VS#?`#vyJxYW5S!X5~U7SUUDur@%hp5wkNqb!E(0 zF3{a2BBWFKtpCroT$ zdWUypHu+y*_oy)F5y)l_j_Mw$WN(*yFiY&R`jOgswy{X>6TC%eB_x;@^KwV^2z2)j n45FAjP%|Iy)~fUjXF4J|N#4cKoK|b&bEAM={A}ZVCYJqQM^JTJ diff --git a/conf/locale/pt_BR/LC_MESSAGES/django.po b/conf/locale/pt_BR/LC_MESSAGES/django.po index 0b31e05ca9..ba4f273a39 100644 --- a/conf/locale/pt_BR/LC_MESSAGES/django.po +++ b/conf/locale/pt_BR/LC_MESSAGES/django.po @@ -97,7 +97,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" +"POT-Creation-Date: 2014-03-25 10:28-0400\n" "PO-Revision-Date: 2014-03-18 23:30+0000\n" "Last-Translator: JhonatannSilva \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/edx-platform/language/pt_BR/)\n" @@ -1332,7 +1332,7 @@ msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py msgid "" "Can't receive transcripts from Youtube for {youtube_id}. Status code: " -"{statuc_code}." +"{status_code}." msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py @@ -4112,14 +4112,6 @@ msgstr "Regras de Privacidade" msgid "Help" msgstr "Ajuda" -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "Visual" -msgstr "Visual" - -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "HTML" -msgstr "HTML" - #: common/templates/course_modes/choose.html msgid "Upgrade Your Registration for {} | Choose Your Track" msgstr "Atualize a sua matrícula para {} | Escolha o seu caminho" @@ -6757,8 +6749,8 @@ msgid "Students" msgstr "Estudantes" #: lms/templates/courseware/instructor_dashboard.html -msgid "Answer distribution for problems" -msgstr "Distribuição de respostas aos problemas" +msgid "Score distribution for problems" +msgstr "" #: lms/templates/courseware/instructor_dashboard.html #: lms/templates/courseware/instructor_dashboard.html @@ -7681,8 +7673,8 @@ msgid "Skip" msgstr "Pular" #: lms/templates/instructor/instructor_dashboard_2/analytics.html -msgid "Grade Distribution" -msgstr "Distribuição de Notas" +msgid "Score Distribution" +msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html msgid "" @@ -7758,8 +7750,8 @@ msgstr "Alertas do Curso" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button generates a CSV file of all students enrolled in this " -"course, along with profile information such as email address and username." +"Click to generate a CSV file of all students enrolled in this course, along " +"with profile information such as email address and username:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7768,7 +7760,7 @@ msgstr "Baixar informações sobre o perfil como um CSV" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"For smaller courses, profile information for enrolled students can be listed" +"For smaller courses, click to list profile information for enrolled students" " directly on this page:" msgstr "" @@ -7778,10 +7770,10 @@ msgstr "Informação sobre o perfil dos estudantes matriculados " #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button displays the grading configuration for the course. The " -"grading configuration is the breakdown of graded subsections of the course " -"(such as exams and problem sets), and can be changed on the 'Grading' page " -"(under 'Settings') in Studio." +"Click to display the grading configuration for the course. The grading " +"configuration is the breakdown of graded subsections of the course (such as " +"exams and problem sets), and can be changed on the 'Grading' page (under " +"'Settings') in Studio." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7789,10 +7781,8 @@ msgid "Grading Configuration" msgstr "Configurações de Correção" #: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "Download a CSV of anonymized student IDs by clicking this button." +msgid "Click to download a CSV of anonymized student IDs:" msgstr "" -"Clique nesse botão para baixar um arquivo CSV com a identidade de estudantes" -" anonimizada." #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "Get Student Anonymized IDs CSV" @@ -7804,13 +7794,10 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button will generate a CSV grade report for all currently " -"enrolled students. Generated reports appear in a table below and can be " -"downloaded." +"Click to generate a CSV grade report for all currently enrolled students. " +"Links to generated reports appear in a table below when report generation is" +" complete." msgstr "" -"O seguinte botão irá gerar um relatório com notas em CSV para todos os " -"alunos matriculados atualmente. Os relatórios gerados aparecem em uma tabela" -" abaixo que pode ser baixada." #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" @@ -7840,24 +7827,19 @@ msgstr "Relatórios Disponíveis para Download" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Grade reports listed below are generated each time the Generate Grade " -"Report button is clicked. A link to each grade report remains available " -"on this page, identified by the UTC date and time of generation. Grade " +"The grade reports listed below are generated each time the Generate Grade" +" Report button is clicked. A link to each grade report remains available" +" on this page, identified by the UTC date and time of generation. Grade " "reports are not deleted, so you will always be able to access previously " "generated reports from this page." msgstr "" -#. Translators: "these rules" in this sentence references a detailed -#. description of the grading reports that will appear in a table that -#. contains -#. a mix of different types of reports. This sentence intends to indicate -#. that -#. the description of the grading report does not apply to the other reports -#. that may appear in the table. #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Other reports may appear in the table for which these rules will not " -"necessarily apply." +"The answer distribution report listed below is generated periodically by an " +"automated background process. The report is cumulative, so answers submitted" +" after the process starts are included in a subsequent report. The report is" +" generated several times per day." msgstr "" #. Translators: a table of URL links to report files appears after this @@ -8985,11 +8967,8 @@ msgstr "Ocorreu o erro 500 nos servidores de {platform_name}" #: lms/templates/static_templates/server-error.html msgid "" "Please wait a few seconds and then reload the page. If the problem persists," -" please email us at {email}." +" please email us at {email}." msgstr "" -"Por favor, aguarde alguns segundo e atualize a página. Se o problema " -"persistir, por favor envie-nos uma mensagem para {email}." #: lms/templates/static_templates/server-overloaded.html msgid "Currently the {platform_name} servers are overloaded" @@ -10123,6 +10102,10 @@ msgstr "" msgid "Page Actions" msgstr "" +#: cms/templates/asset_index.html +msgid "Loading…" +msgstr "" + #: cms/templates/asset_index.html msgid "What files are listed here?" msgstr "Quais arquivos estão listados aqui?" diff --git a/conf/locale/pt_BR/LC_MESSAGES/djangojs.mo b/conf/locale/pt_BR/LC_MESSAGES/djangojs.mo index 7eb9380c2a63208d7c029de45e333b3211d10157..73dcaf9a230571c5852ad76513045d76bbfe3356 100644 GIT binary patch delta 20 bcmZ4Lxzuw5s~Eeff}w$xk@;pGv6*}TK+gq) delta 20 bcmZ4Lxzuw5s~Ee9f}w$xf!Ssrv6*}TK(7UW diff --git a/conf/locale/pt_BR/LC_MESSAGES/djangojs.po b/conf/locale/pt_BR/LC_MESSAGES/djangojs.po index 4b1dbe252e..fe416afadd 100644 --- a/conf/locale/pt_BR/LC_MESSAGES/djangojs.po +++ b/conf/locale/pt_BR/LC_MESSAGES/djangojs.po @@ -35,7 +35,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" +"POT-Creation-Date: 2014-03-25 10:27-0400\n" "PO-Revision-Date: 2014-03-24 14:25+0000\n" "Last-Translator: sarina \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/edx-platform/language/pt_BR/)\n" @@ -815,7 +815,7 @@ msgid "Error generating grades. Please try again." msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js -msgid "File Name (Newest First)" +msgid "File Name" msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js @@ -855,6 +855,21 @@ msgstr "" msgid "Error changing user's permissions." msgstr "" +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Could not find a user with username or email address '<%= identifier %>'." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Error: User '<%= username %>' has not yet activated their account. Users " +"must create and activate their accounts before they can be assigned a role." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Error: You cannot remove yourself from the Instructor group!" +msgstr "" + #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error adding/removing users as beta testers." msgstr "" diff --git a/conf/locale/pt_PT/LC_MESSAGES/django.mo b/conf/locale/pt_PT/LC_MESSAGES/django.mo index 8995851eb45cabc3b8b5e00ec9e146f9ec420a6c..2d26f66e3da7091655bb42a0568ec74c9557bb0b 100644 GIT binary patch delta 18 ZcmZ3)vWR8EMs`yLLjx-#i;X+77y&n;1;YRU delta 18 ZcmZ3)vWR8EMs^bgLjx-VvyD5l7y&nd1-<|P diff --git a/conf/locale/pt_PT/LC_MESSAGES/django.po b/conf/locale/pt_PT/LC_MESSAGES/django.po index 016841b2e6..7fb3912003 100644 --- a/conf/locale/pt_PT/LC_MESSAGES/django.po +++ b/conf/locale/pt_PT/LC_MESSAGES/django.po @@ -49,7 +49,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" +"POT-Creation-Date: 2014-03-25 10:28-0400\n" "PO-Revision-Date: 2014-03-16 17:10+0000\n" "Last-Translator: nedbat \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/edx-platform/language/pt_PT/)\n" @@ -1249,7 +1249,7 @@ msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py msgid "" "Can't receive transcripts from Youtube for {youtube_id}. Status code: " -"{statuc_code}." +"{status_code}." msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py @@ -3774,14 +3774,6 @@ msgstr "" msgid "Help" msgstr "" -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "Visual" -msgstr "" - -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "HTML" -msgstr "" - #: common/templates/course_modes/choose.html msgid "Upgrade Your Registration for {} | Choose Your Track" msgstr "" @@ -6205,7 +6197,7 @@ msgid "Students" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -msgid "Answer distribution for problems" +msgid "Score distribution for problems" msgstr "" #: lms/templates/courseware/instructor_dashboard.html @@ -7101,7 +7093,7 @@ msgid "Skip" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html -msgid "Grade Distribution" +msgid "Score Distribution" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html @@ -7178,8 +7170,8 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button generates a CSV file of all students enrolled in this " -"course, along with profile information such as email address and username." +"Click to generate a CSV file of all students enrolled in this course, along " +"with profile information such as email address and username:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7188,7 +7180,7 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"For smaller courses, profile information for enrolled students can be listed" +"For smaller courses, click to list profile information for enrolled students" " directly on this page:" msgstr "" @@ -7198,10 +7190,10 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button displays the grading configuration for the course. The " -"grading configuration is the breakdown of graded subsections of the course " -"(such as exams and problem sets), and can be changed on the 'Grading' page " -"(under 'Settings') in Studio." +"Click to display the grading configuration for the course. The grading " +"configuration is the breakdown of graded subsections of the course (such as " +"exams and problem sets), and can be changed on the 'Grading' page (under " +"'Settings') in Studio." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7209,7 +7201,7 @@ msgid "Grading Configuration" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "Download a CSV of anonymized student IDs by clicking this button." +msgid "Click to download a CSV of anonymized student IDs:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7222,9 +7214,9 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button will generate a CSV grade report for all currently " -"enrolled students. Generated reports appear in a table below and can be " -"downloaded." +"Click to generate a CSV grade report for all currently enrolled students. " +"Links to generated reports appear in a table below when report generation is" +" complete." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7250,24 +7242,19 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Grade reports listed below are generated each time the Generate Grade " -"Report button is clicked. A link to each grade report remains available " -"on this page, identified by the UTC date and time of generation. Grade " +"The grade reports listed below are generated each time the Generate Grade" +" Report button is clicked. A link to each grade report remains available" +" on this page, identified by the UTC date and time of generation. Grade " "reports are not deleted, so you will always be able to access previously " "generated reports from this page." msgstr "" -#. Translators: "these rules" in this sentence references a detailed -#. description of the grading reports that will appear in a table that -#. contains -#. a mix of different types of reports. This sentence intends to indicate -#. that -#. the description of the grading report does not apply to the other reports -#. that may appear in the table. #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Other reports may appear in the table for which these rules will not " -"necessarily apply." +"The answer distribution report listed below is generated periodically by an " +"automated background process. The report is cumulative, so answers submitted" +" after the process starts are included in a subsequent report. The report is" +" generated several times per day." msgstr "" #. Translators: a table of URL links to report files appears after this @@ -8286,7 +8273,7 @@ msgstr "" #: lms/templates/static_templates/server-error.html msgid "" "Please wait a few seconds and then reload the page. If the problem persists," -" please email us at {email}." +" please email us at {email}." msgstr "" #: lms/templates/static_templates/server-overloaded.html @@ -9314,6 +9301,10 @@ msgstr "" msgid "Page Actions" msgstr "" +#: cms/templates/asset_index.html +msgid "Loading…" +msgstr "" + #: cms/templates/asset_index.html msgid "What files are listed here?" msgstr "" diff --git a/conf/locale/pt_PT/LC_MESSAGES/djangojs.mo b/conf/locale/pt_PT/LC_MESSAGES/djangojs.mo index 98234814689d66e8794c08f2a6d9203f06b279a9..73819ff4936f4f077cd07d2aa9127eb93983ac53 100644 GIT binary patch delta 18 ZcmeBW>1CO)k=<0m(7?*beB+K#MgTOa1%m(p delta 18 ZcmeBW>1CO)k=;bW(7?*TY~zklMgTO81%Chl diff --git a/conf/locale/pt_PT/LC_MESSAGES/djangojs.po b/conf/locale/pt_PT/LC_MESSAGES/djangojs.po index 2b71fd2dec..265b5ca891 100644 --- a/conf/locale/pt_PT/LC_MESSAGES/djangojs.po +++ b/conf/locale/pt_PT/LC_MESSAGES/djangojs.po @@ -17,7 +17,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" +"POT-Creation-Date: 2014-03-25 10:27-0400\n" "PO-Revision-Date: 2014-03-19 23:13+0000\n" "Last-Translator: sarina \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/edx-platform/language/pt_PT/)\n" @@ -792,7 +792,7 @@ msgid "Error generating grades. Please try again." msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js -msgid "File Name (Newest First)" +msgid "File Name" msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js @@ -832,6 +832,21 @@ msgstr "" msgid "Error changing user's permissions." msgstr "" +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Could not find a user with username or email address '<%= identifier %>'." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Error: User '<%= username %>' has not yet activated their account. Users " +"must create and activate their accounts before they can be assigned a role." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Error: You cannot remove yourself from the Instructor group!" +msgstr "" + #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error adding/removing users as beta testers." msgstr "" diff --git a/conf/locale/ru/LC_MESSAGES/django.mo b/conf/locale/ru/LC_MESSAGES/django.mo index 0bcc31c136969a6d1940d4fe1fe8ad8aa747c7ff..38072992e4d926c5355969018c2533ba9e7aac98 100644 GIT binary patch delta 18 acmaFP@|\n" "Language-Team: Russian (http://www.transifex.com/projects/p/edx-platform/language/ru/)\n" @@ -1284,7 +1284,7 @@ msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py msgid "" "Can't receive transcripts from Youtube for {youtube_id}. Status code: " -"{statuc_code}." +"{status_code}." msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py @@ -3809,14 +3809,6 @@ msgstr "" msgid "Help" msgstr "" -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "Visual" -msgstr "" - -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "HTML" -msgstr "" - #: common/templates/course_modes/choose.html msgid "Upgrade Your Registration for {} | Choose Your Track" msgstr "" @@ -6242,7 +6234,7 @@ msgid "Students" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -msgid "Answer distribution for problems" +msgid "Score distribution for problems" msgstr "" #: lms/templates/courseware/instructor_dashboard.html @@ -7140,7 +7132,7 @@ msgid "Skip" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html -msgid "Grade Distribution" +msgid "Score Distribution" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html @@ -7217,8 +7209,8 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button generates a CSV file of all students enrolled in this " -"course, along with profile information such as email address and username." +"Click to generate a CSV file of all students enrolled in this course, along " +"with profile information such as email address and username:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7227,7 +7219,7 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"For smaller courses, profile information for enrolled students can be listed" +"For smaller courses, click to list profile information for enrolled students" " directly on this page:" msgstr "" @@ -7237,10 +7229,10 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button displays the grading configuration for the course. The " -"grading configuration is the breakdown of graded subsections of the course " -"(such as exams and problem sets), and can be changed on the 'Grading' page " -"(under 'Settings') in Studio." +"Click to display the grading configuration for the course. The grading " +"configuration is the breakdown of graded subsections of the course (such as " +"exams and problem sets), and can be changed on the 'Grading' page (under " +"'Settings') in Studio." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7248,7 +7240,7 @@ msgid "Grading Configuration" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "Download a CSV of anonymized student IDs by clicking this button." +msgid "Click to download a CSV of anonymized student IDs:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7261,9 +7253,9 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button will generate a CSV grade report for all currently " -"enrolled students. Generated reports appear in a table below and can be " -"downloaded." +"Click to generate a CSV grade report for all currently enrolled students. " +"Links to generated reports appear in a table below when report generation is" +" complete." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7289,24 +7281,19 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Grade reports listed below are generated each time the Generate Grade " -"Report button is clicked. A link to each grade report remains available " -"on this page, identified by the UTC date and time of generation. Grade " +"The grade reports listed below are generated each time the Generate Grade" +" Report button is clicked. A link to each grade report remains available" +" on this page, identified by the UTC date and time of generation. Grade " "reports are not deleted, so you will always be able to access previously " "generated reports from this page." msgstr "" -#. Translators: "these rules" in this sentence references a detailed -#. description of the grading reports that will appear in a table that -#. contains -#. a mix of different types of reports. This sentence intends to indicate -#. that -#. the description of the grading report does not apply to the other reports -#. that may appear in the table. #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Other reports may appear in the table for which these rules will not " -"necessarily apply." +"The answer distribution report listed below is generated periodically by an " +"automated background process. The report is cumulative, so answers submitted" +" after the process starts are included in a subsequent report. The report is" +" generated several times per day." msgstr "" #. Translators: a table of URL links to report files appears after this @@ -8325,7 +8312,7 @@ msgstr "" #: lms/templates/static_templates/server-error.html msgid "" "Please wait a few seconds and then reload the page. If the problem persists," -" please email us at {email}." +" please email us at {email}." msgstr "" #: lms/templates/static_templates/server-overloaded.html @@ -9353,6 +9340,10 @@ msgstr "" msgid "Page Actions" msgstr "" +#: cms/templates/asset_index.html +msgid "Loading…" +msgstr "" + #: cms/templates/asset_index.html msgid "What files are listed here?" msgstr "" diff --git a/conf/locale/ru/LC_MESSAGES/djangojs.mo b/conf/locale/ru/LC_MESSAGES/djangojs.mo index 4c341a30317bc8b3a3738f146e586a81285abec7..bd4542ca2cb6f759f1fbdff9a2f81983a740a083 100644 GIT binary patch delta 18 ZcmX@ia+qbpMs`yLLjx-#^Nl;Y838;&1|\n" "Language-Team: Russian (http://www.transifex.com/projects/p/edx-platform/language/ru/)\n" @@ -825,7 +825,7 @@ msgid "Error generating grades. Please try again." msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js -msgid "File Name (Newest First)" +msgid "File Name" msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js @@ -865,6 +865,21 @@ msgstr "" msgid "Error changing user's permissions." msgstr "" +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Could not find a user with username or email address '<%= identifier %>'." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Error: User '<%= username %>' has not yet activated their account. Users " +"must create and activate their accounts before they can be assigned a role." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Error: You cannot remove yourself from the Instructor group!" +msgstr "" + #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error adding/removing users as beta testers." msgstr "" diff --git a/conf/locale/si/LC_MESSAGES/django.mo b/conf/locale/si/LC_MESSAGES/django.mo index d47804bc3aed2c1f2b5dc86b6c50c41dff99404a..7470f2c0efc89332ecf14f8f8383b4b5626410f7 100644 GIT binary patch delta 18 ZcmeBU>0_C&k=<0m(7?*bV&jf5MgTO@1&06t delta 18 ZcmeBU>0_C&k=;bW(7?*TY~zkFMgTOi1%dzo diff --git a/conf/locale/si/LC_MESSAGES/django.po b/conf/locale/si/LC_MESSAGES/django.po index 743ac8f2b1..9ab74a10d7 100644 --- a/conf/locale/si/LC_MESSAGES/django.po +++ b/conf/locale/si/LC_MESSAGES/django.po @@ -41,7 +41,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" +"POT-Creation-Date: 2014-03-25 10:28-0400\n" "PO-Revision-Date: 2014-02-06 03:04+0000\n" "Last-Translator: nedbat \n" "Language-Team: Sinhala (http://www.transifex.com/projects/p/edx-platform/language/si/)\n" @@ -1241,7 +1241,7 @@ msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py msgid "" "Can't receive transcripts from Youtube for {youtube_id}. Status code: " -"{statuc_code}." +"{status_code}." msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py @@ -3766,14 +3766,6 @@ msgstr "" msgid "Help" msgstr "" -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "Visual" -msgstr "" - -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "HTML" -msgstr "" - #: common/templates/course_modes/choose.html msgid "Upgrade Your Registration for {} | Choose Your Track" msgstr "" @@ -6197,7 +6189,7 @@ msgid "Students" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -msgid "Answer distribution for problems" +msgid "Score distribution for problems" msgstr "" #: lms/templates/courseware/instructor_dashboard.html @@ -7093,7 +7085,7 @@ msgid "Skip" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html -msgid "Grade Distribution" +msgid "Score Distribution" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html @@ -7170,8 +7162,8 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button generates a CSV file of all students enrolled in this " -"course, along with profile information such as email address and username." +"Click to generate a CSV file of all students enrolled in this course, along " +"with profile information such as email address and username:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7180,7 +7172,7 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"For smaller courses, profile information for enrolled students can be listed" +"For smaller courses, click to list profile information for enrolled students" " directly on this page:" msgstr "" @@ -7190,10 +7182,10 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button displays the grading configuration for the course. The " -"grading configuration is the breakdown of graded subsections of the course " -"(such as exams and problem sets), and can be changed on the 'Grading' page " -"(under 'Settings') in Studio." +"Click to display the grading configuration for the course. The grading " +"configuration is the breakdown of graded subsections of the course (such as " +"exams and problem sets), and can be changed on the 'Grading' page (under " +"'Settings') in Studio." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7201,7 +7193,7 @@ msgid "Grading Configuration" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "Download a CSV of anonymized student IDs by clicking this button." +msgid "Click to download a CSV of anonymized student IDs:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7214,9 +7206,9 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button will generate a CSV grade report for all currently " -"enrolled students. Generated reports appear in a table below and can be " -"downloaded." +"Click to generate a CSV grade report for all currently enrolled students. " +"Links to generated reports appear in a table below when report generation is" +" complete." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7242,24 +7234,19 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Grade reports listed below are generated each time the Generate Grade " -"Report button is clicked. A link to each grade report remains available " -"on this page, identified by the UTC date and time of generation. Grade " +"The grade reports listed below are generated each time the Generate Grade" +" Report button is clicked. A link to each grade report remains available" +" on this page, identified by the UTC date and time of generation. Grade " "reports are not deleted, so you will always be able to access previously " "generated reports from this page." msgstr "" -#. Translators: "these rules" in this sentence references a detailed -#. description of the grading reports that will appear in a table that -#. contains -#. a mix of different types of reports. This sentence intends to indicate -#. that -#. the description of the grading report does not apply to the other reports -#. that may appear in the table. #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Other reports may appear in the table for which these rules will not " -"necessarily apply." +"The answer distribution report listed below is generated periodically by an " +"automated background process. The report is cumulative, so answers submitted" +" after the process starts are included in a subsequent report. The report is" +" generated several times per day." msgstr "" #. Translators: a table of URL links to report files appears after this @@ -8278,7 +8265,7 @@ msgstr "" #: lms/templates/static_templates/server-error.html msgid "" "Please wait a few seconds and then reload the page. If the problem persists," -" please email us at {email}." +" please email us at {email}." msgstr "" #: lms/templates/static_templates/server-overloaded.html @@ -9306,6 +9293,10 @@ msgstr "" msgid "Page Actions" msgstr "" +#: cms/templates/asset_index.html +msgid "Loading…" +msgstr "" + #: cms/templates/asset_index.html msgid "What files are listed here?" msgstr "" diff --git a/conf/locale/si/LC_MESSAGES/djangojs.mo b/conf/locale/si/LC_MESSAGES/djangojs.mo index 664b3be5bf14b3a170672c0c87d7692bdf336823..b37feac5c8d8c7088b435dfe7ae851f594867b66 100644 GIT binary patch delta 18 Zcmey#{F8aYMs`yLLjx-#^Nl+k8397M21Nh> delta 18 Zcmey#{F8aYMs^bgLjx-VvyD3(8396_20;J- diff --git a/conf/locale/si/LC_MESSAGES/djangojs.po b/conf/locale/si/LC_MESSAGES/djangojs.po index 775a2131c4..8a7436f791 100644 --- a/conf/locale/si/LC_MESSAGES/djangojs.po +++ b/conf/locale/si/LC_MESSAGES/djangojs.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" +"POT-Creation-Date: 2014-03-25 10:27-0400\n" "PO-Revision-Date: 2014-03-19 20:22+0000\n" "Last-Translator: sarina \n" "Language-Team: Sinhala (http://www.transifex.com/projects/p/edx-platform/language/si/)\n" @@ -789,7 +789,7 @@ msgid "Error generating grades. Please try again." msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js -msgid "File Name (Newest First)" +msgid "File Name" msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js @@ -829,6 +829,21 @@ msgstr "" msgid "Error changing user's permissions." msgstr "" +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Could not find a user with username or email address '<%= identifier %>'." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Error: User '<%= username %>' has not yet activated their account. Users " +"must create and activate their accounts before they can be assigned a role." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Error: You cannot remove yourself from the Instructor group!" +msgstr "" + #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error adding/removing users as beta testers." msgstr "" diff --git a/conf/locale/sk/LC_MESSAGES/django.mo b/conf/locale/sk/LC_MESSAGES/django.mo index 803e918b5dd48d9e8c0af2b8a89c3e895e537dcc..399165f92f2f8e574847868119acdbbfeb66392a 100644 GIT binary patch delta 557 zcmY+9&q^FY5Qlr?npL9_#6Kt^od?KbM#V)uD1zWc1c?U;LhVeW?eumpGd+W=hkXJM zi+B-1=H_KjB8Uestzb^Rfr&4XbAGcTCIuf~byasYby@sXYCaDYPZ^>IOoAWa6F3KX zJc2Rs6AXhFFa-X9e$ZP0@F+Y0b2y(>hChE`Y#z?vuXer8-+}Y<5sZJD>;%aO3K#G= zd<_r6PcYuHBFG1pz*}@9LAw+9gMG}iW#2c6wwzQXC}?oY$Fn>G)eq=+H5FA)g*3J8l^e@ZF<40v~H&Q zX1;o}-18Q^>DKSDnJqcTBHh3OBJfDY3sg5tn8F delta 117 zcmcc5zJkT#o)F7a1|VPrVi_P-0b*t#)&XJ=umIwBKuJp=4N?OGlg$__*-aD-4Xg~z wCU0Yu<1*4UFjFuvwlXl8e2-CFI4?CNDX~Ps21q-krc~(V7o~63V3K150IOLPtN;K2 diff --git a/conf/locale/sk/LC_MESSAGES/django.po b/conf/locale/sk/LC_MESSAGES/django.po index 4e11c89cde..eea328487d 100644 --- a/conf/locale/sk/LC_MESSAGES/django.po +++ b/conf/locale/sk/LC_MESSAGES/django.po @@ -16,6 +16,7 @@ # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. # # Translators: +# Vladimír Záhradník , 2014 # #-#-#-#-# mako-studio.po (edx-platform) #-#-#-#-# # edX translation file # Copyright (C) 2014 edX @@ -36,13 +37,14 @@ # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. # # Translators: +# Vladimír Záhradník , 2014 msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" -"PO-Revision-Date: 2014-02-06 03:04+0000\n" -"Last-Translator: nedbat \n" +"POT-Creation-Date: 2014-03-25 10:28-0400\n" +"PO-Revision-Date: 2014-03-24 22:20+0000\n" +"Last-Translator: Vladimír Záhradník \n" "Language-Team: Slovak (http://www.transifex.com/projects/p/edx-platform/language/sk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -1031,12 +1033,9 @@ msgstr "" msgid "Peer grading" msgstr "" -#. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# -#. Translators: "Syllabus" appears on a tab that, when clicked, opens the -#. syllabus of the course. -#: common/lib/xmodule/xmodule/tabs.py lms/templates/courseware/syllabus.html +#: lms/templates/courseware/syllabus.html msgid "Syllabus" -msgstr "" +msgstr "Učebná osnova" #. Translators: 'Instructor' appears on the tab that leads to the instructor #. dashboard, which is @@ -1240,7 +1239,7 @@ msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py msgid "" "Can't receive transcripts from Youtube for {youtube_id}. Status code: " -"{statuc_code}." +"{status_code}." msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py @@ -3765,14 +3764,6 @@ msgstr "" msgid "Help" msgstr "" -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "Visual" -msgstr "" - -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "HTML" -msgstr "" - #: common/templates/course_modes/choose.html msgid "Upgrade Your Registration for {} | Choose Your Track" msgstr "" @@ -3928,7 +3919,7 @@ msgstr "" #: lms/templates/open_ended_problems/open_ended_problems.html #: lms/templates/peer_grading/peer_grading.html msgid "Instructions" -msgstr "" +msgstr "Inštrukcie" #: lms/templates/annotatable.html lms/templates/textannotation.html #: lms/templates/videoannotation.html @@ -5188,11 +5179,11 @@ msgstr "" #: lms/templates/static_pdfbook.html lms/templates/staticbook.html msgid "Previous page" -msgstr "" +msgstr "Predchádzajúca stránka" #: lms/templates/static_pdfbook.html lms/templates/staticbook.html msgid "Next page" -msgstr "" +msgstr "Nasledujúca stránka" #: lms/templates/sysadmin_dashboard.html #: lms/templates/sysadmin_dashboard_gitlogs.html @@ -6198,7 +6189,7 @@ msgid "Students" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -msgid "Answer distribution for problems" +msgid "Score distribution for problems" msgstr "" #: lms/templates/courseware/instructor_dashboard.html @@ -7096,7 +7087,7 @@ msgid "Skip" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html -msgid "Grade Distribution" +msgid "Score Distribution" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html @@ -7173,8 +7164,8 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button generates a CSV file of all students enrolled in this " -"course, along with profile information such as email address and username." +"Click to generate a CSV file of all students enrolled in this course, along " +"with profile information such as email address and username:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7183,7 +7174,7 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"For smaller courses, profile information for enrolled students can be listed" +"For smaller courses, click to list profile information for enrolled students" " directly on this page:" msgstr "" @@ -7193,10 +7184,10 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button displays the grading configuration for the course. The " -"grading configuration is the breakdown of graded subsections of the course " -"(such as exams and problem sets), and can be changed on the 'Grading' page " -"(under 'Settings') in Studio." +"Click to display the grading configuration for the course. The grading " +"configuration is the breakdown of graded subsections of the course (such as " +"exams and problem sets), and can be changed on the 'Grading' page (under " +"'Settings') in Studio." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7204,7 +7195,7 @@ msgid "Grading Configuration" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "Download a CSV of anonymized student IDs by clicking this button." +msgid "Click to download a CSV of anonymized student IDs:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7217,9 +7208,9 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button will generate a CSV grade report for all currently " -"enrolled students. Generated reports appear in a table below and can be " -"downloaded." +"Click to generate a CSV grade report for all currently enrolled students. " +"Links to generated reports appear in a table below when report generation is" +" complete." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7245,24 +7236,19 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Grade reports listed below are generated each time the Generate Grade " -"Report button is clicked. A link to each grade report remains available " -"on this page, identified by the UTC date and time of generation. Grade " +"The grade reports listed below are generated each time the Generate Grade" +" Report button is clicked. A link to each grade report remains available" +" on this page, identified by the UTC date and time of generation. Grade " "reports are not deleted, so you will always be able to access previously " "generated reports from this page." msgstr "" -#. Translators: "these rules" in this sentence references a detailed -#. description of the grading reports that will appear in a table that -#. contains -#. a mix of different types of reports. This sentence intends to indicate -#. that -#. the description of the grading report does not apply to the other reports -#. that may appear in the table. #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Other reports may appear in the table for which these rules will not " -"necessarily apply." +"The answer distribution report listed below is generated periodically by an " +"automated background process. The report is cumulative, so answers submitted" +" after the process starts are included in a subsequent report. The report is" +" generated several times per day." msgstr "" #. Translators: a table of URL links to report files appears after this @@ -7914,11 +7900,11 @@ msgstr "" #: lms/templates/registration/activation_complete.html msgid "Activation Complete!" -msgstr "" +msgstr "Aktivácia bola dokončená!" #: lms/templates/registration/activation_complete.html msgid "Account already active!" -msgstr "" +msgstr "Účet už je aktívny!" #: lms/templates/registration/activation_complete.html msgid "You can now {link_start}log in{link_end}." @@ -7926,7 +7912,7 @@ msgstr "" #: lms/templates/registration/activation_invalid.html msgid "Activation Invalid" -msgstr "" +msgstr "Aktivácia je neplatná" #: lms/templates/registration/activation_invalid.html msgid "" @@ -8281,7 +8267,7 @@ msgstr "" #: lms/templates/static_templates/server-error.html msgid "" "Please wait a few seconds and then reload the page. If the problem persists," -" please email us at {email}." +" please email us at {email}." msgstr "" #: lms/templates/static_templates/server-overloaded.html @@ -9309,6 +9295,10 @@ msgstr "" msgid "Page Actions" msgstr "" +#: cms/templates/asset_index.html +msgid "Loading…" +msgstr "" + #: cms/templates/asset_index.html msgid "What files are listed here?" msgstr "" diff --git a/conf/locale/sk/LC_MESSAGES/djangojs.mo b/conf/locale/sk/LC_MESSAGES/djangojs.mo index a6e206e6c6a4049222d90d4ba2b662e45e4920ec..03f1bb5258db58ec7d861ebeeece520086c0cd78 100644 GIT binary patch delta 310 zcmbQta)q`2o)F7a1|VPsVi_QI0b+I_&H-W&=m27nTqh9o0&zc-KNm=I0P$iV{>I3_ zum&o=n2CWw5XfE$q*;LUZXhiTqz?dTpfUy^1r`UH2?RO}%n$|xgKKVLW)4G8YFU1E zszPFNa%yogLvTrANh(8VacWUsVs7e0i%ND=1w#WXBlC$n6gZ54Y-1}!!-)^Xjl*&h zQ!;Z8uPsuDI=nEWC^04P@Y-wzn=-I)W|3Z1B3Ljp+aVofjb3to?q*&_Hbz5;tx-j# rM;B%uU8+z}ba-uXNofJd<}wD~)VzF!g8b5>`wp)y1G?nMzC;E9>#R$_ delta 135 zcmcb@I+?}do)F7a1|VPrVi_P-0b*t#)&XJ=umIwlKuJp=4N?OG6IWNVnSQ(g2 z)@D>NHMCSPGO#i-(l!7BE}z8W65WuZ#Ju91#FG3XD~003qRhNR1se$MkeX7VmtT~= Jc`hRxBLH0U8-4%) diff --git a/conf/locale/sk/LC_MESSAGES/djangojs.po b/conf/locale/sk/LC_MESSAGES/djangojs.po index dd8cd3ce74..80b1980a9b 100644 --- a/conf/locale/sk/LC_MESSAGES/djangojs.po +++ b/conf/locale/sk/LC_MESSAGES/djangojs.po @@ -4,7 +4,7 @@ # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. # # Translators: -# Vladimír Záhradník , 2013 +# Vladimír Záhradník , 2013-2014 # Vladimír Záhradník , 2013 # #-#-#-#-# djangojs-studio.po (edx-platform) #-#-#-#-# # edX translation file. @@ -12,14 +12,15 @@ # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. # # Translators: +# Vladimír Záhradník , 2014 # Vladimír Záhradník , 2013 msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" -"PO-Revision-Date: 2014-03-19 20:22+0000\n" -"Last-Translator: sarina \n" +"POT-Creation-Date: 2014-03-25 10:27-0400\n" +"PO-Revision-Date: 2014-03-25 13:11+0000\n" +"Last-Translator: Vladimír Záhradník \n" "Language-Team: Slovak (http://www.transifex.com/projects/p/edx-platform/language/sk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -808,7 +809,7 @@ msgid "Error generating grades. Please try again." msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js -msgid "File Name (Newest First)" +msgid "File Name" msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js @@ -819,16 +820,16 @@ msgstr "" #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Username" -msgstr "" +msgstr "Meno používateľa" #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Email" -msgstr "" +msgstr "Email" #: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Revoke access" -msgstr "" +msgstr "Zrušiť prístup" #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Enter username or email" @@ -848,6 +849,21 @@ msgstr "" msgid "Error changing user's permissions." msgstr "" +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Could not find a user with username or email address '<%= identifier %>'." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Error: User '<%= username %>' has not yet activated their account. Users " +"must create and activate their accounts before they can be assigned a role." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Error: You cannot remove yourself from the Instructor group!" +msgstr "" + #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error adding/removing users as beta testers." msgstr "" @@ -1142,7 +1158,7 @@ msgstr "" #. appears after this. #: lms/static/coffee/src/instructor_dashboard/util.js msgid "State" -msgstr "" +msgstr "Stav" #. Translators: a "Task" is a background process such as grading students or #. sending email diff --git a/conf/locale/sl/LC_MESSAGES/django.mo b/conf/locale/sl/LC_MESSAGES/django.mo index 674146591d01110d110012f6ecc7a583a4707279..3f79c1421b7a32095bcb85a5b76a8e53b17e5897 100644 GIT binary patch delta 18 ZcmX@Ya)f2VMs`yLLjx-#i;X*a7y&$L1}Ojl delta 18 ZcmX@Ya)f2VMs^bgLjx-VvyD4?7y&#<1|$Fg diff --git a/conf/locale/sl/LC_MESSAGES/django.po b/conf/locale/sl/LC_MESSAGES/django.po index 18d9ac1a8b..960ae542a4 100644 --- a/conf/locale/sl/LC_MESSAGES/django.po +++ b/conf/locale/sl/LC_MESSAGES/django.po @@ -40,7 +40,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" +"POT-Creation-Date: 2014-03-25 10:28-0400\n" "PO-Revision-Date: 2014-02-06 03:04+0000\n" "Last-Translator: nedbat \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/edx-platform/language/sl/)\n" @@ -1240,7 +1240,7 @@ msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py msgid "" "Can't receive transcripts from Youtube for {youtube_id}. Status code: " -"{statuc_code}." +"{status_code}." msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py @@ -3765,14 +3765,6 @@ msgstr "" msgid "Help" msgstr "" -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "Visual" -msgstr "" - -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "HTML" -msgstr "" - #: common/templates/course_modes/choose.html msgid "Upgrade Your Registration for {} | Choose Your Track" msgstr "" @@ -6200,7 +6192,7 @@ msgid "Students" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -msgid "Answer distribution for problems" +msgid "Score distribution for problems" msgstr "" #: lms/templates/courseware/instructor_dashboard.html @@ -7100,7 +7092,7 @@ msgid "Skip" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html -msgid "Grade Distribution" +msgid "Score Distribution" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html @@ -7177,8 +7169,8 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button generates a CSV file of all students enrolled in this " -"course, along with profile information such as email address and username." +"Click to generate a CSV file of all students enrolled in this course, along " +"with profile information such as email address and username:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7187,7 +7179,7 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"For smaller courses, profile information for enrolled students can be listed" +"For smaller courses, click to list profile information for enrolled students" " directly on this page:" msgstr "" @@ -7197,10 +7189,10 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button displays the grading configuration for the course. The " -"grading configuration is the breakdown of graded subsections of the course " -"(such as exams and problem sets), and can be changed on the 'Grading' page " -"(under 'Settings') in Studio." +"Click to display the grading configuration for the course. The grading " +"configuration is the breakdown of graded subsections of the course (such as " +"exams and problem sets), and can be changed on the 'Grading' page (under " +"'Settings') in Studio." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7208,7 +7200,7 @@ msgid "Grading Configuration" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "Download a CSV of anonymized student IDs by clicking this button." +msgid "Click to download a CSV of anonymized student IDs:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7221,9 +7213,9 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button will generate a CSV grade report for all currently " -"enrolled students. Generated reports appear in a table below and can be " -"downloaded." +"Click to generate a CSV grade report for all currently enrolled students. " +"Links to generated reports appear in a table below when report generation is" +" complete." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7249,24 +7241,19 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Grade reports listed below are generated each time the Generate Grade " -"Report button is clicked. A link to each grade report remains available " -"on this page, identified by the UTC date and time of generation. Grade " +"The grade reports listed below are generated each time the Generate Grade" +" Report button is clicked. A link to each grade report remains available" +" on this page, identified by the UTC date and time of generation. Grade " "reports are not deleted, so you will always be able to access previously " "generated reports from this page." msgstr "" -#. Translators: "these rules" in this sentence references a detailed -#. description of the grading reports that will appear in a table that -#. contains -#. a mix of different types of reports. This sentence intends to indicate -#. that -#. the description of the grading report does not apply to the other reports -#. that may appear in the table. #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Other reports may appear in the table for which these rules will not " -"necessarily apply." +"The answer distribution report listed below is generated periodically by an " +"automated background process. The report is cumulative, so answers submitted" +" after the process starts are included in a subsequent report. The report is" +" generated several times per day." msgstr "" #. Translators: a table of URL links to report files appears after this @@ -8285,7 +8272,7 @@ msgstr "" #: lms/templates/static_templates/server-error.html msgid "" "Please wait a few seconds and then reload the page. If the problem persists," -" please email us at {email}." +" please email us at {email}." msgstr "" #: lms/templates/static_templates/server-overloaded.html @@ -9313,6 +9300,10 @@ msgstr "" msgid "Page Actions" msgstr "" +#: cms/templates/asset_index.html +msgid "Loading…" +msgstr "" + #: cms/templates/asset_index.html msgid "What files are listed here?" msgstr "" diff --git a/conf/locale/sl/LC_MESSAGES/djangojs.mo b/conf/locale/sl/LC_MESSAGES/djangojs.mo index f24876da1e129b65b4746c0dea9add4e0a38f6be..f593b6b8d9cdcfdcd9ac2087036e2fec91fb6960 100644 GIT binary patch delta 19 acmZ2&vD#vTiXgkGf}w$xk@;e6L2dv#*97(e delta 19 acmZ2&vD#vTiXgj*f}w$xf!ShhL2dv#y9Dw8 diff --git a/conf/locale/sl/LC_MESSAGES/djangojs.po b/conf/locale/sl/LC_MESSAGES/djangojs.po index cfcc35439f..b4adbeeeff 100644 --- a/conf/locale/sl/LC_MESSAGES/djangojs.po +++ b/conf/locale/sl/LC_MESSAGES/djangojs.po @@ -16,7 +16,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" +"POT-Creation-Date: 2014-03-25 10:27-0400\n" "PO-Revision-Date: 2014-03-19 20:22+0000\n" "Last-Translator: sarina \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/edx-platform/language/sl/)\n" @@ -834,7 +834,7 @@ msgid "Error generating grades. Please try again." msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js -msgid "File Name (Newest First)" +msgid "File Name" msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js @@ -874,6 +874,21 @@ msgstr "" msgid "Error changing user's permissions." msgstr "" +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Could not find a user with username or email address '<%= identifier %>'." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Error: User '<%= username %>' has not yet activated their account. Users " +"must create and activate their accounts before they can be assigned a role." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Error: You cannot remove yourself from the Instructor group!" +msgstr "" + #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error adding/removing users as beta testers." msgstr "" diff --git a/conf/locale/th/LC_MESSAGES/django.mo b/conf/locale/th/LC_MESSAGES/django.mo index 6ee004ceb5c5607572900e9bec3317df75314501..a504955642c294bc7bb137509d56fcf5a9e2fc7b 100644 GIT binary patch delta 20 ccmX@cd5m+zDMofv1w#WXBa6)!8NV_C07{_-_W%F@ delta 20 ccmX@cd5m+zDMoe^1w#WX1GCK+8NV_C07`oX@&Et; diff --git a/conf/locale/th/LC_MESSAGES/django.po b/conf/locale/th/LC_MESSAGES/django.po index 1f6ca30cc3..1ac0745a2e 100644 --- a/conf/locale/th/LC_MESSAGES/django.po +++ b/conf/locale/th/LC_MESSAGES/django.po @@ -44,7 +44,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" +"POT-Creation-Date: 2014-03-25 10:28-0400\n" "PO-Revision-Date: 2014-02-06 03:04+0000\n" "Last-Translator: nedbat \n" "Language-Team: Thai (http://www.transifex.com/projects/p/edx-platform/language/th/)\n" @@ -1244,7 +1244,7 @@ msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py msgid "" "Can't receive transcripts from Youtube for {youtube_id}. Status code: " -"{statuc_code}." +"{status_code}." msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py @@ -3769,14 +3769,6 @@ msgstr "" msgid "Help" msgstr "" -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "Visual" -msgstr "" - -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "HTML" -msgstr "" - #: common/templates/course_modes/choose.html msgid "Upgrade Your Registration for {} | Choose Your Track" msgstr "" @@ -6198,7 +6190,7 @@ msgid "Students" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -msgid "Answer distribution for problems" +msgid "Score distribution for problems" msgstr "" #: lms/templates/courseware/instructor_dashboard.html @@ -7092,7 +7084,7 @@ msgid "Skip" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html -msgid "Grade Distribution" +msgid "Score Distribution" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html @@ -7169,8 +7161,8 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button generates a CSV file of all students enrolled in this " -"course, along with profile information such as email address and username." +"Click to generate a CSV file of all students enrolled in this course, along " +"with profile information such as email address and username:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7179,7 +7171,7 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"For smaller courses, profile information for enrolled students can be listed" +"For smaller courses, click to list profile information for enrolled students" " directly on this page:" msgstr "" @@ -7189,10 +7181,10 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button displays the grading configuration for the course. The " -"grading configuration is the breakdown of graded subsections of the course " -"(such as exams and problem sets), and can be changed on the 'Grading' page " -"(under 'Settings') in Studio." +"Click to display the grading configuration for the course. The grading " +"configuration is the breakdown of graded subsections of the course (such as " +"exams and problem sets), and can be changed on the 'Grading' page (under " +"'Settings') in Studio." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7200,7 +7192,7 @@ msgid "Grading Configuration" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "Download a CSV of anonymized student IDs by clicking this button." +msgid "Click to download a CSV of anonymized student IDs:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7213,9 +7205,9 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button will generate a CSV grade report for all currently " -"enrolled students. Generated reports appear in a table below and can be " -"downloaded." +"Click to generate a CSV grade report for all currently enrolled students. " +"Links to generated reports appear in a table below when report generation is" +" complete." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7241,24 +7233,19 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Grade reports listed below are generated each time the Generate Grade " -"Report button is clicked. A link to each grade report remains available " -"on this page, identified by the UTC date and time of generation. Grade " +"The grade reports listed below are generated each time the Generate Grade" +" Report button is clicked. A link to each grade report remains available" +" on this page, identified by the UTC date and time of generation. Grade " "reports are not deleted, so you will always be able to access previously " "generated reports from this page." msgstr "" -#. Translators: "these rules" in this sentence references a detailed -#. description of the grading reports that will appear in a table that -#. contains -#. a mix of different types of reports. This sentence intends to indicate -#. that -#. the description of the grading report does not apply to the other reports -#. that may appear in the table. #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Other reports may appear in the table for which these rules will not " -"necessarily apply." +"The answer distribution report listed below is generated periodically by an " +"automated background process. The report is cumulative, so answers submitted" +" after the process starts are included in a subsequent report. The report is" +" generated several times per day." msgstr "" #. Translators: a table of URL links to report files appears after this @@ -8277,7 +8264,7 @@ msgstr "" #: lms/templates/static_templates/server-error.html msgid "" "Please wait a few seconds and then reload the page. If the problem persists," -" please email us at {email}." +" please email us at {email}." msgstr "" #: lms/templates/static_templates/server-overloaded.html @@ -9307,6 +9294,10 @@ msgstr "" msgid "Page Actions" msgstr "" +#: cms/templates/asset_index.html +msgid "Loading…" +msgstr "" + #: cms/templates/asset_index.html msgid "What files are listed here?" msgstr "" diff --git a/conf/locale/th/LC_MESSAGES/djangojs.mo b/conf/locale/th/LC_MESSAGES/djangojs.mo index 04fb1498aac29a2cf093764807d6e3b1820a50a0..1375b3db0aa208ec634e2f79bc237759291f1e2c 100644 GIT binary patch delta 18 ZcmaFQ{GNHjMs`yLLjx-#^Nl;q839321}6Xj delta 18 ZcmaFQ{GNHjMs^bgLjx-VvyD5<8392x1|t9f diff --git a/conf/locale/th/LC_MESSAGES/djangojs.po b/conf/locale/th/LC_MESSAGES/djangojs.po index d0ef9a6104..caacfa818c 100644 --- a/conf/locale/th/LC_MESSAGES/djangojs.po +++ b/conf/locale/th/LC_MESSAGES/djangojs.po @@ -16,7 +16,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" +"POT-Creation-Date: 2014-03-25 10:27-0400\n" "PO-Revision-Date: 2014-03-19 20:22+0000\n" "Last-Translator: sarina \n" "Language-Team: Thai (http://www.transifex.com/projects/p/edx-platform/language/th/)\n" @@ -775,7 +775,7 @@ msgid "Error generating grades. Please try again." msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js -msgid "File Name (Newest First)" +msgid "File Name" msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js @@ -815,6 +815,21 @@ msgstr "" msgid "Error changing user's permissions." msgstr "" +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Could not find a user with username or email address '<%= identifier %>'." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Error: User '<%= username %>' has not yet activated their account. Users " +"must create and activate their accounts before they can be assigned a role." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Error: You cannot remove yourself from the Instructor group!" +msgstr "" + #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error adding/removing users as beta testers." msgstr "" diff --git a/conf/locale/tr_TR/LC_MESSAGES/django.mo b/conf/locale/tr_TR/LC_MESSAGES/django.mo index 56fbb67f6f97ec43e90cd1dd96a8b89a73548c38..499ebd8984d55e5e30042b88559d2be31b03d7a9 100644 GIT binary patch delta 50473 zcmY)11$-4pAMWwZIlf(1>GpuvJmaJS;_P}~**v_Nqv?i7kUv{<3IyIb)hMT_hG zJv;N>+j~B5-tWxp?(E2aW=~E+I_+?x7i$x_Hxmc`?C{DQ%W=|Tfy$1PC$8gEouX35 ziMh{leh6@!SlHI*IFt4}PBeUb&~a9A{PSVQX^+c~IL;VMc+_$J;QZP6n0%w-j`Ita zJK;F9@DV=15hopInd7)lr&EqIpMpfE9cMGH$EVo#jN?qeI%gf{cf5mfsCdpf$06zb zdfst*4!GZdd=G3<8H9AAko$Pc;XIGOM!=D~o=)Q$PD7x#B&kXTH`v9HiGTyxcN zl5@hQYcvXvVluprN%0lN#u(T6!oPF`=J3hkHnE0kS9)kJFM`CmwiaLK3rpMWs8Mk3Vyn#CJ8LIv_HlO4# z#y>9wsY$2@k*Jndx3;(C!!QNqBaqN==HOUdjvAS;TU>*caShJIR#@S-;{@RfEP+Qc zF~+=Ou1j-=@mB-#QIHK=p@x2}brBvT|2qcZ$h!m*F2%I?7z<#GdyZ2Bi=#$t9A>~R zsFAsVs{b)+WD?(ZoE%u_zH2UMK|w|e#-J)*g&L~E=)(sX4~n$gjyp|Q&Jmsqt2)sxu_e>K>FaU zLG?7`ks0DL7@vGSjDu}#z6UBMT$^_%kx4vV$ zfvT`DYU(PXZrB`SV`tQy_qF9?Fai0Wk?UM%DGA+RE2_o2u{54URhaOJ<5a?_J52eP*YPIb>oJZ9y_BNJQi!>OpK|qdqhGldW9MR-&3;@CB=N?kD#XJ z6K2Is&rHuMVGQzhPz`8;tFQ;^{It)FWl>Yu2{nZyP{B9@6Kd{ulUR?ZQ5(ka7mgEw zTd)wm#atNj(s5d1BW#E}P$QJ|mD%ZXVNUYnQ02d2EIf$=@iOW@b^awDFz_{_s1rMq z(22uPHyVp-$X3jbkFf?Od1HpKHL52)F)@xpZBR2YDQ?0bJd9dRk8D2rTXS7D)aoks zmhsn+HKM>Dz`VWVLX7p^aq3c@^Mi>A*E#{?Qa%q8;!5idR6~yAEUy0xPm>?;$pmAS z&*uF4n27TB7)QrHGydxNC<-(u6YUAVVSMsOP{%LZ@;j)WzP9-UU(9(KQ9aL#X|X)| zu@!3W+o5jkq8dIKHL{CU5Q`Qc!`u{H_-b0_`(}2&_^7AeRn*S)zzOi8ICemQHxemv z3guZ*4gDQs<6hJhoj{GuZDfmaUSkkm_XRjv(EUO}%Oexxp9V`~Kl~20EH9u&;wEOm zr>Gmn3k>jrECp&q3Pl~SfJLw!=Enu7de35Xe1_`C8)U>?Cl$|JHJ~(VNLpYa9D_x1 z57xww_IPCU0Pi{98x;%dQ9a#-y1^M+ei_y9`=}9kjj1q3i~w&+GGZF7|8NpIu|8^! z+M?#DAI8AZs10Qjro-u&05_wiY(Lh*ml%X)V+J^bunnr7Tc{~{Y5j}}z8K7V3hwVD zA<+wSp(>uQ1Gp9g@gS;!$50nu#d!DtpWtguhPPq|cu&K(SdM%y0w+24Ky~0p)QFA8 z&Nv%gRTMq0sUWE}r!@j~!}_S9YlV4nFluDhpl+}Q6)VS4tKb5v=Z{ex`GmT0l6XuN z!5oB5$rp$p;CdHMj&FiuHYzIrKn2-d)Ra6$-S8W#q8JGRyytgP)OjUQ$19Igg z6yRjUCe|USkz0Uzc5Fj!(SM;D65CB|qBb#V=u)AkBox*2;;5jjj#?F6Q0FZ{#mev2 z!>H>n+x!DmkKdxELgTKHON2TvJ*plzHwn#gX;e$A*?fD{1>d6@G7NR$6jU%Sw5~%n zbk(CAB(xk#qPEJ4 zs5xzH?SvYUfv5^cqo!a62H|GZ2wgyp%nK}xG1CNi@B1ULB>ADJdUm0v=vW%ozY^Ce zP_#Zp-Qb-)F?w3Fypm!;$}6B6IvBMxjzTqLEb6*nQ9IpM%!fNskKt!n24A5@x?nm} zPllEqDbs?ys zFOBMOLsYPKbZw#!s%69N31d(Vn{CS%VJ`A3P#0dX$8X!?4^cOGfjTcn2JKgz8Z!DySk*7dArmtfM{d;&t+q@h*1DXtw6s znM{WUqvm`hs{Sdcsh)={XV>|agc@)FwMAaU_V^jK<+jNj;Jx|WjhgcWSxm!{qNXYs zwJ#Jy&3PkKJwI7DSTA7+Ra3`uECr}rh zM=h^ss2jdUUGK|bcECia9u~mkDL>#m`C^Z<2(x7OIX%xXxF8i|6|NK|mQ#9$nn%QZv0lmZ3Ob}WdO z?TPVoo9NGlL6n!n2iO+NW7UuVryfp0ZN(2!BNRK-yc!Eqt1^+jZ8ySaJE71 z8@*81kG03AVLS2*QP;&NOh>i;laf%B2cueC7&Z6xP*1y_7>WaJ`3ma+)KK0=UH=hv z!#G6(oVl0`Ro_OujHglOtte_5upM2s{1A!Ncn%dL!@|uRHz;NvB3)7EEk;erTGWlU zp*pY+HG*Y}n~|x4+8LXnrmh_-I7gvk=ZY4I+LCGpEH-H)vpOg&KjbSQY!C zVq+g_E-#>N^v?PX6~r-01~}hgHdK&~LJj#A)X45dHSA_d*1rnA*n(80%r~1wP|-UE zwbjl??d1niJK-_Zvbv9|=rw91N)lnt&y0$NNYqF*LLG078maG59UbVB(9n)T^<*+? zh-RUd4|e1 ztLVHcriZmr4IhuHXCA77D^LyIgYmU|j*%#eSFs2tjWo-u8V(?T0y|*EssYX@TrUIo zY_OV{%bnHD#!|mVfOCrDyRZk2uNmM><-D(0(8rM14sbS7ezY%<&*pP>r&VLsdK#uVY|C^RT*&+MpsDnTB>p_4qPsWbff)e2JR->y6Dv zI4PR2{uMlRnwTN!i3+a4s5$-twbhP84dp^q^sh%SQp+=@&TQen{P%+U5qig*~kd`vPisw)x^a0hA*zL^7CBky#^PuLuH)0u{xR^Gd`-}X;Cp1f$DK1R0rCj>g$KDS~P=% zAAd#7%_>xIY(VvB2dW1LQ9*bC6$7z4nTJevj38eO)$_rqb-o2PvM*2#d5`K)qRwVD zc-Ded;bU2GKmOqdOw!YgSP4{lEi8`%v4YnB9un$lj9#YVjHnaKVnOVJd2lf*YR{sA>=o*U zxxP2+yaF~S{|l<;fxXSp$3o3@O4QT^qZ%HLakc&{kWf$SV1fX?x5Mt_`}7HL>f?RX zaw^`J26DUwYUrc-nTltiqI)T-oS49oscc>xliK^H|1>YR3gG(_ten74N;NfOJ z2u0;PVodBgob|5@2U4I_FcLMVlkJJCZTV)@4gW-KP^VDq{Q|zhC-^7cjtX$-q_bp% zxlzz4b6$2-!%L!WTpLwSlTq|kH*QIR)@e8E5PQNn)SOO1RqzX{g5Ocg=}**k$5BCi z4RzidYpfs4j+qX1ycX)Z&e#b1x+FBzr%^q;g^J#1w)|gI1N}c56Qa&fhZ@QdRPYr< z1!Z+q16yN0?1GB+`Irk=qJsG%sv+)2651N0jW%-}7uA4ts1q`wf+z&5ViRnN%W(!q z8)Lp>nupq`o?%vuKGp#WHvRb8G#_{K?FDK~x1bu{CzUEO;EZ;!6z2 z<>O3)?xIF4(RhZIInRJ8vFHTT(ApCNykA0DfO#nQO)?G7KRLkpmFp(r5Uu~hQ_Kyw zU}X-Z;yrUUY>gXm1J+Z1n)!%k8)~)0`PnqMHtIcLCv1mDQ0qVMbhE6hVFU8#a0KR> zVLvg!v|9hyNqBE8P{9*>rU|p!CR`JaAfu8I;^Q=oz_gEcp*fkm+dR>6We8r85rurQvn<*{a)ExZ)! zybf3h=c9u60;<0IvswQNj<*!##XNJ&4%h;N$&bb`T!#hlE*8U-bIlu&x~Sm&9@Vpf zHa{9Qk`qxkT!LE0o2&;=4Zk#(^{;4sOo1v$IL{1CdQ{M5L7jLF{rC(ul&?@b-zU^M zPBGs!q$g@a>yPST6sq2-sCpKm8nhYpY}oIT$VTEC>O%hlGnesD>pCrJ*%U-oPzTks zcBnZYi0auGRK;_!Ev`bXrbG+Pc{xzAQ3Q2fbySeL%}A)FgHUrc4jult57pECi%cw> zK+WYH;WR^4JPCE9HK+||7wSFZZCmav@$Spde@I;6Kt@zgKB0yt z-Y=#BSx`Gz2r4LxqK32r>RD0O=DVZL8-g04F*ZLB)sPja5!;3e_QRM(>;E(f-S7>n z;oB~yJ4mCuNQP1nIsG&@`#xx)d6-*JRp4LP)q#bG% z3_vw-0tVp>RP6kYy5SL2N3Nl+d+3tT`u>F4;Zm(NJ*kemup3rK7xUst)P>(r%PR3Y zGh&5M4J(FvY)7JozCNl!{ZS1bj+(j|w%lDtLOouGnxlQFp4`Fg_|6)%-rS%vYGY}H zn){x%d@QPGvr*UoiW>Tzs43ZtYQRxcgKn8}*Lg%jH+qR0^3)s5R20B`OXTnF_q+Kg@RAH0gSHkl6O-fTv!xF_qcGzqo10_wshs5zgC z+T+)vg7PS8=uY8jyop*Z>$aG0K>opkX!|3$;ob*nBh8PS*xCGCi;nTlR3&5MSFC;Qfa5OH?fE-)^St6l#k8 zMs?&hde49V4s$|c)JWt+?O>%)H?E9oaZS`t)({KfNL#)GwY>JBrtl0ZMxLM=qNZsV3eO+_>I z1~`4mFF`-&rQT8;6#Y@Cpbh2_w{E>``C44c{he(j6jaR*n+E)Z zs$eRrf<>qiSdF^TR@BC`7lZH`s==R8Ba-BZ8L4cjWmg1MPeau4)~NdWdF8CX;Uqdx zFb>D!8%)An4m)awblNd9RI4$FN~1?SQ}%VXZ@EZ(UgRi;e6E4u0rix`!NhZqRtDwV7A;IIGFq< z)P|M!qWSzU3bT^mhZ@00s2+d0WE#@qa)9@7-!fFauP(FxOOOb@VxqDQHYfiBYD6C3 z5=?p3EXSRwXF!Z=roswXl>9iG zcE+PF2}SQM%!%(%J;`*(dRTu zS2uA1zD5oGv{wNRVc?uc^>p)VQ_pj(PCm_>0OuukLeYTVz+^3Dud zFH|fnKn2%U)Q~2AZ>FRkP9Q%5e^vPhGa}n@1^Hwj%`;;+W+Zy zY)gJ9x?M=zBheCTeKtY333cO}*dH@~F>kGA<3#eGuq*!b)l~Qa6OsS!n|-QbTJlk- zAzy%sk<+LKeX;r-pLzbr;v;B1y^^E$>QIc2MNu14B`k+6QB$!DHBvh~f*btA&b@4yXogK{fb6fNLszPeDuy;`@Bw!yyIg>6Q^QVOCTHm9Rekj9MlC zpn@~C-{%EqSu8|;K4!oRsGh$;#a5<3pA&)2P#sy|l28k`prZRYro(Lf8@qy79yOPP zP#ecQ)JWV%1yRoEX2j~EI?x>T2BQP&{X`V%&FdJ9g%dC#&ct}=t{|Zy|IHTcMO}Cr zHME!P@q4JKe~y}(JTZ(VQ59E1)zbhqm90=iJP>vMI8;aGU>w|qyf1K_BP3!_a0P?$ zwmIO$jA?q35`!quj|H#}=E2dZE&F#=kKdtslqi%JF^Pw`$!`Tk3e!dFN5f>k%pz zo?~8oj~cNY34Gpr!$zq4O-EN3EF__!UxsSo2~3YSQA7I$bzX{uW@yu)Rz*HkgX^M# zxDBe}L8v(&g$llDs0PhKHFPm*YJN+|`d0<}C{T~jp(?m#PkfA($$vvtSUHioVMDA$ zz5{BxZ9v7sL-bZpVxRZUr#xzz{e)Uwi!e2QM!f?{k%aZHmUK#DqP{O`B!-}({TEw) z4|9`$f_lS|GO5pd9M?we@k_7={+!I`{mysvxw z{o}WEK4&HQZ`8;rn2Sxt1;Mom!^2H`r?cQ~g}H++q{E=jP@nTmPvXFdP-ktj<+qijC!*XHJ- zdJvx7Tu==aL>(~#U0c2f)u8LB27g6Gcgh^b5Y!ZvL9K!ws9^7d3ieT$jQcxNNNCwD zM@9cOEP?wl0|w+YLzfXdkfK(3pK>gtzS?Nu{gQRc?nQc6oiGb7<%9T ze@{X^j>2GK;b&AZ?#yk5^Z|}0pCrWWbaOF?{1(iL7g0m~*&YuHHOGr$ZOR*?-Vdxn zZA3>=JLbnw*1tBABza5_6|z>xY?Qad**F2UzH{XDc|V%zfbYp~#pk##pU->8v>?CF zdvEv&)qxRV=JC7+N07gW4Y6?npZ71PHWgs~FQs4szaO;-%NO!Ff8yVm5myv8!Ey|X zkZ)eZtpAx9PW~)vNaGbXbDbSqk*|*jaT{tm4huI8dyYE4UorN6oZ^zmPU0WbJD6m} z%?&DJDESdM4mYCCD^GQr{sESp|&qT$_ebgI})TMk*8LW>r z0|@3>Bra0$IKt<=#y?B@oawl=jG5bNWzC#@k6MOHP&fJ$6-1v=4KGm6j93TM1~nG7 zksU?tjETydsf@x77Vtx&JQFWQBbO)&wE#zqY^tBEt`m1HghVQ^}7(;lHZM5 z6+3oJeRa(nhbUAK?nce|LsUg+>zRjG15`r><1(CyU9ePr zGa{>TAo;hb@}3P?|8+^+Y+#}}tf4uvHzuY053GXcuoR|mm%S~DTI`EDH&AIcPdD;C0r$sAtCo)Whm8 zRL|d_o)KSA!5zPad2FXetqwOE2@Q2I)R5LhKQ=`zzZR(F(iWrP5Y%}itP@c;nu8k2 zC8!u#jUjjenHMWwssFqvO`|w){G3=%3mAH`JUbYG=0KQ2b8It0xKF;1p_(&ZC~^cTgkn5>?TA z)YQakZ+aFF^^^-i&3yw@OteIeSZ~xD6Bn!EEL43DPz`>H-uwSIB-E2ns0!kBFg*=I zH6$1{WCc+blt;xtRhw^UZH_r9Z-;8YWYm<-MRi~)>ONah!FRX=>tBiM6zIk;P&e{- zG$uh^m>JcO0;u!LqRwxC3f@kr_3T>bqvn1WDhO{_<8(3)v!bXe?AXaQCrqS3Q?Ltl zqrIphJ!8Fw3bOm?!x)`S!(yX)lm^wH5L5#rP_a@MwIeo04S8QwhlZjWJkhlW)}n@L zE9%C(F+U!$<)2X%M(bimCJySnG^mDWMU6yG48l^jyaj5?+M+tv1$Cc6s3~$sl2A}h zL{&5u^|YIb>d_9=ayn^`KS1^52`UEuwdLPX4GipRMj*B|J!(VBZ}XLGzA4gR*Xczf zIVb#xs&GE$#g(WQUc-9$0JV;bcQa4HdZ;Zr3U&TG)KH&9b>J}uW4!LBya4L_nwSea zV`i=Y86;Hk4%GAdyv@JD9OUElFc%cWP2^i*Nlez$JlE@@mhD08jOVciM)dMI5jY96 z;~CWI_=uXStly*7e>jO2Y&O32BD+KF1ehp-qP9Z!!nXVE8^cQn0FF|Z6naX%Kue^JXO*F>`_3ZOQa zim2FWkD8KUsMWH{mhVGde;u`Il1?(KBQ0hmpVuXkg+y)CM$!+pUdLb_oMiKRFdz9t zs2+SkMf+#e@=7_`=P)o%C}zXFsQMbB-rjdYMStlj<~yjSxR$)Tl0*{{ji#C?-GX{p z+(Zp!u4#5hLv2WPQ7!)w6^tuT4LFEr@j7bc*8OZgqPdBh>ul3a2O{x1@pIs+ zXe*36!wg+6)KHeSc0*M-3l$TGQ9XZ-nyNT6&GO8F8ku_N_1xMCwNnm8P0bIe5ucCA zwEp*z&`@9T3V6KEGDDRCpHUu;itZemHZ29-78w^Kn&692UFBn9ABdQ_iPz}3>8v1Xj z`ZCWmQ(6!;a#hg#_kSHoXqoi3Ck#U^m!DA=E<|n78&T&S!T5LqyWu@l59`b~-+cB! z9p8x>*<&~!KcSZ8m<7h^3t0b}nMv2CpmUa(V9bR&u?p%9L~GP)n2aZJ z8HQt@U(CL--g*z!kd#Y(-mi35#@6Idp{6EmnfWNU9EOo!;*wCsmrz6d4{pWxcnH`1 zYPRHl%gvnrjfxT93bQH_Vgd4{P!;yZHn<#BU%ZuOq*7UPV2Cnqt;}Arjh~YoJbOfNF6kR7C?YKaRn8^mr#0B!6_1nL1~)`7kLN zzM?!}iy7kAsP}>?wid9D} zUy9?%A3+Uy{cWb==BTOcg6h~b)R50b?X=raQ+^rUND|Suo4vUfW+XoX^$=Q$*>N>$ z$SRb$Bel;SzlfUS*QlwA|A(nKJ?gp~s2f&Ct&;Yrt$Z$OxhLMu`kzRm z#BMW0Cs0xU7*(OO$1JymsJCM2aT1n8HS_{1nEpnMSe!r2^@&k2lpVE&7e;-kRRi@9 zYqHmToFCK&%6zWu9kIf%P_51?ryceh& ze!-C#c*Jb6V=y=QhgcYs9W_B-4HXM6X4U%NOhQqA6%{O>QA3mLn6W%+2>W0l4nhUt zFx1dbMQ!0rQ9-*MBk(e6BvTzX=NGhAvNpkZ+~4U&LhE!es%IlnJzjv?KvtnD+KuY* zHPlc)L_HGZIzb5>)*gZ2rJW*1v}GoIUWs`Vlpx@lTm` zoEg>PN~rQisEwu@ssV3N^+Y>u8jun-HF;6XxeRKg8e%SNg^daB38z{AIVgB^#(d|J znxKZV7i!rJM%{1(hT}w3eMeCv662B?xrC^Z zOpcnWyvX&gQA*#{df_zfm}re(|uHMeL#&|jLY^d9BO2$ zpkko`>b#CN-w(aN|1pMyTC@T+WIItqegbvD9n=k9pr+~*DhA?QF+ECxIv#>*Xc4S} z0*nhlZnm<~tq3aPM{2e@+g(yBGO8i}phoPq&HEpid>qsWq(}zMxtd^tYMoyr?Ouj;eT&bu6j@vrzlMTGVx0a6TSDja-|D=6D~}Y8s5XZmiLD z7LZWIn^8fw&w3N})cb(JnCy|cL2=Z1Rk0$rM@`K-RB)b0?E|l{HBp}Yv3YYk@QL~0 zVLN8zc*=jY-?09|NoYt)p)PEXMe!#L!2_rb>0c~|xt^LI!}q`z=#IqTy zAxp6??nAAzl+VqoD2q+WSH?J6|I0{dXf~pTY!CWq`59C!oPS|_j9M+uOEXm&a0l5k zsJ;CwYEHAiGC^7zm9L5s*cQv;GSo)&7+tme9SH?Ts(($?=R(akrXJ%=3xmuikgy`Z_I^x zQ58p^f~^xOW_sG=!)$(%%`d<_9AAfumA_D{<|FF5L~l(;gWj_KgD422KrO3_>RC%{ zk6mr~1yoP(pelHW3cBd;?862%f>lrtv!vy<}@}4*vQwI9IUq)YqsxWCZzxPnd zigU;hLhTPJqWis1)eE6+^a5kxC(MBU7=G`^@R`w7P|YVX64zrLEEv=8J+;PQe)2mo z9G_uJ%n{3s)K91pnT#5dWvGs9LT%ZHP$T&a6?7j_G2oAFMk-!xzxn&0St!s@7DTPr z+Nky06*YwOP*brR_541C+R5&qw&vhCW<;7{LGs;E`^ZvM2kxRekUXyGSS_qeenec? z@BJR%WeRkI9P#|#GAoMOm?BXvZiCu*x}kQiK3E>t;VgWELvUhzzY~S=68N2II0**? z@UxzTW-1pX@_WACc9VLkG0&UB{7!%!7W!MivI z8|sAgrpK32Ba%3SnfqL*^YfvCD;zcVWl$qlAGHIvKn2|>>r&JXcmNqeKL017Ws@<; zR9M7X8nv@kLG`qi&G$j|a6C@MSy&%KGMZ&K5_NnkYQz?x8WtmynZh)v)sqQ3YyF3j zQ1mW9-EcLk=lfAXnJ%;6d(MYrR`PQ&8~%xr_y`pf1+$nS>yD+!uf)9g7kvL32YkYued6k^z2AxnX?~mHa#@O;{Hoq9PU#vk* z&0*^^)ZU*oml?^zs2i8Un%EAt@%@&|H7!3vfm$9dw;72-s3ERyZDQ?!YIz^j2#m!h zI1`KDYYfAX5I?_M%KHeMhwo5P|8uAru~n#!ZE#6wsPs2jgV_2e7o#)SDz43$8Y*GFyP?NK8z1~ugikdC;{E)v>$527}X zi>RQxh3etos3Cufx}h)3tcrMemV6}Ysh7Thc@~twK=OT1b371L?>N-;(@`B=gx=r( zSwli6Zb!}Oaa7B%qBfoT! z2{Y99FbBu0mgM~b$NQp2VtXl5&k58%aRs%SzLjGAtEEXIOmv1}dGeJ}7fwXIms^aA z?hUvSZ=!lMrnKMt?be;xfP6?9zxOYuMqyR*U$GxXmNo9fN92o@^Lw9?Wp&G&b=V3E za^P1C!W;Mnzv6TJT*2@CV)8!~{ob!sudQS@oPf$^b%djOR0FmCTif!1s9>9jn!0(Y z5#5P;YPyF>lq8X%iV2=(Sb}^H%u? zys_ocYnXcCp&FhX6$3fY`}toD5?Z$%Fak%RqWU0eSw6paEw}kUP#e%i)O~KDI`~E9E{U|Y%$6FA>TwNJ0~%ro4o3BSC2D=|MD^qlssUF~ zLw*bM;xkn6WvFeITNgY?{t{{*nP11QB6PD+kgTrR<4d5H&q&m&Sc{74lc;qaT+cMD zG3vabSPhq>9=C7tEvBk(qB~&&vudiL_LYH{ni!ahiEwR0*1uZ1r;*?LA#%LNL^TJ- zVN=QvH1RusV5X+#8K2A&4e-MeETKc^oyRSy|xOFSP_tWkjSb%(!)@G}ngqrK$QG5Dnn}32DF@GB~ zRhdy!QVSU<$25PJA-P4qhKy6IZQ8BX!b=^kPdHYc#a1J%XFHkWM zyO-a5{+F_sxgZ~Ed6h+tKoitMrw0b%5Y*7kNA+wAYRGq^I`S0N!+77D8)Qc9sQFMM z7;bHZ*~$0+p7pO27Ez#Ow-U7+H)1aQ%NnP**;oprTD}|$<5tXr&+rAN@8kD=^D#kR z)4;zmALTDmF_XEU8KJ_cowt%pLPOF6_u*L7&{ywow#<&GD33x7>1b3>W@821h8lWj zfH4kgB$A_sz7T5a%A-cMAu5J?pziBVC7~17U_so83YJ%>6H^W}8%Qx!kPSwS*a({+ zhuX=eqUL@bYU=jb;}>lCbyNeMqV|nwgS-)Uoopo3vplFBtu$(=D&SIVZ1c`wGZINr zH%yJXt`O?sQVDfkOVo(;vE{>1`^qePe1$FFg>kh0FOtxl-$4aef+6Mx!KfaUK@DLY z)QGghNF0M|$OY8?@Y0qi7;2VR6VynI#T>W*HG)S_BXJrNaDV3^2}R?3)CCy{O3h&* z)Ew1E1!oUbboWOE&ji%6+KTz{92UUn!_0ZbPz|nS?Tu>i4Ae+%LN^PELnJh(|Dam< z#-8vQ73~R!n`lmtx>0si51ODV{2moM6Hy~}088UV^kOK=eA`_N)v^pkIZn#v})4SQip%>9Gk z`)7BZF)#T8KQLrX6eE8$d;CE3_679z1=NslMD^?{w#Brg{oZf0Mxh#b3w8c| z)b&qMQ~DOw^EhMt&W{0nXM`HTP3~B~6F|W+REtmiWTN>V>cTIm^2Fmz6z4z0bA~xy1T{saFa+zO<~|BF#AC4`&Ox2`8Wj_< zW}4tmjHS506HFou+hJjxjf&Q@sGv(U%WP0ZQ5#7+)DAZZ6$5inQ?uFTkD)fCd#Dlg z%{HqdF{%N{Q60>Hu6h_;Q?vJFo!OoMX-(g*rYFH5H3d!MGkZ z0y|Oloj?WcL)1vbnQO{}=Cb}3Y{e+h@~DQYs4J>xgHSz~hI&Z-g5z-${(`0FaUFB{ z0E5X#Utk&-f?Ce4P$N4TwLu*~-RBbqVVZ@miSptL&56zM5eKGV6CAwARCpPClaII9 zyvvQkA>?3=aJHW<&5Pqfrb<$WwoKHf4jl{H)vG3mho)Pbm9 z%{L(XQA3w@xmiAiu>$!~sAYB>HI!E{A3j6%FldFz*GH}Y(Kr;hVI&q=X&&bzF*|wp z0ErM9@Cfvc@g&(jYHr;GS>KDwc^?%hCd_^s<0$Xe>Uuvg2>sb zA0RU1sNjo4t@mEo7>{954F1jBxCLriFUQ6BH;(51{64R#D9JVxBqcGN@^)Ac7onEp zJJg0$db>HVEh@^#qZ+yswah-ErXbx8zxQ`TI-p|b5Ni3x-)S0B7QOfXQ6%znU@@q#riI>U0#Y4o(sXxrS+!=dJL%aWJ8nzO(RiDJc_yGH3>%C_6Tt@|At$n5; z^Y*d+D^YNk0u6nd{pPV+9u<76(0gl!rN}2ZV61_9$V@~{%?@0PXHZi#?4bFv+-xjI zzQ7@-%*QH2t%_Mk%*Y)*!ur>9`~wB0=vnile(!HSFF0nFSFPh_&u@qIId3{@i++mQ zxU!xw!B-folm7)Z=l|kG3_0od{$*9*Df5BEZrn_HuG413Zn-2>Vc;3FHy1~(>+;wW z8>5EuIF7~2XZ_wk&p(g4QRj1h?=Pk;#UIE=J8yoTI1Y9GTbzo+FPP<SCEO*5`WQL$dW)jB4rKp{7E$Thr4%9}q8#~}V zY=zaXnmJ#OdYaxwZPBr=X_>SB+LO=*GY2&lTT#p88LB6lubZB9M)lxF)cT%<3eMM9 z8Z+K7LDd@7fhkxG@1f4if73k7np?Z0_uv0>ZNW^`d${GOpF zvd3Sb&i{yd{KoprJVTP9rlu=ul?+84pN6V$A$q_6vxlW3eBU)6EJofp zpU3EMy!gZADWGA0_y$5@2C+- z`p9%R%q5{Ak3a=UE!6TDiVbiVYDAJfHa*RT+9?a6MyLhm#6H%AsO5SLHNF%lC#H&fLV z%aHGYp|}dQ4_w86u*3_Z9&^6b_nf3wlE_Cv%2(!_&nl>Y=acGR^E(^aUYiZ$Bx;Is zzcEwP2o)1Eu{3@`O+~4ex99!L;v8&{jb;xE{7tOBRvvaYO%m^YMA~59Wj~ zxQ64EKbl|3c!$r)U;E_u{#4Vk&wl4V`95DvkD7cn-`!qAt?z>0%#=o0tD*M%#;B?M z9$jq=Q%F?7<){tjUsSN@?;d;6ikgZr%z({NJEn^nakeerX}yl=DF2Ll!;(56&|7XL zF)R6gsP`N50s>vH!qXI}q8F$+OYAfG(zu>{Yn+8i{ej-bvKA+kzmE#Seu07BbNwe& z!*-(HD_%lPS(<2p-nVX*P|tw=s8z8rnrnKvj{?on9Sp>T(F48Zl?=5^a-v3}C^mbVEM%uNBfSBgS2~amoidue|QCn>#)bbpH zs$eYYZTlS55Fd$U&U=cB$Y+XehI&70DjuUoHf9{tk;16u>DDKqEwL9i!ilK8{1KK! ze_T^h8B}=(R1ig>Vqp%dq8+#rFJZWj#|!k{yzWB%O{paDX#j>N2=q3#jtK+xyCkmj zCkd_N>WKoqGo%q9AF?K=0S+{z1*%=v0B;R+~DtPUMXUDwux3 zym$tSp)ZXIu9EmO`EICK3QTLx%a3}$&>9u>f1s{=iM6=D6Ot~_{Ec_iNSwq7^ra8< z{*XXfY{v*p#Y2>T%s{M=-y0O@tRsIYW1#oA?w837{X$eQUc;jJ6}766pPSYyxW8#ms7kbQ{hmUm!Tp`H1JR7oN<;ox?1@4mgP8 zBQO}hp@K9xr-`L1sMzU|ll8BlnnZ#2_LZoOXFF;YoIov`>!_js7xl&@D3_Vb%BbV@ zF(Yl&k0&p>R7+fb_{d4AKu{5YC?d6$HGdJ@%> z8#n-8V-R)=3-rFJoQQ?UKg3d)p@3PA%~4zG033@8uqx&(XkwrrD%fUYWxR+wKd6ui zZnpx7e<|pJ`bMKoVY5DO;{@_Wi8PD=FRJ0u!UMfuOh}96$#=)6 z#KsoXlrAZ5Mqn%I6VS6rLtLkENi%fAFa{@%wfQNiD4vUY`0Pe)xld3Jt=HHRW0%rz z2=hh*wRQKf`93y3z~+ZqqpUx8vi`=B&>M;g_Q229S=M>hMb@R(71lM@4c0BFhHOK< z$^66S-`V4zQTKBqczAJtCk6=>q(SZNnNUL(hCZx-aj~*JULT{8Z;$GESJVxAqJpe1 z>i87Ys+x(hak(wugc`|h=>7e#y(CIg5K!7Qpe$-C>Y{Gk6jf12RK){O(e9$o8-u#R zWYkk_E-I*3VjSFtTK@+yBR;}x7^e*DUysYMGA1e`Q4g1%=so37b3F%>2k_xC2I1kd zflgg~RL=CIWChcpim0B|LN%;0YO8LAy3bThf~!#H?XKXOp*~E3T7C@^;UiS=eM0Sw z=_>|$zp>O2H3FAV4ZMLGp=YQHKcQ|ASjkLHN>tC&Vs4B;o!1pLVtri_8lvH-C?Ait zaU1FeaVwh>)1l@#JL(1@*3!1T9%{%NqhhBcY6J$O>K}=^@g!S53-yq47m-j)PN6Ee zit6Db)CJE`6}?93H0@cOHokxPPl!;{UE^;eFB zdfXEA=CM60x}#9bX&i>(a?}m3qbj~<^N%nG`Io5RO;gQWUjQ`~B~dX_3$qgW{WZ+PsXJ=;7i306RVRg-hQxDa!&ZxPXi+V$`8TI@8M^HB|TR+hI zQ%x;U!Fvhyb~~_vnTkxPWmXb3_g#?7&5K|Pbt&yi;w2M5L(#?SFkj0xFZNZ2av#S> zYtnh~kE6Vot6;IO159WD=k1{O1RM|KSbXZJ%W?e;s0gg87VuhOpiUl&gLNZ~Ci*@B(ZqACpy;+_)l*r@?I-+9mkULr5B&@I)%CJ3+bDjKZ-`)z~4Du%jLjyPFTl9dKKls z_neS}+S*Y553c0I)EwtSa;Fv6wvEWfd7JG`>TvA~uLeG#%$&uyW|ZgQcqo>o z;{U#;+Ky$X@G$4>=A2oi`5s3v*ZWs&ZMe}X4l3@F^MA9|TgsB7AIouUyB*(fdxKyq z>dWzDHh+P1Jj(cwn|QAoT*rUO#c9m7g9yUAoY$1}R?N+@j?{N5fc`JwqW`^CQka92 z_%APbuc`chYA()5qx4WZ#Md2rtfqQGMSAhEpmUQ3RD&6 z@1zcC{QFVKX$rG(QYI=&Lj`-eX=&WbNhL|^b&0QUbu23oen?D>V&D#+P2Ru^Htf zIRAIf+sMTSN$=-t3D+#)IRDVqc~4reESy`ChQ^^R7su|CpG1BP=}P7l{lDwvq$0g4 zbK-wrlgPiZ$KKgWGjZ`c+u)1zFn~(O*>lo!&US8am3%{vr6rw~bK~&Un`7aeJB1sx zr92W>t4r1y6?ZxZJuO6e ztCN|>#dkO%CY7$Y!^yXI-YYK0-;;WQlWEjRj;G`Nl(rYOv)TsIU|jCdU#S55}rg zu#=1U*8Ts!rgHIa8gieqxEP20LJXyj$9%0KpMgC8de?i^qb#NBBG-(xUVInkxaZY6 zJ51{+*hY31C!QyLnPUM|@{upSa#1NC4gKHOL)){ioWIzPR0`@E%=!G+cD&yY*v2*g zdmSR(olF#t;F@;&_xC|$s&Y{+E*efcqixI$YY-@}d0MSJ!-9yV z?5@5KL&w1LLT8PYYMcY>hlafkMyEObtHJjrH~;&C2J)Vi-*U+`uH!d&`UdU>|E(n!J zs6K!^vCQw8Fjg?|5TtbA9cUJ7hENo>#o+ur(P+zAeh9G(7mKGS6fA=LF!faQorIg2 zo(Dv+7OJ%Xo`*9Z|0@8!6?~_p>oh-y@CWD0G~4V3nAj)qAq*?Txf;D5@Sl(m15bgw zuuu)oJc(lTp??ZJPt8uA=2MM*)Jn$TwhRsK)2K7S3 zSq$s|?m&Gvn3#NvU4mK^*jQpSI5yi!(j0yTu)nD1B^HrBzW+4sEWk>=jRNd|{K;A} z->y-yFI=5iYWn(<0Q<#>Y z^HcKr^lZb2g9dZO!p~XA1(c#M=yLr`$8dd|-R<;VdCm zm*~PGHhW9$Fg=@fu?6&O#|uF4GM6;3pD#Mh1K-cdRZ#4MH^UpSz&>If+-AuUyUlH% zh1=|sEg=p9=O?hn0(foEYlDW^6?_xsRo?Ohl{`xG?h@px2J6$9i zf)mYRU9G|ROSg7~XR|?Ifx1|BJKR?HM5j7+M|g|zRp@`jC$I!h;acziYY_%$fOpmf zM4&x>3ei+xS$Jm?8>IEdx}0Da^=c#+JE;pLaVHwU%Y?32cg}~jzYAyi{S&6ie>xNE zNem@MKonbtFn^EGd{RlygLKdntvj*QG94!Mo?J)+22`fLm&KRUJC<`8eXsGma0lZ9 z!6I-!`TN_|6eiQug^lNcU7^8MuX+JO4|I4Ma%VV6M6mT46!rCtrTw&CqiyS?rSX@cW4l+sp679)8*5H z6@hOv2L_6bq|ToU{B6AY!u&qJg0(NiD2`}2!@TU8+tJ|1G6~dzbU9#j|0R_PZqO%ulEPeaoCx;&eKZ5>;)X##K*5%CWw@}Cq$z3+XT5)z&K^JcS z1zl_v9I!KmXWQ3<7)?LL`LyQ6wyMkZ?@?VJfz^O@0hv<1?6)VMjTNh3q@P3^5E4zjl z+|N3&nBCxa41Ga;82pd;1fGBXZK)B+2AGeb8z7B={D3%t^LS;I1*?W%z{PH8l>Dc> z!T#h9#G&I&?|z2&hU0|)Wa%#~CgzQg;B0>U{Y|mG43Y|#NlB7BQ(Ghn=1M~h!hY7H z@l^ycULwYCKjPni20IbO%787THw_mRqS!3(Wb}UkKSb{b_#wHux(txB1MnocaUL?S zs4`YUd<8Kz_&Zbb|K3ce=Ox|=p3OYr4x>LWqD9H4<9X;Ui9c7;0k96_W9S_M-c7#$ zJ4#bohKX&XS!^65g!JYY@9N9nm0{0E|ezL-1> zKbLbY`lh2d0K9Mt9{)`M>DWfhhuj4hdx>B!h^ryCK&-tkkPSQ$7b~seaoQtTEqX2z zW2qg+hceVc+ys`37)5;wSR?MncKP~mBh9NQ7Q%xV5~71bA=oUMBmMLYcS`K6MYW6@_!g;F_6B$&JJP^@fgktnA zJ%k?#W^ao)SApLd{!rz`*b%xa_JE<~=?`U2DSrQ)`O+BSeZg-iDK}Tzjx&E>+UQ3^ z5m^XtK>Z4X@-Rs3J)Y6bc!Eh6Izvw@)$yeFF6Vr9cdG~aMCu7FaYR1;8Y?*kqT!Im zDy!HHxid60h0}!v$|7j9jbORKR=`<{`%|k;biqfEr^Q{-oC)t6d21S9=prA$io!EL z{&zF9F~qkF&5U4I9Ucm~250$;7vaPd;LZrmCCY!JZ$Zyf+@IPLTr8UUHTp(V|4T7z zh0hbz#Q1H0#tFP73xuo$C;|CTHcGFA$`pDba-2bFGl_NB4Xj1kn<;bOC?<(9Ai-f{(EClC}{&iOrqmOzjTsEu%S@&d}!e&e$) zV>a=oJ-i=!C`Miw;tK?dfYl>*LSrp%vkv5k%=-^=2JyKx)T1#HvM1-p#6*S+w`=kz zpT(l#;IFvK^l;+AF4Oysyu7MMa1JETiOw`MZ^0i=UlQj5)K0?{dlW)*76?87w-EeH zr}48QDp)(bR+}R#KaiAPod711B?hN6zx|Uwd<+?#YL1f53_41K^fnxD(tXEG0jN z6RM@J9&R>={@PS1DGT z+GJ`U^g{MgYs_LcpuT}x9{K)1qc+_JIH5zYK)8X6-N#*MYRnzViEre58Sz}i zWx7Blb+LPBjRt$Fnm%B6(QT%6;e68>DZo<8^FQ{sMjQ7tXqpl)vPefn=D?i~d7BQE zzR!pRQ~Lq7ihLq{OUQ2#hk%QnCJs@p?C3X9yfx8!{~?{!4bMQhpaaq{cpiQL;u-|c z6IP7+bo_0gt zv-x4p;}I2$=e!5;ytFGWF$-A&% zHfnw0)}!zD;~xMxA8<89Ux+7FtOoc&i1xM(Ol%AI92QK&t)I#Qqv?CDeXYRPlINi& z)|#IC)JN(aD#^K+eEsJGD3+2!Aw+sm7(`=B9r770B`$VEv2l7=g6IhctHOCNd1*N5 zSgH#Asl;LUQd}&9YUE(v8J3F07s=0mH&EfKOz>#yITSF8!Oj<)CjIzg@mFqY^+T*^?JeY6wluX#&E z^591y%~L_)M^k^U3pjuex2wHG(;1&_hlP}2;3^u1(YTdDS8i8lt|o@K2Xbrb$$8H{ z#@Y7H;tY2vSKkGm8}T46HbDokK<5s$=Q&L^qI(3FgG5%_({gTdrexY!%8^(d=!0KR{mucxmc=h{<@k zdZ8(Hjo!I%?x^-Z;IqNU5$D4V*`%B7gS4D{s5Ztzs)vVz#S_Im5j#W7f}f??jX0Zn zW^i{MFqtcDh(;aN-9=3-8?ia~4tx!>dQ)E~&;N?G1rV#j73@c-7vh~D{zOddoW^d% zgWzI06qEcCJs;`)hrVLq7tkAsJ2Uh=_$quS1DApwfisi56E!#U_iu>;R>~U8*L6u+ zg{BvBm5{x3=rPWJ(s-TP|FS!9rocU{ea&>)$!ImTTl|OZN5 zE$nV3uc|W!GpkWu6#!sRTSD&0;Bu4dIDdlq2~Y{5I#7 z=!L=;`;NQAPhjDK%=$&WK3If&{WqS&Y85zuU^7TviC1ZkggjLg)IM`Hua&zNY%6&k z_;u0AtoTLFsW`jSn}E)BTQl(!7xhk;64?Cs+Xom5(G`Kx<0gO=c#@Vr*oSkGb)5h}vKj`TQkzDfNPLg(Pb(f5@63Oatocko<^ z8R)4Y9AZW|V%^Eb9zVSW@!D@h7_b@(xe^c&|m`@^fu zp(n8?+<(ZQ(pQPvc=A!&6R+a`g0-doh?t*PR&mi!$-*-vk@x>G6rvCnI}K4RTBGEb zsBhBd`|#?LZ$!Y}esI3T0;#AS=E}tulLskp0(#$Bq$iy6U~$wtQ@?8a;^7v+Q2?8Aq2l;oz z#p>%&>xqBMsa0ao4|E;_R)N=)0rOcTw{jD~mVt?70^d#E27WquZhi{_RRNC^#ZvK! zVw*KJW^kqX5Er{a-J3>#u<9x-Uq93Zw}8FZ1+&w?0r7Hni|(Wrs^^_>!*o_iX5C5# zT-HI7Utysa#J>=-*=e{>z(*o*4}l5V8;$T2NOSS3%D;!!W$+w!{WhJ)^lhTn!Tk9@ zVs{X=**Y3Zfr%ABq>`P$Ab39+d;&a%=%!cP*Ge}IBU}YeE<3%P^gHR5AER#)+$-=t znj9YgHwZ1_Fbc3N_V zOXJCO`GLA<5b-_OXnJGeo1cG|5ifG^;&E$3Qz0dPB!7!ob?WVil{x!T8_1B+Eb@jp z7!M}jM1M_0ZML2v>G7-7`{QDs#74xWaOZvR6eONFu81q9f9Ko zr!Wn>z>dSss#i9GS}D#^oL^86qR+O+pWv6kEdU;(!%(qlV7=jem%r}vhNL>geh3|P zOz=8(wM2sZ$INb)5NC(e-j?wE4j()$4=X#gb)Fwk%ORg-x35D!2g?&bhsc_i#4v}Z z9+ub`hox051MWDuSGP>h>e#EROWB+yeJYizVEH=Mag~o{f1G2SyJhcT$7lI0?_W6j zdRn3#oc6oS4{~)XZMmP)X{3XtU23P~^(^r%ogyi?dj((zW6Qij3bHN8%Y9ZI(+4h<2dPXK_$m29iQ}cl{!wy z0mm5=;5eb!&gVEkA9S1;nBa)xtl@aFV~*1S_uzQUa@=utasEd9mwd02j6{3IZj4=hq*BIWjcbDus8R2){$6B#Tl>AGdy_JaZ+%? z@oSEg7;j^8e1pj_?sdK~7-L~JWI&v}SOoK@B*g7xHlXpCx&4`tc@wSzcYbE z4qSri@f7MtPcRDx{Np%jFdOQ4H0H%N7!zlq&R>Wba3hA{Sxkg)QRl_HX|4}K<+G!k zn?zm`>OmV+OWRvrRQViCiSv=ra5mut+=CjKDz_Y`I<~@JaXq%i=C_F-+>6EWHYUN4 zJLbBmJB+^?P>F)fI0!ZLORd|HIC9Ql2rjtmIOXt9OozUEj*}0Au?E&fjo5Mw#*?U# zd5Wsvci)UmHq1)C`hC}2Fo1$k3YMTM-j5pUo9M%@7=!^2j0rIY`Sh3+!%!ns5H%t- zFdMc*#n4n+z7+o@zYTliGWVh5#3qsAk>f;QFzSNx)`qAl>5RJ3DAbK+qi(bg>4S3+ z)zfHd*AO?x1lSGZ;Sif2hl+{WHt+sSLOt7xy757bgBMXlcnj6QfXC*BaWRB^2XeJ zGMbG8@er!#rJfq=p{AxY>c%}$t6~%e;Zm%L>oK;*F5sDIQC!prq`}RY1M}c5)YK$> z?l_sS2&!i-F&1_~HJ}f!!Evbb^Sv-OK~3RE)D+Ig%(xB{Y3?qPSdR};8^+w1^af92 z0Zj0UwTjW$3VUHgJdYZo9IwqzR~EC8Uydq2jhf2)7=kZw5GH`1O79sDkCai5_Mh6{}_KQ zv%VB)=%%4Rz;Q~v=R_>?fi+Een~x?owpkCOV&MWN!aLSCsD{M*uoDm+7e<7X3; zqrRB)r=X^K@fXHFo=%`ZJ>P|znO_fY-31c%0)El;?QTfBW-gRno&LM_h(JQ~%* zlo*T=s2i2X6j&2eVh4NN#X{s4VP3q1syAND0B=e&V@$38Atb^$FbXyFt56L&jT)I} zSO8PT3UCTzb*zcwP{%K0QS`+&BT)j?<0{AvoEEmcJ*oqJP$MxCQ)~UtB%!%khic&w z)QNXdbM+cES238MSeOE}!DPVn7>)_C4CcVvSPNYY!Lv9RU!m&h9@k8bE4jZjfrNr^ zCTa+mU~k-xsyGJ|ukvCTh;>m7Y=pY5BWgMJ#m6`jlVkVz0p8PbG?pX39W_;7Q5{Gg z6yUfDp0p&oU=~zGGf)*QwQjSXLf!B#rp6bT8{;N0BU2Q0gR-cYX^dJ8ZBRWQfa=J2 z)P0vE2ylsL$N7zdrWEW;Xf6y+WMU!$@=O#JZ>(Hpk}J9vkC9RCI?V3GiMn>tG)8 zqc94$U?@Ja#-q0yxk%Krq=HLAdv-U}4d$Stb}?$`R-vZk4^+>Op@QxjYE^thotGz> ziIwu!`l##L+k9VCM@FNjVlryv+(jgG;#yQiJ5Y0c8r9OPHvblNK|pfTkOZjfLQuh& z(^?!Av{kK5Q6tn9wX7GRMs^o6HLi1+gcnq(3tw2B6lPf_LftqkY6J>cE22iCF>0$F zfa=*y)LgGb)w{!%A3|M!5!KO0m_Y0QD+%>9D5YsYW>oYS#8Frc)zh=~_&=x~JV#X& zH)B)b(cOh!ONtK5CX#M9Q5rP#^%cdhL7J8wAXCNwy z=c8g{C8~m7Q9U|@x$qL|{Mc#D2xLQ@SHk8Spc>c()!{+tYQ4@Np`luX>d{tILr$Q! z%D+)l^U(SpH6pRonF>>&rXUlBU>Vd1wLvYnVOS7nVR1Z#B`|(^*1syMlHSZ+BWq_= zv<^nK_#r*ges-bZ+n4K{xsv)UR*X2j;bmdUjRYpCIhhP~Tp24pF{S>I8 z^rx2Gl`qk!`U9PC#wBudoJI%Vg$!A*x|ZQB$=URnJk>oIgO- zlR6^6DUBsj`4OJ1zf~k6DL9Fmn@^}YO_({rX^$CD4f-C{<5{S=UWvNlF4Rz-N5#-h z)bf2~^DnI*Q8)HyF%8d(akTz(lF%|Mgt}1`)DSmCHKZT@griY05SG>4C>yE)QK0ziyD3gnCv0RZ)3Vc}rW~1HE8DHE<%TAq!FG zFUJ_T3w6T-sO!(6cEVez4hCiqa0XyX)QC^buIE3AT@+{z&!K|tE-Lr}a+n*(M;%X% zx^Z??L-JxHEQ`AFLezC@P#yXmRsSLD71XMDh8l?&k*-OkjWjpTgAp94jvCs2s9>6a z`SE8|18< z67i$V9Nn?LLsc9npMBrQh2+a)F1(8xfn@p31{8@J(!!|YH82OdsD`Yy$2Xxy_Nd9b z&J7ZpyEmu`eFaPl)1rnh2kLlrR17pl&2e|s3&lWNJ_q&CS&iD`529{-6m#PlRQ&-3 z&6K9WEPDPIBB2|#LR~ltHAiDn6|6!H-EY>Ns156g&7VUpyMIu@7ORjsKP_r&&VuSd zKGeQZ26cU79q0Z|TN3TDC+bEQQ9ZqjnyYuHAdFSm%zY-*MpGJdVr5%C&^i;<(+#NW zkD+dO6&K(=RDC0hu>LQRSWKb~4lHUexQ=SbGgJ>g;aZGU%*4uO)Lj2i+&om4pw7F1 znws0F8$LyK@ITZ@_Ag;ZXc%gToK}MMuQ{AYfueLfs^XxMW^ThUl6)D|-1bD>;0Nn0 z)JQDBs<;|8a{r;GG)^gVqwLlw)YKNmX4s^ZYoc{K1?ur5)bsiss$oe=n|vNrz8coV zuBa&f6E*keP+ROr)Q&I>iVLnjj1t~58#JXE(ukzp{xm#%c!AyfI9Id zYUl#WnV!c+4Run~5C)@0EHi4k7Dvr_V^q*}LEU(uEuVuLpT* z-$qsZ78SMeq6562--qE)@_%96Tg!A!9xgEBtHks;w>zKnJSx4J}pr}I~&#TPpF7=ay7Q#2X# z;5^KQCongD#{3vrjgDw}v>{O$=b?Id57qLJ>ZYRHs0J28MSmSsa5cxm*bNKeDpY+p zaUiy=5#V&hEBHN@t%(HPQJhP@Ms3b-PvQ}Y(^#`kfYTF0>IOK|Iq^r#?_-I${LKSHv+HWY;2Bwo3j43gPm_`TIy?N zdfWxI9Q)(HI2tuFJ(`=J^{htiVE0iY64=7rI3a3|Q=?)j7&Vens8vuFbzN&zObl<~ zniE%05KX~$)CJ#A4M^D1+#nr#%M7*di`#r{)LeJON!S;)k@;Gg7^;ujpn9NsJOEYC zMN~tdx+Ju`UZY|lUTbs1`luVVLal=DP(isHYvU!bO&Zh`6hsAYeN*l_?MQ@CFcK9+E3Mm5b9fB3Q{6z_;2vs&dW=)?t1X|>!8CLx zs-g2R1P@|%ypO6sNk_A#hhwPLODPhX^VX=T=#9;A0%~L)qJr!TDkfrgG7UEW=D0X3}(Xis1cfo>c~RW$SucmTCe*^=mxPmn{}K7HJ4RTLp2iBz#pwkPz~9D z>d`Li8LUeFHtGhsx|pY3HJnGj8;-=-T}^|2Kv#3SfP{9mC8(CKLj~J;)Qz5?dhh{* zF>W{0pls+TUj#KZB~YJ$;YS@QWFkTNc*9}lN9*OG6MAR~yhnmv$s1ZDZY48$is$TbC{p-ZIJxv86 zsFr6#t=s&lIV*u0sc6&xG?g3M!~SphnhB z(8u&VGipxqpn6))mRCYmT*u~{V`=gokw=5G+8+NEvyk703d&oy{57iHuNaDn`v_@4h6tm(=)R3LA<##cfd{94Lov;q7r}I!1Z$@2z0rTTG%!T>CGeO%9 z6=UC{?zan@Y5iX&(Sm}4{Y}qjqlSI~YOdFy8nPWVMJG|K;xekI_c37rAFr_o`Pc&k zoccHbwVF<2D92x;hCcaVQ*Sm*rS)Hkget0q+A7Dhw>WBbmDfy)%%~V8>GDAHP)xbYc4L*Si=6_Hl_yRSeful{mNk+5&wQh4#PzMWP z4xETu|J$($?zQ>PsAv!T-UMwBYARBq<}@62T}fMB0d>Q=s12$$YPomBw>a#3dfb3S z-!TEsUOa(}o-=u@sVLrfb3sy653-^fP#jfZc~k?cqPNpoJKE#@QByk48W4M;IUa+`}9qTe?BL5Nx zFdVny?|2OrOVg*C2A#qnt^dy?QZwgqe`F*ue41%#@#z8HZ?R0kT$DdWwLJaI0B02r z!l9UPmbu|#tVBL=w)rGf9XF6)fc3EY9P^``<){tp9j4U!FFx129M;43p{#T+EEeFalqpR#EE3<_8wl zuqgSFi(T_ZvWo&m@pV+s?%Mn-)KGpvEwi8{W=PXpbDUxLWK)-fw%B&4^*jRAkgKSj@iwZ5Pf!(qK~)rQnQ2f4)UzTds>ji&>$;() zq(5qTk3p@TMX2llM0LzPLqaFsMFq=iR8M0p5Ac4AEjj8%Vle8w>8RLPiaKu_Dp-%8 z8hQ^kMeoqzzsMD)r#V-eSSW~^+HxlEI)g}PV;PIufHt8vo+GG=Kca4wa+TS5GNWE1 ztDwp|qi#G1FXIoWjE@TPNzo2dE)>ZS%2y zF*i(#8i_DewC6=_G(}KT(E>G9-=VG_ZS!+b4P9y7im|l*kC0H0&YLF-JAWkX$93PZ61YNR^ZeYD#?T&5aYG8lHYV z>t8L3pg<=UMs1ZfQ9bI3n!^F8^*j+((KH-|i%~ZW-(VV0098+M)OB@HkM)kIksOKY z`9f6iu69XiIqg6-i7tAW1&svI=2%EJTzn+6h)#s zQWdjcE9(SQ{hN?|#dY?R(A;0O2i~B17P!S!kQg=e5vVE2foecLRD&wp@;ay+H9-ye zXw+2vgn4iaY9tcOmSX2e!n z*Pwd59(CP8)SQ1oZSkqLoAdLbMy@cP;r>oV5?U^)cbFeM)W`hfH>2k4Uz;zy(=@OL zs^?QsBQgi|G+T^i@fy~`kUz|)<=&_f+=*Hxdu{#*y4vYZku-Gd=FGZPM~^pA1mS~)X0_FZcia&(^oy*kQA4@~)v(>D^?w-^{ZCLso&2Z? z(sZbOAqVQZ%BT^ni_Oq&M?x*$kD8l{s3HFc6_o!WpVOUu$IL#_0E>_xjG_3uEx&|0 z$$v)Gll{2qKon{fRJQqcsMRwBX}If5B;luE5o$=6+59@xR=Wume0xzBoAUIj-ndy7Ipm>)b;UBnh{8Wx=#qE()!OqB7}ly)R4DFjmS{cQ2mJ77nY(b z+GmfSL=EXJTmBe3l7EL2u*E6rVJiPcjp*0YW&~55G50HiX|(>EkWiFmm4Rg&ba`J2T&VatE;U4C=#=;nhK7iKHCLd<6}71MD1iJu@nYhH*ZEQF)2ek1~n4%ZkPss z!7Aj-{$oaF3Kl27A44(Vruk7%7;2c0dL7P|SuiP_eWdBhYfuq1v#wYd1d=ELU%Tu467W3w-;LQUZ@)V}Z)b$;O|W<t2Y$jx%<|Mb z&vojP&>Lw?el^qHBvMyLyCqZ)R==3_lKH_V5dDDQ#gG36JNt;I&4Q_4l5Hw$6|@<`;}A;aKv^u{-8?YkD*v6*LcRKFvF`JUd`h%EzLX z@m-TWhoLsE)u<`Ck3+e?^M!<-ZiC+kIE(N{)X?Yo5a1BFPA}BZ*7{^B znuyiOZ^M@u>$6$UA267F|1V}lXJa+;dr>2p@T<9TF;r~TL03b%j)dmq6;8&GZ{{Z) z>##BT2K=P=7u<+?m^2OWdCO@K#vs1{^>kc{+K9GdJ51~Id4HBP0$Y)Ph6=)(exEm$ zgZ)0&`-Pxg6tv_(!9brg1?ONl%);L^Q-!lIF@8in?c&GudC%`))Q}fL^{^YNLG!GO zF+TZ~s4aLC#>L~9058OJecsFGJqpTE@D()`Wn=lgIckKepeHKIhuZQDn2G!mn}3E? z$;XIo8dMwA;8CdhW@2nygL-CcMnCRyNn|9k4^_cEtdDu)_`E3@j|$GMsHwP#TE9i( z`n>bfh-w`c9}RJb?Mpy-gyNM5_2cZ{sL}8i|ppWqBAi zWG_)Y_>6k-h!N!TUNnMHpBo}jJN%0TVjn1HMbPd(>C${{HEsvAPoR=EakxWR>om?2~ zk|;)E2{y$u_!TubrxTl4h>^quX;V~rKh)}2gUvB@QlIw}9Dr)TRn(L`!AAHJb>k|@ zOhfCT8qf}1t=rxtRMA)r$NQ)kk$A~{-jz5EjFCs2fJ5 zFy|LX4SiWu13RPYADn{quc4i1Puz?e+8wA>aSAoGFHu`&KuS|_DpZVQMD;WeszC)% z4K0b9n!2d#TcUd06VLYIv#fJsdGc;U5_w51 zLTxPPP#aL3P}9Pe7)gFHswbzg7GA;bm?NXlxry`f1`Y```$&^;pR=0$GRz*pProw} z3pgmkJWGaW_UX@*Tqj!=pEHsZ(`5B|AF~%?O!B^LX5Gd?t^35Nb)OD3#Q9Lqf*PoX zw?@UlT+}jMiVCvzs3|**Y4NEwPIkNgGkFPu26bX148{Ja3+7@e+=99A9cqdqa+rOi z4u+BMi@M<))OA~NI-bXw*dfyAeLVky3&@wwNe8t4Z;;RhFHyl1l*`;O3{~D1)u7?1 z)v^>7y?Mej;epOMcpc%TwNpv6)j4Mz>cMv<{c~o$f z$YU<-gIXn{QRhv!E@|q6DpO@3~?jW<8}~gs28J-AF#)-qn6uOOoz4do2lxKI`1dcezFx6LszV?^0WRk zQxLa+SuS}|>-;2E!}tY#&U$bW|#(haD&K7p@MSm$& zegvvPTd)egz^Yg*+QiCuEJ}VCmcfr$lesQl-sksCC~BN8otW#uBfN$!9~_?X1O0n4_*4vG1@K z`5BlBW7hL|zmO1&3eqV!9k=7(Sgk(wXfF?IU^a?=s2+|)?Qkox0iMSY%-+y6tSYKu z9Z@~~7uD0xsD>qLWb!jmQ@9qjsve+%JEF0vuSH|lzt;6|3UuL0)C)vJ6BC4OP;)*J zRnZ>QNPR+$P)Jjs{t*eM7zP5+uF@K&brLH%X-=R#+tC5sVAE?8nq*~v<|h-v$|Vt;xFq< zYl8M>XUvXjaUE-Wj6;4P>Y*|U)$_Tiy?+TRx;LU8+j~%}<2dS}^$+Sj;tl$>{+$kH z2m?_;6bEBqDC)$_)+p4CN}`6i0&1hGiP{kdVtibMYT#zn`MXdJJA{FF5q14F?>P6r zM?x3si$gU@*=_ExYZgr`iu;s&1J)CCq%TRN^1%ajDG-St6Lv|Te!6Q@*ys-JtR(}ukgM_%KDa((V(^9Ao zR6^aTF)H}FT8E=6}e9pA(p_yM&=NAxqF zc1xp%x;N4TXEH|M23vj!b^aU7jtRdrPt~HRdRw4AXADqY>wgxBthf$!!DZZpG5VXw z=638w{yl2lb{^pK{<{7EtU>-Rmco1k&5qa)vyuM^HC0EgH?Soe&ui5FPTyw6!o{s|t&NfUfdKdkqI z&-)t;$MGWhb`yQhLo7bYeA`AcEQycg(+s5 z7^v)$$Vov*EQqsF%jPs{Ra`=CFpp8e6K|H8l5o^&sevl*fVzG-YSnB*t&Tkyihp4^ zzC-OJX=j_|>PC{#PLK^8SO(4z)Z_ zqDJNedOf!$SY&p}5Y!E_p@zH+s^J|_BR$mSe?{-l|Mru3#(^8C=svmF1XbB3rh=NN z4W%FISuho~H7~JlKs9tPYF%H)mG}|WkR?ma2yaJSe+spa{DZD~@RWp3{ALfNTxM>N z2^EC-Q5RIi5Uh`?s6VP<<4{At3{~G@)RbOEjodTT>WIJGm{y09E- zkFIY|?1l-*55(>`4%Nf|unHzyVUD*%4Q&scgo{wiGIFJ{2OX2VbqOVpr&LBs=qHgv3-9tdvmdMW^UJ_=Ke6|#J@2g2Cg?17sj^ayP+yR zhZ?aP)|Z%3=Wj6Yh?!AO)zZlR;X2((D0*k1mdQp`1xIiZUe)mchHfK!JI>zZ^L`8V z{$|tDc3aGj`5o#y7c~XbPz_pwikV+gKZrbr|B!$8yWS&M{};BJimsuz8c=ij&6X$J zW_lii3eFm+8?{HhhzvxX@1ovxlk3A zz`R%;gJ|&x%ujyG4l{=b@iF-;_zDm0G()`o53_?_v%bKeIUe|@Sp~nM?z02cu%qZ| z9bY4njvGD25b|+%n-*tB^`wT)cgBh2C!-!xY4@0l!%@$IJgA;ELJfHhsI7e?X2UFp%pY{taY<;X?x3RIIczFSfm(JEs8_RmI29YCTK*Un zR9{dd7J9^7p9M9?B~Tk!HH^p9wnIJCdL1=C-k*aF$h*%;Xnj^VX5Py?qi)ax7vKm~ zjAS@&Mj#g|Cd#1BYle!29;k*6zzX;iYIWR4jnos=c`;9z9Wx=)K>q#@3B^DI)IKl} zJJ8~ps9^hY(u~A}Q>Mpr(A)V?bNdvvEI*<~BJpW+qg1GRLv6k+YKp3&I?%v7&id<3 zB0B{$P!;Y$we%!v1G!-Hw^0{9Mx7V)jJaV_98EqAYRg@OIq)kg2(zCx(cT6X3o}t8 zbqqtb{$G$#up~KWh9Uq(C>kifY+&)D6E_21Bp?0F`qzQa_Jl+i%#eno)^TA}i<{f>9;l6GG^(fZFPe(dq8gAB zH8tf?4Q+@TsqUy48-R@o?&X-3{5SWK`6QF|vU$(nkE-YnYT0~3#X#~aW@}B03Z5`j z!z!VIwJ~ZW+Su|TsGV~X>ij=21aG72_g^(r@5U#WN z&8R6lfx7-OYK|YG8ukV=V~lI2r;(^BX@Hud@35HG{|pl4C^(BnF~xP$vf8MMTcd)m z7iuWSq1O2{)D7oi5nO>(=-fn&NctOQ}f#GY^& zb%UGe$0w)_>L)6C92^BP>QOj~E_Q1o~7z^Gve`GTa)#LZ5q5q0nhKU}S z=#Ric5Y|;Bvf(iishQ z&Gn;E^-abQ{0-Hh(^wA!o|pzTKsCVaKte6;X`O%?vgN3XcA$EC#g>0T&2iGFW^S{g z8e9_9kUFRlYhv@AZN4{ZN=Bgeh3UwK9V|Dn2OV)f-Rdh8uj#Ri4iyib%SO0 z_$I7C{uF9zQoJ+`E{fVo8(|xweJGYBf9sX~fy8U`V&Y;T_ji_%(2%S|U3dx$<138B z9B<6V)ELW=pN5_BBDTabZ%u{Eusr#LsF92R&ituYHq`QTQLAG$HpTVm{r-Q@e`aV> zqlPRq`e=C}R4f#IZ>)t{HXTq?H3oO$FQ}(kyANhRn1Tw@pKX2` z$odbZpg9E!j^U`NpN5*F6{x4z4pflcMD^qiYB>gfGUsJS-LMp@AyrU2UO!a5BT-W~ z!7seiwed|_V@#v|Ig-Qelhz& z3RFy$N3EJxsOtuxIy%-R5kg`fs>M4|Jv)LO@Go0l?5pW%B~%5?Q9;)YH6_zfJ>7tM zite|^zoBj%{>_YJQPh;SLe=B;C$Waa7}T8RtRdG7vT3|Vy1N^>PB1f3LeFx z#L9A?-+NEE>GykE?0Zy4@&x+5Wmg>4!78{G8zLJJfBqB0@3klaDmueaF_8`1VO4v4 zBjzT51T_^OQ0IlkG!;jqZdlvqn`0;PT~M*}H|n}a7zdNalB~b&JvUJ|dWnIUHjdvL*$~u_mqnddTjg5+ZAd7{ z#$W}8auzDeZ^ZR`Q5`3q8JT3L9;QK^AA#DS3ZPa?ZPXBVKs}!Oq8joeDh76<8gLHP z;ali^{`bc>LzE1)jIy9&Aqv%l`u2DeYY*!vT*>j-I1Wn$`MrO*_%N!6MH2YEhfWoo zPksq1Sc@n0dq0kEn$T~4{+A+=-+Oq3VlXFU#X(pJ6>JA^G+w|u*d(#vd#bI&yyS0T z5loiE@BN~24OA>`K#j~+)X1Db#lmIOmi{z}YlbvgQZE{v5L9qvMGaXLswb6EL)rwj zo(EtqoQ@jG{irFqhg#QfQ9E7iWPb0RvMQ>c(U>1+qV}2NE(!G@PIA+OVwi_~f2@nY zU`_mrx}I=_?J#|H^qju$fcy&oO;iv!!X8@x?MU3G;BRb;e`NA|pIkyCOz_l1#lT8b1>5ir z?!|_gu}(I#{8pomZ^sT={|8B^Ws%v<9F|4}OGWI0 zjZo2h5Ou?IsGk3e3d*uM{N7gG5;KwCi+XrHz$%z9(u`0O)GC>YCGiY;|NoCfIn51A zV>u4gMh)d`^j;LOGx?xg!~hOJ4e2yg6wgDwT3te2cOTW@Z>XS*pWD=*6xH)^)QIQK z&HC3yQ`4T%2bCXQbPBZ(Ttht-Z)0xE zkk_oT8hKg&8u}3wXeei51a3ra9G6kAQqQmr#*Z>B?}@s>RMd@sLhYREZ21nGKZ4pX z&ZDO0nKfBH)6pU>2@Pd4)Q#I=O`M2|`s=8cKS#AZdww$_O;JPK*E+&F8P)Lls0Oab zCb$a=VVVNwp;ZTGl6S|FSV$s$K@;^mQA2hX)w7GJ4e24K#WaOXc>z=`R6sSn6>22M zp;pNPR6Q$DBeMq8(ce)!>n>!9UFUBSIVp%y*z_zPmM32o6^zqSQF{p$JV}d~Aq_?~ zpa|;xx>yhAV-|dgx^bGKroovo2l)c17;58{v;KyV&>lVsweHuU=KLV4CwEX=?-SI< z@fl-c%wnd8L8u{5in?JI)T)TWbJz>@)GJrqJPX=jAo=;2SnGc=301riRly&qo*qWc z@p)7%+(gakE7a6DCCtW?7!_pUsPjsq>Zye~uPLel-B3Y35j6t8pxc4OJ`$=RTS+sQ z(Wo1BMa|V9)ZG1O%jcphUS;#!up#+FsF4XSWjYXnnaSrxHLNkJVO>!>X8%&Ge?|8M z3e?j>s9-yf*)c|G6a9HmbJq>k@_87Bo3IjIw1$>3J?(;#lutmNw+&0-HH^aaWz90K zRn|3IV=oHwa$pU1#v9lTE0r@buoX2Tdr(1l3bh&@qNXY^+H@chDt6LiX`YHjaU%Jl z<;~MEZUys7)*H)me1S_sLvgdBspvIoqxgnePMIp1mKH_@XCsWp9;oZKpx)_@phoB- zuExO1rbFwnC;8jh0P9rodw=6<4OS)ZhF3Mu`CisX_=p3os`u+b^axck9Scc^Ah#!2&`+SFr76M>V7#frk?-BNN8xw zs(?9Zgf+>xtmpUscx?k_qj7qCLc#*IEv>I_jgQ ztQmU$|DUe*z))00qftGWgo=g5sHi`LTEG8bDg2Cz?&6Ki@@$2T$#+6^=m6?QS5RB= zBh-jIx5jGB`qzoUBy=D@Y9p$Kx={mE5Bu8k>8P!BA*!K=Pz^YZk@yK0E!5CAz}(ob3F}``IEw-;yE}LYt2Z?pO7doAIdw;EBonbbZpN(m3H2h8skw>n zXw>>%h-%nb)Ol~Q8V0v8kKJzgj{MXXtp8#p#v`gqd2KrBg(AUN9{c(L5YCT`UxtO=B-}}?@6PS;D*KTISmY}BgC~Awp zW%Hj=Bj+aTZssf>YHrG-qO>k57Mh@9q#bI<8;sg$W}}{Z2T;$3%c$#bp{{?9n)`RC zxsTJsJoOTyo~Fr=S?^+Djcv@{<{?uGwXqCA4b2Wz%den%cGKpcVMg+AP(4Z6#|&|1 zRF6yAd~H;ecSh}e^HKG!!z;K2lW~7%YF{&CE39i#4cLUO@jPmWE6~qONf}ghS4BOH zdZNysfNH>MOpkwJ1YSio!1tZmdQ+f|N1_`^q6!JE^MM$Gb5KLS9o5qds6G1wDp(Ws zH^DRnHRQ8VvG6l0R{liQcOG^9E7TMuAK-UhV@*_ylpE-Gy$Y%fG#{6nqJnNQX2R8| z3eTY45$~gVntYJi+47@Cq8uu^JEAtAQK*raiP!LF)K2*QU{gK=^&+xrFza7E*hqmc z+>bi(Z`26fMGbMl5EBDwQTszy)cIvl%d0MG1iGRgLL)E)C!heb5R{x zgXQrUYUmS>@^qbaBs3J6QA1w=HFxz8gN-~npRU!#I6 zWURSCLDW>$L5*Nr)X4S6DmV|-ko&0h?;FSZ*MSfcIk78hB<5pQT#p*UE2xpUg=*Lb zR4~RFZ_dw)n!*aGDe8a<&Jn2K9*>HhMW|JE81v%Y@qX8PTBV#|POOS*ack@Ms22Z> z8i@m_r{g8moPI$yFy;^Dcn~VuLs82u7wSfZQ61=ts&6zZb{79&*Z&0yN>lIv)qt!M z%{yRKRL>S-d;Am2VE82S`Je-yBL6q4fy*bGIp2ngja{f^xgU$-bJPfBpJMJ4?UL|Q z&=ED4U2!{(!V*|~s^9xN+(R%o`3qPVWBq8RtSLs2{{b~38`0YrP(!{S)v?Fe4kM@e zz2AzRj%uL$l7udJhpON!Dh6UrH$6{>V*_|gMh)SC8Ga{#{54dAZ_G5&{1$axf?1|K z3>7OyP$OCy74_XvK|BW8CtPP53C-agR1X(n0X&16!&tLTR3}CST}IT6tDu6ZHELP8 z7>YmQSlomM6K+S%Vc0x# zyg1e;Umw-uUr{6VC+bFjqgFwT`SuxtZOLcF5&Ziz&SVk?DM+-?@7%=;s0()fYT-5oY!fQ*-BR~Hv7dv>lxGtUPV0(Z==?K%q6A)sZqx(p{A%N>LJt)z2EiWf~ePYuJ*1w{0F9jNblc)-BprZBzY9!LFH060v!B!QuFEmG0Gz`^|iKq^&Ks}_k z;3PbN%dz$AB5&{z4@@BLelZfg?FD9H7j8L~-uo_xl2W-i}hY4RD? zo4IU>vFX7CRQdD`=7Y%JsF91@XjV@}EKhzG>W%0+Y9#-~Fs}cGJS|-(Y_s3l!-1oi z2PbSXJ^urhe}&o?!hbg(z3O2V@_%6|4B2Y-g;p4;hGB2Yw{0^qk$t;azWp$q^0n9l z&!YG5f0W)~_Vy+i%7J}274KqY?6=eG-FvVO`Om1H*ZjjQqiI-!{2pwIiT?C^za!EO zL&!V3%&H1SjnE)0i!(8b{l~dXq8JA4_IrO@wK8@fzZI)u@E+5{uGpIVOss(KQ87|# zuUYrsq4M)k%kB&+Mm}P3%(>6(D_v0=*hq90Tnk8K!#_|_`2e*KB-n30y>`ID z`OQL2!FFtpfk#YGwLz`x)u@L2gX&0zqvm;E0vD0*g$lyN$4mzr;wAFa@G!B`OOjt>ee9CZ!zcSWGdB(JH}c(3bCmA9`Fvjh%aK2W!9M-!rCAmEFPM>QkGkPZ zEJ@Ek;RfR;7;Xu@C*nw)$3yg^$P+PWh*RKBr zB(zs&K|KQsdI$K#gNpXnsF%josF*l}8nGLw;Cq2u*SYSQWm*}P?}N2)G8V#{sE1GL z`(|Wvp!fHGOOwzRSsDG<0JT#!!Hzf_TjL|tPFVGUSzbd?TlWgoI`=;`H!g^p+uEq$ zoPg@cZd6BNJu)2#L$@&n`AOu!saP8SL_LhYp?Z+>U$dtVN1b;H^_2T$jrZ70L0VLK zK8%6oP$OFz<6tAydq5l16m);g`qu?R>e;8)LDK@_ib-$yi`&@p)`qvOWq#!A#e`=Op9ti z$j5wUD$InsK0j(IE1_bfKB_?-ZTV1JJ^?i%3tSTF!Aew%HlXHm4{pIXm^pypdv4zQ z&%H3KBJ)f0_WL6$xPHUY_yGH3*H>m0-NjVoySz3dHX7TKpNa}b_brL!Bx1iYJ;;Cx zlDs$>t7BEXj@sF>y)`cybx|X*9@XR1s3E_Gijk+N)sg0%nZib>5!rz1=zgR=*EvT* zL-ZN5VdDRc#Zc?D18UB?qn-)FP%U4A+VeM~D*Ov|-W^nfUR#~_W;F$&%JZTcUJ_I2 z{l7U0&0RlxU_4eM|1+w^?@%KW`-AyR7>;@x_Oq@-_4pB1#1tP*?6kmEHDT zf8Z&~pP~L9(VySUuXr5ilb`mD-T{G*tCpW3p}G2k3XWpFKyM#df|`;$sEsIrKhW!8 ze~cu*2Nk@}P!0cp>Tz^npyT6)tMDE9)iKQRB{2h?U&%kkJ2*cUzyJ80gd021`v(Sl z#0hlnkxw0$mf<&Sq~r0-jV`0+@UHbGD!RX-<}_veKrfgJU}f@EQ5(%{RLrbEowp4& zB^TrK|33;Q;SUP*_UteWC0_zn-qJc8^{`otdfM$mExX&83DYJB^nTD#8g*S?R6R3L zQ}(;f-^2CfVS59n%i>_vlrw9de{LqMPo1!H=|bBcGPM)g*wl@P9lWFXN-;MlLmS};fO#jw@#?1-b7Rb zm!o=KAX%XIL81q0-H$Aqi2{M)Z{%3MiK~B{Bdr8y~cS~VT z{1KOsKZF|Ujw#JlOhyguT2xQ2qL%4LOou5_nb?U!y-7{N61WOg&wa0)D2t!k1W^QP z?ntD>s4D(|BlCvw1M73Dky!R_h-HBP|NuhYV|~92=qP! z*22Ez|3Q6%sv8{0-~XhbSxBJwZ@Wc?273RSz2J*^FJuk1ZbPy`j88 zUHBEXd@_^>^giV_!?fggpn7-#$KfMXPkWa%Jsp9Xf;kw1NlFEJpDm-1jgNo-n?y+t z?8nsTFKvc2Jx(BB7OUbZR1BmoV}h*&Rw6$LH3bJyFDU=wYfM%)(EGp367x ze64IoF1$*h_ZZKKaVRf<>Od*f{o0`S{y&9;Ucu&IEBp=pn5e1=!epp?YMW1Q^BJuX z)@;_Cs5hs)Hec9U+*;ZijlBQzwrUHiS!-GASsS5NLo?Lg-`eKq+vAH-H(ZW-c&)Md z-Kb~7A=HRnL?8Z(Ua(hX{p*B}6vV)I)l5$lqi&cS6=Z2p#|xmARWXcnzh(KJ+r zi%>WC85JvkpnARsbKqUnd5PdgD26eTeFDj7H|+6%Q5M5vbLa8>6r) zdO!akPC^xrL)~x^YAcwrYbtE~e!D+1F z_IOU4&u8-`ny~&=VL1xa!WyVot>&m`orPU+6{=@Ro0{bpiOM%eHFyAO3Rc_Whf%BK zy)94I%;XEB-hP{5I8Jj(sG_Z?AUcbx=nHBJ(lj@3Jmv5>`C(WNE4K*reylbHwax=t znuaFCCgcaBHl~ZH4d(-D-$>ZXOjRk=`-Iz&gns|O8|uanS_gXnBa*;2CVB^>KKcBN znu_VeA&OR=J?$?eU1 zDcJb>E*AG^q@9oUhQZuW|B@9yeRZx=wup2PH!Q>jqbM88_g(UxaTmuob8P_U@YlYa zGkn+L`fws|50&4dyea2}*_&ask@U@%tdM;R|HTXYY{M^9% z-*M-&jntvH_M9=g#-1B&Re*M4U>$0zW;gZwn=38oQaXvB5C^HQG~e-1w6q;M*o z!bJt_jSg{vzRGg!chZ9>PfuE3&p5C1|1|Ur=|3rtPwy{slMEbhje(ROu-7cN>iV11 zwNdjwniF<0REmCmjV7(H{9OE;?^qmPg>$(eksZp#9KX+b<2m*Wr%-Wo8p!7oXC-B+ zNjK&EjC}t@UV(c9vyj(UWv)rbx#xZK|FXSdRc@lMxYlg+WEd4+h=GpUO zS-YFVP9*0awmsAnZwNQ*LxcNp-Xrpnw%(M~ahf{QQ|{OP+na(;wvzbdW0Kbz4&{Qr znE&_HlH;9izABw@ZQZf; zQy%`uCr%SCe8K7A^!N=HuqX3_ZSSi9H%nrNuhReALeYdP95>No`0Rg;h&puqB!VX1@qc_z;JjLVw;_F$bM?imo%cT|9Y($U6=CNF=V#`e zV|@Srzub+Sl#Za-&dv1o1sCug#L0(j*+MGVLVBIef93{fIKGDR|NBZrkE_@l6zBL{ z@^jTO(z`h+h;x11M_++f-f~>08kN?kmDjNd7fkt|N-zKaTI}Pz`&2NA^8K8rPr^6o z`5wOYm7bgWshs~Yit`ug^|rz0D8K*5b+b8^k9r=`un)X{cwhgJ;V-~C?UA3RIxRS{ zFDF*V+f@FFh9%*9JQc>al?HOYzB;4+MqE~oYRIaZOdftP4MUGXp zBck#twl1aDkgm@$y-Um|?dol3Fcrk1(myeyT4lc){m+GE=+R!vZ*blb&g;NUT5o-+QXwv(LiWR$m3Ip3c+Zx#7w`uDf)(PDl~<2;}+5eGA3 z82K4oq_35f@nak3F%9^?uU{$C*D)&5*BRSrK1?~wNT20<0*%sF+5fMtGl7nxTEg&z zum~vozDSE=2!ybRvahm(fGi5AKqu2l+DvA`EC~T|07Xy{MZh4aVHXh4h!RjlBtb<1 zMG+NIKvWcQLEN9q`>LlJM&GM*in_PzufOWv?!HN8!UW83;QOF=!+DkRq<|SAKYzDm z+l~?Z5J!ZBt~4}Ni}xX!*9#mutHm}#%wO8_Sc+*+-cRI+$VV;p0C!T0pMiJ3jxPZh zFYgeGoxj-S5NtwcYq8A={+#(q#s?rtCxM?a9BC!1z&Aw6SL44#8xlY#U1ch{y@~NY zwe#XdMVf0)o$+8!fQeo$=r~yiU>ct(vq zp~RMe71=`3>clz_+lamt*T6}|9|JFvjh#cS>4{u_KBB{sMmVYyc!$Et=rO#FAwP=l zhP)s1{V}NX?*CqKKifqJp5?p|J4d$0%eZ=cwogc06xzdNhUNnoGY7~BsMFhds z#6CcsGBheb2=6qHiGh>iPvHKpa<~k?$yAIz;3YNv~(x-g>h^Lb#3h+iD)Ol~$;=7*lqiA!+uR(GJOT~h@J5J7pe>jWBGwt7 z{J7j70zNgx)0||H$MI)Fww1X7{s8(C#SQ$pJ+I(Dgq=d;dx(kjC0`^F+f817y@kM~ zB*e>3f?wcs-G9o?sC#G~4%kDSYO^)62)So#0Q zjvS%uos1jn{8Gr~k=%>KK@j}~YCN$Pj1NPei+?zTRlp2jE^$or zJIZ({<11q!`8W3b)r72}Wz2%m^eJ@@G9w_x930k0BE)|{Wof7ESK)}Kw_Egbm-s?uUAzGt28__~1qEINw< zK5#uCd!KOtTOT_ZT!E6AB1K5CbIxFo< z179&e%J_DC3rOluks$z0VwLgxh`)rLh<^tD>R{RvD}?Y}aw@Wb+QjCguDq(_{p5+f zLEbKS2FmNNr_?EdrV!01xSxbGjK}FJB=$Vo1fPw%(uzT4xv0pS5N_7kz09AXp>pta z#a{u=5_aV;d=(kjCubgYua%$wL}mfv-6&5l0N*pN2Vf|`J4m{c@nML{6B9Xz?^_yM zgZe3WKl&?V%fS>dUV&{SdGKrmzXhI5>_p}X;6B7o5)9a+DCA=xK10G#oWJ0dms~|Y zAW>d8u7H0s_DwMHk^r_Q%3BAX7tqxNe`Nl>;fdtHrBR_!RSp zAQkaZU@WoOG-xrtjri4E>i%FV>%!K+c|Hp0EQ2T-CNTp*Iaw8;_n6lqsWUMVe!a)@ zBxJl<_7CYt&WotX-)c93+YQfU))Z5F`ybkzbH zi=KgKE_xIGwpyU3Hql6PXA-}Y+?tRtW6bAHIr1bp-VpWNjPC&!yNUd(z_r8La{b!_ zEMk%-#3WC`?f@Y2IO7BoMP@7ER2oiZ-iG;H;`1P{rVT$$Y$~}soeVA+x$}h=c{FA` zt?*@mp8_t={rdkfpuPl(0d0WzUPznLZ6zAIpRp@PD9}Y4I;)o7uyf=x@NYxRZ&`T~ z)i)TtD~0&{a4!K@hw&(EPkAY9JOfwSQLvK|SB9(uKt4Cl(^84*&`eFhOTk>PxI?=7 z`@xMveasuf!|$bflED4}|9)M>F5*8k-mbaP?tliNA{79hBpAW+PN^ejNw`AerR>rv zyw73lp?89LM##WCLD2>12a1*CaWwsu^8CzvpT-_xyeigo)U#HQDnYtBr@JwbL`xHf zQB33u2-8S>2Ic(+M_OUOV?LYNRvH-^b9-LISBboR@a2H%!Td3eRmDcBRn@)zOSOQ+ z4*=ey(+$TzY57-Idiiy9$_-pV}$lVOC42_pp z!aK z7lQFLxf#bHZFVKe-!g6kVFR!WTrhS9O}WyS!BpnM;qFM$J>b9AI@#D@0`*ryv>rl! z`P1_>R%8X^hn48nxW***F!LKI`U!cXWi{edS;71+9k(X`O3iJLPnLRKcQuhkeZ;t* zyd5DTZx!;fmY$a&twnKubNqtziW|R;cT-$LUUGhbs3OIFAvOU!63zmAW0ZTCGIfUg zV|2OZAH+uY0cyhFMu^IjoQSSwUJHUSb{)2Wqz6%vCd8X)L-ol`BJX>AA`@7ZNH#e) z;M>BuIvl+mFJF+szfA52_(T@S%h4i_lh6g{TNL>VkQd+G%=;?Pi~mN*w_=+?U{F+~ zA@&^eB*isT`yKWnZANfy$@`r7V(O&Aze}9RoAP$#J_7QQ6V)JFMB<0o_aVK4@d0!h z@hK39?9;+CAi5XddT{k(q1bQsFdjzE4d8rWQYbc(ad~{d!qb>}N99_^I7N=5XGxj` zkw|l#uCyiAjifs@p#?;%(JvtrY0UUX#`}ri7jt>|>OpXD#4acSbB7PO0$cx%!TjpKBv;m(V3wgdL zc82DzK);}2k^bmPii`9Ee>e6HonOUb9zxrqsq*8<+awtfr{I_e@NZ@ZRm^mD-*B5?)_Wd$G@L=17brocO;_!T? zB6X?xC3Sw4=YJ>(cQJVseU(I!?AAhK zv3G#)PV6Pd%^c(VT8UR;E^>&Ry2KwPb|3hO5R246KVzJQuNC?VDl!?Y z$d|;D;g*s&qe1ultpU+lg5PSwUOHX}@HrA^ve#)s_rEQZVgP@VI0e#=NjfcrkYCHVAwH2ih>J`@&&I8= zpE57N4paXr`2J=-9i6RBN^TbZ3d-lK|8)|s!m&chKNS@6GV_m!y%bldl;jfTvmmU? zR-U8DN5Ea8JERnzcZlB#M@Sn>Rx7+Mz-GXag>}}?r;dAu0N92eSD@i`NWw$-j%ooR zs0Mi$g6VEGe2*|6%=|{i#l(9v|4?(@A^#T|7rBLoUCEXDc_gjD*+sqYlXN%9HSjej z>1!I<7FXzH$X!{__#<%H+U#rKr=StEvEurW+YY{CsK}@A&qBw7xki2*T}Ysu2K!>) zq+5gFOb5=3H5%)ttFbBg0OPh;krZ@*GvX&Cir&L`yT;nnnENfhK<3g+rY>fHG${K& z4())3DAbH=dYnKSdI{sX5VfJ$<60b;BPaMbBR2HR!LB0rWiTn^G-Te7{0}uQrbP44 zvpA6gcuf`=-KDD&XC}@{ar0{!_aXJXKrC{U@doq* z^1NE;F>D&xW#s*#xN^*!f*HwtC3umqh`$QoBj^M2a&&(H5rB&!_&bL2%)qxF;1&2Q zV*kY7nnq7Sk_qlJEqWz5SJr~H)ZZE0Vl61~=B?ns%Ut{_Hzm5X;sy#=c zBVg_abTi`zXrKp4Ua&#N9Y`FAUBXSxq2717}DsK=b0dZ^V2u@n1-Kj-<*ou%7v0ie8O<1-%K)WBvq~Iq-?x6f>U9 z_~T_N^PaILqn3oFPb7&n#6J$gUzv}h zL6OUOlMaGx+9i~j*9i_3_=kZ~dY@$g5x6MTYBzJTB~ znt)yopaZrBWVZq=hkcUy6WAi=L3AFv9I_A^|8;d07?ETe+eU#S;BH`1pmFh3C=rP%Z2ehzLkiy4mpJjGuF zcNOt3v8{EdW@?QjnmOQ{zXU%eu@K<3*j6OIM^lBm62hL-B)y2;4W@-QQ^fpZNRlab zTtIQs5?>iP*AxF${iB&rfqNXj=iwQMttKyuimW171$Cu@`eoi2GLZrb%i9;XU^5}Q z8NG|S1<@MpoA}#d>&M{yJq3Jn_x?QDv%O4C7xJwOLQtS75MOhdI~Gw7Qn8 z?~*XFV&VB-37w<4fgmeXc$(!4f{r8Dwv zpU*IT`DQ_HHXAmnO^;@Jx)lm>Pgr?&AQEEVF7AWN>D&w#_A<4kdGCbOgv2p73@aJl zCt-1)v9uXvX|a9HF$)YcH`g+QhAmfsDo!oAcKKPh>}-}5vW#HFXN6*INxyz>!cfQz z+H^p=ub|}k?1V9OQcOE+m_~+`Z-lJ$fZxjsWgoIEKNWoe(-|9bjZ=-nqeBu>3VYv` zP`S=@Hrn>hXx>u?-P@WyOOgu{HuQ+b?lgHUa(!k&$Z1h7lH7_^$gndb+y?H$A`6J! zgsH|D#{VD5^%r1T&@!{VfqcK*`ObysHjSjwx$uR=8;)KeG+KrtY=;>#tf^*BY+?Fr zveyU&XO-66$IZEza-Ta-B(3=ZY*@Y>&T^j3 z=!Lb&#v7*B8E>8{GflDnv6_u+&Vy(-wDi0LaiRlD5nX_Yz}?b~&2 zcU{StymD*W8KVQ-uyRkAKFLm`TX|+Kk7Zd=S+TFIIH#<*M`n_jGs%cQ zGd0olg$vASWyNe?SuvYpddrGajee0}B*(}Ocq9KlO;^8A?sSV05xHamziFhIJR)W` z+ZyoOIX-J|QP}2@$+7nq8Kv9GirAlY+sGzlXLEeoemiy!(>YnTpTp7Skezp;T>plX z`TEd@d+f}K?aGvgdaXVFbZ$e_nXrH}Bj*nzFg-2RWf}qJkLc^5i z=#}hI;)xg|d=b_g3AzVwz#m~t!ezzTK5nzJV!0T`H1?FoPoWWCB$#RpVp$iMB`4sE z%GV4UAQOU=xCC#ctSI7~x?xVEEZg8KqeEI&T;SshSUx+*`kXD_TV!S1KE5Kj`w)uw zVBdb6*wk1mszTy`D>KGS2Alu!Oik ze(s?>Gsm#xR~$Fl}xWx*5^KUAEbINK1}W|r5IKl-A`wK zrGe}Sw**_8F2@hgi;-!k+0r!!|Ha3;fG+}R+~RgN-*eRCrf{xi+<6f2nT4OUOspR* z;M&S}dEP*%z}@o;4_@&9b!F`3(PDM6L-gVi10|0mw+n0h$9bbjslxS+-K!COUM6#o zr<>W_E?i*uY~YOM8w2;2HZLABEXlpS`7X;j2z@+**|en3uzS1sax9k4MJqYGJ~4Md SrGZ@TkmW16<-5eXS^oteTnnuL diff --git a/conf/locale/tr_TR/LC_MESSAGES/django.po b/conf/locale/tr_TR/LC_MESSAGES/django.po index a5da04d54b..047cb79dd9 100644 --- a/conf/locale/tr_TR/LC_MESSAGES/django.po +++ b/conf/locale/tr_TR/LC_MESSAGES/django.po @@ -72,7 +72,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" +"POT-Creation-Date: 2014-03-25 10:28-0400\n" "PO-Revision-Date: 2014-02-24 17:06+0000\n" "Last-Translator: Hakan Senel \n" "Language-Team: Turkish (Turkey) (http://www.transifex.com/projects/p/edx-platform/language/tr_TR/)\n" @@ -1336,9 +1336,8 @@ msgstr "Skorunuzu kaydederken hata. Lütfen ders çalışanlarına bildiriniz." #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py msgid "" "Can't receive transcripts from Youtube for {youtube_id}. Status code: " -"{statuc_code}." +"{status_code}." msgstr "" -"Youtube'dan {youtube_id} için altyazı alınamadı. Durum kodu: {statuc_code}." #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py msgid "Can't find any transcripts on the Youtube service." @@ -4098,14 +4097,6 @@ msgstr "Gizlilik İlkeleri" msgid "Help" msgstr "Yardım" -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "Visual" -msgstr "Görsel" - -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "HTML" -msgstr "HTML" - #: common/templates/course_modes/choose.html msgid "Upgrade Your Registration for {} | Choose Your Track" msgstr "{} için Kaydınızı Yükseltin | Hedefinizi Seçiniz" @@ -6741,8 +6732,8 @@ msgid "Students" msgstr "Öğrenciler" #: lms/templates/courseware/instructor_dashboard.html -msgid "Answer distribution for problems" -msgstr "Sorular için cevap dağılımı" +msgid "Score distribution for problems" +msgstr "" #: lms/templates/courseware/instructor_dashboard.html #: lms/templates/courseware/instructor_dashboard.html @@ -7693,8 +7684,8 @@ msgid "Skip" msgstr "Atla" #: lms/templates/instructor/instructor_dashboard_2/analytics.html -msgid "Grade Distribution" -msgstr "Not Dağılımı" +msgid "Score Distribution" +msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html msgid "" @@ -7774,12 +7765,9 @@ msgstr "Ders Uyarıları" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button generates a CSV file of all students enrolled in this " -"course, along with profile information such as email address and username." +"Click to generate a CSV file of all students enrolled in this course, along " +"with profile information such as email address and username:" msgstr "" -"Aşağıdaki buton, e-posta adresi ve kullanıcı adı gibi profil bilgileriyle " -"birlikte bu derse kayıtlı olan öğrencileri listeleyen CSV dosyasını " -"oluşturur." #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "Download profile information as a CSV" @@ -7787,11 +7775,9 @@ msgstr "Profil bilgilerini CSV dosyası olarak indir" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"For smaller courses, profile information for enrolled students can be listed" +"For smaller courses, click to list profile information for enrolled students" " directly on this page:" msgstr "" -"Daha küçük dersler için, kayıtlı öğrencilerin bilgileri bu sayfada doğrudan " -"listelenir:" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "List enrolled students' profile information" @@ -7799,24 +7785,19 @@ msgstr "Kayıtlı öğrencilerin profil bilgisini listele" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button displays the grading configuration for the course. The " -"grading configuration is the breakdown of graded subsections of the course " -"(such as exams and problem sets), and can be changed on the 'Grading' page " -"(under 'Settings') in Studio." +"Click to display the grading configuration for the course. The grading " +"configuration is the breakdown of graded subsections of the course (such as " +"exams and problem sets), and can be changed on the 'Grading' page (under " +"'Settings') in Studio." msgstr "" -"Aşağıdaki buton dersin notlandırma yapılandırmasını gösterir. Notlandırma " -"yapılandırması dersin notlandırılmış alt bölümlerinin (örneğin sınavlar ve " -"problem setleri) analizidir ve Studio içindeki 'Notlandırma' sayfasından " -"('Kurulum' bölümünde) değiştirilebilir." #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "Grading Configuration" msgstr "Notlandırma Konfigürasyonu" #: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "Download a CSV of anonymized student IDs by clicking this button." +msgid "Click to download a CSV of anonymized student IDs:" msgstr "" -"Bu butona basarak anonimleştirilmiş öğrenci kimliklerini CSV olarak indirin." #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "Get Student Anonymized IDs CSV" @@ -7828,13 +7809,10 @@ msgstr "Raporlar" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button will generate a CSV grade report for all currently " -"enrolled students. Generated reports appear in a table below and can be " -"downloaded." +"Click to generate a CSV grade report for all currently enrolled students. " +"Links to generated reports appear in a table below when report generation is" +" complete." msgstr "" -"Aşağıdaki buton şu an için kayıtlı olan bütün öğrenciler için CSV not raporu" -" oluşturacaktır. Oluşturulan raporlar aşağıda bir tabloda, indirilecek " -"şekilde gösterilmektedir." #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" @@ -7864,31 +7842,20 @@ msgstr "İndirme için Hazır Raporlar" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Grade reports listed below are generated each time the Generate Grade " -"Report button is clicked. A link to each grade report remains available " -"on this page, identified by the UTC date and time of generation. Grade " +"The grade reports listed below are generated each time the Generate Grade" +" Report button is clicked. A link to each grade report remains available" +" on this page, identified by the UTC date and time of generation. Grade " "reports are not deleted, so you will always be able to access previously " "generated reports from this page." msgstr "" -"Aşağıda listelenen not raporları Not Raporu Oluştur butonuna " -"tıklandığı zaman oluşturulur. Her not raporuna olan bağlantı, oluşturulduğu " -"UTC tarihi ve zamanıyla belirlenmiş şekilde sayfada sunulur. Not raporları " -"silinmez ve böylece eskiden oluşturulmuş raporlara bu sayfa üzerinde " -"erişebilirsiniz." -#. Translators: "these rules" in this sentence references a detailed -#. description of the grading reports that will appear in a table that -#. contains -#. a mix of different types of reports. This sentence intends to indicate -#. that -#. the description of the grading report does not apply to the other reports -#. that may appear in the table. #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Other reports may appear in the table for which these rules will not " -"necessarily apply." +"The answer distribution report listed below is generated periodically by an " +"automated background process. The report is cumulative, so answers submitted" +" after the process starts are included in a subsequent report. The report is" +" generated several times per day." msgstr "" -"Bu kuralların genellikle uymayacağı fiğer raporlar bu tabloda görünebilir." #. Translators: a table of URL links to report files appears after this #. sentence. @@ -9026,10 +8993,8 @@ msgstr "{platform_name} sunucularında 500 hatası oldu." #: lms/templates/static_templates/server-error.html msgid "" "Please wait a few seconds and then reload the page. If the problem persists," -" please email us at {email}." +" please email us at {email}." msgstr "" -"Lütfen bir kaç dakika bekleyin ve sayfayı yeniden yükleyin. Eğer sorun devam" -" ederse, lütfen {email} adresine eposta atınız." #: lms/templates/static_templates/server-overloaded.html msgid "Currently the {platform_name} servers are overloaded" @@ -10184,6 +10149,10 @@ msgstr "İçerik" msgid "Page Actions" msgstr "Sayfa İşlemleri" +#: cms/templates/asset_index.html +msgid "Loading…" +msgstr "" + #: cms/templates/asset_index.html msgid "What files are listed here?" msgstr "Burada hangi dosyalar listelenmiş?" diff --git a/conf/locale/tr_TR/LC_MESSAGES/djangojs.mo b/conf/locale/tr_TR/LC_MESSAGES/djangojs.mo index d9a7fe021782d0bd8fc70eee946b011d99061ec4..c789c114c056cdb6b9fb2cad4644a4fbf79be705 100644 GIT binary patch delta 6323 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 delta 6384 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 CX!Q>O diff --git a/conf/locale/tr_TR/LC_MESSAGES/djangojs.po b/conf/locale/tr_TR/LC_MESSAGES/djangojs.po index a82eb5ccd2..2697991389 100644 --- a/conf/locale/tr_TR/LC_MESSAGES/djangojs.po +++ b/conf/locale/tr_TR/LC_MESSAGES/djangojs.po @@ -30,7 +30,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" +"POT-Creation-Date: 2014-03-25 10:27-0400\n" "PO-Revision-Date: 2014-03-24 14:25+0000\n" "Last-Translator: sarina \n" "Language-Team: Turkish (Turkey) (http://www.transifex.com/projects/p/edx-platform/language/tr_TR/)\n" @@ -824,8 +824,8 @@ msgid "Error generating grades. Please try again." msgstr "Notları oluştururken hata. Lütfen tekrar deneyin." #: lms/static/coffee/src/instructor_dashboard/data_download.js -msgid "File Name (Newest First)" -msgstr "Dosya İsmi (En Yenisi Başta)" +msgid "File Name" +msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js msgid "" @@ -866,6 +866,21 @@ msgstr "Rol listesini çekerken hata" msgid "Error changing user's permissions." msgstr "Kullanıcının izinlerini değiştirirken hata." +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Could not find a user with username or email address '<%= identifier %>'." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Error: User '<%= username %>' has not yet activated their account. Users " +"must create and activate their accounts before they can be assigned a role." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Error: You cannot remove yourself from the Instructor group!" +msgstr "" + #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error adding/removing users as beta testers." msgstr "Kullanıcıları beta sınayıcıları oalrak ekler/çıkarırken hata oluştu." diff --git a/conf/locale/uk/LC_MESSAGES/django.mo b/conf/locale/uk/LC_MESSAGES/django.mo index 5ed167ea26abc064fb1096ec4d31f887b244313a..edfdd20b095ced7d7ca506f714fe300c36777a11 100644 GIT binary patch delta 18 acmcb`a*JicMs`yLLjx-#i;X)LF#-TTf(B~< delta 18 acmcb`a*JicMs^bgLjx-VvyD3zF#-TTVFqRZ diff --git a/conf/locale/uk/LC_MESSAGES/django.po b/conf/locale/uk/LC_MESSAGES/django.po index 803ff818b9..ea608ed037 100644 --- a/conf/locale/uk/LC_MESSAGES/django.po +++ b/conf/locale/uk/LC_MESSAGES/django.po @@ -40,7 +40,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" +"POT-Creation-Date: 2014-03-25 10:28-0400\n" "PO-Revision-Date: 2014-03-18 02:00+0000\n" "Last-Translator: nedbat \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/edx-platform/language/uk/)\n" @@ -1240,7 +1240,7 @@ msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py msgid "" "Can't receive transcripts from Youtube for {youtube_id}. Status code: " -"{statuc_code}." +"{status_code}." msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py @@ -3765,14 +3765,6 @@ msgstr "" msgid "Help" msgstr "" -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "Visual" -msgstr "" - -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "HTML" -msgstr "" - #: common/templates/course_modes/choose.html msgid "Upgrade Your Registration for {} | Choose Your Track" msgstr "" @@ -6198,7 +6190,7 @@ msgid "Students" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -msgid "Answer distribution for problems" +msgid "Score distribution for problems" msgstr "" #: lms/templates/courseware/instructor_dashboard.html @@ -7096,7 +7088,7 @@ msgid "Skip" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html -msgid "Grade Distribution" +msgid "Score Distribution" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html @@ -7173,8 +7165,8 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button generates a CSV file of all students enrolled in this " -"course, along with profile information such as email address and username." +"Click to generate a CSV file of all students enrolled in this course, along " +"with profile information such as email address and username:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7183,7 +7175,7 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"For smaller courses, profile information for enrolled students can be listed" +"For smaller courses, click to list profile information for enrolled students" " directly on this page:" msgstr "" @@ -7193,10 +7185,10 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button displays the grading configuration for the course. The " -"grading configuration is the breakdown of graded subsections of the course " -"(such as exams and problem sets), and can be changed on the 'Grading' page " -"(under 'Settings') in Studio." +"Click to display the grading configuration for the course. The grading " +"configuration is the breakdown of graded subsections of the course (such as " +"exams and problem sets), and can be changed on the 'Grading' page (under " +"'Settings') in Studio." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7204,7 +7196,7 @@ msgid "Grading Configuration" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "Download a CSV of anonymized student IDs by clicking this button." +msgid "Click to download a CSV of anonymized student IDs:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7217,9 +7209,9 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button will generate a CSV grade report for all currently " -"enrolled students. Generated reports appear in a table below and can be " -"downloaded." +"Click to generate a CSV grade report for all currently enrolled students. " +"Links to generated reports appear in a table below when report generation is" +" complete." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7245,24 +7237,19 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Grade reports listed below are generated each time the Generate Grade " -"Report button is clicked. A link to each grade report remains available " -"on this page, identified by the UTC date and time of generation. Grade " +"The grade reports listed below are generated each time the Generate Grade" +" Report button is clicked. A link to each grade report remains available" +" on this page, identified by the UTC date and time of generation. Grade " "reports are not deleted, so you will always be able to access previously " "generated reports from this page." msgstr "" -#. Translators: "these rules" in this sentence references a detailed -#. description of the grading reports that will appear in a table that -#. contains -#. a mix of different types of reports. This sentence intends to indicate -#. that -#. the description of the grading report does not apply to the other reports -#. that may appear in the table. #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Other reports may appear in the table for which these rules will not " -"necessarily apply." +"The answer distribution report listed below is generated periodically by an " +"automated background process. The report is cumulative, so answers submitted" +" after the process starts are included in a subsequent report. The report is" +" generated several times per day." msgstr "" #. Translators: a table of URL links to report files appears after this @@ -8281,7 +8268,7 @@ msgstr "" #: lms/templates/static_templates/server-error.html msgid "" "Please wait a few seconds and then reload the page. If the problem persists," -" please email us at {email}." +" please email us at {email}." msgstr "" #: lms/templates/static_templates/server-overloaded.html @@ -9309,6 +9296,10 @@ msgstr "" msgid "Page Actions" msgstr "" +#: cms/templates/asset_index.html +msgid "Loading…" +msgstr "" + #: cms/templates/asset_index.html msgid "What files are listed here?" msgstr "" diff --git a/conf/locale/uk/LC_MESSAGES/djangojs.mo b/conf/locale/uk/LC_MESSAGES/djangojs.mo index 069747dfc2246e36b58f7f4c7855e9c8eeccdbc7..3f0e60982cd86fffeefdc1431eea914774403abc 100644 GIT binary patch delta 18 ZcmX@ga+GDlMs`yLLjx-#^Nl-t838\n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/edx-platform/language/uk/)\n" @@ -807,7 +807,7 @@ msgid "Error generating grades. Please try again." msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js -msgid "File Name (Newest First)" +msgid "File Name" msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js @@ -847,6 +847,21 @@ msgstr "" msgid "Error changing user's permissions." msgstr "" +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Could not find a user with username or email address '<%= identifier %>'." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Error: User '<%= username %>' has not yet activated their account. Users " +"must create and activate their accounts before they can be assigned a role." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Error: You cannot remove yourself from the Instructor group!" +msgstr "" + #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error adding/removing users as beta testers." msgstr "" diff --git a/conf/locale/vi/LC_MESSAGES/django.mo b/conf/locale/vi/LC_MESSAGES/django.mo index c8fc51999a88daaab454a013702bf60c8aee0db6..b40063d8d7a09eb57a12d0cd8f90fc129b16b626 100644 GIT binary patch delta 10181 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 YTPvbkVoLSoteR7oG|n1&sABE^1DxT?0ssI2 delta 10447 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 diff --git a/conf/locale/vi/LC_MESSAGES/django.po b/conf/locale/vi/LC_MESSAGES/django.po index 96164b7645..48ebf86a65 100644 --- a/conf/locale/vi/LC_MESSAGES/django.po +++ b/conf/locale/vi/LC_MESSAGES/django.po @@ -89,7 +89,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" +"POT-Creation-Date: 2014-03-25 10:28-0400\n" "PO-Revision-Date: 2014-02-25 04:00+0000\n" "Last-Translator: Hoang Doan \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/edx-platform/language/vi/)\n" @@ -1293,7 +1293,7 @@ msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py msgid "" "Can't receive transcripts from Youtube for {youtube_id}. Status code: " -"{statuc_code}." +"{status_code}." msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py @@ -3900,14 +3900,6 @@ msgstr "Chính sách bảo mật" msgid "Help" msgstr "Trợ Giúp" -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "Visual" -msgstr "" - -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "HTML" -msgstr "" - #: common/templates/course_modes/choose.html msgid "Upgrade Your Registration for {} | Choose Your Track" msgstr "" @@ -6382,7 +6374,7 @@ msgid "Students" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -msgid "Answer distribution for problems" +msgid "Score distribution for problems" msgstr "" #: lms/templates/courseware/instructor_dashboard.html @@ -7278,7 +7270,7 @@ msgid "Skip" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html -msgid "Grade Distribution" +msgid "Score Distribution" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html @@ -7355,8 +7347,8 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button generates a CSV file of all students enrolled in this " -"course, along with profile information such as email address and username." +"Click to generate a CSV file of all students enrolled in this course, along " +"with profile information such as email address and username:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7365,7 +7357,7 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"For smaller courses, profile information for enrolled students can be listed" +"For smaller courses, click to list profile information for enrolled students" " directly on this page:" msgstr "" @@ -7375,10 +7367,10 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button displays the grading configuration for the course. The " -"grading configuration is the breakdown of graded subsections of the course " -"(such as exams and problem sets), and can be changed on the 'Grading' page " -"(under 'Settings') in Studio." +"Click to display the grading configuration for the course. The grading " +"configuration is the breakdown of graded subsections of the course (such as " +"exams and problem sets), and can be changed on the 'Grading' page (under " +"'Settings') in Studio." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7386,7 +7378,7 @@ msgid "Grading Configuration" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "Download a CSV of anonymized student IDs by clicking this button." +msgid "Click to download a CSV of anonymized student IDs:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7399,9 +7391,9 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button will generate a CSV grade report for all currently " -"enrolled students. Generated reports appear in a table below and can be " -"downloaded." +"Click to generate a CSV grade report for all currently enrolled students. " +"Links to generated reports appear in a table below when report generation is" +" complete." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7427,24 +7419,19 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Grade reports listed below are generated each time the Generate Grade " -"Report button is clicked. A link to each grade report remains available " -"on this page, identified by the UTC date and time of generation. Grade " +"The grade reports listed below are generated each time the Generate Grade" +" Report button is clicked. A link to each grade report remains available" +" on this page, identified by the UTC date and time of generation. Grade " "reports are not deleted, so you will always be able to access previously " "generated reports from this page." msgstr "" -#. Translators: "these rules" in this sentence references a detailed -#. description of the grading reports that will appear in a table that -#. contains -#. a mix of different types of reports. This sentence intends to indicate -#. that -#. the description of the grading report does not apply to the other reports -#. that may appear in the table. #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Other reports may appear in the table for which these rules will not " -"necessarily apply." +"The answer distribution report listed below is generated periodically by an " +"automated background process. The report is cumulative, so answers submitted" +" after the process starts are included in a subsequent report. The report is" +" generated several times per day." msgstr "" #. Translators: a table of URL links to report files appears after this @@ -8472,10 +8459,8 @@ msgstr "Có một lỗi với mã 500 trên máy chủ của {platform_name} #: lms/templates/static_templates/server-error.html msgid "" "Please wait a few seconds and then reload the page. If the problem persists," -" please email us at {email}." +" please email us at {email}." msgstr "" -"Hãy chờ một vài giây và sau đó tải lại trang. Nếu vấn đề vẫn tồn tại, xin " -"vui lòng email cho chúng tôi {email}." #: lms/templates/static_templates/server-overloaded.html msgid "Currently the {platform_name} servers are overloaded" @@ -9513,6 +9498,10 @@ msgstr "Nội dung" msgid "Page Actions" msgstr "" +#: cms/templates/asset_index.html +msgid "Loading…" +msgstr "" + #: cms/templates/asset_index.html msgid "What files are listed here?" msgstr "Những tập tin được liệt kê ở đây là gì?" diff --git a/conf/locale/vi/LC_MESSAGES/djangojs.mo b/conf/locale/vi/LC_MESSAGES/djangojs.mo index 0728f7dece759d649aba10ff8342a69243ac0dc4..9a1e9ba643c71ebfad4db352c1542c92d74f8806 100644 GIT binary patch delta 20 bcmdnyyUlk4y9m3ff}w$xk@;pmkrhG!L<\n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/edx-platform/language/vi/)\n" @@ -800,7 +800,7 @@ msgid "Error generating grades. Please try again." msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js -msgid "File Name (Newest First)" +msgid "File Name" msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js @@ -840,6 +840,21 @@ msgstr "" msgid "Error changing user's permissions." msgstr "" +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Could not find a user with username or email address '<%= identifier %>'." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Error: User '<%= username %>' has not yet activated their account. Users " +"must create and activate their accounts before they can be assigned a role." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Error: You cannot remove yourself from the Instructor group!" +msgstr "" + #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error adding/removing users as beta testers." msgstr "" diff --git a/conf/locale/zh_CN.GB2312/LC_MESSAGES/django.mo b/conf/locale/zh_CN.GB2312/LC_MESSAGES/django.mo index dc04b27f224366ad6c1de462f09ba48ffb6bc85d..c0f73e441973af66585af760a0c5191ab512328e 100644 GIT binary patch delta 18 ZcmZ3(vW8{CMs`yLLjx-#i;X)<7y&s71>pby delta 18 ZcmZ3(vW8{CMs^bgLjx-VvyD4S7y&rx1>67t diff --git a/conf/locale/zh_CN.GB2312/LC_MESSAGES/django.po b/conf/locale/zh_CN.GB2312/LC_MESSAGES/django.po index 46601f850a..1c5d96f62b 100644 --- a/conf/locale/zh_CN.GB2312/LC_MESSAGES/django.po +++ b/conf/locale/zh_CN.GB2312/LC_MESSAGES/django.po @@ -38,7 +38,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" +"POT-Creation-Date: 2014-03-25 10:28-0400\n" "PO-Revision-Date: 2014-02-06 03:04+0000\n" "Last-Translator: nedbat \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/edx-platform/language/zh_CN.GB2312/)\n" @@ -1238,7 +1238,7 @@ msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py msgid "" "Can't receive transcripts from Youtube for {youtube_id}. Status code: " -"{statuc_code}." +"{status_code}." msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py @@ -3763,14 +3763,6 @@ msgstr "" msgid "Help" msgstr "" -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "Visual" -msgstr "" - -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "HTML" -msgstr "" - #: common/templates/course_modes/choose.html msgid "Upgrade Your Registration for {} | Choose Your Track" msgstr "" @@ -6192,7 +6184,7 @@ msgid "Students" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -msgid "Answer distribution for problems" +msgid "Score distribution for problems" msgstr "" #: lms/templates/courseware/instructor_dashboard.html @@ -7086,7 +7078,7 @@ msgid "Skip" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html -msgid "Grade Distribution" +msgid "Score Distribution" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html @@ -7163,8 +7155,8 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button generates a CSV file of all students enrolled in this " -"course, along with profile information such as email address and username." +"Click to generate a CSV file of all students enrolled in this course, along " +"with profile information such as email address and username:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7173,7 +7165,7 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"For smaller courses, profile information for enrolled students can be listed" +"For smaller courses, click to list profile information for enrolled students" " directly on this page:" msgstr "" @@ -7183,10 +7175,10 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button displays the grading configuration for the course. The " -"grading configuration is the breakdown of graded subsections of the course " -"(such as exams and problem sets), and can be changed on the 'Grading' page " -"(under 'Settings') in Studio." +"Click to display the grading configuration for the course. The grading " +"configuration is the breakdown of graded subsections of the course (such as " +"exams and problem sets), and can be changed on the 'Grading' page (under " +"'Settings') in Studio." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7194,7 +7186,7 @@ msgid "Grading Configuration" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "Download a CSV of anonymized student IDs by clicking this button." +msgid "Click to download a CSV of anonymized student IDs:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7207,9 +7199,9 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button will generate a CSV grade report for all currently " -"enrolled students. Generated reports appear in a table below and can be " -"downloaded." +"Click to generate a CSV grade report for all currently enrolled students. " +"Links to generated reports appear in a table below when report generation is" +" complete." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7235,24 +7227,19 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Grade reports listed below are generated each time the Generate Grade " -"Report button is clicked. A link to each grade report remains available " -"on this page, identified by the UTC date and time of generation. Grade " +"The grade reports listed below are generated each time the Generate Grade" +" Report button is clicked. A link to each grade report remains available" +" on this page, identified by the UTC date and time of generation. Grade " "reports are not deleted, so you will always be able to access previously " "generated reports from this page." msgstr "" -#. Translators: "these rules" in this sentence references a detailed -#. description of the grading reports that will appear in a table that -#. contains -#. a mix of different types of reports. This sentence intends to indicate -#. that -#. the description of the grading report does not apply to the other reports -#. that may appear in the table. #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Other reports may appear in the table for which these rules will not " -"necessarily apply." +"The answer distribution report listed below is generated periodically by an " +"automated background process. The report is cumulative, so answers submitted" +" after the process starts are included in a subsequent report. The report is" +" generated several times per day." msgstr "" #. Translators: a table of URL links to report files appears after this @@ -8271,7 +8258,7 @@ msgstr "" #: lms/templates/static_templates/server-error.html msgid "" "Please wait a few seconds and then reload the page. If the problem persists," -" please email us at {email}." +" please email us at {email}." msgstr "" #: lms/templates/static_templates/server-overloaded.html @@ -9299,6 +9286,10 @@ msgstr "" msgid "Page Actions" msgstr "" +#: cms/templates/asset_index.html +msgid "Loading…" +msgstr "" + #: cms/templates/asset_index.html msgid "What files are listed here?" msgstr "" diff --git a/conf/locale/zh_CN.GB2312/LC_MESSAGES/djangojs.mo b/conf/locale/zh_CN.GB2312/LC_MESSAGES/djangojs.mo index a14a70187390a1cf2fc9e0230a915f6e64534ff3..7cb698c4a6434b3c7318167d7c800acc2a4113c3 100644 GIT binary patch delta 18 ZcmbQvGM#0@Ms`yLLjx-#^Nl;=838sC1)%@{ delta 18 ZcmbQvGM#0@Ms^bgLjx-VvyD6A838r*1)Tr@ diff --git a/conf/locale/zh_CN.GB2312/LC_MESSAGES/djangojs.po b/conf/locale/zh_CN.GB2312/LC_MESSAGES/djangojs.po index f3c981463d..50cbfe6fdf 100644 --- a/conf/locale/zh_CN.GB2312/LC_MESSAGES/djangojs.po +++ b/conf/locale/zh_CN.GB2312/LC_MESSAGES/djangojs.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" +"POT-Creation-Date: 2014-03-25 10:27-0400\n" "PO-Revision-Date: 2014-03-19 20:22+0000\n" "Last-Translator: sarina \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/edx-platform/language/zh_CN.GB2312/)\n" @@ -773,7 +773,7 @@ msgid "Error generating grades. Please try again." msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js -msgid "File Name (Newest First)" +msgid "File Name" msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js @@ -813,6 +813,21 @@ msgstr "" msgid "Error changing user's permissions." msgstr "" +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Could not find a user with username or email address '<%= identifier %>'." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Error: User '<%= username %>' has not yet activated their account. Users " +"must create and activate their accounts before they can be assigned a role." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Error: You cannot remove yourself from the Instructor group!" +msgstr "" + #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error adding/removing users as beta testers." msgstr "" diff --git a/conf/locale/zh_CN/LC_MESSAGES/django.mo b/conf/locale/zh_CN/LC_MESSAGES/django.mo index 354eb8b03db8dad440a12aea972915f4c7f1563c..287f0e90589e3a68b8d522a372d9f7aec8ea2e1e 100644 GIT binary patch delta 18 ZcmZ3&vV>*AMs`yLLjx-#i;X*S7y&ox1<3#a delta 18 ZcmZ3&vV>*AMs^bgLjx-VvyD4)7y&oQ1;hXV diff --git a/conf/locale/zh_CN/LC_MESSAGES/django.po b/conf/locale/zh_CN/LC_MESSAGES/django.po index 686d218a22..12feffda53 100644 --- a/conf/locale/zh_CN/LC_MESSAGES/django.po +++ b/conf/locale/zh_CN/LC_MESSAGES/django.po @@ -138,7 +138,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" +"POT-Creation-Date: 2014-03-25 10:28-0400\n" "PO-Revision-Date: 2014-03-15 02:32+0000\n" "Last-Translator: pku9104038 \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/edx-platform/language/zh_CN/)\n" @@ -1338,7 +1338,7 @@ msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py msgid "" "Can't receive transcripts from Youtube for {youtube_id}. Status code: " -"{statuc_code}." +"{status_code}." msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py @@ -3863,14 +3863,6 @@ msgstr "" msgid "Help" msgstr "" -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "Visual" -msgstr "" - -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "HTML" -msgstr "" - #: common/templates/course_modes/choose.html msgid "Upgrade Your Registration for {} | Choose Your Track" msgstr "" @@ -6292,7 +6284,7 @@ msgid "Students" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -msgid "Answer distribution for problems" +msgid "Score distribution for problems" msgstr "" #: lms/templates/courseware/instructor_dashboard.html @@ -7186,7 +7178,7 @@ msgid "Skip" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html -msgid "Grade Distribution" +msgid "Score Distribution" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html @@ -7263,8 +7255,8 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button generates a CSV file of all students enrolled in this " -"course, along with profile information such as email address and username." +"Click to generate a CSV file of all students enrolled in this course, along " +"with profile information such as email address and username:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7273,7 +7265,7 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"For smaller courses, profile information for enrolled students can be listed" +"For smaller courses, click to list profile information for enrolled students" " directly on this page:" msgstr "" @@ -7283,10 +7275,10 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button displays the grading configuration for the course. The " -"grading configuration is the breakdown of graded subsections of the course " -"(such as exams and problem sets), and can be changed on the 'Grading' page " -"(under 'Settings') in Studio." +"Click to display the grading configuration for the course. The grading " +"configuration is the breakdown of graded subsections of the course (such as " +"exams and problem sets), and can be changed on the 'Grading' page (under " +"'Settings') in Studio." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7294,7 +7286,7 @@ msgid "Grading Configuration" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "Download a CSV of anonymized student IDs by clicking this button." +msgid "Click to download a CSV of anonymized student IDs:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7307,9 +7299,9 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button will generate a CSV grade report for all currently " -"enrolled students. Generated reports appear in a table below and can be " -"downloaded." +"Click to generate a CSV grade report for all currently enrolled students. " +"Links to generated reports appear in a table below when report generation is" +" complete." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7335,24 +7327,19 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Grade reports listed below are generated each time the Generate Grade " -"Report button is clicked. A link to each grade report remains available " -"on this page, identified by the UTC date and time of generation. Grade " +"The grade reports listed below are generated each time the Generate Grade" +" Report button is clicked. A link to each grade report remains available" +" on this page, identified by the UTC date and time of generation. Grade " "reports are not deleted, so you will always be able to access previously " "generated reports from this page." msgstr "" -#. Translators: "these rules" in this sentence references a detailed -#. description of the grading reports that will appear in a table that -#. contains -#. a mix of different types of reports. This sentence intends to indicate -#. that -#. the description of the grading report does not apply to the other reports -#. that may appear in the table. #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Other reports may appear in the table for which these rules will not " -"necessarily apply." +"The answer distribution report listed below is generated periodically by an " +"automated background process. The report is cumulative, so answers submitted" +" after the process starts are included in a subsequent report. The report is" +" generated several times per day." msgstr "" #. Translators: a table of URL links to report files appears after this @@ -8371,7 +8358,7 @@ msgstr "" #: lms/templates/static_templates/server-error.html msgid "" "Please wait a few seconds and then reload the page. If the problem persists," -" please email us at {email}." +" please email us at {email}." msgstr "" #: lms/templates/static_templates/server-overloaded.html @@ -9399,6 +9386,10 @@ msgstr "" msgid "Page Actions" msgstr "" +#: cms/templates/asset_index.html +msgid "Loading…" +msgstr "" + #: cms/templates/asset_index.html msgid "What files are listed here?" msgstr "" diff --git a/conf/locale/zh_CN/LC_MESSAGES/djangojs.mo b/conf/locale/zh_CN/LC_MESSAGES/djangojs.mo index 61b20e0a82439501dfc588524ee4b10dd50844da..d1e431dfe1b7a3354ebe5c9fc79ea6d4f3cb15fc 100644 GIT binary patch delta 18 ZcmZo*X<(VKk=<0m(7?*beB%xeMgTI^1zZ3C delta 18 ZcmZo*X<(VKk=;bW(7?*TY~v0OMgTIo1y}$8 diff --git a/conf/locale/zh_CN/LC_MESSAGES/djangojs.po b/conf/locale/zh_CN/LC_MESSAGES/djangojs.po index 60057158bf..e2d9ce5fc9 100644 --- a/conf/locale/zh_CN/LC_MESSAGES/djangojs.po +++ b/conf/locale/zh_CN/LC_MESSAGES/djangojs.po @@ -48,7 +48,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" +"POT-Creation-Date: 2014-03-25 10:27-0400\n" "PO-Revision-Date: 2014-03-24 14:25+0000\n" "Last-Translator: sarina \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/edx-platform/language/zh_CN/)\n" @@ -807,7 +807,7 @@ msgid "Error generating grades. Please try again." msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js -msgid "File Name (Newest First)" +msgid "File Name" msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js @@ -847,6 +847,21 @@ msgstr "" msgid "Error changing user's permissions." msgstr "" +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Could not find a user with username or email address '<%= identifier %>'." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Error: User '<%= username %>' has not yet activated their account. Users " +"must create and activate their accounts before they can be assigned a role." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Error: You cannot remove yourself from the Instructor group!" +msgstr "" + #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error adding/removing users as beta testers." msgstr "" diff --git a/conf/locale/zh_TW/LC_MESSAGES/django.mo b/conf/locale/zh_TW/LC_MESSAGES/django.mo index 789d7789cfbcf311bc091b6ddf22d5facc67a237..cf38316af80d7ab8cd771f0c37bc44762121e575 100644 GIT binary patch delta 20198 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 delta 20502 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 xj=sBg^u1+E+@N>%PrW~O_uVZE?k-vX\n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/edx-platform/language/zh_TW/)\n" @@ -1265,7 +1265,7 @@ msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py msgid "" "Can't receive transcripts from Youtube for {youtube_id}. Status code: " -"{statuc_code}." +"{status_code}." msgstr "" #: common/lib/xmodule/xmodule/video_module/transcripts_utils.py @@ -3795,14 +3795,6 @@ msgstr "" msgid "Help" msgstr "" -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "Visual" -msgstr "" - -#: cms/templates/widgets/html-edit.html lms/templates/widgets/html-edit.html -msgid "HTML" -msgstr "" - #: common/templates/course_modes/choose.html msgid "Upgrade Your Registration for {} | Choose Your Track" msgstr "" @@ -6269,8 +6261,8 @@ msgid "Students" msgstr "學生" #: lms/templates/courseware/instructor_dashboard.html -msgid "Answer distribution for problems" -msgstr "問題的答案分佈" +msgid "Score distribution for problems" +msgstr "" #: lms/templates/courseware/instructor_dashboard.html #: lms/templates/courseware/instructor_dashboard.html @@ -7165,8 +7157,8 @@ msgid "Skip" msgstr "跳過" #: lms/templates/instructor/instructor_dashboard_2/analytics.html -msgid "Grade Distribution" -msgstr "成績分佈" +msgid "Score Distribution" +msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html msgid "" @@ -7242,8 +7234,8 @@ msgstr "課程警告" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button generates a CSV file of all students enrolled in this " -"course, along with profile information such as email address and username." +"Click to generate a CSV file of all students enrolled in this course, along " +"with profile information such as email address and username:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7252,7 +7244,7 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"For smaller courses, profile information for enrolled students can be listed" +"For smaller courses, click to list profile information for enrolled students" " directly on this page:" msgstr "" @@ -7262,10 +7254,10 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button displays the grading configuration for the course. The " -"grading configuration is the breakdown of graded subsections of the course " -"(such as exams and problem sets), and can be changed on the 'Grading' page " -"(under 'Settings') in Studio." +"Click to display the grading configuration for the course. The grading " +"configuration is the breakdown of graded subsections of the course (such as " +"exams and problem sets), and can be changed on the 'Grading' page (under " +"'Settings') in Studio." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7273,7 +7265,7 @@ msgid "Grading Configuration" msgstr "評分標準" #: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "Download a CSV of anonymized student IDs by clicking this button." +msgid "Click to download a CSV of anonymized student IDs:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7286,9 +7278,9 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"The following button will generate a CSV grade report for all currently " -"enrolled students. Generated reports appear in a table below and can be " -"downloaded." +"Click to generate a CSV grade report for all currently enrolled students. " +"Links to generated reports appear in a table below when report generation is" +" complete." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7314,24 +7306,19 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Grade reports listed below are generated each time the Generate Grade " -"Report button is clicked. A link to each grade report remains available " -"on this page, identified by the UTC date and time of generation. Grade " +"The grade reports listed below are generated each time the Generate Grade" +" Report button is clicked. A link to each grade report remains available" +" on this page, identified by the UTC date and time of generation. Grade " "reports are not deleted, so you will always be able to access previously " "generated reports from this page." msgstr "" -#. Translators: "these rules" in this sentence references a detailed -#. description of the grading reports that will appear in a table that -#. contains -#. a mix of different types of reports. This sentence intends to indicate -#. that -#. the description of the grading report does not apply to the other reports -#. that may appear in the table. #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" -"Other reports may appear in the table for which these rules will not " -"necessarily apply." +"The answer distribution report listed below is generated periodically by an " +"automated background process. The report is cumulative, so answers submitted" +" after the process starts are included in a subsequent report. The report is" +" generated several times per day." msgstr "" #. Translators: a table of URL links to report files appears after this @@ -8356,8 +8343,8 @@ msgstr "{platform_name}伺服器上出現了一個500錯誤。" #: lms/templates/static_templates/server-error.html msgid "" "Please wait a few seconds and then reload the page. If the problem persists," -" please email us at {email}." -msgstr "請稍等幾秒鐘再重新載入頁面。如果問題仍然存在,請發電子郵件至{email}。" +" please email us at {email}." +msgstr "" #: lms/templates/static_templates/server-overloaded.html msgid "Currently the {platform_name} servers are overloaded" @@ -9390,6 +9377,10 @@ msgstr "" msgid "Page Actions" msgstr "" +#: cms/templates/asset_index.html +msgid "Loading…" +msgstr "" + #: cms/templates/asset_index.html msgid "What files are listed here?" msgstr "" diff --git a/conf/locale/zh_TW/LC_MESSAGES/djangojs.mo b/conf/locale/zh_TW/LC_MESSAGES/djangojs.mo index 3aa75c40f5163ff94644fc8ca1bf61373feb2182..16835c99d3075df0ced1223e94755b4d378bdbd9 100644 GIT binary patch delta 20 bcmX>seOP*f2?x8Wf}w$xk@;q8jt*7;K`#Z2 delta 20 bcmX>seOP*f2?x80f}w$xf!Stjjt*7;K@SCp diff --git a/conf/locale/zh_TW/LC_MESSAGES/djangojs.po b/conf/locale/zh_TW/LC_MESSAGES/djangojs.po index 68a78e5a02..d3dfde0792 100644 --- a/conf/locale/zh_TW/LC_MESSAGES/djangojs.po +++ b/conf/locale/zh_TW/LC_MESSAGES/djangojs.po @@ -28,7 +28,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-24 10:06-0400\n" +"POT-Creation-Date: 2014-03-25 10:27-0400\n" "PO-Revision-Date: 2014-03-24 14:25+0000\n" "Last-Translator: sarina \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/edx-platform/language/zh_TW/)\n" @@ -787,7 +787,7 @@ msgid "Error generating grades. Please try again." msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js -msgid "File Name (Newest First)" +msgid "File Name" msgstr "" #: lms/static/coffee/src/instructor_dashboard/data_download.js @@ -827,6 +827,21 @@ msgstr "" msgid "Error changing user's permissions." msgstr "" +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Could not find a user with username or email address '<%= identifier %>'." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Error: User '<%= username %>' has not yet activated their account. Users " +"must create and activate their accounts before they can be assigned a role." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Error: You cannot remove yourself from the Instructor group!" +msgstr "" + #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error adding/removing users as beta testers." msgstr "" diff --git a/i18n/transifex.py b/i18n/transifex.py index 8997e38e61..4b77ac6d8e 100755 --- a/i18n/transifex.py +++ b/i18n/transifex.py @@ -8,7 +8,7 @@ from i18n.config import CONFIGURATION from i18n.execute import execute from i18n.extract import EDX_MARKER -TRANSIFEX_HEADER = 'edX community translations have been downloaded from {}' +TRANSIFEX_HEADER = u'edX community translations have been downloaded from {}' TRANSIFEX_URL = 'https://www.transifex.com/projects/p/edx-platform/'